]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.208 2014/03/31 01:05:32 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
61 typedef int (*v_pre
)(PRE_ARGS
);
62 typedef int (*v_post
)(POST_ARGS
);
69 static int check_count(struct mdoc
*, enum mdoc_type
,
70 enum check_lvl
, enum check_ineq
, int);
71 static int check_parent(PRE_ARGS
, enum mdoct
, enum mdoc_type
);
72 static void check_text(struct mdoc
*, int, int, char *);
73 static void check_argv(struct mdoc
*,
74 struct mdoc_node
*, struct mdoc_argv
*);
75 static void check_args(struct mdoc
*, struct mdoc_node
*);
76 static enum mdoc_sec
a2sec(const char *);
77 static size_t macro2len(enum mdoct
);
79 static int ebool(POST_ARGS
);
80 static int berr_ge1(POST_ARGS
);
81 static int bwarn_ge1(POST_ARGS
);
82 static int ewarn_eq0(POST_ARGS
);
83 static int ewarn_eq1(POST_ARGS
);
84 static int ewarn_ge1(POST_ARGS
);
85 static int ewarn_le1(POST_ARGS
);
86 static int hwarn_eq0(POST_ARGS
);
87 static int hwarn_eq1(POST_ARGS
);
88 static int hwarn_ge1(POST_ARGS
);
89 static int hwarn_le1(POST_ARGS
);
91 static int post_an(POST_ARGS
);
92 static int post_at(POST_ARGS
);
93 static int post_bf(POST_ARGS
);
94 static int post_bl(POST_ARGS
);
95 static int post_bl_block(POST_ARGS
);
96 static int post_bl_block_width(POST_ARGS
);
97 static int post_bl_block_tag(POST_ARGS
);
98 static int post_bl_head(POST_ARGS
);
99 static int post_bx(POST_ARGS
);
100 static int post_defaults(POST_ARGS
);
101 static int post_dd(POST_ARGS
);
102 static int post_dt(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_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
[] = { hwarn_le1
, 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_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
151 static v_post posts_hyph
[] = { post_hyph
, NULL
};
152 static v_post posts_hyphtext
[] = { ewarn_ge1
, post_hyph
, NULL
};
153 static v_post posts_it
[] = { post_it
, NULL
};
154 static v_post posts_lb
[] = { post_lb
, NULL
};
155 static v_post posts_nd
[] = { berr_ge1
, post_hyph
, NULL
};
156 static v_post posts_nm
[] = { post_nm
, NULL
};
157 static v_post posts_notext
[] = { ewarn_eq0
, NULL
};
158 static v_post posts_ns
[] = { post_ns
, NULL
};
159 static v_post posts_os
[] = { post_os
, post_prol
, NULL
};
160 static v_post posts_pp
[] = { post_par
, ewarn_eq0
, NULL
};
161 static v_post posts_rs
[] = { post_rs
, NULL
};
162 static v_post posts_sh
[] = { post_ignpar
,hwarn_ge1
,post_sh
,post_hyph
,NULL
};
163 static v_post posts_sp
[] = { post_par
, ewarn_le1
, NULL
};
164 static v_post posts_ss
[] = { post_ignpar
, hwarn_ge1
, post_hyph
, NULL
};
165 static v_post posts_st
[] = { post_st
, NULL
};
166 static v_post posts_std
[] = { post_std
, NULL
};
167 static v_post posts_text
[] = { ewarn_ge1
, NULL
};
168 static v_post posts_text1
[] = { ewarn_eq1
, NULL
};
169 static v_post posts_vt
[] = { post_vt
, NULL
};
170 static v_pre pres_an
[] = { pre_an
, NULL
};
171 static v_pre pres_bd
[] = { pre_display
, pre_bd
, pre_literal
, pre_par
, NULL
};
172 static v_pre pres_bl
[] = { pre_bl
, pre_par
, NULL
};
173 static v_pre pres_d1
[] = { pre_display
, NULL
};
174 static v_pre pres_dl
[] = { pre_literal
, pre_display
, NULL
};
175 static v_pre pres_dd
[] = { pre_dd
, NULL
};
176 static v_pre pres_dt
[] = { pre_dt
, NULL
};
177 static v_pre pres_it
[] = { pre_it
, pre_par
, NULL
};
178 static v_pre pres_os
[] = { pre_os
, NULL
};
179 static v_pre pres_pp
[] = { pre_par
, NULL
};
180 static v_pre pres_sh
[] = { pre_sh
, NULL
};
181 static v_pre pres_ss
[] = { pre_ss
, NULL
};
182 static v_pre pres_std
[] = { pre_std
, NULL
};
184 static const struct valids mdoc_valids
[MDOC_MAX
] = {
185 { NULL
, NULL
}, /* Ap */
186 { pres_dd
, posts_dd
}, /* Dd */
187 { pres_dt
, posts_dt
}, /* Dt */
188 { pres_os
, posts_os
}, /* Os */
189 { pres_sh
, posts_sh
}, /* Sh */
190 { pres_ss
, posts_ss
}, /* Ss */
191 { pres_pp
, posts_pp
}, /* Pp */
192 { pres_d1
, posts_d1
}, /* D1 */
193 { pres_dl
, posts_dl
}, /* Dl */
194 { pres_bd
, posts_bd
}, /* Bd */
195 { NULL
, NULL
}, /* Ed */
196 { pres_bl
, posts_bl
}, /* Bl */
197 { NULL
, NULL
}, /* El */
198 { pres_it
, posts_it
}, /* It */
199 { NULL
, NULL
}, /* Ad */
200 { pres_an
, posts_an
}, /* An */
201 { NULL
, posts_defaults
}, /* Ar */
202 { NULL
, NULL
}, /* Cd */
203 { NULL
, NULL
}, /* Cm */
204 { NULL
, NULL
}, /* Dv */
205 { NULL
, NULL
}, /* Er */
206 { NULL
, NULL
}, /* Ev */
207 { pres_std
, posts_std
}, /* Ex */
208 { NULL
, NULL
}, /* Fa */
209 { NULL
, posts_text
}, /* Fd */
210 { NULL
, NULL
}, /* Fl */
211 { NULL
, NULL
}, /* Fn */
212 { NULL
, NULL
}, /* Ft */
213 { NULL
, NULL
}, /* Ic */
214 { NULL
, posts_text1
}, /* In */
215 { NULL
, posts_defaults
}, /* Li */
216 { NULL
, posts_nd
}, /* Nd */
217 { NULL
, posts_nm
}, /* Nm */
218 { NULL
, NULL
}, /* Op */
219 { NULL
, NULL
}, /* Ot */
220 { NULL
, posts_defaults
}, /* Pa */
221 { pres_std
, posts_std
}, /* Rv */
222 { NULL
, posts_st
}, /* St */
223 { NULL
, NULL
}, /* Va */
224 { NULL
, posts_vt
}, /* Vt */
225 { NULL
, posts_text
}, /* Xr */
226 { NULL
, posts_text
}, /* %A */
227 { NULL
, posts_hyphtext
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
228 { NULL
, posts_text
}, /* %D */
229 { NULL
, posts_text
}, /* %I */
230 { NULL
, posts_text
}, /* %J */
231 { NULL
, posts_hyphtext
}, /* %N */
232 { NULL
, posts_hyphtext
}, /* %O */
233 { NULL
, posts_text
}, /* %P */
234 { NULL
, posts_hyphtext
}, /* %R */
235 { NULL
, posts_hyphtext
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
236 { NULL
, posts_text
}, /* %V */
237 { NULL
, NULL
}, /* Ac */
238 { NULL
, NULL
}, /* Ao */
239 { NULL
, NULL
}, /* Aq */
240 { NULL
, posts_at
}, /* At */
241 { NULL
, NULL
}, /* Bc */
242 { NULL
, posts_bf
}, /* Bf */
243 { NULL
, NULL
}, /* Bo */
244 { NULL
, NULL
}, /* Bq */
245 { NULL
, NULL
}, /* Bsx */
246 { NULL
, posts_bx
}, /* Bx */
247 { NULL
, posts_bool
}, /* Db */
248 { NULL
, NULL
}, /* Dc */
249 { NULL
, NULL
}, /* Do */
250 { NULL
, NULL
}, /* Dq */
251 { NULL
, NULL
}, /* Ec */
252 { NULL
, NULL
}, /* Ef */
253 { NULL
, NULL
}, /* Em */
254 { NULL
, NULL
}, /* Eo */
255 { NULL
, NULL
}, /* Fx */
256 { NULL
, NULL
}, /* Ms */
257 { NULL
, posts_notext
}, /* No */
258 { NULL
, posts_ns
}, /* Ns */
259 { NULL
, NULL
}, /* Nx */
260 { NULL
, NULL
}, /* Ox */
261 { NULL
, NULL
}, /* Pc */
262 { NULL
, posts_text1
}, /* Pf */
263 { NULL
, NULL
}, /* Po */
264 { NULL
, NULL
}, /* Pq */
265 { NULL
, NULL
}, /* Qc */
266 { NULL
, NULL
}, /* Ql */
267 { NULL
, NULL
}, /* Qo */
268 { NULL
, NULL
}, /* Qq */
269 { NULL
, NULL
}, /* Re */
270 { NULL
, posts_rs
}, /* Rs */
271 { NULL
, NULL
}, /* Sc */
272 { NULL
, NULL
}, /* So */
273 { NULL
, NULL
}, /* Sq */
274 { NULL
, posts_bool
}, /* Sm */
275 { NULL
, posts_hyph
}, /* Sx */
276 { NULL
, NULL
}, /* Sy */
277 { NULL
, NULL
}, /* Tn */
278 { NULL
, NULL
}, /* Ux */
279 { NULL
, NULL
}, /* Xc */
280 { NULL
, NULL
}, /* Xo */
281 { NULL
, posts_fo
}, /* Fo */
282 { NULL
, NULL
}, /* Fc */
283 { NULL
, NULL
}, /* Oo */
284 { NULL
, NULL
}, /* Oc */
285 { NULL
, posts_bk
}, /* Bk */
286 { NULL
, NULL
}, /* Ek */
287 { NULL
, posts_eoln
}, /* Bt */
288 { NULL
, NULL
}, /* Hf */
289 { NULL
, NULL
}, /* Fr */
290 { NULL
, posts_eoln
}, /* Ud */
291 { NULL
, posts_lb
}, /* Lb */
292 { pres_pp
, posts_pp
}, /* Lp */
293 { NULL
, NULL
}, /* Lk */
294 { NULL
, posts_defaults
}, /* Mt */
295 { NULL
, NULL
}, /* Brq */
296 { NULL
, NULL
}, /* Bro */
297 { NULL
, NULL
}, /* Brc */
298 { NULL
, posts_text
}, /* %C */
299 { NULL
, NULL
}, /* Es */
300 { NULL
, NULL
}, /* En */
301 { NULL
, NULL
}, /* Dx */
302 { NULL
, posts_text
}, /* %Q */
303 { NULL
, posts_pp
}, /* br */
304 { NULL
, posts_sp
}, /* sp */
305 { NULL
, posts_text1
}, /* %U */
306 { NULL
, NULL
}, /* Ta */
307 { NULL
, NULL
}, /* ll */
310 #define RSORD_MAX 14 /* Number of `Rs' blocks. */
312 static const enum mdoct rsord
[RSORD_MAX
] = {
329 static const char * const secnames
[SEC__MAX
] = {
336 "IMPLEMENTATION NOTES",
351 "SECURITY CONSIDERATIONS",
356 mdoc_valid_pre(struct mdoc
*mdoc
, struct mdoc_node
*n
)
367 check_text(mdoc
, line
, pos
, tp
);
381 if (NULL
== mdoc_valids
[n
->tok
].pre
)
383 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
384 if ( ! (*p
)(mdoc
, n
))
391 mdoc_valid_post(struct mdoc
*mdoc
)
395 if (MDOC_VALID
& mdoc
->last
->flags
)
397 mdoc
->last
->flags
|= MDOC_VALID
;
399 switch (mdoc
->last
->type
) {
407 return(post_root(mdoc
));
412 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
414 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
422 check_count(struct mdoc
*mdoc
, enum mdoc_type type
,
423 enum check_lvl lvl
, enum check_ineq ineq
, int val
)
428 if (mdoc
->last
->type
!= type
)
434 if (mdoc
->last
->nchild
< val
)
439 if (mdoc
->last
->nchild
> val
)
444 if (val
== mdoc
->last
->nchild
)
452 t
= lvl
== CHECK_WARN
? MANDOCERR_ARGCWARN
: MANDOCERR_ARGCOUNT
;
453 mandoc_vmsg(t
, mdoc
->parse
, mdoc
->last
->line
, mdoc
->last
->pos
,
454 "want %s%d children (have %d)",
455 p
, val
, mdoc
->last
->nchild
);
463 return(check_count(mdoc
, MDOC_BODY
, CHECK_ERROR
, CHECK_GT
, 0));
469 return(check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0));
475 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0));
481 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1));
487 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0));
493 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_LT
, 2));
499 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0));
505 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 1));
511 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_GT
, 0));
517 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_LT
, 2));
521 check_args(struct mdoc
*mdoc
, struct mdoc_node
*n
)
528 assert(n
->args
->argc
);
529 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
530 check_argv(mdoc
, n
, &n
->args
->argv
[i
]);
534 check_argv(struct mdoc
*mdoc
, struct mdoc_node
*n
, struct mdoc_argv
*v
)
538 for (i
= 0; i
< (int)v
->sz
; i
++)
539 check_text(mdoc
, v
->line
, v
->pos
, v
->value
[i
]);
541 /* FIXME: move to post_std(). */
543 if (MDOC_Std
== v
->arg
)
544 if ( ! (v
->sz
|| mdoc
->meta
.name
))
545 mdoc_nmsg(mdoc
, n
, MANDOCERR_NONAME
);
549 check_text(struct mdoc
*mdoc
, int ln
, int pos
, char *p
)
553 if (MDOC_LITERAL
& mdoc
->flags
)
556 for (cp
= p
; NULL
!= (p
= strchr(p
, '\t')); p
++)
557 mdoc_pmsg(mdoc
, ln
, pos
+ (int)(p
- cp
), MANDOCERR_BADTAB
);
561 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
565 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
566 (t
== n
->parent
->type
))
569 mandoc_vmsg(MANDOCERR_SYNTCHILD
, mdoc
->parse
, n
->line
,
570 n
->pos
, "want parent %s", MDOC_ROOT
== t
?
571 "<root>" : mdoc_macronames
[tok
]);
577 pre_display(PRE_ARGS
)
579 struct mdoc_node
*node
;
581 if (MDOC_BLOCK
!= n
->type
)
584 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
585 if (MDOC_BLOCK
== node
->type
)
586 if (MDOC_Bd
== node
->tok
)
590 mdoc_nmsg(mdoc
, n
, MANDOCERR_NESTEDDISP
);
600 const char *offs
, *width
;
602 struct mdoc_node
*np
;
604 if (MDOC_BLOCK
!= n
->type
) {
605 if (ENDBODY_NOT
!= n
->end
) {
607 np
= n
->pending
->parent
;
612 assert(MDOC_BLOCK
== np
->type
);
613 assert(MDOC_Bl
== np
->tok
);
618 * First figure out which kind of list to use: bind ourselves to
619 * the first mentioned list type and warn about any remaining
620 * ones. If we find no list type, we default to LIST_item.
624 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
628 switch (n
->args
->argv
[i
].arg
) {
629 /* Set list types. */
663 /* Set list arguments. */
665 dup
= n
->norm
->Bl
.comp
;
669 /* NB: this can be empty! */
670 if (n
->args
->argv
[i
].sz
) {
671 width
= n
->args
->argv
[i
].value
[0];
672 dup
= (NULL
!= n
->norm
->Bl
.width
);
675 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
678 /* NB: this can be empty! */
679 if (n
->args
->argv
[i
].sz
) {
680 offs
= n
->args
->argv
[i
].value
[0];
681 dup
= (NULL
!= n
->norm
->Bl
.offs
);
684 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
690 /* Check: duplicate auxiliary arguments. */
693 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
696 n
->norm
->Bl
.comp
= comp
;
698 n
->norm
->Bl
.offs
= offs
;
700 n
->norm
->Bl
.width
= width
;
702 /* Check: multiple list types. */
704 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
!= LIST__NONE
)
705 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTREP
);
707 /* Assign list type. */
709 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
== LIST__NONE
) {
710 n
->norm
->Bl
.type
= lt
;
711 /* Set column information, too. */
712 if (LIST_column
== lt
) {
715 n
->norm
->Bl
.cols
= (void *)
716 n
->args
->argv
[i
].value
;
720 /* The list type should come first. */
722 if (n
->norm
->Bl
.type
== LIST__NONE
)
723 if (n
->norm
->Bl
.width
||
726 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTFIRST
);
731 /* Allow lists to default to LIST_item. */
733 if (LIST__NONE
== n
->norm
->Bl
.type
) {
734 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTTYPE
);
735 n
->norm
->Bl
.type
= LIST_item
;
739 * Validate the width field. Some list types don't need width
740 * types and should be warned about them. Others should have it
741 * and must also be warned. Yet others have a default and need
745 switch (n
->norm
->Bl
.type
) {
747 if (NULL
== n
->norm
->Bl
.width
)
748 mdoc_nmsg(mdoc
, n
, MANDOCERR_NOWIDTHARG
);
759 if (n
->norm
->Bl
.width
)
760 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
767 if (NULL
== n
->norm
->Bl
.width
)
768 n
->norm
->Bl
.width
= "2n";
771 if (NULL
== n
->norm
->Bl
.width
)
772 n
->norm
->Bl
.width
= "3n";
788 struct mdoc_node
*np
;
790 if (MDOC_BLOCK
!= n
->type
) {
791 if (ENDBODY_NOT
!= n
->end
) {
793 np
= n
->pending
->parent
;
798 assert(MDOC_BLOCK
== np
->type
);
799 assert(MDOC_Bd
== np
->tok
);
804 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
809 switch (n
->args
->argv
[i
].arg
) {
816 case (MDOC_Unfilled
):
826 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADDISP
);
829 /* NB: this can be empty! */
830 if (n
->args
->argv
[i
].sz
) {
831 offs
= n
->args
->argv
[i
].value
[0];
832 dup
= (NULL
!= n
->norm
->Bd
.offs
);
835 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
839 dup
= n
->norm
->Bd
.comp
;
846 /* Check whether we have duplicates. */
849 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
851 /* Make our auxiliary assignments. */
854 n
->norm
->Bd
.offs
= offs
;
856 n
->norm
->Bd
.comp
= comp
;
858 /* Check whether a type has already been assigned. */
860 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
!= DISP__NONE
)
861 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPREP
);
863 /* Make our type assignment. */
865 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
== DISP__NONE
)
866 n
->norm
->Bd
.type
= dt
;
869 if (DISP__NONE
== n
->norm
->Bd
.type
) {
870 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPTYPE
);
871 n
->norm
->Bd
.type
= DISP_ragged
;
882 if (MDOC_BLOCK
!= n
->type
)
884 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
892 if (MDOC_BLOCK
!= n
->type
)
894 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
));
917 for (i
= 1; i
< (int)n
->args
->argc
; i
++)
918 mdoc_pmsg(mdoc
, n
->args
->argv
[i
].line
,
919 n
->args
->argv
[i
].pos
, MANDOCERR_IGNARGV
);
921 if (MDOC_Split
== n
->args
->argv
[0].arg
)
922 n
->norm
->An
.auth
= AUTH_split
;
923 else if (MDOC_Nosplit
== n
->args
->argv
[0].arg
)
924 n
->norm
->An
.auth
= AUTH_nosplit
;
935 if (n
->args
&& 1 == n
->args
->argc
)
936 if (MDOC_Std
== n
->args
->argv
[0].arg
)
939 mdoc_nmsg(mdoc
, n
, MANDOCERR_NOARGV
);
947 if (NULL
== mdoc
->meta
.date
|| mdoc
->meta
.os
)
948 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
950 if (mdoc
->meta
.title
)
951 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
960 if (NULL
== mdoc
->meta
.title
|| NULL
== mdoc
->meta
.date
)
961 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
964 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
973 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
974 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
977 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
986 struct mdoc_node
*np
;
990 * Unlike other data pointers, these are "housed" by the HEAD
991 * element, which contains the goods.
994 if (MDOC_HEAD
!= mdoc
->last
->type
) {
995 if (ENDBODY_NOT
!= mdoc
->last
->end
) {
996 assert(mdoc
->last
->pending
);
997 np
= mdoc
->last
->pending
->parent
->head
;
998 } else if (MDOC_BLOCK
!= mdoc
->last
->type
) {
999 np
= mdoc
->last
->parent
->head
;
1001 np
= mdoc
->last
->head
;
1004 assert(MDOC_HEAD
== np
->type
);
1005 assert(MDOC_Bf
== np
->tok
);
1010 assert(MDOC_BLOCK
== np
->parent
->type
);
1011 assert(MDOC_Bf
== np
->parent
->tok
);
1014 * Cannot have both argument and parameter.
1015 * If neither is specified, let it through with a warning.
1018 if (np
->parent
->args
&& np
->child
) {
1019 mdoc_nmsg(mdoc
, np
, MANDOCERR_SYNTARGVCOUNT
);
1021 } else if (NULL
== np
->parent
->args
&& NULL
== np
->child
) {
1022 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1026 /* Extract argument into data. */
1028 if (np
->parent
->args
) {
1029 arg
= np
->parent
->args
->argv
[0].arg
;
1030 if (MDOC_Emphasis
== arg
)
1031 np
->norm
->Bf
.font
= FONT_Em
;
1032 else if (MDOC_Literal
== arg
)
1033 np
->norm
->Bf
.font
= FONT_Li
;
1034 else if (MDOC_Symbolic
== arg
)
1035 np
->norm
->Bf
.font
= FONT_Sy
;
1041 /* Extract parameter into data. */
1043 if (0 == strcmp(np
->child
->string
, "Em"))
1044 np
->norm
->Bf
.font
= FONT_Em
;
1045 else if (0 == strcmp(np
->child
->string
, "Li"))
1046 np
->norm
->Bf
.font
= FONT_Li
;
1047 else if (0 == strcmp(np
->child
->string
, "Sy"))
1048 np
->norm
->Bf
.font
= FONT_Sy
;
1050 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1062 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1);
1064 assert(mdoc
->last
->child
);
1065 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1067 p
= mdoc_a2lib(mdoc
->last
->child
->string
);
1069 /* If lookup ok, replace with table value. */
1072 free(mdoc
->last
->child
->string
);
1073 mdoc
->last
->child
->string
= mandoc_strdup(p
);
1077 /* If not, use "library ``xxxx''. */
1079 sz
= strlen(mdoc
->last
->child
->string
) +
1080 2 + strlen("\\(lqlibrary\\(rq");
1081 buf
= mandoc_malloc(sz
);
1082 snprintf(buf
, sz
, "library \\(lq%s\\(rq",
1083 mdoc
->last
->child
->string
);
1084 free(mdoc
->last
->child
->string
);
1085 mdoc
->last
->child
->string
= buf
;
1090 post_eoln(POST_ARGS
)
1093 if (mdoc
->last
->child
)
1094 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
);
1102 const struct mdoc_node
*n
;
1105 * The Vt macro comes in both ELEM and BLOCK form, both of which
1106 * have different syntaxes (yet more context-sensitive
1107 * behaviour). ELEM types must have a child, which is already
1108 * guaranteed by the in_line parsing routine; BLOCK types,
1109 * specifically the BODY, should only have TEXT children.
1112 if (MDOC_BODY
!= mdoc
->last
->type
)
1115 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
1116 if (MDOC_TEXT
!= n
->type
)
1117 mdoc_nmsg(mdoc
, n
, MANDOCERR_CHILD
);
1127 if (NULL
!= mdoc
->meta
.name
)
1130 mdoc_deroff(&mdoc
->meta
.name
, mdoc
->last
);
1132 if (NULL
== mdoc
->meta
.name
) {
1133 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NONAME
);
1134 mdoc
->meta
.name
= mandoc_strdup("UNKNOWN");
1140 post_literal(POST_ARGS
)
1144 * The `Dl' (note "el" not "one") and `Bd' macros unset the
1145 * MDOC_LITERAL flag as they leave. Note that `Bd' only sets
1146 * this in literal mode, but it doesn't hurt to just switch it
1147 * off in general since displays can't be nested.
1150 if (MDOC_BODY
== mdoc
->last
->type
)
1151 mdoc
->flags
&= ~MDOC_LITERAL
;
1157 post_defaults(POST_ARGS
)
1159 struct mdoc_node
*nn
;
1162 * The `Ar' defaults to "file ..." if no value is provided as an
1163 * argument; the `Mt' and `Pa' macros use "~"; the `Li' just
1164 * gets an empty string.
1167 if (mdoc
->last
->child
)
1171 mdoc
->next
= MDOC_NEXT_CHILD
;
1175 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "file"))
1177 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "..."))
1181 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "AT&T"))
1183 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "UNIX"))
1187 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, ""))
1193 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "~"))
1213 * If we have a child, look it up in the standard keys. If a
1214 * key exist, use that instead of the child; if it doesn't,
1215 * prefix "AT&T UNIX " to the existing data.
1218 if (NULL
== mdoc
->last
->child
)
1221 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1222 p
= mdoc_a2att(mdoc
->last
->child
->string
);
1225 free(mdoc
->last
->child
->string
);
1226 mdoc
->last
->child
->string
= mandoc_strdup(p
);
1228 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADATT
);
1230 q
= mdoc
->last
->child
->string
;
1231 sz
= strlen(p
) + strlen(q
) + 1;
1232 buf
= mandoc_malloc(sz
);
1233 strlcpy(buf
, p
, sz
);
1234 strlcat(buf
, q
, sz
);
1235 free(mdoc
->last
->child
->string
);
1236 mdoc
->last
->child
->string
= buf
;
1245 struct mdoc_node
*np
;
1248 if (AUTH__NONE
== np
->norm
->An
.auth
) {
1250 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0);
1251 } else if (np
->child
)
1252 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0);
1263 struct mdoc_node
*n
, *c
;
1266 if (MDOC_BLOCK
!= mdoc
->last
->type
)
1269 n
= mdoc
->last
->parent
->parent
;
1270 lt
= n
->norm
->Bl
.type
;
1272 if (LIST__NONE
== lt
) {
1273 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_LISTTYPE
);
1279 if (mdoc
->last
->head
->child
)
1281 /* FIXME: give this a dummy value. */
1282 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
);
1291 if (NULL
== mdoc
->last
->head
->child
)
1292 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
);
1301 if (NULL
== mdoc
->last
->body
->child
)
1302 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
);
1305 if (mdoc
->last
->head
->child
)
1306 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
);
1309 cols
= (int)n
->norm
->Bl
.ncols
;
1311 assert(NULL
== mdoc
->last
->head
->child
);
1313 if (NULL
== mdoc
->last
->body
->child
)
1314 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
);
1316 for (i
= 0, c
= mdoc
->last
->child
; c
; c
= c
->next
)
1317 if (MDOC_BODY
== c
->type
)
1321 er
= MANDOCERR_ARGCOUNT
;
1322 else if (i
== cols
|| i
== cols
+ 1)
1325 er
= MANDOCERR_SYNTARGCOUNT
;
1327 mandoc_vmsg(er
, mdoc
->parse
, mdoc
->last
->line
,
1329 "columns == %d (have %d)", cols
, i
);
1330 return(MANDOCERR_ARGCOUNT
== er
);
1339 post_bl_block(POST_ARGS
)
1341 struct mdoc_node
*n
, *ni
, *nc
;
1344 * These are fairly complicated, so we've broken them into two
1345 * functions. post_bl_block_tag() is called when a -tag is
1346 * specified, but no -width (it must be guessed). The second
1347 * when a -width is specified (macro indicators must be
1348 * rewritten into real lengths).
1353 if (LIST_tag
== n
->norm
->Bl
.type
&&
1354 NULL
== n
->norm
->Bl
.width
) {
1355 if ( ! post_bl_block_tag(mdoc
))
1357 assert(n
->norm
->Bl
.width
);
1358 } else if (NULL
!= n
->norm
->Bl
.width
) {
1359 if ( ! post_bl_block_width(mdoc
))
1361 assert(n
->norm
->Bl
.width
);
1364 for (ni
= n
->body
->child
; ni
; ni
= ni
->next
) {
1365 if (NULL
== ni
->body
)
1367 nc
= ni
->body
->last
;
1368 while (NULL
!= nc
) {
1380 if (NULL
== ni
->next
) {
1381 mdoc_nmsg(mdoc
, nc
, MANDOCERR_MOVEPAR
);
1382 if ( ! mdoc_node_relink(mdoc
, nc
))
1384 } else if (0 == n
->norm
->Bl
.comp
&&
1385 LIST_column
!= n
->norm
->Bl
.type
) {
1386 mdoc_nmsg(mdoc
, nc
, MANDOCERR_IGNPAR
);
1387 mdoc_node_delete(mdoc
, nc
);
1390 nc
= ni
->body
->last
;
1397 post_bl_block_width(POST_ARGS
)
1402 struct mdoc_node
*n
;
1408 * Calculate the real width of a list from the -width string,
1409 * which may contain a macro (with a known default width), a
1410 * literal string, or a scaling width.
1412 * If the value to -width is a macro, then we re-write it to be
1413 * the macro's width as set in share/tmac/mdoc/doc-common.
1416 if (0 == strcmp(n
->norm
->Bl
.width
, "Ds"))
1418 else if (MDOC_MAX
== (tok
= mdoc_hash_find(n
->norm
->Bl
.width
)))
1420 else if (0 == (width
= macro2len(tok
))) {
1421 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADWIDTH
);
1425 /* The value already exists: free and reallocate it. */
1429 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
1430 if (MDOC_Width
== n
->args
->argv
[i
].arg
)
1433 assert(i
< (int)n
->args
->argc
);
1435 snprintf(buf
, NUMSIZ
, "%un", (unsigned int)width
);
1436 free(n
->args
->argv
[i
].value
[0]);
1437 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1439 /* Set our width! */
1440 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1445 post_bl_block_tag(POST_ARGS
)
1447 struct mdoc_node
*n
, *nn
;
1453 * Calculate the -width for a `Bl -tag' list if it hasn't been
1454 * provided. Uses the first head macro. NOTE AGAIN: this is
1455 * ONLY if the -width argument has NOT been provided. See
1456 * post_bl_block_width() for converting the -width string.
1462 for (nn
= n
->body
->child
; nn
; nn
= nn
->next
) {
1463 if (MDOC_It
!= nn
->tok
)
1466 assert(MDOC_BLOCK
== nn
->type
);
1467 nn
= nn
->head
->child
;
1472 if (MDOC_TEXT
== nn
->type
) {
1473 sz
= strlen(nn
->string
) + 1;
1477 if (0 != (ssz
= macro2len(nn
->tok
)))
1483 /* Defaults to ten ens. */
1485 snprintf(buf
, NUMSIZ
, "%un", (unsigned int)sz
);
1488 * We have to dynamically add this to the macro's argument list.
1489 * We're guaranteed that a MDOC_Width doesn't already exist.
1493 i
= (int)(n
->args
->argc
)++;
1495 n
->args
->argv
= mandoc_realloc(n
->args
->argv
,
1496 n
->args
->argc
* sizeof(struct mdoc_argv
));
1498 n
->args
->argv
[i
].arg
= MDOC_Width
;
1499 n
->args
->argv
[i
].line
= n
->line
;
1500 n
->args
->argv
[i
].pos
= n
->pos
;
1501 n
->args
->argv
[i
].sz
= 1;
1502 n
->args
->argv
[i
].value
= mandoc_malloc(sizeof(char *));
1503 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1505 /* Set our width! */
1506 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1512 post_bl_head(POST_ARGS
)
1514 struct mdoc_node
*np
, *nn
, *nnp
;
1517 if (LIST_column
!= mdoc
->last
->norm
->Bl
.type
)
1518 /* FIXME: this should be ERROR class... */
1519 return(hwarn_eq0(mdoc
));
1522 * Convert old-style lists, where the column width specifiers
1523 * trail as macro parameters, to the new-style ("normal-form")
1524 * lists where they're argument values following -column.
1527 /* First, disallow both types and allow normal-form. */
1530 * TODO: technically, we can accept both and just merge the two
1531 * lists, but I'll leave that for another day.
1534 if (mdoc
->last
->norm
->Bl
.ncols
&& mdoc
->last
->nchild
) {
1535 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_COLUMNS
);
1537 } else if (NULL
== mdoc
->last
->child
)
1540 np
= mdoc
->last
->parent
;
1543 for (j
= 0; j
< (int)np
->args
->argc
; j
++)
1544 if (MDOC_Column
== np
->args
->argv
[j
].arg
)
1547 assert(j
< (int)np
->args
->argc
);
1548 assert(0 == np
->args
->argv
[j
].sz
);
1551 * Accommodate for new-style groff column syntax. Shuffle the
1552 * child nodes, all of which must be TEXT, as arguments for the
1553 * column field. Then, delete the head children.
1556 np
->args
->argv
[j
].sz
= (size_t)mdoc
->last
->nchild
;
1557 np
->args
->argv
[j
].value
= mandoc_malloc
1558 ((size_t)mdoc
->last
->nchild
* sizeof(char *));
1560 mdoc
->last
->norm
->Bl
.ncols
= np
->args
->argv
[j
].sz
;
1561 mdoc
->last
->norm
->Bl
.cols
= (void *)np
->args
->argv
[j
].value
;
1563 for (i
= 0, nn
= mdoc
->last
->child
; nn
; i
++) {
1564 np
->args
->argv
[j
].value
[i
] = nn
->string
;
1568 mdoc_node_delete(NULL
, nnp
);
1571 mdoc
->last
->nchild
= 0;
1572 mdoc
->last
->child
= NULL
;
1580 struct mdoc_node
*nparent
, *nprev
; /* of the Bl block */
1581 struct mdoc_node
*nblock
, *nbody
; /* of the Bl */
1582 struct mdoc_node
*nchild
, *nnext
; /* of the Bl body */
1585 switch (nbody
->type
) {
1587 return(post_bl_block(mdoc
));
1589 return(post_bl_head(mdoc
));
1596 nchild
= nbody
->child
;
1597 while (NULL
!= nchild
) {
1598 if (MDOC_It
== nchild
->tok
|| MDOC_Sm
== nchild
->tok
) {
1599 nchild
= nchild
->next
;
1603 mdoc_nmsg(mdoc
, nchild
, MANDOCERR_CHILD
);
1606 * Move the node out of the Bl block.
1607 * First, collect all required node pointers.
1610 nblock
= nbody
->parent
;
1611 nprev
= nblock
->prev
;
1612 nparent
= nblock
->parent
;
1613 nnext
= nchild
->next
;
1616 * Unlink this child.
1619 assert(NULL
== nchild
->prev
);
1620 if (0 == --nbody
->nchild
) {
1621 nbody
->child
= NULL
;
1623 assert(NULL
== nnext
);
1625 nbody
->child
= nnext
;
1630 * Relink this child.
1633 nchild
->parent
= nparent
;
1634 nchild
->prev
= nprev
;
1635 nchild
->next
= nblock
;
1637 nblock
->prev
= nchild
;
1640 nparent
->child
= nchild
;
1642 nprev
->next
= nchild
;
1651 ebool(struct mdoc
*mdoc
)
1654 if (NULL
== mdoc
->last
->child
) {
1655 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_MACROEMPTY
);
1656 mdoc_node_delete(mdoc
, mdoc
->last
);
1659 check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 1);
1661 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1663 if (0 == strcmp(mdoc
->last
->child
->string
, "on")) {
1664 if (MDOC_Sm
== mdoc
->last
->tok
)
1665 mdoc
->flags
&= ~MDOC_SMOFF
;
1668 if (0 == strcmp(mdoc
->last
->child
->string
, "off")) {
1669 if (MDOC_Sm
== mdoc
->last
->tok
)
1670 mdoc
->flags
|= MDOC_SMOFF
;
1674 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADBOOL
);
1679 post_root(POST_ARGS
)
1682 struct mdoc_node
*n
;
1686 /* Check that we have a finished prologue. */
1688 if ( ! (MDOC_PBODY
& mdoc
->flags
)) {
1690 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCPROLOG
);
1696 /* Check that we begin with a proper `Sh'. */
1698 if (NULL
== n
->child
) {
1700 mdoc_nmsg(mdoc
, n
, MANDOCERR_NODOCBODY
);
1701 } else if (MDOC_BLOCK
!= n
->child
->type
||
1702 MDOC_Sh
!= n
->child
->tok
) {
1704 /* Can this be lifted? See rxdebug.1 for example. */
1705 mdoc_nmsg(mdoc
, n
, MANDOCERR_NODOCBODY
);
1708 return(erc
? 0 : 1);
1714 struct mdoc_node
*ch
;
1717 if (NULL
== (ch
= mdoc
->last
->child
)) {
1718 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_MACROEMPTY
);
1719 mdoc_node_delete(mdoc
, mdoc
->last
);
1723 assert(MDOC_TEXT
== ch
->type
);
1725 if (NULL
== (p
= mdoc_a2st(ch
->string
))) {
1726 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADSTANDARD
);
1727 mdoc_node_delete(mdoc
, mdoc
->last
);
1730 ch
->string
= mandoc_strdup(p
);
1739 struct mdoc_node
*nn
, *next
, *prev
;
1742 switch (mdoc
->last
->type
) {
1744 check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0);
1747 if (mdoc
->last
->child
)
1749 check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0);
1756 * Make sure only certain types of nodes are allowed within the
1757 * the `Rs' body. Delete offending nodes and raise a warning.
1758 * Do this before re-ordering for the sake of clarity.
1762 for (nn
= mdoc
->last
->child
; nn
; nn
= next
) {
1763 for (i
= 0; i
< RSORD_MAX
; i
++)
1764 if (nn
->tok
== rsord
[i
])
1767 if (i
< RSORD_MAX
) {
1768 if (MDOC__J
== rsord
[i
] || MDOC__B
== rsord
[i
])
1769 mdoc
->last
->norm
->Rs
.quote_T
++;
1775 mdoc_nmsg(mdoc
, nn
, MANDOCERR_CHILD
);
1776 mdoc_node_delete(mdoc
, nn
);
1780 * Nothing to sort if only invalid nodes were found
1781 * inside the `Rs' body.
1784 if (NULL
== mdoc
->last
->child
)
1788 * The full `Rs' block needs special handling to order the
1789 * sub-elements according to `rsord'. Pick through each element
1790 * and correctly order it. This is a insertion sort.
1794 for (nn
= mdoc
->last
->child
->next
; nn
; nn
= next
) {
1795 /* Determine order of `nn'. */
1796 for (i
= 0; i
< RSORD_MAX
; i
++)
1797 if (rsord
[i
] == nn
->tok
)
1801 * Remove `nn' from the chain. This somewhat
1802 * repeats mdoc_node_unlink(), but since we're
1803 * just re-ordering, there's no need for the
1804 * full unlink process.
1807 if (NULL
!= (next
= nn
->next
))
1808 next
->prev
= nn
->prev
;
1810 if (NULL
!= (prev
= nn
->prev
))
1811 prev
->next
= nn
->next
;
1813 nn
->prev
= nn
->next
= NULL
;
1816 * Scan back until we reach a node that's
1817 * ordered before `nn'.
1820 for ( ; prev
; prev
= prev
->prev
) {
1821 /* Determine order of `prev'. */
1822 for (j
= 0; j
< RSORD_MAX
; j
++)
1823 if (rsord
[j
] == prev
->tok
)
1831 * Set `nn' back into its correct place in front
1832 * of the `prev' node.
1839 prev
->next
->prev
= nn
;
1840 nn
->next
= prev
->next
;
1843 mdoc
->last
->child
->prev
= nn
;
1844 nn
->next
= mdoc
->last
->child
;
1845 mdoc
->last
->child
= nn
;
1853 * For some arguments of some macros,
1854 * convert all breakable hyphens into ASCII_HYPH.
1857 post_hyph(POST_ARGS
)
1859 struct mdoc_node
*n
, *nch
;
1865 if (MDOC_Sh
== n
->tok
|| MDOC_Ss
== n
->tok
)
1869 if (MDOC_D1
== n
->tok
|| MDOC_Nd
== n
->tok
)
1878 for (nch
= n
->child
; nch
; nch
= nch
->next
) {
1879 if (MDOC_TEXT
!= nch
->type
)
1884 while ('\0' != *(++cp
))
1886 isalpha((unsigned char)cp
[-1]) &&
1887 isalpha((unsigned char)cp
[1]))
1897 if (MDOC_LINE
& mdoc
->last
->flags
)
1898 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_IGNNS
);
1906 if (MDOC_HEAD
== mdoc
->last
->type
)
1907 return(post_sh_head(mdoc
));
1908 if (MDOC_BODY
== mdoc
->last
->type
)
1909 return(post_sh_body(mdoc
));
1915 post_sh_body(POST_ARGS
)
1917 struct mdoc_node
*n
;
1919 if (SEC_NAME
!= mdoc
->lastsec
)
1923 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1924 * macros (can have multiple `Nm' and one `Nd'). Note that the
1925 * children of the BODY declaration can also be "text".
1928 if (NULL
== (n
= mdoc
->last
->child
)) {
1929 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1933 for ( ; n
&& n
->next
; n
= n
->next
) {
1934 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1936 if (MDOC_TEXT
== n
->type
)
1938 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1942 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1945 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1950 post_sh_head(POST_ARGS
)
1952 struct mdoc_node
*n
;
1953 const char *secname
;
1957 * Process a new section. Sections are either "named" or
1958 * "custom". Custom sections are user-defined, while named ones
1959 * follow a conventional order and may only appear in certain
1967 assert(1 == n
->nchild
);
1970 assert(MDOC_TEXT
== n
->type
);
1971 secname
= n
->string
;
1972 sec
= a2sec(secname
);
1975 /* The NAME should be first. */
1977 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1978 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NAMESECFIRST
);
1980 /* The SYNOPSIS gets special attention in other areas. */
1982 if (SEC_SYNOPSIS
== sec
) {
1983 roff_setreg(mdoc
->roff
, "nS", 1, '=');
1984 mdoc
->flags
|= MDOC_SYNOPSIS
;
1986 roff_setreg(mdoc
->roff
, "nS", 0, '=');
1987 mdoc
->flags
&= ~MDOC_SYNOPSIS
;
1990 /* Mark our last section. */
1992 mdoc
->lastsec
= sec
;
1995 * Set the section attribute for the current HEAD, for its
1996 * parent BLOCK, and for the HEAD children; the latter can
1997 * only be TEXT nodes, so no recursion is needed.
1998 * For other blocks and elements, including .Sh BODY, this is
1999 * done when allocating the node data structures, but for .Sh
2000 * BLOCK and HEAD, the section is still unknown at that time.
2003 mdoc
->last
->parent
->sec
= sec
;
2004 mdoc
->last
->sec
= sec
;
2005 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
2008 /* We don't care about custom sections after this. */
2010 if (SEC_CUSTOM
== sec
)
2014 * Check whether our non-custom section is being repeated or is
2018 if (sec
== mdoc
->lastnamed
)
2019 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECREP
);
2021 if (sec
< mdoc
->lastnamed
)
2022 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECOOO
);
2024 /* Mark the last named section. */
2026 mdoc
->lastnamed
= sec
;
2028 /* Check particular section/manual conventions. */
2030 assert(mdoc
->meta
.msec
);
2034 if (*mdoc
->meta
.msec
== '4')
2037 case (SEC_RETURN_VALUES
):
2040 if (*mdoc
->meta
.msec
== '2')
2042 if (*mdoc
->meta
.msec
== '3')
2046 if (*mdoc
->meta
.msec
== '9')
2048 mandoc_msg(MANDOCERR_SECMSEC
, mdoc
->parse
,
2049 mdoc
->last
->line
, mdoc
->last
->pos
, secname
);
2059 post_ignpar(POST_ARGS
)
2061 struct mdoc_node
*np
;
2063 if (MDOC_BODY
!= mdoc
->last
->type
)
2066 if (NULL
!= (np
= mdoc
->last
->child
))
2067 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2068 mdoc_nmsg(mdoc
, np
, MANDOCERR_IGNPAR
);
2069 mdoc_node_delete(mdoc
, np
);
2072 if (NULL
!= (np
= mdoc
->last
->last
))
2073 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
2074 mdoc_nmsg(mdoc
, np
, MANDOCERR_IGNPAR
);
2075 mdoc_node_delete(mdoc
, np
);
2085 if (NULL
== mdoc
->last
)
2087 if (MDOC_ELEM
!= n
->type
&& MDOC_BLOCK
!= n
->type
)
2091 * Don't allow prior `Lp' or `Pp' prior to a paragraph-type
2092 * block: `Lp', `Pp', or non-compact `Bd' or `Bl'.
2095 if (MDOC_Pp
!= mdoc
->last
->tok
&&
2096 MDOC_Lp
!= mdoc
->last
->tok
&&
2097 MDOC_br
!= mdoc
->last
->tok
)
2099 if (MDOC_Bl
== n
->tok
&& n
->norm
->Bl
.comp
)
2101 if (MDOC_Bd
== n
->tok
&& n
->norm
->Bd
.comp
)
2103 if (MDOC_It
== n
->tok
&& n
->parent
->norm
->Bl
.comp
)
2106 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_IGNPAR
);
2107 mdoc_node_delete(mdoc
, mdoc
->last
);
2115 if (MDOC_ELEM
!= mdoc
->last
->type
&&
2116 MDOC_BLOCK
!= mdoc
->last
->type
)
2119 if (NULL
== mdoc
->last
->prev
) {
2120 if (MDOC_Sh
!= mdoc
->last
->parent
->tok
&&
2121 MDOC_Ss
!= mdoc
->last
->parent
->tok
)
2124 if (MDOC_Pp
!= mdoc
->last
->prev
->tok
&&
2125 MDOC_Lp
!= mdoc
->last
->prev
->tok
&&
2126 (MDOC_br
!= mdoc
->last
->tok
||
2127 (MDOC_sp
!= mdoc
->last
->prev
->tok
&&
2128 MDOC_br
!= mdoc
->last
->prev
->tok
)))
2132 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_IGNPAR
);
2133 mdoc_node_delete(mdoc
, mdoc
->last
);
2138 pre_literal(PRE_ARGS
)
2141 if (MDOC_BODY
!= n
->type
)
2145 * The `Dl' (note "el" not "one") and `Bd -literal' and `Bd
2146 * -unfilled' macros set MDOC_LITERAL on entrance to the body.
2151 mdoc
->flags
|= MDOC_LITERAL
;
2154 if (DISP_literal
== n
->norm
->Bd
.type
)
2155 mdoc
->flags
|= MDOC_LITERAL
;
2156 if (DISP_unfilled
== n
->norm
->Bd
.type
)
2157 mdoc
->flags
|= MDOC_LITERAL
;
2170 struct mdoc_node
*n
;
2173 if (mdoc
->meta
.date
)
2174 free(mdoc
->meta
.date
);
2177 if (NULL
== n
->child
|| '\0' == n
->child
->string
[0]) {
2178 mdoc
->meta
.date
= mdoc
->quick
? mandoc_strdup("") :
2179 mandoc_normdate(mdoc
->parse
, NULL
, n
->line
, n
->pos
);
2184 mdoc_deroff(&datestr
, n
);
2186 mdoc
->meta
.date
= datestr
;
2188 mdoc
->meta
.date
= mandoc_normdate(mdoc
->parse
,
2189 datestr
, n
->line
, n
->pos
);
2198 struct mdoc_node
*nn
, *n
;
2204 if (mdoc
->meta
.title
)
2205 free(mdoc
->meta
.title
);
2207 free(mdoc
->meta
.vol
);
2208 if (mdoc
->meta
.arch
)
2209 free(mdoc
->meta
.arch
);
2211 mdoc
->meta
.title
= mdoc
->meta
.vol
= mdoc
->meta
.arch
= NULL
;
2213 /* First make all characters uppercase. */
2215 if (NULL
!= (nn
= n
->child
))
2216 for (p
= nn
->string
; *p
; p
++) {
2217 if (toupper((unsigned char)*p
) == *p
)
2221 * FIXME: don't be lazy: have this make all
2222 * characters be uppercase and just warn once.
2224 mdoc_nmsg(mdoc
, nn
, MANDOCERR_UPPERCASE
);
2229 * --> title = unknown, volume = local, msec = 0, arch = NULL
2232 if (NULL
== (nn
= n
->child
)) {
2233 /* XXX: make these macro values. */
2234 /* FIXME: warn about missing values. */
2235 mdoc
->meta
.title
= mandoc_strdup("UNKNOWN");
2236 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2237 mdoc
->meta
.msec
= mandoc_strdup("1");
2241 /* Handles: `.Dt TITLE'
2242 * --> title = TITLE, volume = local, msec = 0, arch = NULL
2245 mdoc
->meta
.title
= mandoc_strdup
2246 ('\0' == nn
->string
[0] ? "UNKNOWN" : nn
->string
);
2248 if (NULL
== (nn
= nn
->next
)) {
2249 /* FIXME: warn about missing msec. */
2250 /* XXX: make this a macro value. */
2251 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2252 mdoc
->meta
.msec
= mandoc_strdup("1");
2256 /* Handles: `.Dt TITLE SEC'
2257 * --> title = TITLE, volume = SEC is msec ?
2258 * format(msec) : SEC,
2259 * msec = SEC is msec ? atoi(msec) : 0,
2263 cp
= mandoc_a2msec(nn
->string
);
2265 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2266 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2268 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADMSEC
);
2269 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2270 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2273 if (NULL
== (nn
= nn
->next
))
2276 /* Handles: `.Dt TITLE SEC VOL'
2277 * --> title = TITLE, volume = VOL is vol ?
2279 * VOL is arch ? format(arch) :
2283 cp
= mdoc_a2vol(nn
->string
);
2285 free(mdoc
->meta
.vol
);
2286 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2288 cp
= mdoc_a2arch(nn
->string
);
2290 mdoc_nmsg(mdoc
, nn
, MANDOCERR_BADVOLARCH
);
2291 free(mdoc
->meta
.vol
);
2292 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2294 mdoc
->meta
.arch
= mandoc_strdup(cp
);
2297 /* Ignore any subsequent parameters... */
2298 /* FIXME: warn about subsequent parameters. */
2304 post_prol(POST_ARGS
)
2307 * Remove prologue macros from the document after they're
2308 * processed. The final document uses mdoc_meta for these
2309 * values and discards the originals.
2312 mdoc_node_delete(mdoc
, mdoc
->last
);
2313 if (mdoc
->meta
.title
&& mdoc
->meta
.date
&& mdoc
->meta
.os
)
2314 mdoc
->flags
|= MDOC_PBODY
;
2322 struct mdoc_node
*n
;
2325 * Make `Bx's second argument always start with an uppercase
2326 * letter. Groff checks if it's an "accepted" term, but we just
2327 * uppercase blindly.
2330 n
= mdoc
->last
->child
;
2331 if (n
&& NULL
!= (n
= n
->next
))
2332 *n
->string
= (char)toupper
2333 ((unsigned char)*n
->string
);
2342 struct utsname utsname
;
2343 static char *defbuf
;
2345 struct mdoc_node
*n
;
2350 * Set the operating system by way of the `Os' macro.
2351 * The order of precedence is:
2352 * 1. the argument of the `Os' macro, unless empty
2353 * 2. the -Ios=foo command line argument, if provided
2354 * 3. -DOSNAME="\"foo\"", if provided during compilation
2355 * 4. "sysname release" from uname(3)
2358 free(mdoc
->meta
.os
);
2359 mdoc
->meta
.os
= NULL
;
2360 mdoc_deroff(&mdoc
->meta
.os
, n
);
2365 mdoc
->meta
.os
= mandoc_strdup(mdoc
->defos
);
2370 mdoc
->meta
.os
= mandoc_strdup(OSNAME
);
2372 if (NULL
== defbuf
) {
2373 if (-1 == uname(&utsname
)) {
2374 mdoc_nmsg(mdoc
, n
, MANDOCERR_UNAME
);
2375 defbuf
= mandoc_strdup("UNKNOWN");
2377 mandoc_asprintf(&defbuf
, "%s %s",
2378 utsname
.sysname
, utsname
.release
);
2380 mdoc
->meta
.os
= mandoc_strdup(defbuf
);
2388 struct mdoc_node
*nn
, *n
;
2393 * Macros accepting `-std' as an argument have the name of the
2394 * current document (`Nm') filled in as the argument if it's not
2401 if (NULL
== mdoc
->meta
.name
)
2405 mdoc
->next
= MDOC_NEXT_CHILD
;
2407 if ( ! mdoc_word_alloc(mdoc
, n
->line
, n
->pos
, mdoc
->meta
.name
))
2414 static enum mdoc_sec
2415 a2sec(const char *p
)
2419 for (i
= 0; i
< (int)SEC__MAX
; i
++)
2420 if (secnames
[i
] && 0 == strcmp(p
, secnames
[i
]))
2421 return((enum mdoc_sec
)i
);
2427 macro2len(enum mdoct macro
)