]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.31 2009/07/12 20:50:08 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
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.
17 #include <sys/types.h>
26 #include "libmandoc.h"
28 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
29 /* TODO: ignoring Pp (it's superfluous in some invocations). */
31 #define PRE_ARGS struct mdoc *mdoc, const struct mdoc_node *n
32 #define POST_ARGS struct mdoc *mdoc
35 typedef int (*v_pre
)(PRE_ARGS
);
36 typedef int (*v_post
)(POST_ARGS
);
43 static int check_parent(PRE_ARGS
, int, enum mdoc_type
);
44 static int check_msec(PRE_ARGS
, ...);
45 static int check_sec(PRE_ARGS
, ...);
46 static int check_stdarg(PRE_ARGS
);
47 static int check_text(struct mdoc
*, int, int, const char *);
48 static int check_argv(struct mdoc
*,
49 const struct mdoc_node
*,
50 const struct mdoc_argv
*);
51 static int check_args(struct mdoc
*,
52 const struct mdoc_node
*);
53 static int err_child_lt(struct mdoc
*, const char *, int);
54 static int warn_child_lt(struct mdoc
*, const char *, int);
55 static int err_child_gt(struct mdoc
*, const char *, int);
56 static int warn_child_gt(struct mdoc
*, const char *, int);
57 static int err_child_eq(struct mdoc
*, const char *, int);
58 static int warn_child_eq(struct mdoc
*, const char *, int);
59 static int warn_print(struct mdoc
*, int, int);
60 static int warn_count(struct mdoc
*, const char *,
61 int, const char *, int);
62 static int err_count(struct mdoc
*, const char *,
63 int, const char *, int);
64 static int pre_an(PRE_ARGS
);
65 static int pre_bd(PRE_ARGS
);
66 static int pre_bl(PRE_ARGS
);
67 static int pre_cd(PRE_ARGS
);
68 static int pre_dd(PRE_ARGS
);
69 static int pre_display(PRE_ARGS
);
70 static int pre_dt(PRE_ARGS
);
71 static int pre_er(PRE_ARGS
);
72 static int pre_ex(PRE_ARGS
);
73 static int pre_fd(PRE_ARGS
);
74 static int pre_it(PRE_ARGS
);
75 static int pre_lb(PRE_ARGS
);
76 static int pre_os(PRE_ARGS
);
77 static int pre_rv(PRE_ARGS
);
78 static int pre_sh(PRE_ARGS
);
79 static int pre_ss(PRE_ARGS
);
80 static int herr_ge1(POST_ARGS
);
81 static int hwarn_le1(POST_ARGS
);
82 static int herr_eq0(POST_ARGS
);
83 static int eerr_eq0(POST_ARGS
);
84 static int eerr_le2(POST_ARGS
);
85 static int eerr_eq1(POST_ARGS
);
86 static int eerr_ge1(POST_ARGS
);
87 static int ewarn_eq0(POST_ARGS
);
88 static int bwarn_ge1(POST_ARGS
);
89 static int berr_ge1(POST_ARGS
);
90 static int hwarn_eq1(POST_ARGS
);
91 static int ewarn_ge1(POST_ARGS
);
92 static int ebool(POST_ARGS
);
94 static int post_an(POST_ARGS
);
95 static int post_args(POST_ARGS
);
96 static int post_at(POST_ARGS
);
97 static int post_bf(POST_ARGS
);
98 static int post_bl(POST_ARGS
);
99 static int post_bl_head(POST_ARGS
);
100 static int post_it(POST_ARGS
);
101 static int post_lb(POST_ARGS
);
102 static int post_nm(POST_ARGS
);
103 static int post_root(POST_ARGS
);
104 static int post_sh(POST_ARGS
);
105 static int post_sh_body(POST_ARGS
);
106 static int post_sh_head(POST_ARGS
);
107 static int post_st(POST_ARGS
);
109 static v_pre pres_an
[] = { pre_an
, NULL
};
110 static v_pre pres_bd
[] = { pre_display
, pre_bd
, NULL
};
111 static v_pre pres_bl
[] = { pre_bl
, NULL
};
112 static v_pre pres_cd
[] = { pre_cd
, NULL
};
113 static v_pre pres_dd
[] = { pre_dd
, NULL
};
114 static v_pre pres_d1
[] = { pre_display
, NULL
};
115 static v_pre pres_dt
[] = { pre_dt
, NULL
};
116 static v_pre pres_er
[] = { pre_er
, NULL
};
117 static v_pre pres_ex
[] = { pre_ex
, NULL
};
118 static v_pre pres_fd
[] = { pre_fd
, NULL
};
119 static v_pre pres_it
[] = { pre_it
, NULL
};
120 static v_pre pres_lb
[] = { pre_lb
, NULL
};
121 static v_pre pres_os
[] = { pre_os
, NULL
};
122 static v_pre pres_rv
[] = { pre_rv
, NULL
};
123 static v_pre pres_sh
[] = { pre_sh
, NULL
};
124 static v_pre pres_ss
[] = { pre_ss
, NULL
};
125 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
126 static v_post posts_bd
[] = { herr_eq0
, bwarn_ge1
, NULL
};
127 static v_post posts_text
[] = { eerr_ge1
, NULL
};
128 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
129 static v_post posts_notext
[] = { eerr_eq0
, NULL
};
130 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
131 static v_post posts_sh
[] = { herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
132 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
133 static v_post posts_it
[] = { post_it
, NULL
};
134 static v_post posts_in
[] = { eerr_eq1
, NULL
};
135 static v_post posts_ss
[] = { herr_ge1
, NULL
};
136 static v_post posts_nd
[] = { berr_ge1
, NULL
};
137 static v_post posts_pf
[] = { eerr_eq1
, NULL
};
138 static v_post posts_lb
[] = { eerr_eq1
, post_lb
, NULL
};
139 static v_post posts_st
[] = { eerr_eq1
, post_st
, NULL
};
140 static v_post posts_pp
[] = { ewarn_eq0
, NULL
};
141 static v_post posts_ex
[] = { eerr_eq0
, post_args
, NULL
};
142 static v_post posts_rv
[] = { eerr_eq0
, post_args
, NULL
};
143 static v_post posts_an
[] = { post_an
, NULL
};
144 static v_post posts_at
[] = { post_at
, NULL
};
145 static v_post posts_xr
[] = { eerr_ge1
, eerr_le2
, NULL
};
146 static v_post posts_nm
[] = { post_nm
, NULL
};
147 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
148 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
150 const struct valids mdoc_valids
[MDOC_MAX
] = {
151 { NULL
, NULL
}, /* Ap */
152 { pres_dd
, posts_text
}, /* Dd */
153 { pres_dt
, NULL
}, /* Dt */
154 { pres_os
, NULL
}, /* Os */
155 { pres_sh
, posts_sh
}, /* Sh */
156 { pres_ss
, posts_ss
}, /* Ss */
157 { NULL
, posts_pp
}, /* Pp */
158 { pres_d1
, posts_wline
}, /* D1 */
159 { pres_d1
, posts_wline
}, /* Dl */
160 { pres_bd
, posts_bd
}, /* Bd */
161 { NULL
, NULL
}, /* Ed */
162 { pres_bl
, posts_bl
}, /* Bl */
163 { NULL
, NULL
}, /* El */
164 { pres_it
, posts_it
}, /* It */
165 { NULL
, posts_text
}, /* Ad */
166 { pres_an
, posts_an
}, /* An */
167 { NULL
, NULL
}, /* Ar */
168 { pres_cd
, posts_text
}, /* Cd */
169 { NULL
, NULL
}, /* Cm */
170 { NULL
, NULL
}, /* Dv */
171 { pres_er
, posts_text
}, /* Er */
172 { NULL
, NULL
}, /* Ev */
173 { pres_ex
, posts_ex
}, /* Ex */
174 { NULL
, NULL
}, /* Fa */
175 { pres_fd
, posts_wtext
}, /* Fd */
176 { NULL
, NULL
}, /* Fl */
177 { NULL
, posts_text
}, /* Fn */
178 { NULL
, posts_wtext
}, /* Ft */
179 { NULL
, posts_text
}, /* Ic */
180 { NULL
, posts_in
}, /* In */
181 { NULL
, NULL
}, /* Li */
182 { NULL
, posts_nd
}, /* Nd */
183 { NULL
, posts_nm
}, /* Nm */
184 { NULL
, posts_wline
}, /* Op */
185 { NULL
, NULL
}, /* Ot */
186 { NULL
, NULL
}, /* Pa */
187 { pres_rv
, posts_rv
}, /* Rv */
188 { NULL
, posts_st
}, /* St */
189 { NULL
, NULL
}, /* Va */
190 { NULL
, posts_text
}, /* Vt */
191 { NULL
, posts_xr
}, /* Xr */
192 { NULL
, posts_text
}, /* %A */
193 { NULL
, posts_text
}, /* %B */
194 { NULL
, posts_text
}, /* %D */
195 { NULL
, posts_text
}, /* %I */
196 { NULL
, posts_text
}, /* %J */
197 { NULL
, posts_text
}, /* %N */
198 { NULL
, posts_text
}, /* %O */
199 { NULL
, posts_text
}, /* %P */
200 { NULL
, posts_text
}, /* %R */
201 { NULL
, posts_text
}, /* %T */
202 { NULL
, posts_text
}, /* %V */
203 { NULL
, NULL
}, /* Ac */
204 { NULL
, NULL
}, /* Ao */
205 { NULL
, posts_wline
}, /* Aq */
206 { NULL
, posts_at
}, /* At */
207 { NULL
, NULL
}, /* Bc */
208 { NULL
, posts_bf
}, /* Bf */
209 { NULL
, NULL
}, /* Bo */
210 { NULL
, posts_wline
}, /* Bq */
211 { NULL
, NULL
}, /* Bsx */
212 { NULL
, NULL
}, /* Bx */
213 { NULL
, posts_bool
}, /* Db */
214 { NULL
, NULL
}, /* Dc */
215 { NULL
, NULL
}, /* Do */
216 { NULL
, posts_wline
}, /* Dq */
217 { NULL
, NULL
}, /* Ec */
218 { NULL
, NULL
}, /* Ef */
219 { NULL
, NULL
}, /* Em */
220 { NULL
, NULL
}, /* Eo */
221 { NULL
, NULL
}, /* Fx */
222 { NULL
, posts_text
}, /* Ms */
223 { NULL
, posts_notext
}, /* No */
224 { NULL
, posts_notext
}, /* Ns */
225 { NULL
, NULL
}, /* Nx */
226 { NULL
, NULL
}, /* Ox */
227 { NULL
, NULL
}, /* Pc */
228 { NULL
, posts_pf
}, /* Pf */
229 { NULL
, NULL
}, /* Po */
230 { NULL
, posts_wline
}, /* Pq */
231 { NULL
, NULL
}, /* Qc */
232 { NULL
, posts_wline
}, /* Ql */
233 { NULL
, NULL
}, /* Qo */
234 { NULL
, posts_wline
}, /* Qq */
235 { NULL
, NULL
}, /* Re */
236 { NULL
, posts_wline
}, /* Rs */
237 { NULL
, NULL
}, /* Sc */
238 { NULL
, NULL
}, /* So */
239 { NULL
, posts_wline
}, /* Sq */
240 { NULL
, posts_bool
}, /* Sm */
241 { NULL
, posts_text
}, /* Sx */
242 { NULL
, posts_text
}, /* Sy */
243 { NULL
, posts_text
}, /* Tn */
244 { NULL
, NULL
}, /* Ux */
245 { NULL
, NULL
}, /* Xc */
246 { NULL
, NULL
}, /* Xo */
247 { NULL
, posts_fo
}, /* Fo */
248 { NULL
, NULL
}, /* Fc */
249 { NULL
, NULL
}, /* Oo */
250 { NULL
, NULL
}, /* Oc */
251 { NULL
, posts_wline
}, /* Bk */
252 { NULL
, NULL
}, /* Ek */
253 { NULL
, posts_notext
}, /* Bt */
254 { NULL
, NULL
}, /* Hf */
255 { NULL
, NULL
}, /* Fr */
256 { NULL
, posts_notext
}, /* Ud */
257 { pres_lb
, posts_lb
}, /* Lb */
258 { NULL
, posts_pp
}, /* Lp */
259 { NULL
, NULL
}, /* Lk */
260 { NULL
, posts_text
}, /* Mt */
261 { NULL
, posts_wline
}, /* Brq */
262 { NULL
, NULL
}, /* Bro */
263 { NULL
, NULL
}, /* Brc */
264 { NULL
, posts_text
}, /* %C */
265 { NULL
, NULL
}, /* Es */
266 { NULL
, NULL
}, /* En */
267 { NULL
, NULL
}, /* Dx */
268 { NULL
, posts_text
}, /* %Q */
273 extern size_t strlcat(char *, const char *, size_t);
278 mdoc_valid_pre(struct mdoc
*mdoc
,
279 const struct mdoc_node
*n
)
285 if (MDOC_TEXT
== n
->type
) {
289 return(check_text(mdoc
, line
, pos
, tp
));
292 if ( ! check_args(mdoc
, n
))
294 if (NULL
== mdoc_valids
[n
->tok
].pre
)
296 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
297 if ( ! (*p
)(mdoc
, n
))
304 mdoc_valid_post(struct mdoc
*mdoc
)
309 * This check occurs after the macro's children have been filled
310 * in: postfix validation. Since this happens when we're
311 * rewinding the scope tree, it's possible to have multiple
312 * invocations (as by design, for now), we set bit MDOC_VALID to
313 * indicate that we've validated.
316 if (MDOC_VALID
& mdoc
->last
->flags
)
318 mdoc
->last
->flags
|= MDOC_VALID
;
320 if (MDOC_TEXT
== mdoc
->last
->type
)
322 if (MDOC_ROOT
== mdoc
->last
->type
)
323 return(post_root(mdoc
));
325 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
327 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
336 warn_print(struct mdoc
*m
, int ln
, int pos
)
339 if (MDOC_IGN_CHARS
& m
->pflags
)
340 return(mdoc_pwarn(m
, ln
, pos
, EPRINT
));
341 return(mdoc_perr(m
, ln
, pos
, EPRINT
));
346 warn_count(struct mdoc
*m
, const char *k
,
347 int want
, const char *v
, int has
)
350 return(mdoc_vwarn(m
, m
->last
->line
, m
->last
->pos
,
351 "suggests %s %s %d (has %d)", v
, k
, want
, has
));
356 err_count(struct mdoc
*m
, const char *k
,
357 int want
, const char *v
, int has
)
360 return(mdoc_verr(m
, m
->last
->line
, m
->last
->pos
,
361 "requires %s %s %d (has %d)", v
, k
, want
, has
));
366 * Build these up with macros because they're basically the same check
367 * for different inequalities. Yes, this could be done with functions,
368 * but this is reasonable for now.
371 #define CHECK_CHILD_DEFN(lvl, name, ineq) \
373 lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz) \
375 if (mdoc->last->nchild ineq sz) \
377 return(lvl##_count(mdoc, #ineq, sz, p, mdoc->last->nchild)); \
380 #define CHECK_BODY_DEFN(name, lvl, func, num) \
382 b##lvl##_##name(POST_ARGS) \
384 if (MDOC_BODY != mdoc->last->type) \
386 return(func(mdoc, "multi-line arguments", (num))); \
389 #define CHECK_ELEM_DEFN(name, lvl, func, num) \
391 e##lvl##_##name(POST_ARGS) \
393 assert(MDOC_ELEM == mdoc->last->type); \
394 return(func(mdoc, "line arguments", (num))); \
397 #define CHECK_HEAD_DEFN(name, lvl, func, num) \
399 h##lvl##_##name(POST_ARGS) \
401 if (MDOC_HEAD != mdoc->last->type) \
403 return(func(mdoc, "line arguments", (num))); \
407 CHECK_CHILD_DEFN(warn
, gt
, >) /* warn_child_gt() */
408 CHECK_CHILD_DEFN(err
, gt
, >) /* err_child_gt() */
409 CHECK_CHILD_DEFN(warn
, eq
, ==) /* warn_child_eq() */
410 CHECK_CHILD_DEFN(err
, eq
, ==) /* err_child_eq() */
411 CHECK_CHILD_DEFN(err
, lt
, <) /* err_child_lt() */
412 CHECK_CHILD_DEFN(warn
, lt
, <) /* warn_child_lt() */
413 CHECK_BODY_DEFN(ge1
, warn
, warn_child_gt
, 0) /* bwarn_ge1() */
414 CHECK_BODY_DEFN(ge1
, err
, err_child_gt
, 0) /* berr_ge1() */
415 CHECK_ELEM_DEFN(eq0
, warn
, warn_child_eq
, 0) /* ewarn_eq0() */
416 CHECK_ELEM_DEFN(ge1
, warn
, warn_child_gt
, 0) /* ewarn_gt1() */
417 CHECK_ELEM_DEFN(eq1
, err
, err_child_eq
, 1) /* eerr_eq1() */
418 CHECK_ELEM_DEFN(le2
, err
, err_child_lt
, 3) /* eerr_le2() */
419 CHECK_ELEM_DEFN(eq0
, err
, err_child_eq
, 0) /* eerr_eq0() */
420 CHECK_ELEM_DEFN(ge1
, err
, err_child_gt
, 0) /* eerr_ge1() */
421 CHECK_HEAD_DEFN(eq0
, err
, err_child_eq
, 0) /* herr_eq0() */
422 CHECK_HEAD_DEFN(le1
, warn
, warn_child_lt
, 2) /* hwarn_le1() */
423 CHECK_HEAD_DEFN(ge1
, err
, err_child_gt
, 0) /* herr_ge1() */
424 CHECK_HEAD_DEFN(eq1
, warn
, warn_child_eq
, 1) /* hwarn_eq1() */
428 check_stdarg(PRE_ARGS
)
431 if (n
->args
&& 1 == n
->args
->argc
)
432 if (MDOC_Std
== n
->args
->argv
[0].arg
)
434 return(mdoc_nwarn(mdoc
, n
, EARGVAL
));
439 check_sec(PRE_ARGS
, ...)
448 sec
= (enum mdoc_sec
)va_arg(ap
, int);
449 if (SEC_CUSTOM
== sec
)
451 if (sec
!= mdoc
->lastsec
)
458 return(mdoc_nwarn(mdoc
, n
, EBADSEC
));
463 check_msec(PRE_ARGS
, ...)
471 if (0 == (msec
= va_arg(ap
, int)))
473 if (msec
!= mdoc
->meta
.msec
)
480 return(mdoc_nwarn(mdoc
, n
, EBADMSEC
));
485 check_args(struct mdoc
*m
, const struct mdoc_node
*n
)
492 assert(n
->args
->argc
);
493 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
494 if ( ! check_argv(m
, n
, &n
->args
->argv
[i
]))
502 check_argv(struct mdoc
*m
, const struct mdoc_node
*n
,
503 const struct mdoc_argv
*v
)
507 for (i
= 0; i
< (int)v
->sz
; i
++)
508 if ( ! check_text(m
, v
->line
, v
->pos
, v
->value
[i
]))
511 if (MDOC_Std
== v
->arg
) {
512 /* `Nm' name must be set. */
513 if (v
->sz
|| m
->meta
.name
)
515 return(mdoc_nerr(m
, n
, ENAME
));
523 check_text(struct mdoc
*mdoc
, int line
, int pos
, const char *p
)
527 for ( ; *p
; p
++, pos
++) {
529 if ( ! (MDOC_LITERAL
& mdoc
->flags
))
530 if ( ! warn_print(mdoc
, line
, pos
))
532 } else if ( ! isprint((u_char
)*p
))
533 if ( ! warn_print(mdoc
, line
, pos
))
539 c
= mandoc_special(p
);
545 if ( ! (MDOC_IGN_ESCAPE
& mdoc
->pflags
))
546 return(mdoc_perr(mdoc
, line
, pos
, EESCAPE
));
547 if ( ! mdoc_perr(mdoc
, line
, pos
, EESCAPE
))
558 check_parent(PRE_ARGS
, int tok
, enum mdoc_type t
)
562 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
563 (t
== n
->parent
->type
))
566 return(mdoc_verr(mdoc
, n
->line
, n
->pos
, "require parent %s",
567 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]));
573 pre_display(PRE_ARGS
)
575 struct mdoc_node
*node
;
577 /* Display elements (`Bd', `D1'...) cannot be nested. */
579 if (MDOC_BLOCK
!= n
->type
)
583 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
584 if (MDOC_BLOCK
== node
->type
)
585 if (MDOC_Bd
== node
->tok
)
590 return(mdoc_nerr(mdoc
, n
, ENESTDISP
));
597 int pos
, type
, width
, offset
;
599 if (MDOC_BLOCK
!= n
->type
)
602 return(mdoc_nerr(mdoc
, n
, ELISTTYPE
));
604 /* Make sure that only one type of list is specified. */
606 type
= offset
= width
= -1;
609 for (pos
= 0; pos
< (int)n
->args
->argc
; pos
++)
610 switch (n
->args
->argv
[pos
].arg
) {
633 return(mdoc_nerr(mdoc
, n
, EMULTILIST
));
634 type
= n
->args
->argv
[pos
].arg
;
638 return(mdoc_nerr(mdoc
, n
, EARGREP
));
639 width
= n
->args
->argv
[pos
].arg
;
643 return(mdoc_nerr(mdoc
, n
, EARGREP
));
644 offset
= n
->args
->argv
[pos
].arg
;
651 return(mdoc_nerr(mdoc
, n
, ELISTTYPE
));
654 * Validate the width field. Some list types don't need width
655 * types and should be warned about them. Others should have it
656 * and must also be warned.
661 if (-1 == width
&& ! mdoc_nwarn(mdoc
, n
, EMISSWIDTH
))
671 if (-1 != width
&& ! mdoc_nwarn(mdoc
, n
, ENOWIDTH
))
687 if (MDOC_BLOCK
!= n
->type
)
690 return(mdoc_nerr(mdoc
, n
, EDISPTYPE
));
692 /* Make sure that only one type of display is specified. */
695 for (i
= 0, err
= type
= 0; ! err
&&
696 i
< (int)n
->args
->argc
; i
++)
697 switch (n
->args
->argv
[i
].arg
) {
700 case (MDOC_Unfilled
):
709 return(mdoc_nerr(mdoc
, n
, EMULTIDISP
));
716 return(mdoc_nerr(mdoc
, n
, EDISPTYPE
));
724 if (MDOC_BLOCK
!= n
->type
)
726 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
734 if (MDOC_BLOCK
!= n
->type
)
736 return(check_parent(mdoc
, n
, -1, MDOC_ROOT
));
744 if (MDOC_BLOCK
!= n
->type
)
746 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
754 if (NULL
== n
->args
|| 1 == n
->args
->argc
)
756 return(mdoc_verr(mdoc
, n
->line
, n
->pos
,
757 "only one argument allowed"));
765 return(check_sec(mdoc
, n
, SEC_LIBRARY
, SEC_CUSTOM
));
773 if ( ! check_msec(mdoc
, n
, 2, 3, 0))
775 return(check_stdarg(mdoc
, n
));
783 if ( ! check_msec(mdoc
, n
, 1, 6, 8, 0))
785 return(check_stdarg(mdoc
, n
));
793 return(check_msec(mdoc
, n
, 2, 3, 9, 0));
801 return(check_msec(mdoc
, n
, 4, 0));
809 if (0 == mdoc
->meta
.date
|| mdoc
->meta
.os
)
810 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
812 if (mdoc
->meta
.title
)
813 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
823 if (NULL
== mdoc
->meta
.title
|| 0 == mdoc
->meta
.date
)
824 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
827 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
837 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
838 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
841 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
851 struct mdoc_node
*head
;
853 if (MDOC_BLOCK
!= mdoc
->last
->type
)
856 head
= mdoc
->last
->head
;
858 if (mdoc
->last
->args
&& head
->child
)
859 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
860 else if (mdoc
->last
->args
)
863 if (NULL
== head
->child
|| MDOC_TEXT
!= head
->child
->type
)
864 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
866 p
= head
->child
->string
;
868 if (0 == strcmp(p
, "Em"))
870 else if (0 == strcmp(p
, "Li"))
872 else if (0 == strcmp(p
, "Sm"))
875 return(mdoc_nerr(mdoc
, head
, EFONT
));
883 if (mdoc_a2lib(mdoc
->last
->child
->string
))
885 return(mdoc_nwarn(mdoc
, mdoc
->last
, ELIB
));
893 if (mdoc
->last
->child
)
897 return(mdoc_nerr(mdoc
, mdoc
->last
, ENAME
));
905 if (NULL
== mdoc
->last
->child
)
907 if (MDOC_TEXT
!= mdoc
->last
->child
->type
)
908 return(mdoc_nerr(mdoc
, mdoc
->last
, EATT
));
909 if (mdoc_a2att(mdoc
->last
->child
->string
))
911 return(mdoc_nerr(mdoc
, mdoc
->last
, EATT
));
919 if (mdoc
->last
->args
) {
920 if (NULL
== mdoc
->last
->child
)
922 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
925 if (mdoc
->last
->child
)
927 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
935 if (mdoc
->last
->args
)
937 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
945 struct mdoc_node
*n
, *c
;
947 if (MDOC_BLOCK
!= mdoc
->last
->type
)
950 n
= mdoc
->last
->parent
->parent
;
952 return(mdoc_nerr(mdoc
, mdoc
->last
, ELISTTYPE
));
954 /* Some types require block-head, some not. */
957 for (cols
= type
= -1, i
= 0; -1 == type
&&
958 i
< (int)n
->args
->argc
; i
++)
959 switch (n
->args
->argv
[i
].arg
) {
979 type
= n
->args
->argv
[i
].arg
;
982 type
= n
->args
->argv
[i
].arg
;
983 cols
= (int)n
->args
->argv
[i
].sz
;
990 return(mdoc_nerr(mdoc
, mdoc
->last
, ELISTTYPE
));
994 if (NULL
== mdoc
->last
->head
->child
)
995 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1005 if (NULL
== mdoc
->last
->head
->child
)
1006 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1008 if (NULL
== mdoc
->last
->body
->child
)
1009 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, EMULTILINE
))
1021 if (mdoc
->last
->head
->child
)
1022 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENOLINE
))
1024 if (NULL
== mdoc
->last
->body
->child
)
1025 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, EMULTILINE
))
1029 if (NULL
== mdoc
->last
->head
->child
)
1030 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1032 if (mdoc
->last
->body
->child
)
1033 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENOMULTILINE
))
1035 c
= mdoc
->last
->child
;
1036 for (i
= 0; c
&& MDOC_HEAD
== c
->type
; c
= c
->next
)
1040 return(mdoc_verr(mdoc
, mdoc
->last
->line
, mdoc
->last
->pos
,
1041 "column mismatch (have %d, want %d)",
1052 post_bl_head(POST_ARGS
)
1055 const struct mdoc_node
*n
;
1057 n
= mdoc
->last
->parent
;
1060 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
1061 if (n
->args
->argv
[i
].arg
== MDOC_Column
)
1064 if (i
== (int)n
->args
->argc
)
1067 if (n
->args
->argv
[i
].sz
&& mdoc
->last
->child
)
1068 return(mdoc_nerr(mdoc
, n
, ECOLMIS
));
1077 struct mdoc_node
*n
;
1079 if (MDOC_HEAD
== mdoc
->last
->type
)
1080 return(post_bl_head(mdoc
));
1081 if (MDOC_BODY
!= mdoc
->last
->type
)
1083 if (NULL
== mdoc
->last
->child
)
1087 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1088 if (MDOC_BLOCK
== n
->type
)
1089 if (MDOC_It
== n
->tok
)
1091 return(mdoc_verr(mdoc
, n
->line
, n
->pos
,
1092 "bad child of parent %s",
1093 mdoc_macronames
[mdoc
->last
->tok
]));
1101 ebool(struct mdoc
*mdoc
)
1103 struct mdoc_node
*n
;
1106 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1107 if (MDOC_TEXT
!= n
->type
)
1109 if (0 == strcmp(n
->string
, "on"))
1111 if (0 == strcmp(n
->string
, "off"))
1118 return(mdoc_nerr(mdoc
, n
, EBOOL
));
1123 post_root(POST_ARGS
)
1126 if (NULL
== mdoc
->first
->child
)
1127 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1128 if ( ! (MDOC_PBODY
& mdoc
->flags
))
1129 return(mdoc_nerr(mdoc
, mdoc
->first
, ENOPROLOGUE
));
1131 if (MDOC_BLOCK
!= mdoc
->first
->child
->type
)
1132 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1133 if (MDOC_Sh
!= mdoc
->first
->child
->tok
)
1134 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1144 if (mdoc_a2st(mdoc
->last
->child
->string
))
1146 return(mdoc_nerr(mdoc
, mdoc
->last
, EBADSTAND
));
1154 if (MDOC_HEAD
== mdoc
->last
->type
)
1155 return(post_sh_head(mdoc
));
1156 if (MDOC_BODY
== mdoc
->last
->type
)
1157 return(post_sh_body(mdoc
));
1164 post_sh_body(POST_ARGS
)
1166 struct mdoc_node
*n
;
1168 if (SEC_NAME
!= mdoc
->lastsec
)
1172 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1173 * macros (can have multiple `Nm' and one `Nd'). Note that the
1174 * children of the BODY declaration can also be "text".
1177 if (NULL
== (n
= mdoc
->last
->child
))
1178 return(mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
));
1180 for ( ; n
&& n
->next
; n
= n
->next
) {
1181 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1183 if (MDOC_TEXT
== n
->type
)
1185 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
))
1189 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1191 return(mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
));
1196 post_sh_head(POST_ARGS
)
1200 const struct mdoc_node
*n
;
1203 * Process a new section. Sections are either "named" or
1204 * "custom"; custom sections are user-defined, while named ones
1205 * usually follow a conventional order and may only appear in
1206 * certain manual sections.
1211 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1212 /* XXX - copied from compact(). */
1213 assert(MDOC_TEXT
== n
->type
);
1215 if (strlcat(buf
, n
->string
, 64) >= 64)
1216 return(mdoc_nerr(mdoc
, n
, ETOOLONG
));
1217 if (NULL
== n
->next
)
1219 if (strlcat(buf
, " ", 64) >= 64)
1220 return(mdoc_nerr(mdoc
, n
, ETOOLONG
));
1223 sec
= mdoc_atosec(buf
);
1226 * Check: NAME should always be first, CUSTOM has no roles,
1227 * non-CUSTOM has a conventional order to be followed.
1230 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
)
1231 return(mdoc_nerr(mdoc
, mdoc
->last
, ESECNAME
));
1232 if (SEC_CUSTOM
== sec
)
1234 if (sec
== mdoc
->lastnamed
)
1235 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ESECREP
))
1237 if (sec
< mdoc
->lastnamed
)
1238 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ESECOOO
))
1242 * Check particular section/manual conventions. LIBRARY can
1243 * only occur in msec 2, 3 (TODO: are there more of these?).
1248 switch (mdoc
->meta
.msec
) {
1254 return(mdoc_nwarn(mdoc
, mdoc
->last
, EWRONGMSEC
));
1269 return(check_sec(mdoc
, n
, SEC_SYNOPSIS
, SEC_CUSTOM
));