]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
42302cb5f00983923c2ecf68c52731cc969927f6
1 /* $Id: mdoc_validate.c,v 1.225 2014/07/04 01:50:07 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
);
87 static int hwarn_le1(POST_ARGS
);
89 static int post_an(POST_ARGS
);
90 static int post_at(POST_ARGS
);
91 static int post_bf(POST_ARGS
);
92 static int post_bl(POST_ARGS
);
93 static int post_bl_block(POST_ARGS
);
94 static int post_bl_block_width(POST_ARGS
);
95 static int post_bl_block_tag(POST_ARGS
);
96 static int post_bl_head(POST_ARGS
);
97 static int post_bx(POST_ARGS
);
98 static int post_defaults(POST_ARGS
);
99 static int post_dd(POST_ARGS
);
100 static int post_dt(POST_ARGS
);
101 static int post_en(POST_ARGS
);
102 static int post_es(POST_ARGS
);
103 static int post_eoln(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_std(POST_ARGS
);
121 static int post_vt(POST_ARGS
);
122 static int pre_an(PRE_ARGS
);
123 static int pre_bd(PRE_ARGS
);
124 static int pre_bl(PRE_ARGS
);
125 static int pre_dd(PRE_ARGS
);
126 static int pre_display(PRE_ARGS
);
127 static int pre_dt(PRE_ARGS
);
128 static int pre_it(PRE_ARGS
);
129 static int pre_literal(PRE_ARGS
);
130 static int pre_obsolete(PRE_ARGS
);
131 static int pre_os(PRE_ARGS
);
132 static int pre_par(PRE_ARGS
);
133 static int pre_sh(PRE_ARGS
);
134 static int pre_ss(PRE_ARGS
);
135 static int pre_std(PRE_ARGS
);
137 static v_post posts_an
[] = { post_an
, NULL
};
138 static v_post posts_at
[] = { post_at
, post_defaults
, NULL
};
139 static v_post posts_bd
[] = { post_literal
, hwarn_eq0
, bwarn_ge1
, NULL
};
140 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
141 static v_post posts_bk
[] = { hwarn_eq0
, bwarn_ge1
, NULL
};
142 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
143 static v_post posts_bx
[] = { post_bx
, NULL
};
144 static v_post posts_bool
[] = { ebool
, NULL
};
145 static v_post posts_eoln
[] = { post_eoln
, NULL
};
146 static v_post posts_defaults
[] = { post_defaults
, NULL
};
147 static v_post posts_d1
[] = { bwarn_ge1
, post_hyph
, NULL
};
148 static v_post posts_dd
[] = { post_dd
, post_prol
, NULL
};
149 static v_post posts_dl
[] = { post_literal
, bwarn_ge1
, NULL
};
150 static v_post posts_dt
[] = { post_dt
, post_prol
, NULL
};
151 static v_post posts_en
[] = { post_en
, NULL
};
152 static v_post posts_es
[] = { post_es
, 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_std
[] = { post_std
, NULL
};
170 static v_post posts_text
[] = { ewarn_ge1
, NULL
};
171 static v_post posts_text1
[] = { ewarn_eq1
, NULL
};
172 static v_post posts_vt
[] = { post_vt
, NULL
};
173 static v_pre pres_an
[] = { pre_an
, NULL
};
174 static v_pre pres_bd
[] = { pre_display
, pre_bd
, pre_literal
, pre_par
, NULL
};
175 static v_pre pres_bl
[] = { pre_bl
, pre_par
, NULL
};
176 static v_pre pres_d1
[] = { pre_display
, NULL
};
177 static v_pre pres_dl
[] = { pre_literal
, pre_display
, NULL
};
178 static v_pre pres_dd
[] = { pre_dd
, NULL
};
179 static v_pre pres_dt
[] = { pre_dt
, NULL
};
180 static v_pre pres_it
[] = { pre_it
, pre_par
, NULL
};
181 static v_pre pres_obsolete
[] = { pre_obsolete
, NULL
};
182 static v_pre pres_os
[] = { pre_os
, NULL
};
183 static v_pre pres_pp
[] = { pre_par
, NULL
};
184 static v_pre pres_sh
[] = { pre_sh
, NULL
};
185 static v_pre pres_ss
[] = { pre_ss
, NULL
};
186 static v_pre pres_std
[] = { pre_std
, NULL
};
188 static const struct valids mdoc_valids
[MDOC_MAX
] = {
189 { NULL
, NULL
}, /* Ap */
190 { pres_dd
, posts_dd
}, /* Dd */
191 { pres_dt
, posts_dt
}, /* Dt */
192 { pres_os
, posts_os
}, /* Os */
193 { pres_sh
, posts_sh
}, /* Sh */
194 { pres_ss
, posts_ss
}, /* Ss */
195 { pres_pp
, posts_pp
}, /* Pp */
196 { pres_d1
, posts_d1
}, /* D1 */
197 { pres_dl
, posts_dl
}, /* Dl */
198 { pres_bd
, posts_bd
}, /* Bd */
199 { NULL
, NULL
}, /* Ed */
200 { pres_bl
, posts_bl
}, /* Bl */
201 { NULL
, NULL
}, /* El */
202 { pres_it
, posts_it
}, /* It */
203 { NULL
, NULL
}, /* Ad */
204 { pres_an
, posts_an
}, /* An */
205 { NULL
, posts_defaults
}, /* Ar */
206 { NULL
, NULL
}, /* Cd */
207 { NULL
, NULL
}, /* Cm */
208 { NULL
, NULL
}, /* Dv */
209 { NULL
, NULL
}, /* Er */
210 { NULL
, NULL
}, /* Ev */
211 { pres_std
, posts_std
}, /* Ex */
212 { NULL
, NULL
}, /* Fa */
213 { NULL
, posts_text
}, /* Fd */
214 { NULL
, NULL
}, /* Fl */
215 { NULL
, NULL
}, /* Fn */
216 { NULL
, NULL
}, /* Ft */
217 { NULL
, NULL
}, /* Ic */
218 { NULL
, posts_text1
}, /* In */
219 { NULL
, posts_defaults
}, /* Li */
220 { NULL
, posts_nd
}, /* Nd */
221 { NULL
, posts_nm
}, /* Nm */
222 { NULL
, NULL
}, /* Op */
223 { pres_obsolete
, NULL
}, /* Ot */
224 { NULL
, posts_defaults
}, /* Pa */
225 { pres_std
, posts_std
}, /* Rv */
226 { NULL
, posts_st
}, /* St */
227 { NULL
, NULL
}, /* Va */
228 { NULL
, posts_vt
}, /* Vt */
229 { NULL
, posts_text
}, /* Xr */
230 { NULL
, posts_text
}, /* %A */
231 { NULL
, posts_hyphtext
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
232 { NULL
, posts_text
}, /* %D */
233 { NULL
, posts_text
}, /* %I */
234 { NULL
, posts_text
}, /* %J */
235 { NULL
, posts_hyphtext
}, /* %N */
236 { NULL
, posts_hyphtext
}, /* %O */
237 { NULL
, posts_text
}, /* %P */
238 { NULL
, posts_hyphtext
}, /* %R */
239 { NULL
, posts_hyphtext
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
240 { NULL
, posts_text
}, /* %V */
241 { NULL
, NULL
}, /* Ac */
242 { NULL
, NULL
}, /* Ao */
243 { NULL
, NULL
}, /* Aq */
244 { NULL
, posts_at
}, /* At */
245 { NULL
, NULL
}, /* Bc */
246 { NULL
, posts_bf
}, /* Bf */
247 { NULL
, NULL
}, /* Bo */
248 { NULL
, NULL
}, /* Bq */
249 { NULL
, NULL
}, /* Bsx */
250 { NULL
, posts_bx
}, /* Bx */
251 { NULL
, posts_bool
}, /* Db */
252 { NULL
, NULL
}, /* Dc */
253 { NULL
, NULL
}, /* Do */
254 { NULL
, NULL
}, /* Dq */
255 { NULL
, NULL
}, /* Ec */
256 { NULL
, NULL
}, /* Ef */
257 { NULL
, NULL
}, /* Em */
258 { NULL
, NULL
}, /* Eo */
259 { NULL
, NULL
}, /* Fx */
260 { NULL
, NULL
}, /* Ms */
261 { NULL
, posts_notext
}, /* No */
262 { NULL
, posts_ns
}, /* Ns */
263 { NULL
, NULL
}, /* Nx */
264 { NULL
, NULL
}, /* Ox */
265 { NULL
, NULL
}, /* Pc */
266 { NULL
, posts_text1
}, /* Pf */
267 { NULL
, NULL
}, /* Po */
268 { NULL
, NULL
}, /* Pq */
269 { NULL
, NULL
}, /* Qc */
270 { NULL
, NULL
}, /* Ql */
271 { NULL
, NULL
}, /* Qo */
272 { NULL
, NULL
}, /* Qq */
273 { NULL
, NULL
}, /* Re */
274 { NULL
, posts_rs
}, /* Rs */
275 { NULL
, NULL
}, /* Sc */
276 { NULL
, NULL
}, /* So */
277 { NULL
, NULL
}, /* Sq */
278 { NULL
, posts_bool
}, /* Sm */
279 { NULL
, posts_hyph
}, /* Sx */
280 { NULL
, NULL
}, /* Sy */
281 { NULL
, NULL
}, /* Tn */
282 { NULL
, NULL
}, /* Ux */
283 { NULL
, NULL
}, /* Xc */
284 { NULL
, NULL
}, /* Xo */
285 { NULL
, posts_fo
}, /* Fo */
286 { NULL
, NULL
}, /* Fc */
287 { NULL
, NULL
}, /* Oo */
288 { NULL
, NULL
}, /* Oc */
289 { NULL
, posts_bk
}, /* Bk */
290 { NULL
, NULL
}, /* Ek */
291 { NULL
, posts_eoln
}, /* Bt */
292 { NULL
, NULL
}, /* Hf */
293 { pres_obsolete
, NULL
}, /* Fr */
294 { NULL
, posts_eoln
}, /* Ud */
295 { NULL
, posts_lb
}, /* Lb */
296 { pres_pp
, posts_pp
}, /* Lp */
297 { NULL
, NULL
}, /* Lk */
298 { NULL
, posts_defaults
}, /* Mt */
299 { NULL
, NULL
}, /* Brq */
300 { NULL
, NULL
}, /* Bro */
301 { NULL
, NULL
}, /* Brc */
302 { NULL
, posts_text
}, /* %C */
303 { pres_obsolete
, posts_es
}, /* Es */
304 { pres_obsolete
, posts_en
}, /* En */
305 { NULL
, NULL
}, /* Dx */
306 { NULL
, posts_text
}, /* %Q */
307 { NULL
, posts_pp
}, /* br */
308 { NULL
, posts_sp
}, /* sp */
309 { NULL
, posts_text1
}, /* %U */
310 { NULL
, NULL
}, /* Ta */
311 { NULL
, NULL
}, /* ll */
314 #define RSORD_MAX 14 /* Number of `Rs' blocks. */
316 static const enum mdoct rsord
[RSORD_MAX
] = {
333 static const char * const secnames
[SEC__MAX
] = {
340 "IMPLEMENTATION NOTES",
355 "SECURITY CONSIDERATIONS",
361 mdoc_valid_pre(struct mdoc
*mdoc
, struct mdoc_node
*n
)
372 check_text(mdoc
, line
, pos
, tp
);
386 if (NULL
== mdoc_valids
[n
->tok
].pre
)
388 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
389 if ( ! (*p
)(mdoc
, n
))
395 mdoc_valid_post(struct mdoc
*mdoc
)
399 if (MDOC_VALID
& mdoc
->last
->flags
)
401 mdoc
->last
->flags
|= MDOC_VALID
;
403 switch (mdoc
->last
->type
) {
411 return(post_root(mdoc
));
416 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
418 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
426 check_count(struct mdoc
*mdoc
, enum mdoc_type type
,
427 enum check_lvl lvl
, enum check_ineq ineq
, int val
)
432 if (mdoc
->last
->type
!= type
)
438 if (mdoc
->last
->nchild
< val
)
443 if (mdoc
->last
->nchild
> val
)
448 if (val
== mdoc
->last
->nchild
)
456 t
= lvl
== CHECK_WARN
? MANDOCERR_ARGCWARN
: MANDOCERR_ARGCOUNT
;
457 mandoc_vmsg(t
, mdoc
->parse
, mdoc
->last
->line
,
458 mdoc
->last
->pos
, "want %s%d children (have %d)",
459 p
, val
, mdoc
->last
->nchild
);
467 return(check_count(mdoc
, MDOC_BODY
, CHECK_ERROR
, CHECK_GT
, 0));
473 return(check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0));
479 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0));
485 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1));
491 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0));
497 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_LT
, 2));
503 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0));
509 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 1));
515 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_GT
, 0));
521 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_LT
, 2));
525 check_args(struct mdoc
*mdoc
, struct mdoc_node
*n
)
532 assert(n
->args
->argc
);
533 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
534 check_argv(mdoc
, n
, &n
->args
->argv
[i
]);
538 check_argv(struct mdoc
*mdoc
, struct mdoc_node
*n
, struct mdoc_argv
*v
)
542 for (i
= 0; i
< (int)v
->sz
; i
++)
543 check_text(mdoc
, v
->line
, v
->pos
, v
->value
[i
]);
545 /* FIXME: move to post_std(). */
547 if (MDOC_Std
== v
->arg
)
548 if ( ! (v
->sz
|| mdoc
->meta
.name
))
549 mdoc_nmsg(mdoc
, n
, MANDOCERR_NONAME
);
553 check_text(struct mdoc
*mdoc
, int ln
, int pos
, char *p
)
557 if (MDOC_LITERAL
& mdoc
->flags
)
560 for (cp
= p
; NULL
!= (p
= strchr(p
, '\t')); p
++)
561 mdoc_pmsg(mdoc
, ln
, pos
+ (int)(p
- cp
), MANDOCERR_BADTAB
);
565 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
569 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
570 (t
== n
->parent
->type
))
573 mandoc_vmsg(MANDOCERR_SYNTCHILD
, mdoc
->parse
,
574 n
->line
, n
->pos
, "want parent %s",
575 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]);
581 pre_display(PRE_ARGS
)
583 struct mdoc_node
*node
;
585 if (MDOC_BLOCK
!= n
->type
)
588 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
589 if (MDOC_BLOCK
== node
->type
)
590 if (MDOC_Bd
== node
->tok
)
594 mandoc_vmsg(MANDOCERR_BD_NEST
,
595 mdoc
->parse
, n
->line
, n
->pos
,
596 "%s in Bd", mdoc_macronames
[n
->tok
]);
605 const char *offs
, *width
;
607 struct mdoc_node
*np
;
609 if (MDOC_BLOCK
!= n
->type
) {
610 if (ENDBODY_NOT
!= n
->end
) {
612 np
= n
->pending
->parent
;
617 assert(MDOC_BLOCK
== np
->type
);
618 assert(MDOC_Bl
== np
->tok
);
623 * First figure out which kind of list to use: bind ourselves to
624 * the first mentioned list type and warn about any remaining
625 * ones. If we find no list type, we default to LIST_item.
628 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
632 switch (n
->args
->argv
[i
].arg
) {
633 /* Set list types. */
667 /* Set list arguments. */
669 dup
= n
->norm
->Bl
.comp
;
673 /* NB: this can be empty! */
674 if (n
->args
->argv
[i
].sz
) {
675 width
= n
->args
->argv
[i
].value
[0];
676 dup
= (NULL
!= n
->norm
->Bl
.width
);
679 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
682 /* NB: this can be empty! */
683 if (n
->args
->argv
[i
].sz
) {
684 offs
= n
->args
->argv
[i
].value
[0];
685 dup
= (NULL
!= n
->norm
->Bl
.offs
);
688 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
694 /* Check: duplicate auxiliary arguments. */
697 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
700 n
->norm
->Bl
.comp
= comp
;
702 n
->norm
->Bl
.offs
= offs
;
704 n
->norm
->Bl
.width
= width
;
706 /* Check: multiple list types. */
708 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
!= LIST__NONE
)
709 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTREP
);
711 /* Assign list type. */
713 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
== LIST__NONE
) {
714 n
->norm
->Bl
.type
= lt
;
715 /* Set column information, too. */
716 if (LIST_column
== lt
) {
719 n
->norm
->Bl
.cols
= (void *)
720 n
->args
->argv
[i
].value
;
724 /* The list type should come first. */
726 if (n
->norm
->Bl
.type
== LIST__NONE
)
727 if (n
->norm
->Bl
.width
||
730 mandoc_msg(MANDOCERR_BL_LATETYPE
,
731 mdoc
->parse
, n
->line
, n
->pos
,
732 mdoc_argnames
[n
->args
->argv
[0].arg
]);
736 /* Allow lists to default to LIST_item. */
738 if (LIST__NONE
== n
->norm
->Bl
.type
) {
739 mdoc_nmsg(mdoc
, n
, MANDOCERR_BL_NOTYPE
);
740 n
->norm
->Bl
.type
= LIST_item
;
744 * Validate the width field. Some list types don't need width
745 * types and should be warned about them. Others should have it
746 * and must also be warned. Yet others have a default and need
750 switch (n
->norm
->Bl
.type
) {
752 if (NULL
== n
->norm
->Bl
.width
)
753 mdoc_nmsg(mdoc
, n
, MANDOCERR_BL_WIDTH
);
764 if (n
->norm
->Bl
.width
)
765 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
772 if (NULL
== n
->norm
->Bl
.width
)
773 n
->norm
->Bl
.width
= "2n";
776 if (NULL
== n
->norm
->Bl
.width
)
777 n
->norm
->Bl
.width
= "3n";
792 struct mdoc_node
*np
;
794 if (MDOC_BLOCK
!= n
->type
) {
795 if (ENDBODY_NOT
!= n
->end
) {
797 np
= n
->pending
->parent
;
802 assert(MDOC_BLOCK
== np
->type
);
803 assert(MDOC_Bd
== np
->tok
);
807 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
812 switch (n
->args
->argv
[i
].arg
) {
829 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADDISP
);
832 /* NB: this can be empty! */
833 if (n
->args
->argv
[i
].sz
) {
834 offs
= n
->args
->argv
[i
].value
[0];
835 dup
= (NULL
!= n
->norm
->Bd
.offs
);
838 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
842 dup
= n
->norm
->Bd
.comp
;
849 /* Check whether we have duplicates. */
852 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
854 /* Make our auxiliary assignments. */
857 n
->norm
->Bd
.offs
= offs
;
859 n
->norm
->Bd
.comp
= comp
;
861 /* Check whether a type has already been assigned. */
863 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
!= DISP__NONE
)
864 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPREP
);
866 /* Make our type assignment. */
868 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
== DISP__NONE
)
869 n
->norm
->Bd
.type
= dt
;
872 if (DISP__NONE
== n
->norm
->Bd
.type
) {
873 mdoc_nmsg(mdoc
, n
, MANDOCERR_BD_NOTYPE
);
874 n
->norm
->Bd
.type
= DISP_ragged
;
884 if (MDOC_BLOCK
!= n
->type
)
886 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
893 if (MDOC_BLOCK
!= n
->type
)
895 return(check_parent(mdoc
, n
, MDOC_MAX
, MDOC_ROOT
));
902 if (MDOC_BLOCK
!= n
->type
)
905 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
916 for (i
= 1; i
< (int)n
->args
->argc
; i
++)
917 mdoc_pmsg(mdoc
, n
->args
->argv
[i
].line
,
918 n
->args
->argv
[i
].pos
, MANDOCERR_IGNARGV
);
920 if (MDOC_Split
== n
->args
->argv
[0].arg
)
921 n
->norm
->An
.auth
= AUTH_split
;
922 else if (MDOC_Nosplit
== n
->args
->argv
[0].arg
)
923 n
->norm
->An
.auth
= AUTH_nosplit
;
934 if (n
->args
&& 1 == n
->args
->argc
)
935 if (MDOC_Std
== n
->args
->argv
[0].arg
)
938 mandoc_msg(MANDOCERR_ARG_STD
, mdoc
->parse
,
939 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
944 pre_obsolete(PRE_ARGS
)
947 if (MDOC_ELEM
== n
->type
|| MDOC_BLOCK
== n
->type
)
948 mandoc_msg(MANDOCERR_MACRO_OBS
, mdoc
->parse
,
949 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
957 if (NULL
== mdoc
->meta
.date
|| mdoc
->meta
.os
)
958 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
959 n
->line
, n
->pos
, "Dt");
961 if (mdoc
->meta
.title
)
962 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
963 n
->line
, n
->pos
, "Dt");
972 if (NULL
== mdoc
->meta
.title
|| NULL
== mdoc
->meta
.date
)
973 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
974 n
->line
, n
->pos
, "Os");
977 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
978 n
->line
, n
->pos
, "Os");
987 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
988 mandoc_msg(MANDOCERR_PROLOG_ORDER
, mdoc
->parse
,
989 n
->line
, n
->pos
, "Dd");
992 mandoc_msg(MANDOCERR_PROLOG_REP
, mdoc
->parse
,
993 n
->line
, n
->pos
, "Dd");
1001 struct mdoc_node
*np
;
1005 * Unlike other data pointers, these are "housed" by the HEAD
1006 * element, which contains the goods.
1009 if (MDOC_HEAD
!= mdoc
->last
->type
) {
1010 if (ENDBODY_NOT
!= mdoc
->last
->end
) {
1011 assert(mdoc
->last
->pending
);
1012 np
= mdoc
->last
->pending
->parent
->head
;
1013 } else if (MDOC_BLOCK
!= mdoc
->last
->type
) {
1014 np
= mdoc
->last
->parent
->head
;
1016 np
= mdoc
->last
->head
;
1019 assert(MDOC_HEAD
== np
->type
);
1020 assert(MDOC_Bf
== np
->tok
);
1025 assert(MDOC_BLOCK
== np
->parent
->type
);
1026 assert(MDOC_Bf
== np
->parent
->tok
);
1029 * Cannot have both argument and parameter.
1030 * If neither is specified, let it through with a warning.
1033 if (np
->parent
->args
&& np
->child
) {
1034 mdoc_nmsg(mdoc
, np
, MANDOCERR_SYNTARGVCOUNT
);
1036 } else if (NULL
== np
->parent
->args
&& NULL
== np
->child
) {
1037 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1041 /* Extract argument into data. */
1043 if (np
->parent
->args
) {
1044 arg
= np
->parent
->args
->argv
[0].arg
;
1045 if (MDOC_Emphasis
== arg
)
1046 np
->norm
->Bf
.font
= FONT_Em
;
1047 else if (MDOC_Literal
== arg
)
1048 np
->norm
->Bf
.font
= FONT_Li
;
1049 else if (MDOC_Symbolic
== arg
)
1050 np
->norm
->Bf
.font
= FONT_Sy
;
1056 /* Extract parameter into data. */
1058 if (0 == strcmp(np
->child
->string
, "Em"))
1059 np
->norm
->Bf
.font
= FONT_Em
;
1060 else if (0 == strcmp(np
->child
->string
, "Li"))
1061 np
->norm
->Bf
.font
= FONT_Li
;
1062 else if (0 == strcmp(np
->child
->string
, "Sy"))
1063 np
->norm
->Bf
.font
= FONT_Sy
;
1065 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1073 struct mdoc_node
*n
;
1074 const char *stdlibname
;
1077 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1);
1079 n
= mdoc
->last
->child
;
1082 assert(MDOC_TEXT
== n
->type
);
1084 if (NULL
== (stdlibname
= mdoc_a2lib(n
->string
)))
1085 mandoc_asprintf(&libname
,
1086 "library \\(lq%s\\(rq", n
->string
);
1088 libname
= mandoc_strdup(stdlibname
);
1091 n
->string
= libname
;
1096 post_eoln(POST_ARGS
)
1099 if (mdoc
->last
->child
)
1100 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
);
1107 const struct mdoc_node
*n
;
1110 * The Vt macro comes in both ELEM and BLOCK form, both of which
1111 * have different syntaxes (yet more context-sensitive
1112 * behaviour). ELEM types must have a child, which is already
1113 * guaranteed by the in_line parsing routine; BLOCK types,
1114 * specifically the BODY, should only have TEXT children.
1117 if (MDOC_BODY
!= mdoc
->last
->type
)
1120 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
1121 if (MDOC_TEXT
!= n
->type
)
1122 mandoc_msg(MANDOCERR_VT_CHILD
, mdoc
->parse
,
1123 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1132 if (NULL
!= mdoc
->meta
.name
)
1135 mdoc_deroff(&mdoc
->meta
.name
, mdoc
->last
);
1137 if (NULL
== mdoc
->meta
.name
) {
1138 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NONAME
);
1139 mdoc
->meta
.name
= mandoc_strdup("UNKNOWN");
1145 post_literal(POST_ARGS
)
1149 * The `Dl' (note "el" not "one") and `Bd' macros unset the
1150 * MDOC_LITERAL flag as they leave. Note that `Bd' only sets
1151 * this in literal mode, but it doesn't hurt to just switch it
1152 * off in general since displays can't be nested.
1155 if (MDOC_BODY
== mdoc
->last
->type
)
1156 mdoc
->flags
&= ~MDOC_LITERAL
;
1162 post_defaults(POST_ARGS
)
1164 struct mdoc_node
*nn
;
1167 * The `Ar' defaults to "file ..." if no value is provided as an
1168 * argument; the `Mt' and `Pa' macros use "~"; the `Li' just
1169 * gets an empty string.
1172 if (mdoc
->last
->child
)
1176 mdoc
->next
= MDOC_NEXT_CHILD
;
1180 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "file"))
1182 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "..."))
1186 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "AT&T"))
1188 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "UNIX"))
1192 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, ""))
1198 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "~"))
1213 struct mdoc_node
*n
;
1214 const char *std_att
;
1218 * If we have a child, look it up in the standard keys. If a
1219 * key exist, use that instead of the child; if it doesn't,
1220 * prefix "AT&T UNIX " to the existing data.
1223 if (NULL
== (n
= mdoc
->last
->child
))
1226 assert(MDOC_TEXT
== n
->type
);
1227 if (NULL
== (std_att
= mdoc_a2att(n
->string
))) {
1228 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADATT
);
1229 mandoc_asprintf(&att
, "AT&T UNIX %s", n
->string
);
1231 att
= mandoc_strdup(std_att
);
1241 struct mdoc_node
*np
;
1244 if (AUTH__NONE
== np
->norm
->An
.auth
) {
1246 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0);
1247 } else if (np
->child
)
1248 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0);
1257 if (MDOC_BLOCK
== mdoc
->last
->type
)
1258 mdoc
->last
->norm
->Es
= mdoc
->last_es
;
1266 mdoc
->last_es
= mdoc
->last
;
1275 struct mdoc_node
*nbl
, *nit
, *nch
;
1279 if (MDOC_BLOCK
!= nit
->type
)
1282 nbl
= nit
->parent
->parent
;
1283 lt
= nbl
->norm
->Bl
.type
;
1295 if (NULL
== nit
->head
->child
)
1296 mandoc_msg(MANDOCERR_IT_NOHEAD
,
1297 mdoc
->parse
, nit
->line
, nit
->pos
,
1298 mdoc_argnames
[nbl
->args
->argv
[0].arg
]);
1307 if (NULL
== nit
->body
->child
)
1308 mandoc_msg(MANDOCERR_IT_NOBODY
,
1309 mdoc
->parse
, nit
->line
, nit
->pos
,
1310 mdoc_argnames
[nbl
->args
->argv
[0].arg
]);
1313 if (NULL
!= nit
->head
->child
)
1314 mdoc_nmsg(mdoc
, nit
, MANDOCERR_ARGSLOST
);
1317 cols
= (int)nbl
->norm
->Bl
.ncols
;
1319 assert(NULL
== nit
->head
->child
);
1321 for (i
= 0, nch
= nit
->child
; nch
; nch
= nch
->next
)
1322 if (MDOC_BODY
== nch
->type
)
1326 er
= MANDOCERR_ARGCOUNT
;
1327 else if (i
== cols
|| i
== cols
+ 1)
1330 er
= MANDOCERR_SYNTARGCOUNT
;
1332 mandoc_vmsg(er
, mdoc
->parse
, nit
->line
, nit
->pos
,
1333 "columns == %d (have %d)", cols
, i
);
1334 return(MANDOCERR_ARGCOUNT
== er
);
1343 post_bl_block(POST_ARGS
)
1345 struct mdoc_node
*n
, *ni
, *nc
;
1348 * These are fairly complicated, so we've broken them into two
1349 * functions. post_bl_block_tag() is called when a -tag is
1350 * specified, but no -width (it must be guessed). The second
1351 * when a -width is specified (macro indicators must be
1352 * rewritten into real lengths).
1357 if (LIST_tag
== n
->norm
->Bl
.type
&&
1358 NULL
== n
->norm
->Bl
.width
) {
1359 if ( ! post_bl_block_tag(mdoc
))
1361 assert(n
->norm
->Bl
.width
);
1362 } else if (NULL
!= n
->norm
->Bl
.width
) {
1363 if ( ! post_bl_block_width(mdoc
))
1365 assert(n
->norm
->Bl
.width
);
1368 for (ni
= n
->body
->child
; ni
; ni
= ni
->next
) {
1369 if (NULL
== ni
->body
)
1371 nc
= ni
->body
->last
;
1372 while (NULL
!= nc
) {
1384 if (NULL
== ni
->next
) {
1385 mandoc_msg(MANDOCERR_PAR_MOVE
,
1386 mdoc
->parse
, nc
->line
, nc
->pos
,
1387 mdoc_macronames
[nc
->tok
]);
1388 if ( ! mdoc_node_relink(mdoc
, nc
))
1390 } else if (0 == n
->norm
->Bl
.comp
&&
1391 LIST_column
!= n
->norm
->Bl
.type
) {
1392 mandoc_vmsg(MANDOCERR_PAR_SKIP
,
1393 mdoc
->parse
, nc
->line
, nc
->pos
,
1395 mdoc_macronames
[nc
->tok
]);
1396 mdoc_node_delete(mdoc
, nc
);
1399 nc
= ni
->body
->last
;
1406 post_bl_block_width(POST_ARGS
)
1411 struct mdoc_node
*n
;
1417 * Calculate the real width of a list from the -width string,
1418 * which may contain a macro (with a known default width), a
1419 * literal string, or a scaling width.
1421 * If the value to -width is a macro, then we re-write it to be
1422 * the macro's width as set in share/tmac/mdoc/doc-common.
1425 if (0 == strcmp(n
->norm
->Bl
.width
, "Ds"))
1427 else if (MDOC_MAX
== (tok
= mdoc_hash_find(n
->norm
->Bl
.width
)))
1429 else if (0 == (width
= macro2len(tok
))) {
1430 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADWIDTH
);
1434 /* The value already exists: free and reallocate it. */
1438 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
1439 if (MDOC_Width
== n
->args
->argv
[i
].arg
)
1442 assert(i
< (int)n
->args
->argc
);
1444 (void)snprintf(buf
, sizeof(buf
), "%un", (unsigned int)width
);
1445 free(n
->args
->argv
[i
].value
[0]);
1446 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1448 /* Set our width! */
1449 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1454 post_bl_block_tag(POST_ARGS
)
1456 struct mdoc_node
*n
, *nn
;
1462 * Calculate the -width for a `Bl -tag' list if it hasn't been
1463 * provided. Uses the first head macro. NOTE AGAIN: this is
1464 * ONLY if the -width argument has NOT been provided. See
1465 * post_bl_block_width() for converting the -width string.
1471 for (nn
= n
->body
->child
; nn
; nn
= nn
->next
) {
1472 if (MDOC_It
!= nn
->tok
)
1475 assert(MDOC_BLOCK
== nn
->type
);
1476 nn
= nn
->head
->child
;
1481 if (MDOC_TEXT
== nn
->type
) {
1482 sz
= strlen(nn
->string
) + 1;
1486 if (0 != (ssz
= macro2len(nn
->tok
)))
1492 /* Defaults to ten ens. */
1494 (void)snprintf(buf
, sizeof(buf
), "%un", (unsigned int)sz
);
1497 * We have to dynamically add this to the macro's argument list.
1498 * We're guaranteed that a MDOC_Width doesn't already exist.
1502 i
= (int)(n
->args
->argc
)++;
1504 n
->args
->argv
= mandoc_reallocarray(n
->args
->argv
,
1505 n
->args
->argc
, sizeof(struct mdoc_argv
));
1507 n
->args
->argv
[i
].arg
= MDOC_Width
;
1508 n
->args
->argv
[i
].line
= n
->line
;
1509 n
->args
->argv
[i
].pos
= n
->pos
;
1510 n
->args
->argv
[i
].sz
= 1;
1511 n
->args
->argv
[i
].value
= mandoc_malloc(sizeof(char *));
1512 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1514 /* Set our width! */
1515 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1520 post_bl_head(POST_ARGS
)
1522 struct mdoc_node
*np
, *nn
, *nnp
;
1525 if (LIST_column
!= mdoc
->last
->norm
->Bl
.type
)
1526 /* FIXME: this should be ERROR class... */
1527 return(hwarn_eq0(mdoc
));
1530 * Convert old-style lists, where the column width specifiers
1531 * trail as macro parameters, to the new-style ("normal-form")
1532 * lists where they're argument values following -column.
1535 /* First, disallow both types and allow normal-form. */
1538 * TODO: technically, we can accept both and just merge the two
1539 * lists, but I'll leave that for another day.
1542 if (mdoc
->last
->norm
->Bl
.ncols
&& mdoc
->last
->nchild
) {
1543 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_COLUMNS
);
1545 } else if (NULL
== mdoc
->last
->child
)
1548 np
= mdoc
->last
->parent
;
1551 for (j
= 0; j
< (int)np
->args
->argc
; j
++)
1552 if (MDOC_Column
== np
->args
->argv
[j
].arg
)
1555 assert(j
< (int)np
->args
->argc
);
1556 assert(0 == np
->args
->argv
[j
].sz
);
1559 * Accommodate for new-style groff column syntax. Shuffle the
1560 * child nodes, all of which must be TEXT, as arguments for the
1561 * column field. Then, delete the head children.
1564 np
->args
->argv
[j
].sz
= (size_t)mdoc
->last
->nchild
;
1565 np
->args
->argv
[j
].value
= mandoc_reallocarray(NULL
,
1566 (size_t)mdoc
->last
->nchild
, sizeof(char *));
1568 mdoc
->last
->norm
->Bl
.ncols
= np
->args
->argv
[j
].sz
;
1569 mdoc
->last
->norm
->Bl
.cols
= (void *)np
->args
->argv
[j
].value
;
1571 for (i
= 0, nn
= mdoc
->last
->child
; nn
; i
++) {
1572 np
->args
->argv
[j
].value
[i
] = nn
->string
;
1576 mdoc_node_delete(NULL
, nnp
);
1579 mdoc
->last
->nchild
= 0;
1580 mdoc
->last
->child
= NULL
;
1588 struct mdoc_node
*nparent
, *nprev
; /* of the Bl block */
1589 struct mdoc_node
*nblock
, *nbody
; /* of the Bl */
1590 struct mdoc_node
*nchild
, *nnext
; /* of the Bl body */
1593 switch (nbody
->type
) {
1595 return(post_bl_block(mdoc
));
1597 return(post_bl_head(mdoc
));
1604 nchild
= nbody
->child
;
1605 while (NULL
!= nchild
) {
1606 if (MDOC_It
== nchild
->tok
|| MDOC_Sm
== nchild
->tok
) {
1607 nchild
= nchild
->next
;
1611 mandoc_msg(MANDOCERR_BL_MOVE
, mdoc
->parse
,
1612 nchild
->line
, nchild
->pos
,
1613 mdoc_macronames
[nchild
->tok
]);
1616 * Move the node out of the Bl block.
1617 * First, collect all required node pointers.
1620 nblock
= nbody
->parent
;
1621 nprev
= nblock
->prev
;
1622 nparent
= nblock
->parent
;
1623 nnext
= nchild
->next
;
1626 * Unlink this child.
1629 assert(NULL
== nchild
->prev
);
1630 if (0 == --nbody
->nchild
) {
1631 nbody
->child
= NULL
;
1633 assert(NULL
== nnext
);
1635 nbody
->child
= nnext
;
1640 * Relink this child.
1643 nchild
->parent
= nparent
;
1644 nchild
->prev
= nprev
;
1645 nchild
->next
= nblock
;
1647 nblock
->prev
= nchild
;
1650 nparent
->child
= nchild
;
1652 nprev
->next
= nchild
;
1661 ebool(struct mdoc
*mdoc
)
1664 if (NULL
== mdoc
->last
->child
) {
1665 if (MDOC_Sm
== mdoc
->last
->tok
)
1666 mdoc
->flags
^= MDOC_SMOFF
;
1670 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_LT
, 2);
1672 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1674 if (0 == strcmp(mdoc
->last
->child
->string
, "on")) {
1675 if (MDOC_Sm
== mdoc
->last
->tok
)
1676 mdoc
->flags
&= ~MDOC_SMOFF
;
1679 if (0 == strcmp(mdoc
->last
->child
->string
, "off")) {
1680 if (MDOC_Sm
== mdoc
->last
->tok
)
1681 mdoc
->flags
|= MDOC_SMOFF
;
1685 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADBOOL
);
1690 post_root(POST_ARGS
)
1693 struct mdoc_node
*n
;
1697 /* Check that we have a finished prologue. */
1699 if ( ! (MDOC_PBODY
& mdoc
->flags
)) {
1701 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCPROLOG
);
1707 /* Check that we begin with a proper `Sh'. */
1709 if (NULL
== n
->child
)
1710 mdoc_nmsg(mdoc
, n
, MANDOCERR_DOC_EMPTY
);
1711 else if (MDOC_Sh
!= n
->child
->tok
)
1712 mandoc_msg(MANDOCERR_SEC_BEFORE
, mdoc
->parse
,
1713 n
->child
->line
, n
->child
->pos
,
1714 mdoc_macronames
[n
->child
->tok
]);
1722 struct mdoc_node
*ch
;
1725 if (NULL
== (ch
= mdoc
->last
->child
)) {
1726 mandoc_msg(MANDOCERR_MACRO_EMPTY
, mdoc
->parse
,
1727 mdoc
->last
->line
, mdoc
->last
->pos
,
1728 mdoc_macronames
[mdoc
->last
->tok
]);
1729 mdoc_node_delete(mdoc
, mdoc
->last
);
1733 assert(MDOC_TEXT
== ch
->type
);
1735 if (NULL
== (p
= mdoc_a2st(ch
->string
))) {
1736 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADSTANDARD
);
1737 mdoc_node_delete(mdoc
, mdoc
->last
);
1740 ch
->string
= mandoc_strdup(p
);
1749 struct mdoc_node
*nn
, *next
, *prev
;
1752 switch (mdoc
->last
->type
) {
1754 check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0);
1757 if (mdoc
->last
->child
)
1759 check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0);
1766 * Make sure only certain types of nodes are allowed within the
1767 * the `Rs' body. Delete offending nodes and raise a warning.
1768 * Do this before re-ordering for the sake of clarity.
1772 for (nn
= mdoc
->last
->child
; nn
; nn
= next
) {
1773 for (i
= 0; i
< RSORD_MAX
; i
++)
1774 if (nn
->tok
== rsord
[i
])
1777 if (i
< RSORD_MAX
) {
1778 if (MDOC__J
== rsord
[i
] || MDOC__B
== rsord
[i
])
1779 mdoc
->last
->norm
->Rs
.quote_T
++;
1785 mandoc_msg(MANDOCERR_RS_SKIP
, mdoc
->parse
,
1786 nn
->line
, nn
->pos
, mdoc_macronames
[nn
->tok
]);
1787 mdoc_node_delete(mdoc
, nn
);
1791 * Nothing to sort if only invalid nodes were found
1792 * inside the `Rs' body.
1795 if (NULL
== mdoc
->last
->child
)
1799 * The full `Rs' block needs special handling to order the
1800 * sub-elements according to `rsord'. Pick through each element
1801 * and correctly order it. This is a insertion sort.
1805 for (nn
= mdoc
->last
->child
->next
; nn
; nn
= next
) {
1806 /* Determine order of `nn'. */
1807 for (i
= 0; i
< RSORD_MAX
; i
++)
1808 if (rsord
[i
] == nn
->tok
)
1812 * Remove `nn' from the chain. This somewhat
1813 * repeats mdoc_node_unlink(), but since we're
1814 * just re-ordering, there's no need for the
1815 * full unlink process.
1818 if (NULL
!= (next
= nn
->next
))
1819 next
->prev
= nn
->prev
;
1821 if (NULL
!= (prev
= nn
->prev
))
1822 prev
->next
= nn
->next
;
1824 nn
->prev
= nn
->next
= NULL
;
1827 * Scan back until we reach a node that's
1828 * ordered before `nn'.
1831 for ( ; prev
; prev
= prev
->prev
) {
1832 /* Determine order of `prev'. */
1833 for (j
= 0; j
< RSORD_MAX
; j
++)
1834 if (rsord
[j
] == prev
->tok
)
1842 * Set `nn' back into its correct place in front
1843 * of the `prev' node.
1850 prev
->next
->prev
= nn
;
1851 nn
->next
= prev
->next
;
1854 mdoc
->last
->child
->prev
= nn
;
1855 nn
->next
= mdoc
->last
->child
;
1856 mdoc
->last
->child
= nn
;
1864 * For some arguments of some macros,
1865 * convert all breakable hyphens into ASCII_HYPH.
1868 post_hyph(POST_ARGS
)
1870 struct mdoc_node
*n
, *nch
;
1876 if (MDOC_Sh
== n
->tok
|| MDOC_Ss
== n
->tok
)
1880 if (MDOC_D1
== n
->tok
|| MDOC_Nd
== n
->tok
)
1889 for (nch
= n
->child
; nch
; nch
= nch
->next
) {
1890 if (MDOC_TEXT
!= nch
->type
)
1895 while ('\0' != *(++cp
))
1897 isalpha((unsigned char)cp
[-1]) &&
1898 isalpha((unsigned char)cp
[1]))
1908 if (MDOC_LINE
& mdoc
->last
->flags
)
1909 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NS_SKIP
);
1917 if (MDOC_HEAD
== mdoc
->last
->type
)
1918 return(post_sh_head(mdoc
));
1919 if (MDOC_BODY
== mdoc
->last
->type
)
1920 return(post_sh_body(mdoc
));
1926 post_sh_body(POST_ARGS
)
1928 struct mdoc_node
*n
;
1930 if (SEC_NAME
!= mdoc
->lastsec
)
1934 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1935 * macros (can have multiple `Nm' and one `Nd'). Note that the
1936 * children of the BODY declaration can also be "text".
1939 if (NULL
== (n
= mdoc
->last
->child
)) {
1940 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1941 mdoc
->last
->line
, mdoc
->last
->pos
, "empty");
1945 for ( ; n
&& n
->next
; n
= n
->next
) {
1946 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1948 if (MDOC_TEXT
== n
->type
)
1950 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1951 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1955 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1958 mandoc_msg(MANDOCERR_NAMESEC_BAD
, mdoc
->parse
,
1959 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
1964 post_sh_head(POST_ARGS
)
1966 struct mdoc_node
*n
;
1967 const char *goodsec
;
1972 * Process a new section. Sections are either "named" or
1973 * "custom". Custom sections are user-defined, while named ones
1974 * follow a conventional order and may only appear in certain
1980 mdoc_deroff(&secname
, mdoc
->last
);
1981 sec
= NULL
== secname
? SEC_CUSTOM
: a2sec(secname
);
1983 /* The NAME should be first. */
1985 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1986 mandoc_msg(MANDOCERR_NAMESEC_FIRST
, mdoc
->parse
,
1987 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
1989 /* The SYNOPSIS gets special attention in other areas. */
1991 if (SEC_SYNOPSIS
== sec
) {
1992 roff_setreg(mdoc
->roff
, "nS", 1, '=');
1993 mdoc
->flags
|= MDOC_SYNOPSIS
;
1995 roff_setreg(mdoc
->roff
, "nS", 0, '=');
1996 mdoc
->flags
&= ~MDOC_SYNOPSIS
;
1999 /* Mark our last section. */
2001 mdoc
->lastsec
= sec
;
2004 * Set the section attribute for the current HEAD, for its
2005 * parent BLOCK, and for the HEAD children; the latter can
2006 * only be TEXT nodes, so no recursion is needed.
2007 * For other blocks and elements, including .Sh BODY, this is
2008 * done when allocating the node data structures, but for .Sh
2009 * BLOCK and HEAD, the section is still unknown at that time.
2012 mdoc
->last
->parent
->sec
= sec
;
2013 mdoc
->last
->sec
= sec
;
2014 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
2017 /* We don't care about custom sections after this. */
2019 if (SEC_CUSTOM
== sec
) {
2025 * Check whether our non-custom section is being repeated or is
2029 if (sec
== mdoc
->lastnamed
)
2030 mandoc_msg(MANDOCERR_SEC_REP
, mdoc
->parse
,
2031 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
2033 if (sec
< mdoc
->lastnamed
)
2034 mandoc_msg(MANDOCERR_SEC_ORDER
, mdoc
->parse
,
2035 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
2037 /* Mark the last named section. */
2039 mdoc
->lastnamed
= sec
;
2041 /* Check particular section/manual conventions. */
2043 assert(mdoc
->meta
.msec
);
2048 if (*mdoc
->meta
.msec
== '4')
2050 goodsec
= "2, 3, 4, 9";
2052 case SEC_RETURN_VALUES
:
2055 if (*mdoc
->meta
.msec
== '2')
2057 if (*mdoc
->meta
.msec
== '3')
2059 if (NULL
== goodsec
)
2060 goodsec
= "2, 3, 9";
2063 if (*mdoc
->meta
.msec
== '9')
2065 if (NULL
== goodsec
)
2067 mandoc_vmsg(MANDOCERR_SEC_MSEC
, mdoc
->parse
,
2068 mdoc
->last
->line
, mdoc
->last
->pos
,
2069 "%s for %s only", secname
, goodsec
);
2080 post_ignpar(POST_ARGS
)
2082 struct mdoc_node
*np
;
2084 if (MDOC_BODY
!= mdoc
->last
->type
)
2087 if (NULL
!= (np
= mdoc
->last
->child
))
2088 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2089 mandoc_vmsg(MANDOCERR_PAR_SKIP
,
2090 mdoc
->parse
, np
->line
, np
->pos
,
2091 "%s after %s", mdoc_macronames
[np
->tok
],
2092 mdoc_macronames
[mdoc
->last
->tok
]);
2093 mdoc_node_delete(mdoc
, np
);
2096 if (NULL
!= (np
= mdoc
->last
->last
))
2097 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2098 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2099 np
->line
, np
->pos
, "%s at the end of %s",
2100 mdoc_macronames
[np
->tok
],
2101 mdoc_macronames
[mdoc
->last
->tok
]);
2102 mdoc_node_delete(mdoc
, np
);
2112 if (NULL
== mdoc
->last
)
2114 if (MDOC_ELEM
!= n
->type
&& MDOC_BLOCK
!= n
->type
)
2118 * Don't allow prior `Lp' or `Pp' prior to a paragraph-type
2119 * block: `Lp', `Pp', or non-compact `Bd' or `Bl'.
2122 if (MDOC_Pp
!= mdoc
->last
->tok
&&
2123 MDOC_Lp
!= mdoc
->last
->tok
&&
2124 MDOC_br
!= mdoc
->last
->tok
)
2126 if (MDOC_Bl
== n
->tok
&& n
->norm
->Bl
.comp
)
2128 if (MDOC_Bd
== n
->tok
&& n
->norm
->Bd
.comp
)
2130 if (MDOC_It
== n
->tok
&& n
->parent
->norm
->Bl
.comp
)
2133 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2134 mdoc
->last
->line
, mdoc
->last
->pos
,
2135 "%s before %s", mdoc_macronames
[mdoc
->last
->tok
],
2136 mdoc_macronames
[n
->tok
]);
2137 mdoc_node_delete(mdoc
, mdoc
->last
);
2144 struct mdoc_node
*np
;
2146 if (MDOC_ELEM
!= mdoc
->last
->type
&&
2147 MDOC_BLOCK
!= mdoc
->last
->type
)
2150 if (NULL
== (np
= mdoc
->last
->prev
)) {
2151 np
= mdoc
->last
->parent
;
2152 if (MDOC_Sh
!= np
->tok
&& MDOC_Ss
!= np
->tok
)
2155 if (MDOC_Pp
!= np
->tok
&& MDOC_Lp
!= np
->tok
&&
2156 (MDOC_br
!= mdoc
->last
->tok
||
2157 (MDOC_sp
!= np
->tok
&& MDOC_br
!= np
->tok
)))
2161 mandoc_vmsg(MANDOCERR_PAR_SKIP
, mdoc
->parse
,
2162 mdoc
->last
->line
, mdoc
->last
->pos
,
2163 "%s after %s", mdoc_macronames
[mdoc
->last
->tok
],
2164 mdoc_macronames
[np
->tok
]);
2165 mdoc_node_delete(mdoc
, mdoc
->last
);
2170 pre_literal(PRE_ARGS
)
2173 if (MDOC_BODY
!= n
->type
)
2177 * The `Dl' (note "el" not "one") and `Bd -literal' and `Bd
2178 * -unfilled' macros set MDOC_LITERAL on entrance to the body.
2183 mdoc
->flags
|= MDOC_LITERAL
;
2186 if (DISP_literal
== n
->norm
->Bd
.type
)
2187 mdoc
->flags
|= MDOC_LITERAL
;
2188 if (DISP_unfilled
== n
->norm
->Bd
.type
)
2189 mdoc
->flags
|= MDOC_LITERAL
;
2202 struct mdoc_node
*n
;
2205 if (mdoc
->meta
.date
)
2206 free(mdoc
->meta
.date
);
2209 if (NULL
== n
->child
|| '\0' == n
->child
->string
[0]) {
2210 mdoc
->meta
.date
= mdoc
->quick
? mandoc_strdup("") :
2211 mandoc_normdate(mdoc
->parse
, NULL
, n
->line
, n
->pos
);
2216 mdoc_deroff(&datestr
, n
);
2218 mdoc
->meta
.date
= datestr
;
2220 mdoc
->meta
.date
= mandoc_normdate(mdoc
->parse
,
2221 datestr
, n
->line
, n
->pos
);
2230 struct mdoc_node
*nn
, *n
;
2236 if (mdoc
->meta
.title
)
2237 free(mdoc
->meta
.title
);
2239 free(mdoc
->meta
.vol
);
2240 if (mdoc
->meta
.arch
)
2241 free(mdoc
->meta
.arch
);
2243 mdoc
->meta
.title
= mdoc
->meta
.vol
= mdoc
->meta
.arch
= NULL
;
2245 /* First check that all characters are uppercase. */
2247 if (NULL
!= (nn
= n
->child
))
2248 for (p
= nn
->string
; *p
; p
++) {
2249 if (toupper((unsigned char)*p
) == *p
)
2251 mandoc_msg(MANDOCERR_TITLE_CASE
,
2252 mdoc
->parse
, nn
->line
,
2253 nn
->pos
+ (p
- nn
->string
),
2259 * title = unknown, volume = local, msec = 0, arch = NULL
2262 if (NULL
== (nn
= n
->child
)) {
2263 /* XXX: make these macro values. */
2264 /* FIXME: warn about missing values. */
2265 mdoc
->meta
.title
= mandoc_strdup("UNKNOWN");
2266 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2267 mdoc
->meta
.msec
= mandoc_strdup("1");
2271 /* Handles: `.Dt TITLE'
2272 * title = TITLE, volume = local, msec = 0, arch = NULL
2275 mdoc
->meta
.title
= mandoc_strdup(
2276 '\0' == nn
->string
[0] ? "UNKNOWN" : nn
->string
);
2278 if (NULL
== (nn
= nn
->next
)) {
2279 /* FIXME: warn about missing msec. */
2280 /* XXX: make this a macro value. */
2281 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2282 mdoc
->meta
.msec
= mandoc_strdup("1");
2286 /* Handles: `.Dt TITLE SEC'
2288 * volume = SEC is msec ? format(msec) : SEC,
2289 * msec = SEC is msec ? atoi(msec) : 0,
2293 cp
= mandoc_a2msec(nn
->string
);
2295 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2296 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2298 mandoc_msg(MANDOCERR_MSEC_BAD
, mdoc
->parse
,
2299 nn
->line
, nn
->pos
, nn
->string
);
2300 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2301 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2304 if (NULL
== (nn
= nn
->next
))
2307 /* Handles: `.Dt TITLE SEC VOL'
2309 * volume = VOL is vol ? format(VOL) :
2310 * VOL is arch ? format(arch) :
2314 cp
= mdoc_a2vol(nn
->string
);
2316 free(mdoc
->meta
.vol
);
2317 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2319 cp
= mdoc_a2arch(nn
->string
);
2321 mandoc_msg(MANDOCERR_ARCH_BAD
, mdoc
->parse
,
2322 nn
->line
, nn
->pos
, nn
->string
);
2323 free(mdoc
->meta
.vol
);
2324 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2326 mdoc
->meta
.arch
= mandoc_strdup(cp
);
2329 /* Ignore any subsequent parameters... */
2330 /* FIXME: warn about subsequent parameters. */
2336 post_prol(POST_ARGS
)
2339 * Remove prologue macros from the document after they're
2340 * processed. The final document uses mdoc_meta for these
2341 * values and discards the originals.
2344 mdoc_node_delete(mdoc
, mdoc
->last
);
2345 if (mdoc
->meta
.title
&& mdoc
->meta
.date
&& mdoc
->meta
.os
)
2346 mdoc
->flags
|= MDOC_PBODY
;
2354 struct mdoc_node
*n
;
2357 * Make `Bx's second argument always start with an uppercase
2358 * letter. Groff checks if it's an "accepted" term, but we just
2359 * uppercase blindly.
2362 n
= mdoc
->last
->child
;
2363 if (n
&& NULL
!= (n
= n
->next
))
2364 *n
->string
= (char)toupper((unsigned char)*n
->string
);
2373 struct utsname utsname
;
2374 static char *defbuf
;
2376 struct mdoc_node
*n
;
2381 * Set the operating system by way of the `Os' macro.
2382 * The order of precedence is:
2383 * 1. the argument of the `Os' macro, unless empty
2384 * 2. the -Ios=foo command line argument, if provided
2385 * 3. -DOSNAME="\"foo\"", if provided during compilation
2386 * 4. "sysname release" from uname(3)
2389 free(mdoc
->meta
.os
);
2390 mdoc
->meta
.os
= NULL
;
2391 mdoc_deroff(&mdoc
->meta
.os
, n
);
2396 mdoc
->meta
.os
= mandoc_strdup(mdoc
->defos
);
2401 mdoc
->meta
.os
= mandoc_strdup(OSNAME
);
2403 if (NULL
== defbuf
) {
2404 if (-1 == uname(&utsname
)) {
2405 mdoc_nmsg(mdoc
, n
, MANDOCERR_UNAME
);
2406 defbuf
= mandoc_strdup("UNKNOWN");
2408 mandoc_asprintf(&defbuf
, "%s %s",
2409 utsname
.sysname
, utsname
.release
);
2411 mdoc
->meta
.os
= mandoc_strdup(defbuf
);
2419 struct mdoc_node
*nn
, *n
;
2424 * Macros accepting `-std' as an argument have the name of the
2425 * current document (`Nm') filled in as the argument if it's not
2432 if (NULL
== mdoc
->meta
.name
)
2436 mdoc
->next
= MDOC_NEXT_CHILD
;
2438 if ( ! mdoc_word_alloc(mdoc
, n
->line
, n
->pos
, mdoc
->meta
.name
))
2445 static enum mdoc_sec
2446 a2sec(const char *p
)
2450 for (i
= 0; i
< (int)SEC__MAX
; i
++)
2451 if (secnames
[i
] && 0 == strcmp(p
, secnames
[i
]))
2452 return((enum mdoc_sec
)i
);
2458 macro2len(enum mdoct macro
)