]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.81 2010/05/24 12:31:16 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 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.
21 #include <sys/types.h>
32 #include "libmandoc.h"
34 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
35 /* TODO: ignoring Pp (it's superfluous in some invocations). */
37 #define PRE_ARGS struct mdoc *mdoc, const struct mdoc_node *n
38 #define POST_ARGS struct mdoc *mdoc
40 typedef int (*v_pre
)(PRE_ARGS
);
41 typedef int (*v_post
)(POST_ARGS
);
48 static int check_parent(PRE_ARGS
, enum mdoct
, enum mdoc_type
);
49 static int check_stdarg(PRE_ARGS
);
50 static int check_text(struct mdoc
*, int, int, const char *);
51 static int check_argv(struct mdoc
*,
52 const struct mdoc_node
*,
53 const struct mdoc_argv
*);
54 static int check_args(struct mdoc
*,
55 const struct mdoc_node
*);
56 static int err_child_lt(struct mdoc
*, const char *, int);
57 static int warn_child_lt(struct mdoc
*, const char *, int);
58 static int err_child_gt(struct mdoc
*, const char *, int);
59 static int warn_child_gt(struct mdoc
*, const char *, int);
60 static int err_child_eq(struct mdoc
*, const char *, int);
61 static int warn_child_eq(struct mdoc
*, const char *, int);
62 static int warn_count(struct mdoc
*, const char *,
63 int, const char *, int);
64 static int err_count(struct mdoc
*, const char *,
65 int, const char *, int);
67 static int berr_ge1(POST_ARGS
);
68 static int bwarn_ge1(POST_ARGS
);
69 static int ebool(POST_ARGS
);
70 static int eerr_eq0(POST_ARGS
);
71 static int eerr_eq1(POST_ARGS
);
72 static int eerr_ge1(POST_ARGS
);
73 static int eerr_le1(POST_ARGS
);
74 static int ewarn_ge1(POST_ARGS
);
75 static int herr_eq0(POST_ARGS
);
76 static int herr_ge1(POST_ARGS
);
77 static int hwarn_eq1(POST_ARGS
);
78 static int hwarn_eq0(POST_ARGS
);
79 static int hwarn_le1(POST_ARGS
);
81 static int post_an(POST_ARGS
);
82 static int post_at(POST_ARGS
);
83 static int post_bf(POST_ARGS
);
84 static int post_bl(POST_ARGS
);
85 static int post_bl_head(POST_ARGS
);
86 static int post_it(POST_ARGS
);
87 static int post_lb(POST_ARGS
);
88 static int post_nm(POST_ARGS
);
89 static int post_root(POST_ARGS
);
90 static int post_rs(POST_ARGS
);
91 static int post_sh(POST_ARGS
);
92 static int post_sh_body(POST_ARGS
);
93 static int post_sh_head(POST_ARGS
);
94 static int post_st(POST_ARGS
);
95 static int post_vt(POST_ARGS
);
96 static int pre_an(PRE_ARGS
);
97 static int pre_bd(PRE_ARGS
);
98 static int pre_bl(PRE_ARGS
);
99 static int pre_dd(PRE_ARGS
);
100 static int pre_display(PRE_ARGS
);
101 static int pre_dt(PRE_ARGS
);
102 static int pre_it(PRE_ARGS
);
103 static int pre_os(PRE_ARGS
);
104 static int pre_rv(PRE_ARGS
);
105 static int pre_sh(PRE_ARGS
);
106 static int pre_ss(PRE_ARGS
);
108 static v_post posts_an
[] = { post_an
, NULL
};
109 static v_post posts_at
[] = { post_at
, NULL
};
110 static v_post posts_bd
[] = { hwarn_eq0
, bwarn_ge1
, NULL
};
111 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
112 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
113 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
114 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
115 static v_post posts_it
[] = { post_it
, NULL
};
116 static v_post posts_lb
[] = { eerr_eq1
, post_lb
, NULL
};
117 static v_post posts_nd
[] = { berr_ge1
, NULL
};
118 static v_post posts_nm
[] = { post_nm
, NULL
};
119 static v_post posts_notext
[] = { eerr_eq0
, NULL
};
120 static v_post posts_rs
[] = { berr_ge1
, herr_eq0
, post_rs
, NULL
};
121 static v_post posts_sh
[] = { herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
122 static v_post posts_sp
[] = { eerr_le1
, NULL
};
123 static v_post posts_ss
[] = { herr_ge1
, NULL
};
124 static v_post posts_st
[] = { eerr_eq1
, post_st
, NULL
};
125 static v_post posts_text
[] = { eerr_ge1
, NULL
};
126 static v_post posts_text1
[] = { eerr_eq1
, NULL
};
127 static v_post posts_vt
[] = { post_vt
, NULL
};
128 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
129 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
130 static v_post posts_xr
[] = { ewarn_ge1
, NULL
};
131 static v_pre pres_an
[] = { pre_an
, NULL
};
132 static v_pre pres_bd
[] = { pre_display
, pre_bd
, NULL
};
133 static v_pre pres_bl
[] = { pre_bl
, NULL
};
134 static v_pre pres_d1
[] = { pre_display
, NULL
};
135 static v_pre pres_dd
[] = { pre_dd
, NULL
};
136 static v_pre pres_dt
[] = { pre_dt
, NULL
};
137 static v_pre pres_er
[] = { NULL
, NULL
};
138 static v_pre pres_ex
[] = { NULL
, NULL
};
139 static v_pre pres_fd
[] = { NULL
, NULL
};
140 static v_pre pres_it
[] = { pre_it
, NULL
};
141 static v_pre pres_lb
[] = { NULL
, NULL
};
142 static v_pre pres_os
[] = { pre_os
, NULL
};
143 static v_pre pres_rv
[] = { pre_rv
, NULL
};
144 static v_pre pres_sh
[] = { pre_sh
, NULL
};
145 static v_pre pres_ss
[] = { pre_ss
, NULL
};
147 const struct valids mdoc_valids
[MDOC_MAX
] = {
148 { NULL
, NULL
}, /* Ap */
149 { pres_dd
, posts_text
}, /* Dd */
150 { pres_dt
, NULL
}, /* Dt */
151 { pres_os
, NULL
}, /* Os */
152 { pres_sh
, posts_sh
}, /* Sh */
153 { pres_ss
, posts_ss
}, /* Ss */
154 { NULL
, posts_notext
}, /* Pp */
155 { pres_d1
, posts_wline
}, /* D1 */
156 { pres_d1
, posts_wline
}, /* Dl */
157 { pres_bd
, posts_bd
}, /* Bd */
158 { NULL
, NULL
}, /* Ed */
159 { pres_bl
, posts_bl
}, /* Bl */
160 { NULL
, NULL
}, /* El */
161 { pres_it
, posts_it
}, /* It */
162 { NULL
, posts_text
}, /* Ad */
163 { pres_an
, posts_an
}, /* An */
164 { NULL
, NULL
}, /* Ar */
165 { NULL
, posts_text
}, /* Cd */
166 { NULL
, NULL
}, /* Cm */
167 { NULL
, NULL
}, /* Dv */
168 { pres_er
, posts_text
}, /* Er */
169 { NULL
, NULL
}, /* Ev */
170 { pres_ex
, NULL
}, /* Ex */
171 { NULL
, NULL
}, /* Fa */
172 { pres_fd
, posts_wtext
}, /* Fd */
173 { NULL
, NULL
}, /* Fl */
174 { NULL
, posts_text
}, /* Fn */
175 { NULL
, posts_wtext
}, /* Ft */
176 { NULL
, posts_text
}, /* Ic */
177 { NULL
, posts_text1
}, /* In */
178 { NULL
, NULL
}, /* Li */
179 { NULL
, posts_nd
}, /* Nd */
180 { NULL
, posts_nm
}, /* Nm */
181 { NULL
, posts_wline
}, /* Op */
182 { NULL
, NULL
}, /* Ot */
183 { NULL
, NULL
}, /* Pa */
184 { pres_rv
, NULL
}, /* Rv */
185 { NULL
, posts_st
}, /* St */
186 { NULL
, NULL
}, /* Va */
187 { NULL
, posts_vt
}, /* Vt */
188 { NULL
, posts_xr
}, /* Xr */
189 { NULL
, posts_text
}, /* %A */
190 { NULL
, posts_text
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
191 { NULL
, posts_text
}, /* %D */ /* FIXME: check date with mandoc_a2time(). */
192 { NULL
, posts_text
}, /* %I */
193 { NULL
, posts_text
}, /* %J */
194 { NULL
, posts_text
}, /* %N */
195 { NULL
, posts_text
}, /* %O */
196 { NULL
, posts_text
}, /* %P */
197 { NULL
, posts_text
}, /* %R */
198 { NULL
, posts_text
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
199 { NULL
, posts_text
}, /* %V */
200 { NULL
, NULL
}, /* Ac */
201 { NULL
, NULL
}, /* Ao */
202 { NULL
, posts_wline
}, /* Aq */
203 { NULL
, posts_at
}, /* At */
204 { NULL
, NULL
}, /* Bc */
205 { NULL
, posts_bf
}, /* Bf */
206 { NULL
, NULL
}, /* Bo */
207 { NULL
, posts_wline
}, /* Bq */
208 { NULL
, NULL
}, /* Bsx */
209 { NULL
, NULL
}, /* Bx */
210 { NULL
, posts_bool
}, /* Db */
211 { NULL
, NULL
}, /* Dc */
212 { NULL
, NULL
}, /* Do */
213 { NULL
, posts_wline
}, /* Dq */
214 { NULL
, NULL
}, /* Ec */
215 { NULL
, NULL
}, /* Ef */
216 { NULL
, NULL
}, /* Em */
217 { NULL
, NULL
}, /* Eo */
218 { NULL
, NULL
}, /* Fx */
219 { NULL
, posts_text
}, /* Ms */
220 { NULL
, posts_notext
}, /* No */
221 { NULL
, posts_notext
}, /* Ns */
222 { NULL
, NULL
}, /* Nx */
223 { NULL
, NULL
}, /* Ox */
224 { NULL
, NULL
}, /* Pc */
225 { NULL
, posts_text1
}, /* Pf */
226 { NULL
, NULL
}, /* Po */
227 { NULL
, posts_wline
}, /* Pq */
228 { NULL
, NULL
}, /* Qc */
229 { NULL
, posts_wline
}, /* Ql */
230 { NULL
, NULL
}, /* Qo */
231 { NULL
, posts_wline
}, /* Qq */
232 { NULL
, NULL
}, /* Re */
233 { NULL
, posts_rs
}, /* Rs */
234 { NULL
, NULL
}, /* Sc */
235 { NULL
, NULL
}, /* So */
236 { NULL
, posts_wline
}, /* Sq */
237 { NULL
, posts_bool
}, /* Sm */
238 { NULL
, posts_text
}, /* Sx */
239 { NULL
, posts_text
}, /* Sy */
240 { NULL
, posts_text
}, /* Tn */
241 { NULL
, NULL
}, /* Ux */
242 { NULL
, NULL
}, /* Xc */
243 { NULL
, NULL
}, /* Xo */
244 { NULL
, posts_fo
}, /* Fo */
245 { NULL
, NULL
}, /* Fc */
246 { NULL
, NULL
}, /* Oo */
247 { NULL
, NULL
}, /* Oc */
248 { NULL
, posts_wline
}, /* Bk */
249 { NULL
, NULL
}, /* Ek */
250 { NULL
, posts_notext
}, /* Bt */
251 { NULL
, NULL
}, /* Hf */
252 { NULL
, NULL
}, /* Fr */
253 { NULL
, posts_notext
}, /* Ud */
254 { pres_lb
, posts_lb
}, /* Lb */
255 { NULL
, posts_notext
}, /* Lp */
256 { NULL
, posts_text
}, /* Lk */
257 { NULL
, posts_text
}, /* Mt */
258 { NULL
, posts_wline
}, /* Brq */
259 { NULL
, NULL
}, /* Bro */
260 { NULL
, NULL
}, /* Brc */
261 { NULL
, posts_text
}, /* %C */
262 { NULL
, NULL
}, /* Es */
263 { NULL
, NULL
}, /* En */
264 { NULL
, NULL
}, /* Dx */
265 { NULL
, posts_text
}, /* %Q */
266 { NULL
, posts_notext
}, /* br */
267 { NULL
, posts_sp
}, /* sp */
268 { NULL
, posts_text1
}, /* %U */
273 mdoc_valid_pre(struct mdoc
*mdoc
, const struct mdoc_node
*n
)
279 if (MDOC_TEXT
== n
->type
) {
283 return(check_text(mdoc
, line
, pos
, tp
));
286 if ( ! check_args(mdoc
, n
))
288 if (NULL
== mdoc_valids
[n
->tok
].pre
)
290 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
291 if ( ! (*p
)(mdoc
, n
))
298 mdoc_valid_post(struct mdoc
*mdoc
)
302 if (MDOC_VALID
& mdoc
->last
->flags
)
304 mdoc
->last
->flags
|= MDOC_VALID
;
306 if (MDOC_TEXT
== mdoc
->last
->type
)
308 if (MDOC_ROOT
== mdoc
->last
->type
)
309 return(post_root(mdoc
));
311 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
313 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
322 warn_count(struct mdoc
*m
, const char *k
,
323 int want
, const char *v
, int has
)
326 return(mdoc_vmsg(m
, MANDOCERR_ARGCOUNT
,
327 m
->last
->line
, m
->last
->pos
,
328 "%s %s %d (have %d)", v
, k
, want
, has
));
333 err_count(struct mdoc
*m
, const char *k
,
334 int want
, const char *v
, int has
)
337 mdoc_vmsg(m
, MANDOCERR_SYNTARGCOUNT
,
338 m
->last
->line
, m
->last
->pos
,
339 "%s %s %d (have %d)",
346 * Build these up with macros because they're basically the same check
347 * for different inequalities. Yes, this could be done with functions,
348 * but this is reasonable for now.
351 #define CHECK_CHILD_DEFN(lvl, name, ineq) \
353 lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz) \
355 if (mdoc->last->nchild ineq sz) \
357 return(lvl##_count(mdoc, #ineq, sz, p, mdoc->last->nchild)); \
360 #define CHECK_BODY_DEFN(name, lvl, func, num) \
362 b##lvl##_##name(POST_ARGS) \
364 if (MDOC_BODY != mdoc->last->type) \
366 return(func(mdoc, "multi-line arguments", (num))); \
369 #define CHECK_ELEM_DEFN(name, lvl, func, num) \
371 e##lvl##_##name(POST_ARGS) \
373 assert(MDOC_ELEM == mdoc->last->type); \
374 return(func(mdoc, "line arguments", (num))); \
377 #define CHECK_HEAD_DEFN(name, lvl, func, num) \
379 h##lvl##_##name(POST_ARGS) \
381 if (MDOC_HEAD != mdoc->last->type) \
383 return(func(mdoc, "line arguments", (num))); \
387 CHECK_CHILD_DEFN(warn
, gt
, >) /* warn_child_gt() */
388 CHECK_CHILD_DEFN(err
, gt
, >) /* err_child_gt() */
389 CHECK_CHILD_DEFN(warn
, eq
, ==) /* warn_child_eq() */
390 CHECK_CHILD_DEFN(err
, eq
, ==) /* err_child_eq() */
391 CHECK_CHILD_DEFN(err
, lt
, <) /* err_child_lt() */
392 CHECK_CHILD_DEFN(warn
, lt
, <) /* warn_child_lt() */
393 CHECK_BODY_DEFN(ge1
, warn
, warn_child_gt
, 0) /* bwarn_ge1() */
394 CHECK_BODY_DEFN(ge1
, err
, err_child_gt
, 0) /* berr_ge1() */
395 CHECK_ELEM_DEFN(ge1
, warn
, warn_child_gt
, 0) /* ewarn_gt1() */
396 CHECK_ELEM_DEFN(eq1
, err
, err_child_eq
, 1) /* eerr_eq1() */
397 CHECK_ELEM_DEFN(le1
, err
, err_child_lt
, 2) /* eerr_le1() */
398 CHECK_ELEM_DEFN(eq0
, err
, err_child_eq
, 0) /* eerr_eq0() */
399 CHECK_ELEM_DEFN(ge1
, err
, err_child_gt
, 0) /* eerr_ge1() */
400 CHECK_HEAD_DEFN(eq0
, err
, err_child_eq
, 0) /* herr_eq0() */
401 CHECK_HEAD_DEFN(le1
, warn
, warn_child_lt
, 2) /* hwarn_le1() */
402 CHECK_HEAD_DEFN(ge1
, err
, err_child_gt
, 0) /* herr_ge1() */
403 CHECK_HEAD_DEFN(eq1
, warn
, warn_child_eq
, 1) /* hwarn_eq1() */
404 CHECK_HEAD_DEFN(eq0
, warn
, warn_child_eq
, 0) /* hwarn_eq0() */
408 check_stdarg(PRE_ARGS
)
411 if (n
->args
&& 1 == n
->args
->argc
)
412 if (MDOC_Std
== n
->args
->argv
[0].arg
)
414 return(mdoc_nmsg(mdoc
, n
, MANDOCERR_NOARGV
));
419 check_args(struct mdoc
*m
, const struct mdoc_node
*n
)
426 assert(n
->args
->argc
);
427 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
428 if ( ! check_argv(m
, n
, &n
->args
->argv
[i
]))
436 check_argv(struct mdoc
*m
, const struct mdoc_node
*n
,
437 const struct mdoc_argv
*v
)
441 for (i
= 0; i
< (int)v
->sz
; i
++)
442 if ( ! check_text(m
, v
->line
, v
->pos
, v
->value
[i
]))
445 if (MDOC_Std
== v
->arg
) {
446 if (v
->sz
|| m
->meta
.name
)
448 if ( ! mdoc_nmsg(m
, n
, MANDOCERR_NONAME
))
457 check_text(struct mdoc
*mdoc
, int line
, int pos
, const char *p
)
461 for ( ; *p
; p
++, pos
++) {
463 if ( ! (MDOC_LITERAL
& mdoc
->flags
))
464 if ( ! mdoc_pmsg(mdoc
, line
, pos
, MANDOCERR_BADCHAR
))
466 } else if ( ! isprint((u_char
)*p
))
467 if ( ! mdoc_pmsg(mdoc
, line
, pos
, MANDOCERR_BADCHAR
))
473 c
= mandoc_special(p
);
480 c
= mdoc_pmsg(mdoc
, line
, pos
, MANDOCERR_BADESCAPE
);
481 if ( ! (MDOC_IGN_ESCAPE
& mdoc
->pflags
) && ! c
)
492 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
496 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
497 (t
== n
->parent
->type
))
500 mdoc_vmsg(mdoc
, MANDOCERR_SYNTCHILD
,
501 n
->line
, n
->pos
, "want parent %s",
502 MDOC_ROOT
== t
? "<root>" :
503 mdoc_macronames
[tok
]);
510 pre_display(PRE_ARGS
)
512 struct mdoc_node
*node
;
514 /* Display elements (`Bd', `D1'...) cannot be nested. */
516 if (MDOC_BLOCK
!= n
->type
)
520 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
521 if (MDOC_BLOCK
== node
->type
)
522 if (MDOC_Bd
== node
->tok
)
527 mdoc_nmsg(mdoc
, n
, MANDOCERR_NESTEDDISP
);
535 int pos
, type
, width
, offset
;
537 if (MDOC_BLOCK
!= n
->type
)
539 if (NULL
== n
->args
) {
540 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTTYPE
);
544 /* Make sure that only one type of list is specified. */
546 type
= offset
= width
= -1;
549 for (pos
= 0; pos
< (int)n
->args
->argc
; pos
++)
550 switch (n
->args
->argv
[pos
].arg
) {
573 type
= n
->args
->argv
[pos
].arg
;
576 if (mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTREP
))
582 if (mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTFIRST
))
587 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
))
589 if (type
< 0 && ! mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTFIRST
))
591 width
= n
->args
->argv
[pos
].arg
;
595 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_ARGVREP
))
597 if (type
< 0 && ! mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTFIRST
))
599 offset
= n
->args
->argv
[pos
].arg
;
606 mdoc_nmsg(mdoc
, n
, MANDOCERR_LISTTYPE
);
611 * Validate the width field. Some list types don't need width
612 * types and should be warned about them. Others should have it
613 * and must also be warned.
618 if (width
< 0 && ! mdoc_nmsg(mdoc
, n
, MANDOCERR_NOWIDTHARG
))
630 if (width
>= 0 && ! mdoc_nmsg(mdoc
, n
, MANDOCERR_WIDTHARG
))
646 if (MDOC_BLOCK
!= n
->type
)
648 if (NULL
== n
->args
) {
649 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPTYPE
);
653 /* Make sure that only one type of display is specified. */
656 for (i
= 0, err
= type
= 0; ! err
&&
657 i
< (int)n
->args
->argc
; i
++)
658 switch (n
->args
->argv
[i
].arg
) {
663 case (MDOC_Unfilled
):
670 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPREP
))
679 mdoc_nmsg(mdoc
, n
, MANDOCERR_DISPTYPE
);
688 if (MDOC_BLOCK
!= n
->type
)
690 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
698 if (MDOC_BLOCK
!= n
->type
)
700 return(check_parent(mdoc
, n
, MDOC_MAX
, MDOC_ROOT
));
708 if (MDOC_BLOCK
!= n
->type
)
711 * FIXME: this can probably be lifted if we make the It into
712 * something else on-the-fly?
714 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
722 if (NULL
== n
->args
|| 1 == n
->args
->argc
)
724 mdoc_vmsg(mdoc
, MANDOCERR_SYNTARGCOUNT
,
726 "line arguments == 1 (have %d)",
736 return(check_stdarg(mdoc
, n
));
744 /* FIXME: make sure is capitalised. */
746 if (0 == mdoc
->meta
.date
|| mdoc
->meta
.os
)
747 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
))
749 if (mdoc
->meta
.title
)
750 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
))
760 if (NULL
== mdoc
->meta
.title
|| 0 == mdoc
->meta
.date
)
761 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
))
764 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
))
774 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
775 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGOOO
))
778 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_PROLOGREP
))
788 struct mdoc_node
*head
;
790 if (MDOC_BLOCK
!= mdoc
->last
->type
)
793 head
= mdoc
->last
->head
;
795 if (mdoc
->last
->args
&& head
->child
) {
796 /* FIXME: this should provide a default. */
797 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SYNTARGVCOUNT
);
799 } else if (mdoc
->last
->args
)
802 if (NULL
== head
->child
|| MDOC_TEXT
!= head
->child
->type
) {
803 /* FIXME: this should provide a default. */
804 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SYNTARGVCOUNT
);
808 p
= head
->child
->string
;
810 if (0 == strcmp(p
, "Em"))
812 else if (0 == strcmp(p
, "Li"))
814 else if (0 == strcmp(p
, "Sy"))
817 mdoc_nmsg(mdoc
, head
, MANDOCERR_FONTTYPE
);
826 if (mdoc_a2lib(mdoc
->last
->child
->string
))
828 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADLIB
));
835 const struct mdoc_node
*n
;
838 * The Vt macro comes in both ELEM and BLOCK form, both of which
839 * have different syntaxes (yet more context-sensitive
840 * behaviour). ELEM types must have a child; BLOCK types,
841 * specifically the BODY, should only have TEXT children.
844 if (MDOC_ELEM
== mdoc
->last
->type
)
845 return(eerr_ge1(mdoc
));
846 if (MDOC_BODY
!= mdoc
->last
->type
)
849 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
850 if (MDOC_TEXT
!= n
->type
)
851 if ( ! mdoc_nmsg(mdoc
, n
, MANDOCERR_CHILD
))
862 if (mdoc
->last
->child
)
866 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NONAME
));
874 if (NULL
== mdoc
->last
->child
)
876 assert(MDOC_TEXT
== mdoc
->last
->child
->type
);
877 if (mdoc_a2att(mdoc
->last
->child
->string
))
879 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADATT
));
887 if (mdoc
->last
->args
) {
888 if (NULL
== mdoc
->last
->child
)
890 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGCOUNT
));
893 if (mdoc
->last
->child
)
895 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
));
903 struct mdoc_node
*n
, *c
;
905 if (MDOC_BLOCK
!= mdoc
->last
->type
)
908 n
= mdoc
->last
->parent
->parent
;
909 if (NULL
== n
->args
) {
910 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_LISTTYPE
);
914 /* Some types require block-head, some not. */
917 for (cols
= type
= -1, i
= 0; -1 == type
&&
918 i
< (int)n
->args
->argc
; i
++)
919 switch (n
->args
->argv
[i
].arg
) {
939 type
= n
->args
->argv
[i
].arg
;
942 type
= n
->args
->argv
[i
].arg
;
943 cols
= (int)n
->args
->argv
[i
].sz
;
950 mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_LISTTYPE
);
956 if (NULL
== mdoc
->last
->head
->child
)
957 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
))
967 if (NULL
== mdoc
->last
->head
->child
)
968 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
))
970 if (NULL
== mdoc
->last
->body
->child
)
971 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
))
983 if (mdoc
->last
->head
->child
)
984 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_ARGSLOST
))
986 if (NULL
== mdoc
->last
->body
->child
)
987 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOBODY
))
991 if (NULL
== mdoc
->last
->head
->child
)
992 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NOARGS
))
994 if (mdoc
->last
->body
->child
)
995 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BODYLOST
))
997 c
= mdoc
->last
->child
;
998 for (i
= 0; c
&& MDOC_HEAD
== c
->type
; c
= c
->next
)
1002 if ( ! mdoc_vmsg(mdoc
, MANDOCERR_ARGCOUNT
,
1005 "columns == %d (have %d)",
1009 } else if (i
== cols
|| i
== cols
+ 1)
1012 mdoc_vmsg(mdoc
, MANDOCERR_SYNTARGCOUNT
,
1013 mdoc
->last
->line
, mdoc
->last
->pos
,
1014 "columns == %d (have %d)", cols
, i
);
1025 post_bl_head(POST_ARGS
)
1028 const struct mdoc_node
*n
;
1029 const struct mdoc_argv
*a
;
1031 n
= mdoc
->last
->parent
;
1034 for (i
= 0; i
< (int)n
->args
->argc
; i
++) {
1035 a
= &n
->args
->argv
[i
];
1036 if (a
->arg
== MDOC_Column
) {
1037 if (a
->sz
&& mdoc
->last
->nchild
)
1038 return(mdoc_nmsg(mdoc
, n
, MANDOCERR_COLUMNS
));
1043 if (0 == (i
= mdoc
->last
->nchild
))
1045 return(warn_count(mdoc
, "==", 0, "line arguments", i
));
1052 struct mdoc_node
*n
;
1054 if (MDOC_HEAD
== mdoc
->last
->type
)
1055 return(post_bl_head(mdoc
));
1056 if (MDOC_BODY
!= mdoc
->last
->type
)
1058 if (NULL
== mdoc
->last
->child
)
1062 * We only allow certain children of `Bl'. This is usually on
1063 * `It', but apparently `Sm' occurs here and there, so we let
1064 * that one through, too.
1068 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1069 if (MDOC_BLOCK
== n
->type
&& MDOC_It
== n
->tok
)
1071 if (MDOC_Sm
== n
->tok
)
1073 mdoc_nmsg(mdoc
, n
, MANDOCERR_SYNTCHILD
);
1082 ebool(struct mdoc
*mdoc
)
1084 struct mdoc_node
*n
;
1087 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1088 if (MDOC_TEXT
!= n
->type
)
1090 if (0 == strcmp(n
->string
, "on"))
1092 if (0 == strcmp(n
->string
, "off"))
1099 return(mdoc_nmsg(mdoc
, n
, MANDOCERR_BADBOOL
));
1104 post_root(POST_ARGS
)
1107 if (NULL
== mdoc
->first
->child
)
1108 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCBODY
);
1109 else if ( ! (MDOC_PBODY
& mdoc
->flags
))
1110 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCPROLOG
);
1111 else if (MDOC_BLOCK
!= mdoc
->first
->child
->type
)
1112 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCBODY
);
1113 else if (MDOC_Sh
!= mdoc
->first
->child
->tok
)
1114 mdoc_nmsg(mdoc
, mdoc
->first
, MANDOCERR_NODOCBODY
);
1126 if (mdoc_a2st(mdoc
->last
->child
->string
))
1128 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADSTANDARD
));
1135 struct mdoc_node
*nn
;
1137 if (MDOC_BODY
!= mdoc
->last
->type
)
1140 for (nn
= mdoc
->last
->child
; nn
; nn
= nn
->next
)
1171 mdoc_nmsg(mdoc
, nn
, MANDOCERR_SYNTCHILD
);
1183 if (MDOC_HEAD
== mdoc
->last
->type
)
1184 return(post_sh_head(mdoc
));
1185 if (MDOC_BODY
== mdoc
->last
->type
)
1186 return(post_sh_body(mdoc
));
1193 post_sh_body(POST_ARGS
)
1195 struct mdoc_node
*n
;
1197 if (SEC_NAME
!= mdoc
->lastsec
)
1201 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1202 * macros (can have multiple `Nm' and one `Nd'). Note that the
1203 * children of the BODY declaration can also be "text".
1206 if (NULL
== (n
= mdoc
->last
->child
))
1207 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
));
1209 for ( ; n
&& n
->next
; n
= n
->next
) {
1210 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1212 if (MDOC_TEXT
== n
->type
)
1214 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
))
1219 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1221 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_BADNAMESEC
));
1226 post_sh_head(POST_ARGS
)
1230 const struct mdoc_node
*n
;
1233 * Process a new section. Sections are either "named" or
1234 * "custom"; custom sections are user-defined, while named ones
1235 * usually follow a conventional order and may only appear in
1236 * certain manual sections.
1242 * FIXME: yes, these can use a dynamic buffer, but I don't do so
1243 * in the interests of simplicity.
1246 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1247 /* XXX - copied from compact(). */
1248 assert(MDOC_TEXT
== n
->type
);
1250 if (strlcat(buf
, n
->string
, BUFSIZ
) >= BUFSIZ
) {
1251 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
1254 if (NULL
== n
->next
)
1256 if (strlcat(buf
, " ", BUFSIZ
) >= BUFSIZ
) {
1257 mdoc_nmsg(mdoc
, n
, MANDOCERR_MEM
);
1262 sec
= mdoc_str2sec(buf
);
1265 * Check: NAME should always be first, CUSTOM has no roles,
1266 * non-CUSTOM has a conventional order to be followed.
1269 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1270 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_NAMESECFIRST
))
1273 if (SEC_CUSTOM
== sec
)
1276 if (sec
== mdoc
->lastnamed
)
1277 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECREP
))
1280 if (sec
< mdoc
->lastnamed
)
1281 if ( ! mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECOOO
))
1285 * Check particular section/manual conventions. LIBRARY can
1286 * only occur in manual section 2, 3, and 9.
1291 assert(mdoc
->meta
.msec
);
1292 if (*mdoc
->meta
.msec
== '2')
1294 if (*mdoc
->meta
.msec
== '3')
1296 if (*mdoc
->meta
.msec
== '9')
1298 return(mdoc_nmsg(mdoc
, mdoc
->last
, MANDOCERR_SECMSEC
));