]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.232 2014/07/30 00:19:16 schwarze Exp $ */
3 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
5 * Copyright (c) 2010 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.
24 #include <sys/utsname.h>
27 #include <sys/types.h>
39 #include "mandoc_aux.h"
41 #include "libmandoc.h"
43 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
45 #define PRE_ARGS struct mdoc *mdoc, struct mdoc_node *n
46 #define POST_ARGS struct mdoc *mdoc
59 typedef int (*v_pre
)(PRE_ARGS
);
60 typedef int (*v_post
)(POST_ARGS
);
67 static int check_count(struct mdoc
*, enum mdoc_type
,
68 enum check_lvl
, enum check_ineq
, int);
69 static int check_parent(PRE_ARGS
, enum mdoct
, enum mdoc_type
);
70 static void check_text(struct mdoc
*, int, int, char *);
71 static void check_argv(struct mdoc
*,
72 struct mdoc_node
*, struct mdoc_argv
*);
73 static void check_args(struct mdoc
*, struct mdoc_node
*);
74 static enum mdoc_sec
a2sec(const char *);
75 static size_t macro2len(enum mdoct
);
77 static int ebool(POST_ARGS
);
78 static int berr_ge1(POST_ARGS
);
79 static int bwarn_ge1(POST_ARGS
);
80 static int ewarn_eq0(POST_ARGS
);
81 static int ewarn_eq1(POST_ARGS
);
82 static int ewarn_ge1(POST_ARGS
);
83 static int ewarn_le1(POST_ARGS
);
84 static int hwarn_eq0(POST_ARGS
);
85 static int hwarn_eq1(POST_ARGS
);
86 static int hwarn_ge1(POST_ARGS
);
88 static int post_an(POST_ARGS
);
89 static int post_at(POST_ARGS
);
90 static int post_bf(POST_ARGS
);
91 static int post_bl(POST_ARGS
);
92 static int post_bl_block(POST_ARGS
);
93 static int post_bl_block_width(POST_ARGS
);
94 static int post_bl_block_tag(POST_ARGS
);
95 static int post_bl_head(POST_ARGS
);
96 static int post_bx(POST_ARGS
);
97 static int post_defaults(POST_ARGS
);
98 static int post_dd(POST_ARGS
);
99 static int post_dt(POST_ARGS
);
100 static int post_en(POST_ARGS
);
101 static int post_es(POST_ARGS
);
102 static int post_eoln(POST_ARGS
);
103 static int post_ex(POST_ARGS
);
104 static int post_hyph(POST_ARGS
);
105 static int post_ignpar(POST_ARGS
);
106 static int post_it(POST_ARGS
);
107 static int post_lb(POST_ARGS
);
108 static int post_literal(POST_ARGS
);
109 static int post_nm(POST_ARGS
);
110 static int post_ns(POST_ARGS
);
111 static int post_os(POST_ARGS
);
112 static int post_par(POST_ARGS
);
113 static int post_prol(POST_ARGS
);
114 static int post_root(POST_ARGS
);
115 static int post_rs(POST_ARGS
);
116 static int post_sh(POST_ARGS
);
117 static int post_sh_body(POST_ARGS
);
118 static int post_sh_head(POST_ARGS
);
119 static int post_st(POST_ARGS
);
120 static int post_vt(POST_ARGS
);
121 static int pre_an(PRE_ARGS
);
122 static int pre_bd(PRE_ARGS
);
123 static int pre_bl(PRE_ARGS
);
124 static int pre_dd(PRE_ARGS
);
125 static int pre_display(PRE_ARGS
);
126 static int pre_dt(PRE_ARGS
);
127 static int pre_it(PRE_ARGS
);
128 static int pre_literal(PRE_ARGS
);
129 static int pre_obsolete(PRE_ARGS
);
130 static int pre_os(PRE_ARGS
);
131 static int pre_par(PRE_ARGS
);
132 static int pre_sh(PRE_ARGS
);
133 static int pre_ss(PRE_ARGS
);
134 static int pre_std(PRE_ARGS
);
136 static v_post posts_an
[] = { post_an
, NULL
};
137 static v_post posts_at
[] = { post_at
, post_defaults
, NULL
};
138 static v_post posts_bd
[] = { post_literal
, hwarn_eq0
, bwarn_ge1
, NULL
};
139 static v_post posts_bf
[] = { post_bf
, NULL
};
140 static v_post posts_bk
[] = { hwarn_eq0
, bwarn_ge1
, NULL
};
141 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
142 static v_post posts_bx
[] = { post_bx
, NULL
};
143 static v_post posts_bool
[] = { ebool
, NULL
};
144 static v_post posts_eoln
[] = { post_eoln
, NULL
};
145 static v_post posts_defaults
[] = { post_defaults
, NULL
};
146 static v_post posts_d1
[] = { bwarn_ge1
, post_hyph
, NULL
};
147 static v_post posts_dd
[] = { post_dd
, post_prol
, NULL
};
148 static v_post posts_dl
[] = { post_literal
, bwarn_ge1
, NULL
};
149 static v_post posts_dt
[] = { post_dt
, post_prol
, NULL
};
150 static v_post posts_en
[] = { post_en
, NULL
};
151 static v_post posts_es
[] = { post_es
, NULL
};
152 static v_post posts_ex
[] = { post_ex
, NULL
};
153 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
154 static v_post posts_hyph
[] = { post_hyph
, NULL
};
155 static v_post posts_hyphtext
[] = { ewarn_ge1
, post_hyph
, NULL
};
156 static v_post posts_it
[] = { post_it
, NULL
};
157 static v_post posts_lb
[] = { post_lb
, NULL
};
158 static v_post posts_nd
[] = { berr_ge1
, post_hyph
, NULL
};
159 static v_post posts_nm
[] = { post_nm
, NULL
};
160 static v_post posts_notext
[] = { ewarn_eq0
, NULL
};
161 static v_post posts_ns
[] = { post_ns
, NULL
};
162 static v_post posts_os
[] = { post_os
, post_prol
, NULL
};
163 static v_post posts_pp
[] = { post_par
, ewarn_eq0
, NULL
};
164 static v_post posts_rs
[] = { post_rs
, NULL
};
165 static v_post posts_sh
[] = { post_ignpar
,hwarn_ge1
,post_sh
,post_hyph
,NULL
};
166 static v_post posts_sp
[] = { post_par
, ewarn_le1
, NULL
};
167 static v_post posts_ss
[] = { post_ignpar
, hwarn_ge1
, post_hyph
, NULL
};
168 static v_post posts_st
[] = { post_st
, NULL
};
169 static v_post posts_text
[] = { ewarn_ge1
, NULL
};
170 static v_post posts_text1
[] = { ewarn_eq1
, NULL
};
171 static v_post posts_vt
[] = { post_vt
, NULL
};
172 static v_pre pres_an
[] = { pre_an
, NULL
};
173 static v_pre pres_bd
[] = { pre_display
, pre_bd
, pre_literal
, pre_par
, NULL
};
174 static v_pre pres_bl
[] = { pre_bl
, pre_par
, NULL
};
175 static v_pre pres_d1
[] = { pre_display
, NULL
};
176 static v_pre pres_dl
[] = { pre_literal
, pre_display
, NULL
};
177 static v_pre pres_dd
[] = { pre_dd
, NULL
};
178 static v_pre pres_dt
[] = { pre_dt
, NULL
};
179 static v_pre pres_it
[] = { pre_it
, pre_par
, NULL
};
180 static v_pre pres_obsolete
[] = { pre_obsolete
, NULL
};
181 static v_pre pres_os
[] = { pre_os
, NULL
};
182 static v_pre pres_pp
[] = { pre_par
, NULL
};
183 static v_pre pres_sh
[] = { pre_sh
, NULL
};
184 static v_pre pres_ss
[] = { pre_ss
, NULL
};
185 static v_pre pres_std
[] = { pre_std
, NULL
};
187 static const struct valids mdoc_valids
[MDOC_MAX
] = {
188 { NULL
, NULL
}, /* Ap */
189 { pres_dd
, posts_dd
}, /* Dd */
190 { pres_dt
, posts_dt
}, /* Dt */
191 { pres_os
, posts_os
}, /* Os */
192 { pres_sh
, posts_sh
}, /* Sh */
193 { pres_ss
, posts_ss
}, /* Ss */
194 { pres_pp
, posts_pp
}, /* Pp */
195 { pres_d1
, posts_d1
}, /* D1 */
196 { pres_dl
, posts_dl
}, /* Dl */
197 { pres_bd
, posts_bd
}, /* Bd */
198 { NULL
, NULL
}, /* Ed */
199 { pres_bl
, posts_bl
}, /* Bl */
200 { NULL
, NULL
}, /* El */
201 { pres_it
, posts_it
}, /* It */
202 { NULL
, NULL
}, /* Ad */
203 { pres_an
, posts_an
}, /* An */
204 { NULL
, posts_defaults
}, /* Ar */
205 { NULL
, NULL
}, /* Cd */
206 { NULL
, NULL
}, /* Cm */
207 { NULL
, NULL
}, /* Dv */
208 { NULL
, NULL
}, /* Er */
209 { NULL
, NULL
}, /* Ev */
210 { pres_std
, posts_ex
}, /* Ex */
211 { NULL
, NULL
}, /* Fa */
212 { NULL
, posts_text
}, /* Fd */
213 { NULL
, NULL
}, /* Fl */
214 { NULL
, NULL
}, /* Fn */
215 { NULL
, NULL
}, /* Ft */
216 { NULL
, NULL
}, /* Ic */
217 { NULL
, posts_text1
}, /* In */
218 { NULL
, posts_defaults
}, /* Li */
219 { NULL
, posts_nd
}, /* Nd */
220 { NULL
, posts_nm
}, /* Nm */
221 { NULL
, NULL
}, /* Op */
222 { pres_obsolete
, NULL
}, /* Ot */
223 { NULL
, posts_defaults
}, /* Pa */
224 { pres_std
, NULL
}, /* Rv */
225 { NULL
, posts_st
}, /* St */
226 { NULL
, NULL
}, /* Va */
227 { NULL
, posts_vt
}, /* Vt */
228 { NULL
, posts_text
}, /* Xr */
229 { NULL
, posts_text
}, /* %A */
230 { NULL
, posts_hyphtext
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
231 { NULL
, posts_text
}, /* %D */
232 { NULL
, posts_text
}, /* %I */
233 { NULL
, posts_text
}, /* %J */
234 { NULL
, posts_hyphtext
}, /* %N */
235 { NULL
, posts_hyphtext
}, /* %O */
236 { NULL
, posts_text
}, /* %P */
237 { NULL
, posts_hyphtext
}, /* %R */
238 { NULL
, posts_hyphtext
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
239 { NULL
, posts_text
}, /* %V */
240 { NULL
, NULL
}, /* Ac */
241 { NULL
, NULL
}, /* Ao */
242 { NULL
, NULL
}, /* Aq */
243 { NULL
, posts_at
}, /* At */
244 { NULL
, NULL
}, /* Bc */
245 { NULL
, posts_bf
}, /* Bf */
246 { NULL
, NULL
}, /* Bo */
247 { NULL
, NULL
}, /* Bq */
248 { NULL
, NULL
}, /* Bsx */
249 { NULL
, posts_bx
}, /* Bx */
250 { NULL
, posts_bool
}, /* Db */
251 { NULL
, NULL
}, /* Dc */
252 { NULL
, NULL
}, /* Do */
253 { NULL
, NULL
}, /* Dq */
254 { NULL
, NULL
}, /* Ec */
255 { NULL
, NULL
}, /* Ef */
256 { NULL
, NULL
}, /* Em */
257 { NULL
, NULL
}, /* Eo */
258 { NULL
, NULL
}, /* Fx */
259 { NULL
, NULL
}, /* Ms */
260 { NULL
, posts_notext
}, /* No */
261 { NULL
, posts_ns
}, /* Ns */
262 { NULL
, NULL
}, /* Nx */
263 { NULL
, NULL
}, /* Ox */
264 { NULL
, NULL
}, /* Pc */
265 { NULL
, posts_text1
}, /* Pf */
266 { NULL
, NULL
}, /* Po */
267 { NULL
, NULL
}, /* Pq */
268 { NULL
, NULL
}, /* Qc */
269 { NULL
, NULL
}, /* Ql */
270 { NULL
, NULL
}, /* Qo */
271 { NULL
, NULL
}, /* Qq */
272 { NULL
, NULL
}, /* Re */
273 { NULL
, posts_rs
}, /* Rs */
274 { NULL
, NULL
}, /* Sc */
275 { NULL
, NULL
}, /* So */
276 { NULL
, NULL
}, /* Sq */
277 { NULL
, posts_bool
}, /* Sm */
278 { NULL
, posts_hyph
}, /* Sx */
279 { NULL
, NULL
}, /* Sy */
280 { NULL
, NULL
}, /* Tn */
281 { NULL
, NULL
}, /* Ux */
282 { NULL
, NULL
}, /* Xc */
283 { NULL
, NULL
}, /* Xo */
284 { NULL
, posts_fo
}, /* Fo */
285 { NULL
, NULL
}, /* Fc */
286 { NULL
, NULL
}, /* Oo */
287 { NULL
, NULL
}, /* Oc */
288 { NULL
, posts_bk
}, /* Bk */
289 { NULL
, NULL
}, /* Ek */
290 { NULL
, posts_eoln
}, /* Bt */
291 { NULL
, NULL
}, /* Hf */
292 { pres_obsolete
, NULL
}, /* Fr */
293 { NULL
, posts_eoln
}, /* Ud */
294 { NULL
, posts_lb
}, /* Lb */
295 { pres_pp
, posts_pp
}, /* Lp */
296 { NULL
, NULL
}, /* Lk */
297 { NULL
, posts_defaults
}, /* Mt */
298 { NULL
, NULL
}, /* Brq */
299 { NULL
, NULL
}, /* Bro */
300 { NULL
, NULL
}, /* Brc */
301 { NULL
, posts_text
}, /* %C */
302 { pres_obsolete
, posts_es
}, /* Es */
303 { pres_obsolete
, posts_en
}, /* En */
304 { NULL
, NULL
}, /* Dx */
305 { NULL
, posts_text
}, /* %Q */
306 { NULL
, posts_pp
}, /* br */
307 { NULL
, posts_sp
}, /* sp */
308 { NULL
, posts_text1
}, /* %U */
309 { NULL
, NULL
}, /* Ta */
310 { NULL
, NULL
}, /* ll */
313 #define RSORD_MAX 14 /* Number of `Rs' blocks. */
315 static const enum mdoct rsord
[RSORD_MAX
] = {
332 static const char * const secnames
[SEC__MAX
] = {
339 "IMPLEMENTATION NOTES",
354 "SECURITY CONSIDERATIONS",
360 mdoc_valid_pre(struct mdoc
*mdoc
, struct mdoc_node
*n
)
371 check_text(mdoc
, line
, pos
, tp
);
385 if (NULL
== mdoc_valids
[n
->tok
].pre
)
387 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
388 if ( ! (*p
)(mdoc
, n
))
394 mdoc_valid_post(struct mdoc
*mdoc
)
398 if (MDOC_VALID
& mdoc
->last
->flags
)
400 mdoc
->last
->flags
|= MDOC_VALID
;
402 switch (mdoc
->last
->type
) {
410 return(post_root(mdoc
));
415 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
417 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
425 check_count(struct mdoc
*mdoc
, enum mdoc_type type
,
426 enum check_lvl lvl
, enum check_ineq ineq
, int val
)
431 if (mdoc
->last
->type
!= type
)
437 if (mdoc
->last
->nchild
< val
)
442 if (mdoc
->last
->nchild
> val
)
447 if (val
== mdoc
->last
->nchild
)
455 t
= lvl
== CHECK_WARN
? MANDOCERR_ARGCWARN
: MANDOCERR_ARGCOUNT
;
456 mandoc_vmsg(t
, mdoc
->parse
, mdoc
->last
->line
,
457 mdoc
->last
->pos
, "want %s%d children (have %d)",
458 p
, val
, mdoc
->last
->nchild
);
466 return(check_count(mdoc
, MDOC_BODY
, CHECK_ERROR
, CHECK_GT
, 0));
472 return(check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0));
478 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0));
484 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1));
490 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0));
496 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_LT
, 2));
502 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0));
508 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 1));
514 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_GT
, 0));
518 check_args(struct mdoc
*mdoc
, struct mdoc_node
*n
)
525 assert(n
->args
->argc
);
526 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
527 check_argv(mdoc
, n
, &n
->args
->argv
[i
]);
531 check_argv(struct mdoc
*mdoc
, struct mdoc_node
*n
, struct mdoc_argv
*v
)
535 for (i
= 0; i
< (int)v
->sz
; i
++)
536 check_text(mdoc
, v
->line
, v
->pos
, v
->value
[i
]);
540 check_text(struct mdoc
*mdoc
, int ln
, int pos
, char *p
)
544 if (MDOC_LITERAL
& mdoc
->flags
)
547 for (cp
= p
; NULL
!= (p
= strchr(p
, '\t')); p
++)
548 mandoc_msg(MANDOCERR_FI_TAB
, mdoc
->parse
,
549 ln
, pos
+ (int)(p
- cp
), NULL
);
553 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
557 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
558 (t
== n
->parent
->type
))
561 mandoc_vmsg(MANDOCERR_SYNTCHILD
, mdoc
->parse
,
562 n
->line
, n
->pos
, "want parent %s",
563 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]);
569 pre_display(PRE_ARGS
)
571 struct mdoc_node
*node
;
573 if (MDOC_BLOCK
!= n
->type
)
576 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
577 if (MDOC_BLOCK
== node
->type
)
578 if (MDOC_Bd
== node
->tok
)
582 mandoc_vmsg(MANDOCERR_BD_NEST
,
583 mdoc
->parse
, n
->line
, n
->pos
,
584 "%s in Bd", mdoc_macronames
[n
->tok
]);
592 struct mdoc_node
*np
;
593 struct mdoc_argv
*argv
;
597 if (MDOC_BLOCK
!= n
->type
) {
598 if (ENDBODY_NOT
!= n
->end
) {
600 np
= n
->pending
->parent
;
605 assert(MDOC_BLOCK
== np
->type
);
606 assert(MDOC_Bl
== np
->tok
);
611 * First figure out which kind of list to use: bind ourselves to
612 * the first mentioned list type and warn about any remaining
613 * ones. If we find no list type, we default to LIST_item.
616 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
617 argv
= n
->args
->argv
+ i
;
620 /* Set list types. */
654 /* Set list arguments. */
656 if (n
->norm
->Bl
.comp
)
657 mandoc_msg(MANDOCERR_ARG_REP
,
658 mdoc
->parse
, argv
->line
,
659 argv
->pos
, "Bl -compact");
660 n
->norm
->Bl
.comp
= 1;
664 mandoc_msg(MANDOCERR_ARG_EMPTY
,
665 mdoc
->parse
, argv
->line
,
666 argv
->pos
, "Bl -width");
667 n
->norm
->Bl
.width
= "0n";
670 if (NULL
!= n
->norm
->Bl
.width
)
671 mandoc_vmsg(MANDOCERR_ARG_REP
,
672 mdoc
->parse
, argv
->line
,
673 argv
->pos
, "Bl -width %s",
675 n
->norm
->Bl
.width
= argv
->value
[0];
679 mandoc_msg(MANDOCERR_ARG_EMPTY
,
680 mdoc
->parse
, argv
->line
,
681 argv
->pos
, "Bl -offset");
684 if (NULL
!= n
->norm
->Bl
.offs
)
685 mandoc_vmsg(MANDOCERR_ARG_REP
,
686 mdoc
->parse
, argv
->line
,
687 argv
->pos
, "Bl -offset %s",
689 n
->norm
->Bl
.offs
= argv
->value
[0];
694 if (LIST__NONE
== lt
)
697 /* Check: multiple list types. */
699 if (LIST__NONE
!= n
->norm
->Bl
.type
) {
700 mandoc_msg(MANDOCERR_BL_REP
,
701 mdoc
->parse
, n
->line
, n
->pos
,
702 mdoc_argnames
[argv
->arg
]);
706 /* The list type should come first. */
708 if (n
->norm
->Bl
.width
||
711 mandoc_msg(MANDOCERR_BL_LATETYPE
,
712 mdoc
->parse
, n
->line
, n
->pos
,
713 mdoc_argnames
[n
->args
->argv
[0].arg
]);
715 n
->norm
->Bl
.type
= lt
;
716 if (LIST_column
== lt
) {
717 n
->norm
->Bl
.ncols
= argv
->sz
;
718 n
->norm
->Bl
.cols
= (void *)argv
->value
;
722 /* Allow lists to default to LIST_item. */
724 if (LIST__NONE
== n
->norm
->Bl
.type
) {
725 mdoc_nmsg(mdoc
, n
, MANDOCERR_BL_NOTYPE
);
726 n
->norm
->Bl
.type
= LIST_item
;
730 * Validate the width field. Some list types don't need width
731 * types and should be warned about them. Others should have it
732 * and must also be warned. Yet others have a default and need
736 switch (n
->norm
->Bl
.type
) {
738 if (NULL
== n
->norm
->Bl
.width
)
739 mdoc_nmsg(mdoc
, n
, MANDOCERR_BL_NOWIDTH
);
750 if (n
->norm
->Bl
.width
)
751 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
758 if (NULL
== n
->norm
->Bl
.width
)
759 n
->norm
->Bl
.width
= "2n";
762 if (NULL
== n
->norm
->Bl
.width
)
763 n
->norm
->Bl
.width
= "3n";
775 struct mdoc_node
*np
;
776 struct mdoc_argv
*argv
;
780 if (MDOC_BLOCK
!= n
->type
) {
781 if (ENDBODY_NOT
!= n
->end
) {
783 np
= n
->pending
->parent
;
788 assert(MDOC_BLOCK
== np
->type
);
789 assert(MDOC_Bd
== np
->tok
);
793 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
794 argv
= n
->args
->argv
+ i
;
814 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADDISP
);
818 mandoc_msg(MANDOCERR_ARG_EMPTY
,
819 mdoc
->parse
, argv
->line
,
820 argv
->pos
, "Bd -offset");
823 if (NULL
!= n
->norm
->Bd
.offs
)
824 mandoc_vmsg(MANDOCERR_ARG_REP
,
825 mdoc
->parse
, argv
->line
,
826 argv
->pos
, "Bd -offset %s",
828 n
->norm
->Bd
.offs
= argv
->value
[0];
831 if (n
->norm
->Bd
.comp
)
832 mandoc_msg(MANDOCERR_ARG_REP
,
833 mdoc
->parse
, argv
->line
,
834 argv
->pos
, "Bd -compact");
835 n
->norm
->Bd
.comp
= 1;
841 if (DISP__NONE
== dt
)
844 if (DISP__NONE
== n
->norm
->Bd
.type
)
845 n
->norm
->Bd
.type
= dt
;
847 mandoc_msg(MANDOCERR_BD_REP
,
848 mdoc
->parse
, n
->line
, n
->pos
,
849 mdoc_argnames
[argv
->arg
]);
852 if (DISP__NONE
== n
->norm
->Bd
.type
) {
853 mdoc_nmsg(mdoc
, n
, MANDOCERR_BD_NOTYPE
);
854 n
->norm
->Bd
.type
= DISP_ragged
;
864 if (MDOC_BLOCK
!= n
->type
)
866 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
873 if (MDOC_BLOCK
!= n
->type
)
875 return(check_parent(mdoc
, n
, MDOC_MAX
, MDOC_ROOT
));
882 if (MDOC_BLOCK
!= n
->type
)
885 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
896 for (i
= 1; i
< (int)n
->args
->argc
; i
++)
897 mdoc_pmsg(mdoc
, n
->args
->argv
[i
].line
,
898 n
->args
->argv
[i
].pos
, MANDOCERR_IGNARGV
);
900 if (MDOC_Split
== n
->args
->argv
[0].arg
)
901 n
->norm
->An
.auth
= AUTH_split
;
902 else if (MDOC_Nosplit
== n
->args
->argv
[0].arg
)
903 n
->norm
->An
.auth
= AUTH_nosplit
;
914 if (n
->args
&& 1 == n
->args
->argc
)
915 if (MDOC_Std
== n
->args
->argv
[0].arg
)
918 mandoc_msg(MANDOCERR_ARG_STD
, mdoc
->parse
,
919 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
924 pre_obsolete(PRE_ARGS
)
927 if (MDOC_ELEM
== n
->type
|| MDOC_BLOCK
== n
->type
)
928 mandoc_msg(MANDOCERR_MACRO_OBS
, mdoc
->parse
,
929 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
937 if (NULL
== mdoc
->meta
.date
|| mdoc
->meta
.os
)
938 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
939 n
->line
, n
->pos
, "Dt");
941 if (mdoc
->meta
.title
)
942 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
943 n
->line
, n
->pos
, "Dt");
952 if (NULL
== mdoc
->meta
.title
|| NULL
== mdoc
->meta
.date
)
953 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
954 n
->line
, n
->pos
, "Os");
957 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
958 n
->line
, n
->pos
, "Os");
967 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
968 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
969 n
->line
, n
->pos
, "Dd");
972 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
973 n
->line
, n
->pos
, "Dd");
981 struct mdoc_node
*np
, *nch
;
985 * Unlike other data pointers, these are "housed" by the HEAD
986 * element, which contains the goods.
989 if (MDOC_HEAD
!= mdoc
->last
->type
) {
990 if (ENDBODY_NOT
!= mdoc
->last
->end
) {
991 assert(mdoc
->last
->pending
);
992 np
= mdoc
->last
->pending
->parent
->head
;
993 } else if (MDOC_BLOCK
!= mdoc
->last
->type
) {
994 np
= mdoc
->last
->parent
->head
;
996 np
= mdoc
->last
->head
;
999 assert(MDOC_HEAD
== np
->type
);
1000 assert(MDOC_Bf
== np
->tok
);
1005 assert(MDOC_BLOCK
== np
->parent
->type
);
1006 assert(MDOC_Bf
== np
->parent
->tok
);
1008 /* Check the number of arguments. */
1011 if (NULL
== np
->parent
->args
) {
1013 mdoc_nmsg(mdoc
, np
, MANDOCERR_BF_NOFONT
);
1019 mandoc_vmsg(MANDOCERR_ARG_EXCESS
, mdoc
->parse
,
1020 nch
->line
, nch
->pos
, "Bf ... %s", nch
->string
);
1022 /* Extract argument into data. */
1024 if (np
->parent
->args
) {
1025 arg
= np
->parent
->args
->argv
[0].arg
;
1026 if (MDOC_Emphasis
== arg
)
1027 np
->norm
->Bf
.font
= FONT_Em
;
1028 else if (MDOC_Literal
== arg
)
1029 np
->norm
->Bf
.font
= FONT_Li
;
1030 else if (MDOC_Symbolic
== arg
)
1031 np
->norm
->Bf
.font
= FONT_Sy
;
1037 /* Extract parameter into data. */
1039 if (0 == strcmp(np
->child
->string
, "Em"))
1040 np
->norm
->Bf
.font
= FONT_Em
;
1041 else if (0 == strcmp(np
->child
->string
, "Li"))
1042 np
->norm
->Bf
.font
= FONT_Li
;
1043 else if (0 == strcmp(np
->child
->string
, "Sy"))
1044 np
->norm
->Bf
.font
= FONT_Sy
;
1046 mandoc_vmsg(MANDOCERR_BF_BADFONT
, mdoc
->parse
,
1047 np
->child
->line
, np
->child
->pos
,
1048 "Bf %s", np
->child
->string
);
1056 struct mdoc_node
*n
;
1057 const char *stdlibname
;
1060 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1);
1062 n
= mdoc
->last
->child
;
1065 assert(MDOC_TEXT
== n
->type
);
1067 if (NULL
== (stdlibname
= mdoc_a2lib(n
->string
)))
1068 mandoc_asprintf(&libname
,
1069 "library \\(lq%s\\(rq", n
->string
);
1071 libname
= mandoc_strdup(stdlibname
);
1074 n
->string
= libname
;
1079 post_eoln(POST_ARGS
)
1081 const struct mdoc_node
*n
;
1085 mandoc_vmsg(MANDOCERR_ARG_SKIP
,
1086 mdoc
->parse
, n
->line
, n
->pos
,
1087 "%s %s", mdoc_macronames
[n
->tok
],
1095 const struct mdoc_node
*n
;
1098 * The Vt macro comes in both ELEM and BLOCK form, both of which
1099 * have different syntaxes (yet more context-sensitive
1100 * behaviour). ELEM types must have a child, which is already
1101 * guaranteed by the in_line parsing routine; BLOCK types,
1102 * specifically the BODY, should only have TEXT children.
1105 if (MDOC_BODY
!= mdoc
->last
->type
)
1108 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
1109 if (MDOC_TEXT
!= n
->type
)
1110 mandoc_msg(MANDOCERR_VT_CHILD
, mdoc
->parse
,
1111 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1120 if (NULL
!= mdoc
->meta
.name
)
1123 mdoc_deroff(&mdoc
->meta
.name
, mdoc
->last
);
1125 if (NULL
== mdoc
->meta
.name
)
1126 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NM_NONAME
);
1131 post_literal(POST_ARGS
)
1135 * The `Dl' (note "el" not "one") and `Bd' macros unset the
1136 * MDOC_LITERAL flag as they leave. Note that `Bd' only sets
1137 * this in literal mode, but it doesn't hurt to just switch it
1138 * off in general since displays can't be nested.
1141 if (MDOC_BODY
== mdoc
->last
->type
)
1142 mdoc
->flags
&= ~MDOC_LITERAL
;
1148 post_defaults(POST_ARGS
)
1150 struct mdoc_node
*nn
;
1153 * The `Ar' defaults to "file ..." if no value is provided as an
1154 * argument; the `Mt' and `Pa' macros use "~"; the `Li' just
1155 * gets an empty string.
1158 if (mdoc
->last
->child
)
1162 mdoc
->next
= MDOC_NEXT_CHILD
;
1166 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "file"))
1168 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "..."))
1172 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "AT&T"))
1174 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "UNIX"))
1178 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, ""))
1184 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "~"))
1199 struct mdoc_node
*n
;
1200 const char *std_att
;
1204 * If we have a child, look it up in the standard keys. If a
1205 * key exist, use that instead of the child; if it doesn't,
1206 * prefix "AT&T UNIX " to the existing data.
1209 if (NULL
== (n
= mdoc
->last
->child
))
1212 assert(MDOC_TEXT
== n
->type
);
1213 if (NULL
== (std_att
= mdoc_a2att(n
->string
))) {
1214 mandoc_msg(MANDOCERR_AT_BAD
, mdoc
->parse
,
1215 n
->line
, n
->pos
, n
->string
);
1216 mandoc_asprintf(&att
, "AT&T UNIX %s", n
->string
);
1218 att
= mandoc_strdup(std_att
);
1228 struct mdoc_node
*np
;
1231 if (AUTH__NONE
== np
->norm
->An
.auth
) {
1233 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0);
1234 } else if (np
->child
)
1235 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0);
1244 if (MDOC_BLOCK
== mdoc
->last
->type
)
1245 mdoc
->last
->norm
->Es
= mdoc
->last_es
;
1253 mdoc
->last_es
= mdoc
->last
;
1262 struct mdoc_node
*nbl
, *nit
, *nch
;
1266 if (MDOC_BLOCK
!= nit
->type
)
1269 nbl
= nit
->parent
->parent
;
1270 lt
= nbl
->norm
->Bl
.type
;
1282 if (NULL
== nit
->head
->child
)
1283 mandoc_msg(MANDOCERR_IT_NOHEAD
,
1284 mdoc
->parse
, nit
->line
, nit
->pos
,
1285 mdoc_argnames
[nbl
->args
->argv
[0].arg
]);
1294 if (NULL
== nit
->body
->child
)
1295 mandoc_msg(MANDOCERR_IT_NOBODY
,
1296 mdoc
->parse
, nit
->line
, nit
->pos
,
1297 mdoc_argnames
[nbl
->args
->argv
[0].arg
]);
1300 if (NULL
!= nit
->head
->child
)
1301 mandoc_vmsg(MANDOCERR_ARG_SKIP
,
1302 mdoc
->parse
, nit
->line
, nit
->pos
,
1303 "It %s", nit
->head
->child
->string
);
1306 cols
= (int)nbl
->norm
->Bl
.ncols
;
1308 assert(NULL
== nit
->head
->child
);
1310 for (i
= 0, nch
= nit
->child
; nch
; nch
= nch
->next
)
1311 if (MDOC_BODY
== nch
->type
)
1315 er
= MANDOCERR_ARGCOUNT
;
1316 else if (i
== cols
|| i
== cols
+ 1)
1319 er
= MANDOCERR_SYNTARGCOUNT
;
1321 mandoc_vmsg(er
, mdoc
->parse
, nit
->line
, nit
->pos
,
1322 "columns == %d (have %d)", cols
, i
);
1323 return(MANDOCERR_ARGCOUNT
== er
);
1332 post_bl_block(POST_ARGS
)
1334 struct mdoc_node
*n
, *ni
, *nc
;
1337 * These are fairly complicated, so we've broken them into two
1338 * functions. post_bl_block_tag() is called when a -tag is
1339 * specified, but no -width (it must be guessed). The second
1340 * when a -width is specified (macro indicators must be
1341 * rewritten into real lengths).
1346 if (LIST_tag
== n
->norm
->Bl
.type
&&
1347 NULL
== n
->norm
->Bl
.width
) {
1348 if ( ! post_bl_block_tag(mdoc
))
1350 assert(n
->norm
->Bl
.width
);
1351 } else if (NULL
!= n
->norm
->Bl
.width
) {
1352 if ( ! post_bl_block_width(mdoc
))
1354 assert(n
->norm
->Bl
.width
);
1357 for (ni
= n
->body
->child
; ni
; ni
= ni
->next
) {
1358 if (NULL
== ni
->body
)
1360 nc
= ni
->body
->last
;
1361 while (NULL
!= nc
) {
1373 if (NULL
== ni
->next
) {
1374 mandoc_msg(MANDOCERR_PAR_MOVE
,
1375 mdoc
->parse
, nc
->line
, nc
->pos
,
1376 mdoc_macronames
[nc
->tok
]);
1377 if ( ! mdoc_node_relink(mdoc
, nc
))
1379 } else if (0 == n
->norm
->Bl
.comp
&&
1380 LIST_column
!= n
->norm
->Bl
.type
) {
1381 mandoc_vmsg(MANDOCERR_PAR_SKIP
,
1382 mdoc
->parse
, nc
->line
, nc
->pos
,
1384 mdoc_macronames
[nc
->tok
]);
1385 mdoc_node_delete(mdoc
, nc
);
1388 nc
= ni
->body
->last
;
1395 post_bl_block_width(POST_ARGS
)
1400 struct mdoc_node
*n
;
1406 * Calculate the real width of a list from the -width string,
1407 * which may contain a macro (with a known default width), a
1408 * literal string, or a scaling width.
1410 * If the value to -width is a macro, then we re-write it to be
1411 * the macro's width as set in share/tmac/mdoc/doc-common.
1414 if (0 == strcmp(n
->norm
->Bl
.width
, "Ds"))
1416 else if (MDOC_MAX
== (tok
= mdoc_hash_find(n
->norm
->Bl
.width
)))
1419 width
= macro2len(tok
);
1421 /* The value already exists: free and reallocate it. */
1425 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
1426 if (MDOC_Width
== n
->args
->argv
[i
].arg
)
1429 assert(i
< (int)n
->args
->argc
);
1431 (void)snprintf(buf
, sizeof(buf
), "%un", (unsigned int)width
);
1432 free(n
->args
->argv
[i
].value
[0]);
1433 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1435 /* Set our width! */
1436 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1441 post_bl_block_tag(POST_ARGS
)
1443 struct mdoc_node
*n
, *nn
;
1449 * Calculate the -width for a `Bl -tag' list if it hasn't been
1450 * provided. Uses the first head macro. NOTE AGAIN: this is
1451 * ONLY if the -width argument has NOT been provided. See
1452 * post_bl_block_width() for converting the -width string.
1458 for (nn
= n
->body
->child
; nn
; nn
= nn
->next
) {
1459 if (MDOC_It
!= nn
->tok
)
1462 assert(MDOC_BLOCK
== nn
->type
);
1463 nn
= nn
->head
->child
;
1468 if (MDOC_TEXT
== nn
->type
) {
1469 sz
= strlen(nn
->string
) + 1;
1473 if (0 != (ssz
= macro2len(nn
->tok
)))
1479 /* Defaults to ten ens. */
1481 (void)snprintf(buf
, sizeof(buf
), "%un", (unsigned int)sz
);
1484 * We have to dynamically add this to the macro's argument list.
1485 * We're guaranteed that a MDOC_Width doesn't already exist.
1489 i
= (int)(n
->args
->argc
)++;
1491 n
->args
->argv
= mandoc_reallocarray(n
->args
->argv
,
1492 n
->args
->argc
, sizeof(struct mdoc_argv
));
1494 n
->args
->argv
[i
].arg
= MDOC_Width
;
1495 n
->args
->argv
[i
].line
= n
->line
;
1496 n
->args
->argv
[i
].pos
= n
->pos
;
1497 n
->args
->argv
[i
].sz
= 1;
1498 n
->args
->argv
[i
].value
= mandoc_malloc(sizeof(char *));
1499 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1501 /* Set our width! */
1502 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1507 post_bl_head(POST_ARGS
)
1509 struct mdoc_node
*np
, *nn
, *nnp
;
1512 if (LIST_column
!= mdoc
->last
->norm
->Bl
.type
)
1513 /* FIXME: this should be ERROR class... */
1514 return(hwarn_eq0(mdoc
));
1517 * Convert old-style lists, where the column width specifiers
1518 * trail as macro parameters, to the new-style ("normal-form")
1519 * lists where they're argument values following -column.
1522 /* First, disallow both types and allow normal-form. */
1525 * TODO: technically, we can accept both and just merge the two
1526 * lists, but I'll leave that for another day.
1529 if (mdoc
->last
->norm
->Bl
.ncols
&& mdoc
->last
->nchild
) {
1530 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_COLUMNS
);
1532 } else if (NULL
== mdoc
->last
->child
)
1535 np
= mdoc
->last
->parent
;
1538 for (j
= 0; j
< (int)np
->args
->argc
; j
++)
1539 if (MDOC_Column
== np
->args
->argv
[j
].arg
)
1542 assert(j
< (int)np
->args
->argc
);
1543 assert(0 == np
->args
->argv
[j
].sz
);
1546 * Accommodate for new-style groff column syntax. Shuffle the
1547 * child nodes, all of which must be TEXT, as arguments for the
1548 * column field. Then, delete the head children.
1551 np
->args
->argv
[j
].sz
= (size_t)mdoc
->last
->nchild
;
1552 np
->args
->argv
[j
].value
= mandoc_reallocarray(NULL
,
1553 (size_t)mdoc
->last
->nchild
, sizeof(char *));
1555 mdoc
->last
->norm
->Bl
.ncols
= np
->args
->argv
[j
].sz
;
1556 mdoc
->last
->norm
->Bl
.cols
= (void *)np
->args
->argv
[j
].value
;
1558 for (i
= 0, nn
= mdoc
->last
->child
; nn
; i
++) {
1559 np
->args
->argv
[j
].value
[i
] = nn
->string
;
1563 mdoc_node_delete(NULL
, nnp
);
1566 mdoc
->last
->nchild
= 0;
1567 mdoc
->last
->child
= NULL
;
1575 struct mdoc_node
*nparent
, *nprev
; /* of the Bl block */
1576 struct mdoc_node
*nblock
, *nbody
; /* of the Bl */
1577 struct mdoc_node
*nchild
, *nnext
; /* of the Bl body */
1580 switch (nbody
->type
) {
1582 return(post_bl_block(mdoc
));
1584 return(post_bl_head(mdoc
));
1591 nchild
= nbody
->child
;
1592 while (NULL
!= nchild
) {
1593 if (MDOC_It
== nchild
->tok
|| MDOC_Sm
== nchild
->tok
) {
1594 nchild
= nchild
->next
;
1598 mandoc_msg(MANDOCERR_BL_MOVE
, mdoc
->parse
,
1599 nchild
->line
, nchild
->pos
,
1600 mdoc_macronames
[nchild
->tok
]);
1603 * Move the node out of the Bl block.
1604 * First, collect all required node pointers.
1607 nblock
= nbody
->parent
;
1608 nprev
= nblock
->prev
;
1609 nparent
= nblock
->parent
;
1610 nnext
= nchild
->next
;
1613 * Unlink this child.
1616 assert(NULL
== nchild
->prev
);
1617 if (0 == --nbody
->nchild
) {
1618 nbody
->child
= NULL
;
1620 assert(NULL
== nnext
);
1622 nbody
->child
= nnext
;
1627 * Relink this child.
1630 nchild
->parent
= nparent
;
1631 nchild
->prev
= nprev
;
1632 nchild
->next
= nblock
;
1634 nblock
->prev
= nchild
;
1637 nparent
->child
= nchild
;
1639 nprev
->next
= nchild
;
1648 ebool(struct mdoc
*mdoc
)
1650 struct mdoc_node
*nch
;
1653 tok
= mdoc
->last
->tok
;
1654 nch
= mdoc
->last
->child
;
1658 mdoc
->flags
^= MDOC_SMOFF
;
1662 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_LT
, 2);
1664 assert(MDOC_TEXT
== nch
->type
);
1666 if (0 == strcmp(nch
->string
, "on")) {
1668 mdoc
->flags
&= ~MDOC_SMOFF
;
1671 if (0 == strcmp(nch
->string
, "off")) {
1673 mdoc
->flags
|= MDOC_SMOFF
;
1677 mandoc_vmsg(MANDOCERR_SM_BAD
,
1678 mdoc
->parse
, nch
->line
, nch
->pos
,
1679 "%s %s", mdoc_macronames
[tok
], nch
->string
);
1680 return(mdoc_node_relink(mdoc
, nch
));
1684 post_root(POST_ARGS
)
1687 struct mdoc_node
*n
;
1691 /* Check that we have a finished prologue. */
1693 if ( ! (MDOC_PBODY
& mdoc
->flags
)) {
1695 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCPROLOG
);
1701 /* Check that we begin with a proper `Sh'. */
1703 if (NULL
== n
->child
)
1704 mdoc_nmsg(mdoc
, n
, MANDOCERR_DOC_EMPTY
);
1705 else if (MDOC_Sh
!= n
->child
->tok
)
1706 mandoc_msg(MANDOCERR_SEC_BEFORE
, mdoc
->parse
,
1707 n
->child
->line
, n
->child
->pos
,
1708 mdoc_macronames
[n
->child
->tok
]);
1716 struct mdoc_node
*n
, *nch
;
1723 mandoc_msg(MANDOCERR_MACRO_EMPTY
, mdoc
->parse
,
1724 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1725 mdoc_node_delete(mdoc
, n
);
1729 assert(MDOC_TEXT
== nch
->type
);
1731 if (NULL
== (p
= mdoc_a2st(nch
->string
))) {
1732 mandoc_msg(MANDOCERR_ST_BAD
, mdoc
->parse
,
1733 nch
->line
, nch
->pos
, nch
->string
);
1734 mdoc_node_delete(mdoc
, n
);
1737 nch
->string
= mandoc_strdup(p
);
1746 struct mdoc_node
*nn
, *next
, *prev
;
1749 switch (mdoc
->last
->type
) {
1751 check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0);
1754 if (mdoc
->last
->child
)
1756 check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0);
1763 * The full `Rs' block needs special handling to order the
1764 * sub-elements according to `rsord'. Pick through each element
1765 * and correctly order it. This is an insertion sort.
1769 for (nn
= mdoc
->last
->child
->next
; nn
; nn
= next
) {
1770 /* Determine order of `nn'. */
1771 for (i
= 0; i
< RSORD_MAX
; i
++)
1772 if (rsord
[i
] == nn
->tok
)
1775 if (i
== RSORD_MAX
) {
1776 mandoc_msg(MANDOCERR_RS_BAD
,
1777 mdoc
->parse
, nn
->line
, nn
->pos
,
1778 mdoc_macronames
[nn
->tok
]);
1780 } else if (MDOC__J
== nn
->tok
|| MDOC__B
== nn
->tok
)
1781 mdoc
->last
->norm
->Rs
.quote_T
++;
1784 * Remove `nn' from the chain. This somewhat
1785 * repeats mdoc_node_unlink(), but since we're
1786 * just re-ordering, there's no need for the
1787 * full unlink process.
1790 if (NULL
!= (next
= nn
->next
))
1791 next
->prev
= nn
->prev
;
1793 if (NULL
!= (prev
= nn
->prev
))
1794 prev
->next
= nn
->next
;
1796 nn
->prev
= nn
->next
= NULL
;
1799 * Scan back until we reach a node that's
1800 * ordered before `nn'.
1803 for ( ; prev
; prev
= prev
->prev
) {
1804 /* Determine order of `prev'. */
1805 for (j
= 0; j
< RSORD_MAX
; j
++)
1806 if (rsord
[j
] == prev
->tok
)
1816 * Set `nn' back into its correct place in front
1817 * of the `prev' node.
1824 prev
->next
->prev
= nn
;
1825 nn
->next
= prev
->next
;
1828 mdoc
->last
->child
->prev
= nn
;
1829 nn
->next
= mdoc
->last
->child
;
1830 mdoc
->last
->child
= nn
;
1838 * For some arguments of some macros,
1839 * convert all breakable hyphens into ASCII_HYPH.
1842 post_hyph(POST_ARGS
)
1844 struct mdoc_node
*n
, *nch
;
1850 if (MDOC_Sh
== n
->tok
|| MDOC_Ss
== n
->tok
)
1854 if (MDOC_D1
== n
->tok
|| MDOC_Nd
== n
->tok
)
1863 for (nch
= n
->child
; nch
; nch
= nch
->next
) {
1864 if (MDOC_TEXT
!= nch
->type
)
1869 while ('\0' != *(++cp
))
1871 isalpha((unsigned char)cp
[-1]) &&
1872 isalpha((unsigned char)cp
[1]))
1882 if (MDOC_LINE
& mdoc
->last
->flags
)
1883 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NS_SKIP
);
1891 if (MDOC_HEAD
== mdoc
->last
->type
)
1892 return(post_sh_head(mdoc
));
1893 if (MDOC_BODY
== mdoc
->last
->type
)
1894 return(post_sh_body(mdoc
));
1900 post_sh_body(POST_ARGS
)
1902 struct mdoc_node
*n
;
1904 if (SEC_NAME
!= mdoc
->lastsec
)
1908 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1909 * macros (can have multiple `Nm' and one `Nd'). Note that the
1910 * children of the BODY declaration can also be "text".
1913 if (NULL
== (n
= mdoc
->last
->child
)) {
1914 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1915 mdoc
->last
->line
, mdoc
->last
->pos
, "empty");
1919 for ( ; n
&& n
->next
; n
= n
->next
) {
1920 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1922 if (MDOC_TEXT
== n
->type
)
1924 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1925 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1929 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1932 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1933 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1938 post_sh_head(POST_ARGS
)
1940 struct mdoc_node
*n
;
1941 const char *goodsec
;
1946 * Process a new section. Sections are either "named" or
1947 * "custom". Custom sections are user-defined, while named ones
1948 * follow a conventional order and may only appear in certain
1954 mdoc_deroff(&secname
, mdoc
->last
);
1955 sec
= NULL
== secname
? SEC_CUSTOM
: a2sec(secname
);
1957 /* The NAME should be first. */
1959 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1960 mandoc_msg(MANDOCERR_NAMESEC_FIRST
, mdoc
->parse
,
1961 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
1963 /* The SYNOPSIS gets special attention in other areas. */
1965 if (SEC_SYNOPSIS
== sec
) {
1966 roff_setreg(mdoc
->roff
, "nS", 1, '=');
1967 mdoc
->flags
|= MDOC_SYNOPSIS
;
1969 roff_setreg(mdoc
->roff
, "nS", 0, '=');
1970 mdoc
->flags
&= ~MDOC_SYNOPSIS
;
1973 /* Mark our last section. */
1975 mdoc
->lastsec
= sec
;
1978 * Set the section attribute for the current HEAD, for its
1979 * parent BLOCK, and for the HEAD children; the latter can
1980 * only be TEXT nodes, so no recursion is needed.
1981 * For other blocks and elements, including .Sh BODY, this is
1982 * done when allocating the node data structures, but for .Sh
1983 * BLOCK and HEAD, the section is still unknown at that time.
1986 mdoc
->last
->parent
->sec
= sec
;
1987 mdoc
->last
->sec
= sec
;
1988 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
1991 /* We don't care about custom sections after this. */
1993 if (SEC_CUSTOM
== sec
) {
1999 * Check whether our non-custom section is being repeated or is
2003 if (sec
== mdoc
->lastnamed
)
2004 mandoc_msg(MANDOCERR_SEC_REP
, mdoc
->parse
,
2005 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
2007 if (sec
< mdoc
->lastnamed
)
2008 mandoc_msg(MANDOCERR_SEC_ORDER
, mdoc
->parse
,
2009 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
2011 /* Mark the last named section. */
2013 mdoc
->lastnamed
= sec
;
2015 /* Check particular section/manual conventions. */
2017 assert(mdoc
->meta
.msec
);
2022 if (*mdoc
->meta
.msec
== '4')
2024 goodsec
= "2, 3, 4, 9";
2026 case SEC_RETURN_VALUES
:
2029 if (*mdoc
->meta
.msec
== '2')
2031 if (*mdoc
->meta
.msec
== '3')
2033 if (NULL
== goodsec
)
2034 goodsec
= "2, 3, 9";
2037 if (*mdoc
->meta
.msec
== '9')
2039 if (NULL
== goodsec
)
2041 mandoc_vmsg(MANDOCERR_SEC_MSEC
, mdoc
->parse
,
2042 mdoc
->last
->line
, mdoc
->last
->pos
,
2043 "%s for %s only", secname
, goodsec
);
2054 post_ignpar(POST_ARGS
)
2056 struct mdoc_node
*np
;
2058 if (MDOC_BODY
!= mdoc
->last
->type
)
2061 if (NULL
!= (np
= mdoc
->last
->child
))
2062 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2063 mandoc_vmsg(MANDOCERR_PAR_SKIP
,
2064 mdoc
->parse
, np
->line
, np
->pos
,
2065 "%s after %s", mdoc_macronames
[np
->tok
],
2066 mdoc_macronames
[mdoc
->last
->tok
]);
2067 mdoc_node_delete(mdoc
, np
);
2070 if (NULL
!= (np
= mdoc
->last
->last
))
2071 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2072 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2073 np
->line
, np
->pos
, "%s at the end of %s",
2074 mdoc_macronames
[np
->tok
],
2075 mdoc_macronames
[mdoc
->last
->tok
]);
2076 mdoc_node_delete(mdoc
, np
);
2086 if (NULL
== mdoc
->last
)
2088 if (MDOC_ELEM
!= n
->type
&& MDOC_BLOCK
!= n
->type
)
2092 * Don't allow prior `Lp' or `Pp' prior to a paragraph-type
2093 * block: `Lp', `Pp', or non-compact `Bd' or `Bl'.
2096 if (MDOC_Pp
!= mdoc
->last
->tok
&&
2097 MDOC_Lp
!= mdoc
->last
->tok
&&
2098 MDOC_br
!= mdoc
->last
->tok
)
2100 if (MDOC_Bl
== n
->tok
&& n
->norm
->Bl
.comp
)
2102 if (MDOC_Bd
== n
->tok
&& n
->norm
->Bd
.comp
)
2104 if (MDOC_It
== n
->tok
&& n
->parent
->norm
->Bl
.comp
)
2107 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2108 mdoc
->last
->line
, mdoc
->last
->pos
,
2109 "%s before %s", mdoc_macronames
[mdoc
->last
->tok
],
2110 mdoc_macronames
[n
->tok
]);
2111 mdoc_node_delete(mdoc
, mdoc
->last
);
2118 struct mdoc_node
*np
;
2120 if (MDOC_ELEM
!= mdoc
->last
->type
&&
2121 MDOC_BLOCK
!= mdoc
->last
->type
)
2124 if (NULL
== (np
= mdoc
->last
->prev
)) {
2125 np
= mdoc
->last
->parent
;
2126 if (MDOC_Sh
!= np
->tok
&& MDOC_Ss
!= np
->tok
)
2129 if (MDOC_Pp
!= np
->tok
&& MDOC_Lp
!= np
->tok
&&
2130 (MDOC_br
!= mdoc
->last
->tok
||
2131 (MDOC_sp
!= np
->tok
&& MDOC_br
!= np
->tok
)))
2135 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2136 mdoc
->last
->line
, mdoc
->last
->pos
,
2137 "%s after %s", mdoc_macronames
[mdoc
->last
->tok
],
2138 mdoc_macronames
[np
->tok
]);
2139 mdoc_node_delete(mdoc
, mdoc
->last
);
2144 pre_literal(PRE_ARGS
)
2147 if (MDOC_BODY
!= n
->type
)
2151 * The `Dl' (note "el" not "one") and `Bd -literal' and `Bd
2152 * -unfilled' macros set MDOC_LITERAL on entrance to the body.
2157 mdoc
->flags
|= MDOC_LITERAL
;
2160 if (DISP_literal
== n
->norm
->Bd
.type
)
2161 mdoc
->flags
|= MDOC_LITERAL
;
2162 if (DISP_unfilled
== n
->norm
->Bd
.type
)
2163 mdoc
->flags
|= MDOC_LITERAL
;
2176 struct mdoc_node
*n
;
2179 if (mdoc
->meta
.date
)
2180 free(mdoc
->meta
.date
);
2183 if (NULL
== n
->child
|| '\0' == n
->child
->string
[0]) {
2184 mdoc
->meta
.date
= mdoc
->quick
? mandoc_strdup("") :
2185 mandoc_normdate(mdoc
->parse
, NULL
, n
->line
, n
->pos
);
2190 mdoc_deroff(&datestr
, n
);
2192 mdoc
->meta
.date
= datestr
;
2194 mdoc
->meta
.date
= mandoc_normdate(mdoc
->parse
,
2195 datestr
, n
->line
, n
->pos
);
2204 struct mdoc_node
*nn
, *n
;
2210 if (mdoc
->meta
.title
)
2211 free(mdoc
->meta
.title
);
2213 free(mdoc
->meta
.vol
);
2214 if (mdoc
->meta
.arch
)
2215 free(mdoc
->meta
.arch
);
2217 mdoc
->meta
.title
= mdoc
->meta
.vol
= mdoc
->meta
.arch
= NULL
;
2219 /* First check that all characters are uppercase. */
2221 if (NULL
!= (nn
= n
->child
))
2222 for (p
= nn
->string
; *p
; p
++) {
2223 if (toupper((unsigned char)*p
) == *p
)
2225 mandoc_msg(MANDOCERR_TITLE_CASE
,
2226 mdoc
->parse
, nn
->line
,
2227 nn
->pos
+ (p
- nn
->string
),
2233 * title = unknown, volume = local, msec = 0, arch = NULL
2236 if (NULL
== (nn
= n
->child
)) {
2237 /* XXX: make these macro values. */
2238 /* FIXME: warn about missing values. */
2239 mdoc
->meta
.title
= mandoc_strdup("UNKNOWN");
2240 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2241 mdoc
->meta
.msec
= mandoc_strdup("1");
2245 /* Handles: `.Dt TITLE'
2246 * title = TITLE, volume = local, msec = 0, arch = NULL
2249 mdoc
->meta
.title
= mandoc_strdup(
2250 '\0' == nn
->string
[0] ? "UNKNOWN" : nn
->string
);
2252 if (NULL
== (nn
= nn
->next
)) {
2253 /* FIXME: warn about missing msec. */
2254 /* XXX: make this a macro value. */
2255 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2256 mdoc
->meta
.msec
= mandoc_strdup("1");
2260 /* Handles: `.Dt TITLE SEC'
2262 * volume = SEC is msec ? format(msec) : SEC,
2263 * msec = SEC is msec ? atoi(msec) : 0,
2267 cp
= mandoc_a2msec(nn
->string
);
2269 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2270 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2272 mandoc_msg(MANDOCERR_MSEC_BAD
, mdoc
->parse
,
2273 nn
->line
, nn
->pos
, nn
->string
);
2274 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2275 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2278 if (NULL
== (nn
= nn
->next
))
2281 /* Handles: `.Dt TITLE SEC VOL'
2283 * volume = VOL is vol ? format(VOL) :
2284 * VOL is arch ? format(arch) :
2288 cp
= mdoc_a2vol(nn
->string
);
2290 free(mdoc
->meta
.vol
);
2291 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2293 cp
= mdoc_a2arch(nn
->string
);
2295 mandoc_msg(MANDOCERR_ARCH_BAD
, mdoc
->parse
,
2296 nn
->line
, nn
->pos
, nn
->string
);
2297 free(mdoc
->meta
.vol
);
2298 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2300 mdoc
->meta
.arch
= mandoc_strdup(cp
);
2303 /* Ignore any subsequent parameters... */
2304 /* FIXME: warn about subsequent parameters. */
2310 post_prol(POST_ARGS
)
2313 * Remove prologue macros from the document after they're
2314 * processed. The final document uses mdoc_meta for these
2315 * values and discards the originals.
2318 mdoc_node_delete(mdoc
, mdoc
->last
);
2319 if (mdoc
->meta
.title
&& mdoc
->meta
.date
&& mdoc
->meta
.os
)
2320 mdoc
->flags
|= MDOC_PBODY
;
2328 struct mdoc_node
*n
;
2331 * Make `Bx's second argument always start with an uppercase
2332 * letter. Groff checks if it's an "accepted" term, but we just
2333 * uppercase blindly.
2336 n
= mdoc
->last
->child
;
2337 if (n
&& NULL
!= (n
= n
->next
))
2338 *n
->string
= (char)toupper((unsigned char)*n
->string
);
2347 struct utsname utsname
;
2348 static char *defbuf
;
2350 struct mdoc_node
*n
;
2355 * Set the operating system by way of the `Os' macro.
2356 * The order of precedence is:
2357 * 1. the argument of the `Os' macro, unless empty
2358 * 2. the -Ios=foo command line argument, if provided
2359 * 3. -DOSNAME="\"foo\"", if provided during compilation
2360 * 4. "sysname release" from uname(3)
2363 free(mdoc
->meta
.os
);
2364 mdoc
->meta
.os
= NULL
;
2365 mdoc_deroff(&mdoc
->meta
.os
, n
);
2370 mdoc
->meta
.os
= mandoc_strdup(mdoc
->defos
);
2375 mdoc
->meta
.os
= mandoc_strdup(OSNAME
);
2377 if (NULL
== defbuf
) {
2378 if (-1 == uname(&utsname
)) {
2379 mdoc_nmsg(mdoc
, n
, MANDOCERR_UNAME
);
2380 defbuf
= mandoc_strdup("UNKNOWN");
2382 mandoc_asprintf(&defbuf
, "%s %s",
2383 utsname
.sysname
, utsname
.release
);
2385 mdoc
->meta
.os
= mandoc_strdup(defbuf
);
2391 * If no argument is provided,
2392 * fill in the name of the current manual page.
2397 struct mdoc_node
*n
;
2404 if (mdoc
->meta
.name
== NULL
) {
2405 mdoc_nmsg(mdoc
, n
, MANDOCERR_EX_NONAME
);
2409 mdoc
->next
= MDOC_NEXT_CHILD
;
2411 if ( ! mdoc_word_alloc(mdoc
, n
->line
, n
->pos
, mdoc
->meta
.name
))
2418 static enum mdoc_sec
2419 a2sec(const char *p
)
2423 for (i
= 0; i
< (int)SEC__MAX
; i
++)
2424 if (secnames
[i
] && 0 == strcmp(p
, secnames
[i
]))
2425 return((enum mdoc_sec
)i
);
2431 macro2len(enum mdoct macro
)