]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.150 2011/01/01 12:18:37 kristaps Exp $ */
3 * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 #include <sys/utsname.h>
25 #include <sys/types.h>
37 #include "libmandoc.h"
39 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
41 #define PRE_ARGS struct mdoc *mdoc, struct mdoc_node *n
42 #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
*);
75 static int concat(struct mdoc
*, char *,
76 const struct mdoc_node
*, size_t);
78 static int ebool(POST_ARGS
);
79 static int berr_ge1(POST_ARGS
);
80 static int bwarn_ge1(POST_ARGS
);
81 static int eerr_eq0(POST_ARGS
);
82 static int eerr_eq1(POST_ARGS
);
83 static int eerr_ge1(POST_ARGS
);
84 static int eerr_le1(POST_ARGS
);
85 static int ewarn_eq0(POST_ARGS
);
86 static int ewarn_ge1(POST_ARGS
);
87 static int herr_eq0(POST_ARGS
);
88 static int herr_ge1(POST_ARGS
);
89 static int hwarn_eq0(POST_ARGS
);
90 static int hwarn_eq1(POST_ARGS
);
91 static int hwarn_le1(POST_ARGS
);
93 static int post_an(POST_ARGS
);
94 static int post_at(POST_ARGS
);
95 static int post_bf(POST_ARGS
);
96 static int post_bl(POST_ARGS
);
97 static int post_bl_block(POST_ARGS
);
98 static int post_bl_block_width(POST_ARGS
);
99 static int post_bl_block_tag(POST_ARGS
);
100 static int post_bl_head(POST_ARGS
);
101 static int post_dd(POST_ARGS
);
102 static int post_dt(POST_ARGS
);
103 static int post_defaults(POST_ARGS
);
104 static int post_literal(POST_ARGS
);
105 static int post_eoln(POST_ARGS
);
106 static int post_it(POST_ARGS
);
107 static int post_lb(POST_ARGS
);
108 static int post_nm(POST_ARGS
);
109 static int post_os(POST_ARGS
);
110 static int post_ignpar(POST_ARGS
);
111 static int post_prol(POST_ARGS
);
112 static int post_root(POST_ARGS
);
113 static int post_rs(POST_ARGS
);
114 static int post_sh(POST_ARGS
);
115 static int post_sh_body(POST_ARGS
);
116 static int post_sh_head(POST_ARGS
);
117 static int post_st(POST_ARGS
);
118 static int post_std(POST_ARGS
);
119 static int post_vt(POST_ARGS
);
120 static int pre_an(PRE_ARGS
);
121 static int pre_bd(PRE_ARGS
);
122 static int pre_bl(PRE_ARGS
);
123 static int pre_dd(PRE_ARGS
);
124 static int pre_display(PRE_ARGS
);
125 static int pre_dt(PRE_ARGS
);
126 static int pre_it(PRE_ARGS
);
127 static int pre_literal(PRE_ARGS
);
128 static int pre_os(PRE_ARGS
);
129 static int pre_par(PRE_ARGS
);
130 static int pre_sh(PRE_ARGS
);
131 static int pre_ss(PRE_ARGS
);
132 static int pre_std(PRE_ARGS
);
134 static v_post posts_an
[] = { post_an
, NULL
};
135 static v_post posts_at
[] = { post_at
, post_defaults
, NULL
};
136 static v_post posts_bd
[] = { post_literal
, hwarn_eq0
, bwarn_ge1
, NULL
};
137 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
138 static v_post posts_bk
[] = { hwarn_eq0
, bwarn_ge1
, NULL
};
139 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
140 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
141 static v_post posts_eoln
[] = { post_eoln
, NULL
};
142 static v_post posts_defaults
[] = { post_defaults
, NULL
};
143 static v_post posts_dd
[] = { ewarn_ge1
, post_dd
, post_prol
, NULL
};
144 static v_post posts_dl
[] = { post_literal
, bwarn_ge1
, herr_eq0
, NULL
};
145 static v_post posts_dt
[] = { post_dt
, post_prol
, NULL
};
146 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
147 static v_post posts_it
[] = { post_it
, NULL
};
148 static v_post posts_lb
[] = { eerr_eq1
, post_lb
, NULL
};
149 static v_post posts_nd
[] = { berr_ge1
, NULL
};
150 static v_post posts_nm
[] = { post_nm
, NULL
};
151 static v_post posts_notext
[] = { ewarn_eq0
, NULL
};
152 static v_post posts_os
[] = { post_os
, post_prol
, NULL
};
153 static v_post posts_rs
[] = { berr_ge1
, herr_eq0
, post_rs
, NULL
};
154 static v_post posts_sh
[] = { post_ignpar
, herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
155 static v_post posts_sp
[] = { eerr_le1
, NULL
};
156 static v_post posts_ss
[] = { post_ignpar
, herr_ge1
, bwarn_ge1
, NULL
};
157 static v_post posts_st
[] = { eerr_eq1
, post_st
, NULL
};
158 static v_post posts_std
[] = { post_std
, NULL
};
159 static v_post posts_text
[] = { eerr_ge1
, NULL
};
160 static v_post posts_text1
[] = { eerr_eq1
, NULL
};
161 static v_post posts_vt
[] = { post_vt
, NULL
};
162 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
163 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
164 static v_pre pres_an
[] = { pre_an
, NULL
};
165 static v_pre pres_bd
[] = { pre_display
, pre_bd
, pre_literal
, pre_par
, NULL
};
166 static v_pre pres_bl
[] = { pre_bl
, pre_par
, NULL
};
167 static v_pre pres_d1
[] = { pre_display
, NULL
};
168 static v_pre pres_dl
[] = { pre_literal
, pre_display
, NULL
};
169 static v_pre pres_dd
[] = { pre_dd
, NULL
};
170 static v_pre pres_dt
[] = { pre_dt
, NULL
};
171 static v_pre pres_er
[] = { NULL
, NULL
};
172 static v_pre pres_fd
[] = { NULL
, NULL
};
173 static v_pre pres_it
[] = { pre_it
, pre_par
, NULL
};
174 static v_pre pres_os
[] = { pre_os
, NULL
};
175 static v_pre pres_pp
[] = { pre_par
, NULL
};
176 static v_pre pres_sh
[] = { pre_sh
, NULL
};
177 static v_pre pres_ss
[] = { pre_ss
, NULL
};
178 static v_pre pres_std
[] = { pre_std
, NULL
};
180 const struct valids mdoc_valids
[MDOC_MAX
] = {
181 { NULL
, NULL
}, /* Ap */
182 { pres_dd
, posts_dd
}, /* Dd */
183 { pres_dt
, posts_dt
}, /* Dt */
184 { pres_os
, posts_os
}, /* Os */
185 { pres_sh
, posts_sh
}, /* Sh */
186 { pres_ss
, posts_ss
}, /* Ss */
187 { pres_pp
, posts_notext
}, /* Pp */
188 { pres_d1
, posts_wline
}, /* D1 */
189 { pres_dl
, posts_dl
}, /* Dl */
190 { pres_bd
, posts_bd
}, /* Bd */
191 { NULL
, NULL
}, /* Ed */
192 { pres_bl
, posts_bl
}, /* Bl */
193 { NULL
, NULL
}, /* El */
194 { pres_it
, posts_it
}, /* It */
195 { NULL
, posts_text
}, /* Ad */
196 { pres_an
, posts_an
}, /* An */
197 { NULL
, posts_defaults
}, /* Ar */
198 { NULL
, posts_text
}, /* Cd */
199 { NULL
, NULL
}, /* Cm */
200 { NULL
, NULL
}, /* Dv */
201 { pres_er
, posts_text
}, /* Er */
202 { NULL
, NULL
}, /* Ev */
203 { pres_std
, posts_std
}, /* Ex */
204 { NULL
, NULL
}, /* Fa */
205 { pres_fd
, posts_wtext
}, /* Fd */
206 { NULL
, NULL
}, /* Fl */
207 { NULL
, posts_text
}, /* Fn */
208 { NULL
, posts_wtext
}, /* Ft */
209 { NULL
, posts_text
}, /* Ic */
210 { NULL
, posts_text1
}, /* In */
211 { NULL
, posts_defaults
}, /* Li */
212 { NULL
, posts_nd
}, /* Nd */
213 { NULL
, posts_nm
}, /* Nm */
214 { NULL
, NULL
}, /* Op */
215 { NULL
, NULL
}, /* Ot */
216 { NULL
, posts_defaults
}, /* Pa */
217 { pres_std
, posts_std
}, /* Rv */
218 { NULL
, posts_st
}, /* St */
219 { NULL
, NULL
}, /* Va */
220 { NULL
, posts_vt
}, /* Vt */
221 { NULL
, posts_wtext
}, /* Xr */
222 { NULL
, posts_text
}, /* %A */
223 { NULL
, posts_text
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
224 { NULL
, posts_text
}, /* %D */ /* FIXME: check date with mandoc_a2time(). */
225 { NULL
, posts_text
}, /* %I */
226 { NULL
, posts_text
}, /* %J */
227 { NULL
, posts_text
}, /* %N */
228 { NULL
, posts_text
}, /* %O */
229 { NULL
, posts_text
}, /* %P */
230 { NULL
, posts_text
}, /* %R */
231 { NULL
, posts_text
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
232 { NULL
, posts_text
}, /* %V */
233 { NULL
, NULL
}, /* Ac */
234 { NULL
, NULL
}, /* Ao */
235 { NULL
, NULL
}, /* Aq */
236 { NULL
, posts_at
}, /* At */
237 { NULL
, NULL
}, /* Bc */
238 { NULL
, posts_bf
}, /* Bf */
239 { NULL
, NULL
}, /* Bo */
240 { NULL
, NULL
}, /* Bq */
241 { NULL
, NULL
}, /* Bsx */
242 { NULL
, NULL
}, /* Bx */
243 { NULL
, posts_bool
}, /* Db */
244 { NULL
, NULL
}, /* Dc */
245 { NULL
, NULL
}, /* Do */
246 { NULL
, NULL
}, /* Dq */
247 { NULL
, NULL
}, /* Ec */
248 { NULL
, NULL
}, /* Ef */
249 { NULL
, NULL
}, /* Em */
250 { NULL
, NULL
}, /* Eo */
251 { NULL
, NULL
}, /* Fx */
252 { NULL
, posts_text
}, /* Ms */
253 { NULL
, posts_notext
}, /* No */
254 { NULL
, posts_notext
}, /* Ns */
255 { NULL
, NULL
}, /* Nx */
256 { NULL
, NULL
}, /* Ox */
257 { NULL
, NULL
}, /* Pc */
258 { NULL
, posts_text1
}, /* Pf */
259 { NULL
, NULL
}, /* Po */
260 { NULL
, NULL
}, /* Pq */
261 { NULL
, NULL
}, /* Qc */
262 { NULL
, NULL
}, /* Ql */
263 { NULL
, NULL
}, /* Qo */
264 { NULL
, NULL
}, /* Qq */
265 { NULL
, NULL
}, /* Re */
266 { NULL
, posts_rs
}, /* Rs */
267 { NULL
, NULL
}, /* Sc */
268 { NULL
, NULL
}, /* So */
269 { NULL
, NULL
}, /* Sq */
270 { NULL
, posts_bool
}, /* Sm */
271 { NULL
, posts_text
}, /* Sx */
272 { NULL
, posts_text
}, /* Sy */
273 { NULL
, posts_text
}, /* Tn */
274 { NULL
, NULL
}, /* Ux */
275 { NULL
, NULL
}, /* Xc */
276 { NULL
, NULL
}, /* Xo */
277 { NULL
, posts_fo
}, /* Fo */
278 { NULL
, NULL
}, /* Fc */
279 { NULL
, NULL
}, /* Oo */
280 { NULL
, NULL
}, /* Oc */
281 { NULL
, posts_bk
}, /* Bk */
282 { NULL
, NULL
}, /* Ek */
283 { NULL
, posts_eoln
}, /* Bt */
284 { NULL
, NULL
}, /* Hf */
285 { NULL
, NULL
}, /* Fr */
286 { NULL
, posts_eoln
}, /* Ud */
287 { NULL
, posts_lb
}, /* Lb */
288 { NULL
, posts_notext
}, /* Lp */
289 { NULL
, posts_text
}, /* Lk */
290 { NULL
, posts_defaults
}, /* Mt */
291 { NULL
, NULL
}, /* Brq */
292 { NULL
, NULL
}, /* Bro */
293 { NULL
, NULL
}, /* Brc */
294 { NULL
, posts_text
}, /* %C */
295 { NULL
, NULL
}, /* Es */
296 { NULL
, NULL
}, /* En */
297 { NULL
, NULL
}, /* Dx */
298 { NULL
, posts_text
}, /* %Q */
299 { NULL
, posts_notext
}, /* br */
300 { pres_pp
, posts_sp
}, /* sp */
301 { NULL
, posts_text1
}, /* %U */
302 { NULL
, NULL
}, /* Ta */
305 #define RSORD_MAX 14 /* Number of `Rs' blocks. */
307 static const enum mdoct rsord
[RSORD_MAX
] = {
326 mdoc_valid_pre(struct mdoc
*mdoc
, struct mdoc_node
*n
)
337 check_text(mdoc
, line
, pos
, tp
);
349 if (NULL
== mdoc_valids
[n
->tok
].pre
)
351 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
352 if ( ! (*p
)(mdoc
, n
))
359 mdoc_valid_post(struct mdoc
*mdoc
)
363 if (MDOC_VALID
& mdoc
->last
->flags
)
365 mdoc
->last
->flags
|= MDOC_VALID
;
367 switch (mdoc
->last
->type
) {
373 return(post_root(mdoc
));
378 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
380 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
388 check_count(struct mdoc
*m
, enum mdoc_type type
,
389 enum check_lvl lvl
, enum check_ineq ineq
, int val
)
393 if (m
->last
->type
!= type
)
399 if (m
->last
->nchild
< val
)
404 if (m
->last
->nchild
> val
)
409 if (val
== m
->last
->nchild
)
417 if (CHECK_WARN
== lvl
) {
418 return(mdoc_vmsg(m
, MANDOCERR_ARGCOUNT
,
419 m
->last
->line
, m
->last
->pos
,
420 "want %s%d children (have %d)",
421 p
, val
, m
->last
->nchild
));
424 /* FIXME: THIS IS THE SAME AS THE ABOVE. */
426 return(mdoc_vmsg(m
, MANDOCERR_ARGCOUNT
,
427 m
->last
->line
, m
->last
->pos
,
428 "require %s%d children (have %d)",
429 p
, val
, m
->last
->nchild
));
436 return(check_count(mdoc
, MDOC_BODY
, CHECK_FATAL
, CHECK_GT
, 0));
442 return(check_count(mdoc
, MDOC_BODY
, CHECK_WARN
, CHECK_GT
, 0));
448 return(check_count(mdoc
, MDOC_ELEM
, CHECK_FATAL
, CHECK_EQ
, 0));
454 return(check_count(mdoc
, MDOC_ELEM
, CHECK_FATAL
, CHECK_EQ
, 1));
460 return(check_count(mdoc
, MDOC_ELEM
, CHECK_FATAL
, CHECK_GT
, 0));
466 return(check_count(mdoc
, MDOC_ELEM
, CHECK_FATAL
, CHECK_LT
, 2));
472 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_EQ
, 0));
478 return(check_count(mdoc
, MDOC_ELEM
, CHECK_WARN
, CHECK_GT
, 0));
484 return(check_count(mdoc
, MDOC_HEAD
, CHECK_FATAL
, CHECK_EQ
, 0));
490 return(check_count(mdoc
, MDOC_HEAD
, CHECK_FATAL
, CHECK_GT
, 0));
496 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 0));
502 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_EQ
, 1));
508 return(check_count(mdoc
, MDOC_HEAD
, CHECK_WARN
, CHECK_LT
, 2));
512 check_args(struct mdoc
*m
, struct mdoc_node
*n
)
519 assert(n
->args
->argc
);
520 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
521 check_argv(m
, n
, &n
->args
->argv
[i
]);
525 check_argv(struct mdoc
*m
, struct mdoc_node
*n
, struct mdoc_argv
*v
)
529 for (i
= 0; i
< (int)v
->sz
; i
++)
530 check_text(m
, v
->line
, v
->pos
, v
->value
[i
]);
532 /* FIXME: move to post_std(). */
534 if (MDOC_Std
== v
->arg
)
535 if ( ! (v
->sz
|| m
->meta
.name
))
536 mdoc_nmsg(m
, n
, MANDOCERR_NONAME
);
540 check_text(struct mdoc
*m
, int ln
, int pos
, char *p
)
545 for ( ; *p
; p
++, pos
++) {
546 sz
= strcspn(p
, "\t\\");
555 if ( ! (MDOC_LITERAL
& m
->flags
))
556 mdoc_pmsg(m
, ln
, pos
, MANDOCERR_BADTAB
);
560 if (0 == (c
= mandoc_special(p
))) {
561 mdoc_pmsg(m
, ln
, pos
, MANDOCERR_BADESCAPE
);
571 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
575 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
576 (t
== n
->parent
->type
))
579 mdoc_vmsg(mdoc
, MANDOCERR_SYNTCHILD
,
580 n
->line
, n
->pos
, "want parent %s",
581 MDOC_ROOT
== t
? "<root>" :
582 mdoc_macronames
[tok
]);
588 pre_display(PRE_ARGS
)
590 struct mdoc_node
*node
;
592 if (MDOC_BLOCK
!= n
->type
)
595 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
596 if (MDOC_BLOCK
== node
->type
)
597 if (MDOC_Bd
== node
->tok
)
601 mdoc_nmsg(mdoc
, n
, MANDOCERR_NESTEDDISP
);
611 const char *offs
, *width
;
613 struct mdoc_node
*np
;
615 if (MDOC_BLOCK
!= n
->type
) {
616 if (ENDBODY_NOT
!= n
->end
) {
618 np
= n
->pending
->parent
;
623 assert(MDOC_BLOCK
== np
->type
);
624 assert(MDOC_Bl
== np
->tok
);
629 * First figure out which kind of list to use: bind ourselves to
630 * the first mentioned list type and warn about any remaining
631 * ones. If we find no list type, we default to LIST_item.
635 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
639 switch (n
->args
->argv
[i
].arg
) {
640 /* Set list types. */
674 /* Set list arguments. */
676 dup
= n
->norm
->Bl
.comp
;
680 dup
= (NULL
!= n
->norm
->Bl
.width
);
681 width
= n
->args
->argv
[i
].value
[0];
684 /* NB: this can be empty! */
685 if (n
->args
->argv
[i
].sz
) {
686 offs
= n
->args
->argv
[i
].value
[0];
687 dup
= (NULL
!= n
->norm
->Bl
.offs
);
690 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
696 /* Check: duplicate auxiliary arguments. */
699 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
702 n
->norm
->Bl
.comp
= comp
;
704 n
->norm
->Bl
.offs
= offs
;
706 n
->norm
->Bl
.width
= width
;
708 /* Check: multiple list types. */
710 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
!= LIST__NONE
)
711 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTREP
);
713 /* Assign list type. */
715 if (LIST__NONE
!= lt
&& n
->norm
->Bl
.type
== LIST__NONE
) {
716 n
->norm
->Bl
.type
= lt
;
717 /* Set column information, too. */
718 if (LIST_column
== lt
) {
721 n
->norm
->Bl
.cols
= (const char **)
722 n
->args
->argv
[i
].value
;
726 /* The list type should come first. */
728 if (n
->norm
->Bl
.type
== LIST__NONE
)
729 if (n
->norm
->Bl
.width
||
732 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTFIRST
);
737 /* Allow lists to default to LIST_item. */
739 if (LIST__NONE
== n
->norm
->Bl
.type
) {
740 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTTYPE
);
741 n
->norm
->Bl
.type
= LIST_item
;
745 * Validate the width field. Some list types don't need width
746 * types and should be warned about them. Others should have it
747 * and must also be warned.
750 switch (n
->norm
->Bl
.type
) {
752 if (n
->norm
->Bl
.width
)
754 mdoc_nmsg(mdoc
, n
, MANDOCERR_NOWIDTHARG
);
765 if (n
->norm
->Bl
.width
)
766 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
782 struct mdoc_node
*np
;
784 if (MDOC_BLOCK
!= n
->type
) {
785 if (ENDBODY_NOT
!= n
->end
) {
787 np
= n
->pending
->parent
;
792 assert(MDOC_BLOCK
== np
->type
);
793 assert(MDOC_Bd
== np
->tok
);
798 for (i
= 0; n
->args
&& i
< (int)n
->args
->argc
; i
++) {
803 switch (n
->args
->argv
[i
].arg
) {
810 case (MDOC_Unfilled
):
820 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADDISP
);
823 /* NB: this can be empty! */
824 if (n
->args
->argv
[i
].sz
) {
825 offs
= n
->args
->argv
[i
].value
[0];
826 dup
= (NULL
!= n
->norm
->Bd
.offs
);
829 mdoc_nmsg(mdoc
, n
, MANDOCERR_IGNARGV
);
833 dup
= n
->norm
->Bd
.comp
;
840 /* Check whether we have duplicates. */
843 mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
);
845 /* Make our auxiliary assignments. */
848 n
->norm
->Bd
.offs
= offs
;
850 n
->norm
->Bd
.comp
= comp
;
852 /* Check whether a type has already been assigned. */
854 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
!= DISP__NONE
)
855 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPREP
);
857 /* Make our type assignment. */
859 if (DISP__NONE
!= dt
&& n
->norm
->Bd
.type
== DISP__NONE
)
860 n
->norm
->Bd
.type
= dt
;
863 if (DISP__NONE
== n
->norm
->Bd
.type
) {
864 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPTYPE
);
865 n
->norm
->Bd
.type
= DISP_ragged
;
876 if (MDOC_BLOCK
!= n
->type
)
878 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
886 if (MDOC_BLOCK
!= n
->type
)
889 mdoc
->regs
->regs
[(int)REG_nS
].set
= 0;
890 return(check_parent(mdoc
, n
, MDOC_MAX
, MDOC_ROOT
));
898 if (MDOC_BLOCK
!= n
->type
)
901 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
913 for (i
= 1; i
< (int)n
->args
->argc
; i
++)
914 mdoc_pmsg(mdoc
, n
->args
->argv
[i
].line
,
915 n
->args
->argv
[i
].pos
, MANDOCERR_IGNARGV
);
917 if (MDOC_Split
== n
->args
->argv
[0].arg
)
918 n
->norm
->An
.auth
= AUTH_split
;
919 else if (MDOC_Nosplit
== n
->args
->argv
[0].arg
)
920 n
->norm
->An
.auth
= AUTH_nosplit
;
931 if (n
->args
&& 1 == n
->args
->argc
)
932 if (MDOC_Std
== n
->args
->argv
[0].arg
)
935 mdoc_nmsg(mdoc
, n
, MANDOCERR_NOARGV
);
943 if (0 == mdoc
->meta
.date
|| mdoc
->meta
.os
)
944 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
946 if (mdoc
->meta
.title
)
947 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
956 if (NULL
== mdoc
->meta
.title
|| 0 == mdoc
->meta
.date
)
957 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
960 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
969 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
970 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
);
973 mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
);
982 struct mdoc_node
*np
;
986 * Unlike other data pointers, these are "housed" by the HEAD
987 * element, which contains the goods.
990 if (MDOC_HEAD
!= mdoc
->last
->type
) {
991 if (ENDBODY_NOT
!= mdoc
->last
->end
) {
992 assert(mdoc
->last
->pending
);
993 np
= mdoc
->last
->pending
->parent
->head
;
994 } else if (MDOC_BLOCK
!= mdoc
->last
->type
) {
995 np
= mdoc
->last
->parent
->head
;
997 np
= mdoc
->last
->head
;
1000 assert(MDOC_HEAD
== np
->type
);
1001 assert(MDOC_Bf
== np
->tok
);
1006 assert(MDOC_BLOCK
== np
->parent
->type
);
1007 assert(MDOC_Bf
== np
->parent
->tok
);
1010 * Cannot have both argument and parameter.
1011 * If neither is specified, let it through with a warning.
1014 if (np
->parent
->args
&& np
->child
) {
1015 mdoc_nmsg(mdoc
, np
, MANDOCERR_SYNTARGVCOUNT
);
1017 } else if (NULL
== np
->parent
->args
&& NULL
== np
->child
) {
1018 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1022 /* Extract argument into data. */
1024 if (np
->parent
->args
) {
1025 arg
= np
->parent
->args
->argv
[0].arg
;
1026 if (MDOC_Emphasis
== arg
)
1027 np
->norm
->Bf
.font
= FONT_Em
;
1028 else if (MDOC_Literal
== arg
)
1029 np
->norm
->Bf
.font
= FONT_Li
;
1030 else if (MDOC_Symbolic
== arg
)
1031 np
->norm
->Bf
.font
= FONT_Sy
;
1037 /* Extract parameter into data. */
1039 if (0 == strcmp(np
->child
->string
, "Em"))
1040 np
->norm
->Bf
.font
= FONT_Em
;
1041 else if (0 == strcmp(np
->child
->string
, "Li"))
1042 np
->norm
->Bf
.font
= FONT_Li
;
1043 else if (0 == strcmp(np
->child
->string
, "Sy"))
1044 np
->norm
->Bf
.font
= FONT_Sy
;
1046 mdoc_nmsg(mdoc
, np
, MANDOCERR_FONTTYPE
);
1058 assert(mdoc
->last
->child
);
1059 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1061 p
= mdoc_a2lib(mdoc
->last
->child
->string
);
1063 /* If lookup ok, replace with table value. */
1066 free(mdoc
->last
->child
->string
);
1067 mdoc
->last
->child
->string
= mandoc_strdup(p
);
1071 /* If not, use "library ``xxxx''. */
1073 sz
= strlen(mdoc
->last
->child
->string
) +
1074 2 + strlen("\\(lqlibrary\\(rq");
1075 buf
= mandoc_malloc(sz
);
1076 snprintf(buf
, sz
, "library \\(lq%s\\(rq",
1077 mdoc
->last
->child
->string
);
1078 free(mdoc
->last
->child
->string
);
1079 mdoc
->last
->child
->string
= buf
;
1084 post_eoln(POST_ARGS
)
1087 if (mdoc
->last
->child
)
1088 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
);
1096 const struct mdoc_node
*n
;
1099 * The Vt macro comes in both ELEM and BLOCK form, both of which
1100 * have different syntaxes (yet more context-sensitive
1101 * behaviour). ELEM types must have a child; BLOCK types,
1102 * specifically the BODY, should only have TEXT children.
1105 if (MDOC_ELEM
== mdoc
->last
->type
)
1106 return(eerr_ge1(mdoc
));
1107 if (MDOC_BODY
!= mdoc
->last
->type
)
1110 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
1111 if (MDOC_TEXT
!= n
->type
)
1112 mdoc_nmsg(mdoc
, n
, MANDOCERR_CHILD
);
1123 /* If no child specified, make sure we have the meta name. */
1125 if (NULL
== mdoc
->last
->child
&& NULL
== mdoc
->meta
.name
) {
1126 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NONAME
);
1128 } else if (mdoc
->meta
.name
)
1131 /* If no meta name, set it from the child. */
1133 if ( ! concat(mdoc
, buf
, mdoc
->last
->child
, BUFSIZ
))
1136 mdoc
->meta
.name
= mandoc_strdup(buf
);
1142 post_literal(POST_ARGS
)
1146 * The `Dl' (note "el" not "one") and `Bd' macros unset the
1147 * MDOC_LITERAL flag as they leave. Note that `Bd' only sets
1148 * this in literal mode, but it doesn't hurt to just switch it
1149 * off in general since displays can't be nested.
1152 if (MDOC_BODY
== mdoc
->last
->type
)
1153 mdoc
->flags
&= ~MDOC_LITERAL
;
1159 post_defaults(POST_ARGS
)
1161 struct mdoc_node
*nn
;
1164 * The `Ar' defaults to "file ..." if no value is provided as an
1165 * argument; the `Mt' and `Pa' macros use "~"; the `Li' just
1166 * gets an empty string.
1169 if (mdoc
->last
->child
)
1173 mdoc
->next
= MDOC_NEXT_CHILD
;
1177 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "file"))
1179 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "..."))
1183 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "AT&T"))
1185 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "UNIX"))
1189 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, ""))
1195 if ( ! mdoc_word_alloc(mdoc
, nn
->line
, nn
->pos
, "~"))
1215 * If we have a child, look it up in the standard keys. If a
1216 * key exist, use that instead of the child; if it doesn't,
1217 * prefix "AT&T UNIX " to the existing data.
1220 if (NULL
== mdoc
->last
->child
)
1223 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1224 p
= mdoc_a2att(mdoc
->last
->child
->string
);
1227 free(mdoc
->last
->child
->string
);
1228 mdoc
->last
->child
->string
= mandoc_strdup(p
);
1230 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADATT
);
1232 q
= mdoc
->last
->child
->string
;
1233 sz
= strlen(p
) + strlen(q
) + 1;
1234 buf
= mandoc_malloc(sz
);
1235 strlcpy(buf
, p
, sz
);
1236 strlcat(buf
, q
, sz
);
1237 free(mdoc
->last
->child
->string
);
1238 mdoc
->last
->child
->string
= buf
;
1247 struct mdoc_node
*np
;
1250 if (AUTH__NONE
!= np
->norm
->An
.auth
&& np
->child
)
1251 return(eerr_eq0(mdoc
));
1254 * FIXME: make this ewarn and make sure that the front-ends
1255 * don't print the arguments.
1257 if (AUTH__NONE
!= np
->norm
->An
.auth
|| np
->child
)
1260 mdoc_nmsg(mdoc
, np
, MANDOCERR_NOARGS
);
1270 struct mdoc_node
*n
, *c
;
1273 if (MDOC_BLOCK
!= mdoc
->last
->type
)
1276 n
= mdoc
->last
->parent
->parent
;
1277 lt
= n
->norm
->Bl
.type
;
1279 if (LIST__NONE
== lt
) {
1280 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_LISTTYPE
);
1286 if (mdoc
->last
->head
->child
)
1288 /* FIXME: give this a dummy value. */
1289 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
);
1298 if (NULL
== mdoc
->last
->head
->child
)
1299 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
);
1308 if (NULL
== mdoc
->last
->body
->child
)
1309 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
);
1312 if (mdoc
->last
->head
->child
)
1313 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
);
1316 cols
= (int)n
->norm
->Bl
.ncols
;
1318 assert(NULL
== mdoc
->last
->head
->child
);
1320 if (NULL
== mdoc
->last
->body
->child
)
1321 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
);
1323 for (i
= 0, c
= mdoc
->last
->child
; c
; c
= c
->next
)
1324 if (MDOC_BODY
== c
->type
)
1328 er
= MANDOCERR_ARGCOUNT
;
1329 else if (i
== cols
|| i
== cols
+ 1)
1332 er
= MANDOCERR_SYNTARGCOUNT
;
1334 rc
= mdoc_vmsg(mdoc
, er
,
1335 mdoc
->last
->line
, mdoc
->last
->pos
,
1336 "columns == %d (have %d)", cols
, i
);
1346 post_bl_block(POST_ARGS
)
1348 struct mdoc_node
*n
;
1351 * These are fairly complicated, so we've broken them into two
1352 * functions. post_bl_block_tag() is called when a -tag is
1353 * specified, but no -width (it must be guessed). The second
1354 * when a -width is specified (macro indicators must be
1355 * rewritten into real lengths).
1360 if (LIST_tag
== n
->norm
->Bl
.type
&&
1361 NULL
== n
->norm
->Bl
.width
) {
1362 if ( ! post_bl_block_tag(mdoc
))
1364 } else if (NULL
!= n
->norm
->Bl
.width
) {
1365 if ( ! post_bl_block_width(mdoc
))
1370 assert(n
->norm
->Bl
.width
);
1375 post_bl_block_width(POST_ARGS
)
1380 struct mdoc_node
*n
;
1386 * Calculate the real width of a list from the -width string,
1387 * which may contain a macro (with a known default width), a
1388 * literal string, or a scaling width.
1390 * If the value to -width is a macro, then we re-write it to be
1391 * the macro's width as set in share/tmac/mdoc/doc-common.
1394 if (0 == strcmp(n
->norm
->Bl
.width
, "Ds"))
1396 else if (MDOC_MAX
== (tok
= mdoc_hash_find(n
->norm
->Bl
.width
)))
1398 else if (0 == (width
= mdoc_macro2len(tok
))) {
1399 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADWIDTH
);
1403 /* The value already exists: free and reallocate it. */
1407 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
1408 if (MDOC_Width
== n
->args
->argv
[i
].arg
)
1411 assert(i
< (int)n
->args
->argc
);
1413 snprintf(buf
, NUMSIZ
, "%zun", width
);
1414 free(n
->args
->argv
[i
].value
[0]);
1415 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1417 /* Set our width! */
1418 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1423 post_bl_block_tag(POST_ARGS
)
1425 struct mdoc_node
*n
, *nn
;
1431 * Calculate the -width for a `Bl -tag' list if it hasn't been
1432 * provided. Uses the first head macro. NOTE AGAIN: this is
1433 * ONLY if the -width argument has NOT been provided. See
1434 * post_bl_block_width() for converting the -width string.
1440 for (nn
= n
->body
->child
; nn
; nn
= nn
->next
) {
1441 if (MDOC_It
!= nn
->tok
)
1444 assert(MDOC_BLOCK
== nn
->type
);
1445 nn
= nn
->head
->child
;
1450 if (MDOC_TEXT
== nn
->type
) {
1451 sz
= strlen(nn
->string
) + 1;
1455 if (0 != (ssz
= mdoc_macro2len(nn
->tok
)))
1461 /* Defaults to ten ens. */
1463 snprintf(buf
, NUMSIZ
, "%zun", sz
);
1466 * We have to dynamically add this to the macro's argument list.
1467 * We're guaranteed that a MDOC_Width doesn't already exist.
1471 i
= (int)(n
->args
->argc
)++;
1473 n
->args
->argv
= mandoc_realloc(n
->args
->argv
,
1474 n
->args
->argc
* sizeof(struct mdoc_argv
));
1476 n
->args
->argv
[i
].arg
= MDOC_Width
;
1477 n
->args
->argv
[i
].line
= n
->line
;
1478 n
->args
->argv
[i
].pos
= n
->pos
;
1479 n
->args
->argv
[i
].sz
= 1;
1480 n
->args
->argv
[i
].value
= mandoc_malloc(sizeof(char *));
1481 n
->args
->argv
[i
].value
[0] = mandoc_strdup(buf
);
1483 /* Set our width! */
1484 n
->norm
->Bl
.width
= n
->args
->argv
[i
].value
[0];
1490 post_bl_head(POST_ARGS
)
1492 struct mdoc_node
*np
, *nn
, *nnp
;
1495 if (LIST_column
!= mdoc
->last
->norm
->Bl
.type
)
1496 /* FIXME: this should be ERROR class... */
1497 return(hwarn_eq0(mdoc
));
1500 * Convert old-style lists, where the column width specifiers
1501 * trail as macro parameters, to the new-style ("normal-form")
1502 * lists where they're argument values following -column.
1505 /* First, disallow both types and allow normal-form. */
1508 * TODO: technically, we can accept both and just merge the two
1509 * lists, but I'll leave that for another day.
1512 if (mdoc
->last
->norm
->Bl
.ncols
&& mdoc
->last
->nchild
) {
1513 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_COLUMNS
);
1515 } else if (NULL
== mdoc
->last
->child
)
1518 np
= mdoc
->last
->parent
;
1521 for (j
= 0; j
< (int)np
->args
->argc
; j
++)
1522 if (MDOC_Column
== np
->args
->argv
[j
].arg
)
1525 assert(j
< (int)np
->args
->argc
);
1526 assert(0 == np
->args
->argv
[j
].sz
);
1529 * Accomodate for new-style groff column syntax. Shuffle the
1530 * child nodes, all of which must be TEXT, as arguments for the
1531 * column field. Then, delete the head children.
1534 np
->args
->argv
[j
].sz
= (size_t)mdoc
->last
->nchild
;
1535 np
->args
->argv
[j
].value
= mandoc_malloc
1536 ((size_t)mdoc
->last
->nchild
* sizeof(char *));
1538 mdoc
->last
->norm
->Bl
.ncols
= np
->args
->argv
[j
].sz
;
1539 mdoc
->last
->norm
->Bl
.cols
= (const char **)np
->args
->argv
[j
].value
;
1541 for (i
= 0, nn
= mdoc
->last
->child
; nn
; i
++) {
1542 np
->args
->argv
[j
].value
[i
] = nn
->string
;
1546 mdoc_node_delete(NULL
, nnp
);
1549 mdoc
->last
->nchild
= 0;
1550 mdoc
->last
->child
= NULL
;
1558 struct mdoc_node
*n
;
1560 if (MDOC_HEAD
== mdoc
->last
->type
)
1561 return(post_bl_head(mdoc
));
1562 if (MDOC_BLOCK
== mdoc
->last
->type
)
1563 return(post_bl_block(mdoc
));
1564 if (MDOC_BODY
!= mdoc
->last
->type
)
1567 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1572 mdoc_nmsg(mdoc
, n
, MANDOCERR_CHILD
);
1582 mdoc_nmsg(mdoc
, n
, MANDOCERR_SYNTCHILD
);
1590 ebool(struct mdoc
*mdoc
)
1593 if (NULL
== mdoc
->last
->child
)
1596 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1598 if (0 == strcmp(mdoc
->last
->child
->string
, "on"))
1600 if (0 == strcmp(mdoc
->last
->child
->string
, "off"))
1603 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADBOOL
);
1608 post_root(POST_ARGS
)
1611 struct mdoc_node
*n
;
1615 /* Check that we have a finished prologue. */
1617 if ( ! (MDOC_PBODY
& mdoc
->flags
)) {
1619 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCPROLOG
);
1625 /* Check that we begin with a proper `Sh'. */
1627 if (NULL
== n
->child
) {
1629 mdoc_nmsg(mdoc
, n
, MANDOCERR_NODOCBODY
);
1630 } else if (MDOC_BLOCK
!= n
->child
->type
||
1631 MDOC_Sh
!= n
->child
->tok
) {
1633 /* Can this be lifted? See rxdebug.1 for example. */
1634 mdoc_nmsg(mdoc
, n
, MANDOCERR_NODOCBODY
);
1637 return(erc
? 0 : 1);
1645 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
1647 p
= mdoc_a2st(mdoc
->last
->child
->string
);
1650 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADSTANDARD
);
1651 mdoc_node_delete(mdoc
, mdoc
->last
);
1653 free(mdoc
->last
->child
->string
);
1654 mdoc
->last
->child
->string
= mandoc_strdup(p
);
1663 struct mdoc_node
*nn
, *next
, *prev
;
1666 if (MDOC_BODY
!= mdoc
->last
->type
)
1670 * Make sure only certain types of nodes are allowed within the
1671 * the `Rs' body. Delete offending nodes and raise a warning.
1672 * Do this before re-ordering for the sake of clarity.
1676 for (nn
= mdoc
->last
->child
; nn
; nn
= next
) {
1677 for (i
= 0; i
< RSORD_MAX
; i
++)
1678 if (nn
->tok
== rsord
[i
])
1681 if (i
< RSORD_MAX
) {
1682 if (MDOC__J
== rsord
[i
])
1683 mdoc
->last
->norm
->Rs
.child_J
= nn
;
1689 mdoc_nmsg(mdoc
, nn
, MANDOCERR_CHILD
);
1690 mdoc_node_delete(mdoc
, nn
);
1694 * The full `Rs' block needs special handling to order the
1695 * sub-elements according to `rsord'. Pick through each element
1696 * and correctly order it. This is a insertion sort.
1700 for (nn
= mdoc
->last
->child
->next
; nn
; nn
= next
) {
1701 /* Determine order of `nn'. */
1702 for (i
= 0; i
< RSORD_MAX
; i
++)
1703 if (rsord
[i
] == nn
->tok
)
1707 * Remove `nn' from the chain. This somewhat
1708 * repeats mdoc_node_unlink(), but since we're
1709 * just re-ordering, there's no need for the
1710 * full unlink process.
1713 if (NULL
!= (next
= nn
->next
))
1714 next
->prev
= nn
->prev
;
1716 if (NULL
!= (prev
= nn
->prev
))
1717 prev
->next
= nn
->next
;
1719 nn
->prev
= nn
->next
= NULL
;
1722 * Scan back until we reach a node that's
1723 * ordered before `nn'.
1726 for ( ; prev
; prev
= prev
->prev
) {
1727 /* Determine order of `prev'. */
1728 for (j
= 0; j
< RSORD_MAX
; j
++)
1729 if (rsord
[j
] == prev
->tok
)
1737 * Set `nn' back into its correct place in front
1738 * of the `prev' node.
1745 prev
->next
->prev
= nn
;
1746 nn
->next
= prev
->next
;
1749 mdoc
->last
->child
->prev
= nn
;
1750 nn
->next
= mdoc
->last
->child
;
1751 mdoc
->last
->child
= nn
;
1762 if (MDOC_HEAD
== mdoc
->last
->type
)
1763 return(post_sh_head(mdoc
));
1764 if (MDOC_BODY
== mdoc
->last
->type
)
1765 return(post_sh_body(mdoc
));
1771 post_sh_body(POST_ARGS
)
1773 struct mdoc_node
*n
;
1775 if (SEC_NAME
!= mdoc
->lastsec
)
1779 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1780 * macros (can have multiple `Nm' and one `Nd'). Note that the
1781 * children of the BODY declaration can also be "text".
1784 if (NULL
== (n
= mdoc
->last
->child
)) {
1785 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1789 for ( ; n
&& n
->next
; n
= n
->next
) {
1790 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1792 if (MDOC_TEXT
== n
->type
)
1794 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1798 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1801 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
);
1806 post_sh_head(POST_ARGS
)
1812 * Process a new section. Sections are either "named" or
1813 * "custom". Custom sections are user-defined, while named ones
1814 * follow a conventional order and may only appear in certain
1818 if ( ! concat(mdoc
, buf
, mdoc
->last
->child
, BUFSIZ
))
1821 sec
= mdoc_str2sec(buf
);
1823 /* The NAME should be first. */
1825 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1826 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NAMESECFIRST
);
1828 /* The SYNOPSIS gets special attention in other areas. */
1830 if (SEC_SYNOPSIS
== sec
)
1831 mdoc
->flags
|= MDOC_SYNOPSIS
;
1833 mdoc
->flags
&= ~MDOC_SYNOPSIS
;
1835 /* Mark our last section. */
1837 mdoc
->lastsec
= sec
;
1839 /* We don't care about custom sections after this. */
1841 if (SEC_CUSTOM
== sec
)
1845 * Check whether our non-custom section is being repeated or is
1849 if (sec
== mdoc
->lastnamed
)
1850 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECREP
);
1852 if (sec
< mdoc
->lastnamed
)
1853 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECOOO
);
1855 /* Mark the last named section. */
1857 mdoc
->lastnamed
= sec
;
1859 /* Check particular section/manual conventions. */
1861 assert(mdoc
->meta
.msec
);
1864 case (SEC_RETURN_VALUES
):
1869 if (*mdoc
->meta
.msec
== '2')
1871 if (*mdoc
->meta
.msec
== '3')
1873 if (*mdoc
->meta
.msec
== '9')
1875 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECMSEC
);
1885 post_ignpar(POST_ARGS
)
1887 struct mdoc_node
*np
;
1889 if (MDOC_BODY
!= mdoc
->last
->type
)
1892 if (NULL
!= (np
= mdoc
->last
->child
))
1893 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
1894 mdoc_nmsg(mdoc
, np
, MANDOCERR_IGNPAR
);
1895 mdoc_node_delete(mdoc
, np
);
1898 if (NULL
!= (np
= mdoc
->last
->last
))
1899 if (MDOC_Pp
== np
->tok
|| MDOC_Lp
== np
->tok
) {
1900 mdoc_nmsg(mdoc
, np
, MANDOCERR_IGNPAR
);
1901 mdoc_node_delete(mdoc
, np
);
1911 if (NULL
== mdoc
->last
)
1913 if (MDOC_ELEM
!= n
->type
&& MDOC_BLOCK
!= n
->type
)
1917 * Don't allow prior `Lp' or `Pp' prior to a paragraph-type
1918 * block: `Lp', `Pp', or non-compact `Bd' or `Bl'.
1921 if (MDOC_Pp
!= mdoc
->last
->tok
&& MDOC_Lp
!= mdoc
->last
->tok
)
1923 if (MDOC_Bl
== n
->tok
&& n
->norm
->Bl
.comp
)
1925 if (MDOC_Bd
== n
->tok
&& n
->norm
->Bd
.comp
)
1927 if (MDOC_It
== n
->tok
&& n
->parent
->norm
->Bl
.comp
)
1930 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_IGNPAR
);
1931 mdoc_node_delete(mdoc
, mdoc
->last
);
1936 pre_literal(PRE_ARGS
)
1939 if (MDOC_BODY
!= n
->type
)
1943 * The `Dl' (note "el" not "one") and `Bd -literal' and `Bd
1944 * -unfilled' macros set MDOC_LITERAL on entrance to the body.
1949 mdoc
->flags
|= MDOC_LITERAL
;
1952 if (DISP_literal
== n
->norm
->Bd
.type
)
1953 mdoc
->flags
|= MDOC_LITERAL
;
1954 if (DISP_unfilled
== n
->norm
->Bd
.type
)
1955 mdoc
->flags
|= MDOC_LITERAL
;
1969 struct mdoc_node
*n
;
1973 if (NULL
== n
->child
) {
1974 mdoc
->meta
.date
= time(NULL
);
1978 if ( ! concat(mdoc
, buf
, n
->child
, DATESIZE
))
1981 mdoc
->meta
.date
= mandoc_a2time
1982 (MTIME_MDOCDATE
| MTIME_CANONICAL
, buf
);
1984 if (0 == mdoc
->meta
.date
) {
1985 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADDATE
);
1986 mdoc
->meta
.date
= time(NULL
);
1995 struct mdoc_node
*nn
, *n
;
2001 if (mdoc
->meta
.title
)
2002 free(mdoc
->meta
.title
);
2004 free(mdoc
->meta
.vol
);
2005 if (mdoc
->meta
.arch
)
2006 free(mdoc
->meta
.arch
);
2008 mdoc
->meta
.title
= mdoc
->meta
.vol
= mdoc
->meta
.arch
= NULL
;
2010 /* First make all characters uppercase. */
2012 if (NULL
!= (nn
= n
->child
))
2013 for (p
= nn
->string
; *p
; p
++) {
2014 if (toupper((u_char
)*p
) == *p
)
2018 * FIXME: don't be lazy: have this make all
2019 * characters be uppercase and just warn once.
2021 mdoc_nmsg(mdoc
, nn
, MANDOCERR_UPPERCASE
);
2026 * --> title = unknown, volume = local, msec = 0, arch = NULL
2029 if (NULL
== (nn
= n
->child
)) {
2030 /* XXX: make these macro values. */
2031 /* FIXME: warn about missing values. */
2032 mdoc
->meta
.title
= mandoc_strdup("UNKNOWN");
2033 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2034 mdoc
->meta
.msec
= mandoc_strdup("1");
2038 /* Handles: `.Dt TITLE'
2039 * --> title = TITLE, volume = local, msec = 0, arch = NULL
2042 mdoc
->meta
.title
= mandoc_strdup
2043 ('\0' == nn
->string
[0] ? "UNKNOWN" : nn
->string
);
2045 if (NULL
== (nn
= nn
->next
)) {
2046 /* FIXME: warn about missing msec. */
2047 /* XXX: make this a macro value. */
2048 mdoc
->meta
.vol
= mandoc_strdup("LOCAL");
2049 mdoc
->meta
.msec
= mandoc_strdup("1");
2053 /* Handles: `.Dt TITLE SEC'
2054 * --> title = TITLE, volume = SEC is msec ?
2055 * format(msec) : SEC,
2056 * msec = SEC is msec ? atoi(msec) : 0,
2060 cp
= mdoc_a2msec(nn
->string
);
2062 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2063 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2065 mdoc_nmsg(mdoc
, n
, MANDOCERR_BADMSEC
);
2066 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2067 mdoc
->meta
.msec
= mandoc_strdup(nn
->string
);
2070 if (NULL
== (nn
= nn
->next
))
2073 /* Handles: `.Dt TITLE SEC VOL'
2074 * --> title = TITLE, volume = VOL is vol ?
2076 * VOL is arch ? format(arch) :
2080 cp
= mdoc_a2vol(nn
->string
);
2082 free(mdoc
->meta
.vol
);
2083 mdoc
->meta
.vol
= mandoc_strdup(cp
);
2085 /* FIXME: warn about bad arch. */
2086 cp
= mdoc_a2arch(nn
->string
);
2088 free(mdoc
->meta
.vol
);
2089 mdoc
->meta
.vol
= mandoc_strdup(nn
->string
);
2091 mdoc
->meta
.arch
= mandoc_strdup(cp
);
2094 /* Ignore any subsequent parameters... */
2095 /* FIXME: warn about subsequent parameters. */
2101 post_prol(POST_ARGS
)
2104 * Remove prologue macros from the document after they're
2105 * processed. The final document uses mdoc_meta for these
2106 * values and discards the originals.
2109 mdoc_node_delete(mdoc
, mdoc
->last
);
2110 if (mdoc
->meta
.title
&& mdoc
->meta
.date
&& mdoc
->meta
.os
)
2111 mdoc
->flags
|= MDOC_PBODY
;
2119 struct mdoc_node
*n
;
2122 struct utsname utsname
;
2128 * Set the operating system by way of the `Os' macro. Note that
2129 * if an argument isn't provided and -DOSNAME="\"foo\"" is
2130 * provided during compilation, this value will be used instead
2131 * of filling in "sysname release" from uname().
2135 free(mdoc
->meta
.os
);
2137 if ( ! concat(mdoc
, buf
, n
->child
, BUFSIZ
))
2140 /* XXX: yes, these can all be dynamically-adjusted buffers, but
2141 * it's really not worth the extra hackery.
2144 if ('\0' == buf
[0]) {
2146 if (strlcat(buf
, OSNAME
, BUFSIZ
) >= BUFSIZ
) {
2147 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
2151 if (uname(&utsname
)) {
2152 mdoc_nmsg(mdoc
, n
, MANDOCERR_UNAME
);
2153 mdoc
->meta
.os
= mandoc_strdup("UNKNOWN");
2154 return(post_prol(mdoc
));
2157 if (strlcat(buf
, utsname
.sysname
, BUFSIZ
) >= BUFSIZ
) {
2158 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
2161 if (strlcat(buf
, " ", BUFSIZ
) >= BUFSIZ
) {
2162 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
2165 if (strlcat(buf
, utsname
.release
, BUFSIZ
) >= BUFSIZ
) {
2166 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
2172 mdoc
->meta
.os
= mandoc_strdup(buf
);
2179 struct mdoc_node
*nn
, *n
;
2184 * Macros accepting `-std' as an argument have the name of the
2185 * current document (`Nm') filled in as the argument if it's not
2192 if (NULL
== mdoc
->meta
.name
)
2196 mdoc
->next
= MDOC_NEXT_CHILD
;
2198 if ( ! mdoc_word_alloc(mdoc
, n
->line
, n
->pos
, mdoc
->meta
.name
))
2206 concat(struct mdoc
*m
, char *p
, const struct mdoc_node
*n
, size_t sz
)
2212 * Concatenate sibling nodes together. All siblings must be of
2213 * type MDOC_TEXT or an assertion is raised. Concatenation is
2214 * separated by a single whitespace. Returns 0 on fatal (string
2218 for ( ; n
; n
= n
->next
) {
2219 assert(MDOC_TEXT
== n
->type
);
2221 if (strlcat(p
, n
->string
, sz
) >= sz
) {
2222 mdoc_nmsg(m
, n
, MANDOCERR_MEM
);
2226 if (NULL
== n
->next
)
2229 if (strlcat(p
, " ", sz
) >= sz
) {
2230 mdoc_nmsg(m
, n
, MANDOCERR_MEM
);