]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
b442293ca44a08a684d47900f036f6963d4d162a
1 /* $Id: mdoc_validate.c,v 1.70 2010/05/08 07:30:19 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.
21 #include <sys/types.h>
31 #include "libmandoc.h"
33 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
34 /* TODO: ignoring Pp (it's superfluous in some invocations). */
36 #define PRE_ARGS struct mdoc *mdoc, const struct mdoc_node *n
37 #define POST_ARGS struct mdoc *mdoc
39 typedef int (*v_pre
)(PRE_ARGS
);
40 typedef int (*v_post
)(POST_ARGS
);
47 static int check_parent(PRE_ARGS
, enum mdoct
, enum mdoc_type
);
48 static int check_msec(PRE_ARGS
, ...);
49 static int check_sec(PRE_ARGS
, ...);
50 static int check_stdarg(PRE_ARGS
);
51 static int check_text(struct mdoc
*, int, int, const char *);
52 static int check_argv(struct mdoc
*,
53 const struct mdoc_node
*,
54 const struct mdoc_argv
*);
55 static int check_args(struct mdoc
*,
56 const struct mdoc_node
*);
57 static int err_child_lt(struct mdoc
*, const char *, int);
58 static int warn_child_lt(struct mdoc
*, const char *, int);
59 static int err_child_gt(struct mdoc
*, const char *, int);
60 static int warn_child_gt(struct mdoc
*, const char *, int);
61 static int err_child_eq(struct mdoc
*, const char *, int);
62 static int warn_child_eq(struct mdoc
*, const char *, int);
63 static int warn_print(struct mdoc
*, int, int);
64 static int warn_count(struct mdoc
*, const char *,
65 int, const char *, int);
66 static int err_count(struct mdoc
*, const char *,
67 int, const char *, int);
69 static int berr_ge1(POST_ARGS
);
70 static int bwarn_ge1(POST_ARGS
);
71 static int ebool(POST_ARGS
);
72 static int eerr_eq0(POST_ARGS
);
73 static int eerr_eq1(POST_ARGS
);
74 static int eerr_ge1(POST_ARGS
);
75 static int eerr_le1(POST_ARGS
);
76 static int ewarn_ge1(POST_ARGS
);
77 static int herr_eq0(POST_ARGS
);
78 static int herr_ge1(POST_ARGS
);
79 static int hwarn_eq1(POST_ARGS
);
80 static int hwarn_eq0(POST_ARGS
);
81 static int hwarn_le1(POST_ARGS
);
83 static int post_an(POST_ARGS
);
84 static int post_at(POST_ARGS
);
85 static int post_bf(POST_ARGS
);
86 static int post_bl(POST_ARGS
);
87 static int post_bl_head(POST_ARGS
);
88 static int post_it(POST_ARGS
);
89 static int post_lb(POST_ARGS
);
90 static int post_nm(POST_ARGS
);
91 static int post_root(POST_ARGS
);
92 static int post_rs(POST_ARGS
);
93 static int post_sh(POST_ARGS
);
94 static int post_sh_body(POST_ARGS
);
95 static int post_sh_head(POST_ARGS
);
96 static int post_st(POST_ARGS
);
97 static int post_vt(POST_ARGS
);
98 static int pre_an(PRE_ARGS
);
99 static int pre_bd(PRE_ARGS
);
100 static int pre_bl(PRE_ARGS
);
101 static int pre_dd(PRE_ARGS
);
102 static int pre_display(PRE_ARGS
);
103 static int pre_dt(PRE_ARGS
);
104 static int pre_ex(PRE_ARGS
);
105 static int pre_fd(PRE_ARGS
);
106 static int pre_it(PRE_ARGS
);
107 static int pre_lb(PRE_ARGS
);
108 static int pre_os(PRE_ARGS
);
109 static int pre_rv(PRE_ARGS
);
110 static int pre_sh(PRE_ARGS
);
111 static int pre_ss(PRE_ARGS
);
113 static v_post posts_an
[] = { post_an
, NULL
};
114 static v_post posts_at
[] = { post_at
, NULL
};
115 static v_post posts_bd
[] = { hwarn_eq0
, bwarn_ge1
, NULL
};
116 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
117 static v_post posts_bl
[] = { bwarn_ge1
, post_bl
, NULL
};
118 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
119 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
120 static v_post posts_it
[] = { post_it
, NULL
};
121 static v_post posts_lb
[] = { eerr_eq1
, post_lb
, NULL
};
122 static v_post posts_nd
[] = { berr_ge1
, NULL
};
123 static v_post posts_nm
[] = { post_nm
, NULL
};
124 static v_post posts_notext
[] = { eerr_eq0
, NULL
};
125 static v_post posts_rs
[] = { berr_ge1
, herr_eq0
, post_rs
, NULL
};
126 static v_post posts_sh
[] = { herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
127 static v_post posts_sp
[] = { eerr_le1
, NULL
};
128 static v_post posts_ss
[] = { herr_ge1
, NULL
};
129 static v_post posts_st
[] = { eerr_eq1
, post_st
, NULL
};
130 static v_post posts_text
[] = { eerr_ge1
, NULL
};
131 static v_post posts_text1
[] = { eerr_eq1
, NULL
};
132 static v_post posts_vt
[] = { post_vt
, NULL
};
133 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
134 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
135 static v_post posts_xr
[] = { ewarn_ge1
, NULL
};
136 static v_pre pres_an
[] = { pre_an
, NULL
};
137 static v_pre pres_bd
[] = { pre_display
, pre_bd
, NULL
};
138 static v_pre pres_bl
[] = { pre_bl
, NULL
};
139 static v_pre pres_d1
[] = { pre_display
, NULL
};
140 static v_pre pres_dd
[] = { pre_dd
, NULL
};
141 static v_pre pres_dt
[] = { pre_dt
, NULL
};
142 static v_pre pres_er
[] = { NULL
, NULL
};
143 static v_pre pres_ex
[] = { pre_ex
, NULL
};
144 static v_pre pres_fd
[] = { pre_fd
, NULL
};
145 static v_pre pres_it
[] = { pre_it
, NULL
};
146 static v_pre pres_lb
[] = { pre_lb
, NULL
};
147 static v_pre pres_os
[] = { pre_os
, NULL
};
148 static v_pre pres_rv
[] = { pre_rv
, NULL
};
149 static v_pre pres_sh
[] = { pre_sh
, NULL
};
150 static v_pre pres_ss
[] = { pre_ss
, NULL
};
152 const struct valids mdoc_valids
[MDOC_MAX
] = {
153 { NULL
, NULL
}, /* Ap */
154 { pres_dd
, posts_text
}, /* Dd */
155 { pres_dt
, NULL
}, /* Dt */
156 { pres_os
, NULL
}, /* Os */
157 { pres_sh
, posts_sh
}, /* Sh */
158 { pres_ss
, posts_ss
}, /* Ss */
159 { NULL
, posts_notext
}, /* Pp */
160 { pres_d1
, posts_wline
}, /* D1 */
161 { pres_d1
, posts_wline
}, /* Dl */
162 { pres_bd
, posts_bd
}, /* Bd */
163 { NULL
, NULL
}, /* Ed */
164 { pres_bl
, posts_bl
}, /* Bl */
165 { NULL
, NULL
}, /* El */
166 { pres_it
, posts_it
}, /* It */
167 { NULL
, posts_text
}, /* Ad */
168 { pres_an
, posts_an
}, /* An */
169 { NULL
, NULL
}, /* Ar */
170 { NULL
, posts_text
}, /* Cd */
171 { NULL
, NULL
}, /* Cm */
172 { NULL
, NULL
}, /* Dv */
173 { pres_er
, posts_text
}, /* Er */
174 { NULL
, NULL
}, /* Ev */
175 { pres_ex
, NULL
}, /* Ex */
176 { NULL
, NULL
}, /* Fa */
177 { pres_fd
, posts_wtext
}, /* Fd */
178 { NULL
, NULL
}, /* Fl */
179 { NULL
, posts_text
}, /* Fn */
180 { NULL
, posts_wtext
}, /* Ft */
181 { NULL
, posts_text
}, /* Ic */
182 { NULL
, posts_text1
}, /* In */
183 { NULL
, NULL
}, /* Li */
184 { NULL
, posts_nd
}, /* Nd */
185 { NULL
, posts_nm
}, /* Nm */
186 { NULL
, posts_wline
}, /* Op */
187 { NULL
, NULL
}, /* Ot */
188 { NULL
, NULL
}, /* Pa */
189 { pres_rv
, NULL
}, /* Rv */
190 { NULL
, posts_st
}, /* St */
191 { NULL
, NULL
}, /* Va */
192 { NULL
, posts_vt
}, /* Vt */
193 { NULL
, posts_xr
}, /* Xr */
194 { NULL
, posts_text
}, /* %A */
195 { NULL
, posts_text
}, /* %B */ /* FIXME: can be used outside Rs/Re. */
196 { NULL
, posts_text
}, /* %D */ /* FIXME: check date with mandoc_a2time(). */
197 { NULL
, posts_text
}, /* %I */
198 { NULL
, posts_text
}, /* %J */
199 { NULL
, posts_text
}, /* %N */
200 { NULL
, posts_text
}, /* %O */
201 { NULL
, posts_text
}, /* %P */
202 { NULL
, posts_text
}, /* %R */
203 { NULL
, posts_text
}, /* %T */ /* FIXME: can be used outside Rs/Re. */
204 { NULL
, posts_text
}, /* %V */
205 { NULL
, NULL
}, /* Ac */
206 { NULL
, NULL
}, /* Ao */
207 { NULL
, posts_wline
}, /* Aq */
208 { NULL
, posts_at
}, /* At */
209 { NULL
, NULL
}, /* Bc */
210 { NULL
, posts_bf
}, /* Bf */
211 { NULL
, NULL
}, /* Bo */
212 { NULL
, posts_wline
}, /* Bq */
213 { NULL
, NULL
}, /* Bsx */
214 { NULL
, NULL
}, /* Bx */
215 { NULL
, posts_bool
}, /* Db */
216 { NULL
, NULL
}, /* Dc */
217 { NULL
, NULL
}, /* Do */
218 { NULL
, posts_wline
}, /* Dq */
219 { NULL
, NULL
}, /* Ec */
220 { NULL
, NULL
}, /* Ef */
221 { NULL
, NULL
}, /* Em */
222 { NULL
, NULL
}, /* Eo */
223 { NULL
, NULL
}, /* Fx */
224 { NULL
, posts_text
}, /* Ms */
225 { NULL
, posts_notext
}, /* No */
226 { NULL
, posts_notext
}, /* Ns */
227 { NULL
, NULL
}, /* Nx */
228 { NULL
, NULL
}, /* Ox */
229 { NULL
, NULL
}, /* Pc */
230 { NULL
, posts_text1
}, /* Pf */
231 { NULL
, NULL
}, /* Po */
232 { NULL
, posts_wline
}, /* Pq */
233 { NULL
, NULL
}, /* Qc */
234 { NULL
, posts_wline
}, /* Ql */
235 { NULL
, NULL
}, /* Qo */
236 { NULL
, posts_wline
}, /* Qq */
237 { NULL
, NULL
}, /* Re */
238 { NULL
, posts_rs
}, /* Rs */
239 { NULL
, NULL
}, /* Sc */
240 { NULL
, NULL
}, /* So */
241 { NULL
, posts_wline
}, /* Sq */
242 { NULL
, posts_bool
}, /* Sm */
243 { NULL
, posts_text
}, /* Sx */
244 { NULL
, posts_text
}, /* Sy */
245 { NULL
, posts_text
}, /* Tn */
246 { NULL
, NULL
}, /* Ux */
247 { NULL
, NULL
}, /* Xc */
248 { NULL
, NULL
}, /* Xo */
249 { NULL
, posts_fo
}, /* Fo */
250 { NULL
, NULL
}, /* Fc */
251 { NULL
, NULL
}, /* Oo */
252 { NULL
, NULL
}, /* Oc */
253 { NULL
, posts_wline
}, /* Bk */
254 { NULL
, NULL
}, /* Ek */
255 { NULL
, posts_notext
}, /* Bt */
256 { NULL
, NULL
}, /* Hf */
257 { NULL
, NULL
}, /* Fr */
258 { NULL
, posts_notext
}, /* Ud */
259 { pres_lb
, posts_lb
}, /* Lb */
260 { NULL
, posts_notext
}, /* Lp */
261 { NULL
, posts_text
}, /* Lk */
262 { NULL
, posts_text
}, /* Mt */
263 { NULL
, posts_wline
}, /* Brq */
264 { NULL
, NULL
}, /* Bro */
265 { NULL
, NULL
}, /* Brc */
266 { NULL
, posts_text
}, /* %C */
267 { NULL
, NULL
}, /* Es */
268 { NULL
, NULL
}, /* En */
269 { NULL
, NULL
}, /* Dx */
270 { NULL
, posts_text
}, /* %Q */
271 { NULL
, posts_notext
}, /* br */
272 { NULL
, posts_sp
}, /* sp */
273 { NULL
, posts_text1
}, /* %U */
278 mdoc_valid_pre(struct mdoc
*mdoc
, const struct mdoc_node
*n
)
284 if (MDOC_TEXT
== n
->type
) {
288 return(check_text(mdoc
, line
, pos
, tp
));
291 if ( ! check_args(mdoc
, n
))
293 if (NULL
== mdoc_valids
[n
->tok
].pre
)
295 for (p
= mdoc_valids
[n
->tok
].pre
; *p
; p
++)
296 if ( ! (*p
)(mdoc
, n
))
303 mdoc_valid_post(struct mdoc
*mdoc
)
307 if (MDOC_VALID
& mdoc
->last
->flags
)
309 mdoc
->last
->flags
|= MDOC_VALID
;
311 if (MDOC_TEXT
== mdoc
->last
->type
)
313 if (MDOC_ROOT
== mdoc
->last
->type
)
314 return(post_root(mdoc
));
316 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
318 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
327 warn_print(struct mdoc
*m
, int ln
, int pos
)
330 if (MDOC_IGN_CHARS
& m
->pflags
)
331 return(mdoc_pwarn(m
, ln
, pos
, EPRINT
));
332 return(mdoc_perr(m
, ln
, pos
, EPRINT
));
337 warn_count(struct mdoc
*m
, const char *k
,
338 int want
, const char *v
, int has
)
341 return(mdoc_vwarn(m
, m
->last
->line
, m
->last
->pos
,
342 "suggests %s %s %d (has %d)", v
, k
, want
, has
));
347 err_count(struct mdoc
*m
, const char *k
,
348 int want
, const char *v
, int has
)
351 return(mdoc_verr(m
, m
->last
->line
, m
->last
->pos
,
352 "requires %s %s %d (has %d)", v
, k
, want
, has
));
357 * Build these up with macros because they're basically the same check
358 * for different inequalities. Yes, this could be done with functions,
359 * but this is reasonable for now.
362 #define CHECK_CHILD_DEFN(lvl, name, ineq) \
364 lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz) \
366 if (mdoc->last->nchild ineq sz) \
368 return(lvl##_count(mdoc, #ineq, sz, p, mdoc->last->nchild)); \
371 #define CHECK_BODY_DEFN(name, lvl, func, num) \
373 b##lvl##_##name(POST_ARGS) \
375 if (MDOC_BODY != mdoc->last->type) \
377 return(func(mdoc, "multi-line arguments", (num))); \
380 #define CHECK_ELEM_DEFN(name, lvl, func, num) \
382 e##lvl##_##name(POST_ARGS) \
384 assert(MDOC_ELEM == mdoc->last->type); \
385 return(func(mdoc, "line arguments", (num))); \
388 #define CHECK_HEAD_DEFN(name, lvl, func, num) \
390 h##lvl##_##name(POST_ARGS) \
392 if (MDOC_HEAD != mdoc->last->type) \
394 return(func(mdoc, "line arguments", (num))); \
398 CHECK_CHILD_DEFN(warn
, gt
, >) /* warn_child_gt() */
399 CHECK_CHILD_DEFN(err
, gt
, >) /* err_child_gt() */
400 CHECK_CHILD_DEFN(warn
, eq
, ==) /* warn_child_eq() */
401 CHECK_CHILD_DEFN(err
, eq
, ==) /* err_child_eq() */
402 CHECK_CHILD_DEFN(err
, lt
, <) /* err_child_lt() */
403 CHECK_CHILD_DEFN(warn
, lt
, <) /* warn_child_lt() */
404 CHECK_BODY_DEFN(ge1
, warn
, warn_child_gt
, 0) /* bwarn_ge1() */
405 CHECK_BODY_DEFN(ge1
, err
, err_child_gt
, 0) /* berr_ge1() */
406 CHECK_ELEM_DEFN(ge1
, warn
, warn_child_gt
, 0) /* ewarn_gt1() */
407 CHECK_ELEM_DEFN(eq1
, err
, err_child_eq
, 1) /* eerr_eq1() */
408 CHECK_ELEM_DEFN(le1
, err
, err_child_lt
, 2) /* eerr_le1() */
409 CHECK_ELEM_DEFN(eq0
, err
, err_child_eq
, 0) /* eerr_eq0() */
410 CHECK_ELEM_DEFN(ge1
, err
, err_child_gt
, 0) /* eerr_ge1() */
411 CHECK_HEAD_DEFN(eq0
, err
, err_child_eq
, 0) /* herr_eq0() */
412 CHECK_HEAD_DEFN(le1
, warn
, warn_child_lt
, 2) /* hwarn_le1() */
413 CHECK_HEAD_DEFN(ge1
, err
, err_child_gt
, 0) /* herr_ge1() */
414 CHECK_HEAD_DEFN(eq1
, warn
, warn_child_eq
, 1) /* hwarn_eq1() */
415 CHECK_HEAD_DEFN(eq0
, warn
, warn_child_eq
, 0) /* hwarn_eq0() */
419 check_stdarg(PRE_ARGS
)
422 if (n
->args
&& 1 == n
->args
->argc
)
423 if (MDOC_Std
== n
->args
->argv
[0].arg
)
425 return(mdoc_nwarn(mdoc
, n
, EARGVAL
));
430 check_sec(PRE_ARGS
, ...)
439 sec
= (enum mdoc_sec
)va_arg(ap
, int);
440 if (SEC_CUSTOM
== sec
)
442 if (sec
!= mdoc
->lastsec
)
449 return(mdoc_nwarn(mdoc
, n
, EBADSEC
));
454 check_msec(PRE_ARGS
, ...)
462 if (0 == (msec
= va_arg(ap
, int)))
464 if (msec
!= mdoc
->meta
.msec
)
471 return(mdoc_nwarn(mdoc
, n
, EBADMSEC
));
476 check_args(struct mdoc
*m
, const struct mdoc_node
*n
)
483 assert(n
->args
->argc
);
484 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
485 if ( ! check_argv(m
, n
, &n
->args
->argv
[i
]))
493 check_argv(struct mdoc
*m
, const struct mdoc_node
*n
,
494 const struct mdoc_argv
*v
)
498 for (i
= 0; i
< (int)v
->sz
; i
++)
499 if ( ! check_text(m
, v
->line
, v
->pos
, v
->value
[i
]))
502 if (MDOC_Std
== v
->arg
) {
503 /* `Nm' name must be set. */
504 if (v
->sz
|| m
->meta
.name
)
506 return(mdoc_nerr(m
, n
, ENAME
));
514 check_text(struct mdoc
*mdoc
, int line
, int pos
, const char *p
)
518 for ( ; *p
; p
++, pos
++) {
520 if ( ! (MDOC_LITERAL
& mdoc
->flags
))
521 if ( ! warn_print(mdoc
, line
, pos
))
523 } else if ( ! isprint((u_char
)*p
))
524 if ( ! warn_print(mdoc
, line
, pos
))
530 c
= mandoc_special(p
);
536 if ( ! (MDOC_IGN_ESCAPE
& mdoc
->pflags
))
537 return(mdoc_perr(mdoc
, line
, pos
, EESCAPE
));
538 if ( ! mdoc_pwarn(mdoc
, line
, pos
, EESCAPE
))
549 check_parent(PRE_ARGS
, enum mdoct tok
, enum mdoc_type t
)
553 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
554 (t
== n
->parent
->type
))
557 return(mdoc_verr(mdoc
, n
->line
, n
->pos
, "require parent %s",
558 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]));
564 pre_display(PRE_ARGS
)
566 struct mdoc_node
*node
;
568 /* Display elements (`Bd', `D1'...) cannot be nested. */
570 if (MDOC_BLOCK
!= n
->type
)
574 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
575 if (MDOC_BLOCK
== node
->type
)
576 if (MDOC_Bd
== node
->tok
)
581 return(mdoc_nerr(mdoc
, n
, ENESTDISP
));
588 int pos
, type
, width
, offset
;
590 if (MDOC_BLOCK
!= n
->type
)
593 return(mdoc_nerr(mdoc
, n
, ELISTTYPE
));
595 /* Make sure that only one type of list is specified. */
597 type
= offset
= width
= -1;
600 for (pos
= 0; pos
< (int)n
->args
->argc
; pos
++)
601 switch (n
->args
->argv
[pos
].arg
) {
624 * Note that if a duplicate is detected, we
625 * remove the duplicate instead of passing it
626 * over. If we don't do this, mdoc_action will
627 * become confused when it scans over multiple
628 * types whilst setting its bitmasks.
630 * FIXME: this should occur in mdoc_action.c.
633 if ( ! mdoc_nwarn(mdoc
, n
, EMULTILIST
))
635 mdoc_argn_free(n
->args
, pos
);
638 type
= n
->args
->argv
[pos
].arg
;
641 if (type
< 0 && ! mdoc_nwarn(mdoc
, n
, ENOTYPE
))
646 return(mdoc_nerr(mdoc
, n
, EARGREP
));
647 if (type
< 0 && ! mdoc_nwarn(mdoc
, n
, ENOTYPE
))
649 width
= n
->args
->argv
[pos
].arg
;
653 return(mdoc_nerr(mdoc
, n
, EARGREP
));
654 if (type
< 0 && ! mdoc_nwarn(mdoc
, n
, ENOTYPE
))
656 offset
= n
->args
->argv
[pos
].arg
;
663 return(mdoc_nerr(mdoc
, n
, ELISTTYPE
));
666 * Validate the width field. Some list types don't need width
667 * types and should be warned about them. Others should have it
668 * and must also be warned.
673 if (width
< 0 && ! mdoc_nwarn(mdoc
, n
, EMISSWIDTH
))
685 if (width
>= 0 && ! mdoc_nwarn(mdoc
, n
, ENOWIDTH
))
701 if (MDOC_BLOCK
!= n
->type
)
704 return(mdoc_nerr(mdoc
, n
, EDISPTYPE
));
706 /* Make sure that only one type of display is specified. */
709 for (i
= 0, err
= type
= 0; ! err
&&
710 i
< (int)n
->args
->argc
; i
++)
711 switch (n
->args
->argv
[i
].arg
) {
716 case (MDOC_Unfilled
):
723 return(mdoc_nerr(mdoc
, n
, EMULTIDISP
));
730 return(mdoc_nerr(mdoc
, n
, EDISPTYPE
));
738 if (MDOC_BLOCK
!= n
->type
)
740 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
748 if (MDOC_BLOCK
!= n
->type
)
750 return(check_parent(mdoc
, n
, MDOC_MAX
, MDOC_ROOT
));
758 if (MDOC_BLOCK
!= n
->type
)
760 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
768 if (NULL
== n
->args
|| 1 == n
->args
->argc
)
770 return(mdoc_verr(mdoc
, n
->line
, n
->pos
,
771 "only one argument allowed"));
779 return(check_sec(mdoc
, n
, SEC_LIBRARY
, SEC_CUSTOM
));
787 return(check_stdarg(mdoc
, n
));
795 if ( ! check_msec(mdoc
, n
, 1, 6, 8, 0))
797 return(check_stdarg(mdoc
, n
));
805 /* FIXME: make sure is capitalised. */
807 if (0 == mdoc
->meta
.date
|| mdoc
->meta
.os
)
808 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
810 if (mdoc
->meta
.title
)
811 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
821 if (NULL
== mdoc
->meta
.title
|| 0 == mdoc
->meta
.date
)
822 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
825 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
835 if (mdoc
->meta
.title
|| mdoc
->meta
.os
)
836 if ( ! mdoc_nwarn(mdoc
, n
, EPROLOOO
))
839 if ( ! mdoc_nwarn(mdoc
, n
, EPROLREP
))
849 struct mdoc_node
*head
;
851 if (MDOC_BLOCK
!= mdoc
->last
->type
)
854 head
= mdoc
->last
->head
;
856 if (mdoc
->last
->args
&& head
->child
)
857 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
858 else if (mdoc
->last
->args
)
861 if (NULL
== head
->child
|| MDOC_TEXT
!= head
->child
->type
)
862 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
864 p
= head
->child
->string
;
866 if (0 == strcmp(p
, "Em"))
868 else if (0 == strcmp(p
, "Li"))
870 else if (0 == strcmp(p
, "Sy"))
873 return(mdoc_nerr(mdoc
, head
, EFONT
));
881 if (mdoc_a2lib(mdoc
->last
->child
->string
))
883 return(mdoc_nwarn(mdoc
, mdoc
->last
, ELIB
));
890 const struct mdoc_node
*n
;
893 * The Vt macro comes in both ELEM and BLOCK form, both of which
894 * have different syntaxes (yet more context-sensitive
895 * behaviour). ELEM types must have a child; BLOCK types,
896 * specifically the BODY, should only have TEXT children.
899 if (MDOC_ELEM
== mdoc
->last
->type
)
900 return(eerr_ge1(mdoc
));
901 if (MDOC_BODY
!= mdoc
->last
->type
)
904 for (n
= mdoc
->last
->child
; n
; n
= n
->next
)
905 if (MDOC_TEXT
!= n
->type
)
906 if ( ! mdoc_nwarn(mdoc
, n
, EBADCHILD
))
917 if (mdoc
->last
->child
)
921 return(mdoc_nerr(mdoc
, mdoc
->last
, ENAME
));
929 if (NULL
== mdoc
->last
->child
)
931 if (MDOC_TEXT
!= mdoc
->last
->child
->type
)
932 return(mdoc_nerr(mdoc
, mdoc
->last
, EATT
));
933 if (mdoc_a2att(mdoc
->last
->child
->string
))
935 return(mdoc_nerr(mdoc
, mdoc
->last
, EATT
));
943 if (mdoc
->last
->args
) {
944 if (NULL
== mdoc
->last
->child
)
946 return(mdoc_nerr(mdoc
, mdoc
->last
, ENOLINE
));
949 if (mdoc
->last
->child
)
951 return(mdoc_nerr(mdoc
, mdoc
->last
, ELINE
));
959 struct mdoc_node
*n
, *c
;
961 if (MDOC_BLOCK
!= mdoc
->last
->type
)
964 n
= mdoc
->last
->parent
->parent
;
966 return(mdoc_nerr(mdoc
, mdoc
->last
, ELISTTYPE
));
968 /* Some types require block-head, some not. */
971 for (cols
= type
= -1, i
= 0; -1 == type
&&
972 i
< (int)n
->args
->argc
; i
++)
973 switch (n
->args
->argv
[i
].arg
) {
993 type
= n
->args
->argv
[i
].arg
;
996 type
= n
->args
->argv
[i
].arg
;
997 cols
= (int)n
->args
->argv
[i
].sz
;
1004 return(mdoc_nerr(mdoc
, mdoc
->last
, ELISTTYPE
));
1008 if (NULL
== mdoc
->last
->head
->child
)
1009 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1019 if (NULL
== mdoc
->last
->head
->child
)
1020 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1022 if (NULL
== mdoc
->last
->body
->child
)
1023 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, EMULTILINE
))
1035 if (mdoc
->last
->head
->child
)
1036 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENOLINE
))
1038 if (NULL
== mdoc
->last
->body
->child
)
1039 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, EMULTILINE
))
1043 if (NULL
== mdoc
->last
->head
->child
)
1044 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ELINE
))
1046 if (mdoc
->last
->body
->child
)
1047 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENOMULTILINE
))
1049 c
= mdoc
->last
->child
;
1050 for (i
= 0; c
&& MDOC_HEAD
== c
->type
; c
= c
->next
)
1053 if (i
< cols
|| i
== (cols
+ 1)) {
1054 if ( ! mdoc_vwarn(mdoc
, mdoc
->last
->line
,
1055 mdoc
->last
->pos
, "column "
1056 "mismatch: have %d, want %d",
1060 } else if (i
== cols
)
1063 return(mdoc_verr(mdoc
, mdoc
->last
->line
,
1064 mdoc
->last
->pos
, "column mismatch: "
1065 "have %d, want %d", i
, cols
));
1075 post_bl_head(POST_ARGS
)
1078 const struct mdoc_node
*n
;
1079 const struct mdoc_argv
*a
;
1081 n
= mdoc
->last
->parent
;
1084 for (i
= 0; i
< (int)n
->args
->argc
; i
++) {
1085 a
= &n
->args
->argv
[i
];
1086 if (a
->arg
== MDOC_Column
) {
1087 if (a
->sz
&& mdoc
->last
->nchild
)
1088 return(mdoc_nerr(mdoc
, n
, ECOLMIS
));
1093 if (0 == (i
= mdoc
->last
->nchild
))
1095 return(warn_count(mdoc
, "==", 0, "line arguments", i
));
1102 struct mdoc_node
*n
;
1104 if (MDOC_HEAD
== mdoc
->last
->type
)
1105 return(post_bl_head(mdoc
));
1106 if (MDOC_BODY
!= mdoc
->last
->type
)
1108 if (NULL
== mdoc
->last
->child
)
1112 * We only allow certain children of `Bl'. This is usually on
1113 * `It', but apparently `Sm' occurs here and there, so we let
1114 * that one through, too.
1118 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1119 if (MDOC_BLOCK
== n
->type
&& MDOC_It
== n
->tok
)
1121 if (MDOC_Sm
== n
->tok
)
1123 return(mdoc_nerr(mdoc
, n
, EBADCHILD
));
1131 ebool(struct mdoc
*mdoc
)
1133 struct mdoc_node
*n
;
1136 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1137 if (MDOC_TEXT
!= n
->type
)
1139 if (0 == strcmp(n
->string
, "on"))
1141 if (0 == strcmp(n
->string
, "off"))
1148 return(mdoc_nerr(mdoc
, n
, EBOOL
));
1153 post_root(POST_ARGS
)
1156 if (NULL
== mdoc
->first
->child
)
1157 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1158 if ( ! (MDOC_PBODY
& mdoc
->flags
))
1159 return(mdoc_nerr(mdoc
, mdoc
->first
, ENOPROLOGUE
));
1161 if (MDOC_BLOCK
!= mdoc
->first
->child
->type
)
1162 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1163 if (MDOC_Sh
!= mdoc
->first
->child
->tok
)
1164 return(mdoc_nerr(mdoc
, mdoc
->first
, ENODAT
));
1174 if (mdoc_a2st(mdoc
->last
->child
->string
))
1176 return(mdoc_nerr(mdoc
, mdoc
->last
, EBADSTAND
));
1183 struct mdoc_node
*nn
;
1185 if (MDOC_BODY
!= mdoc
->last
->type
)
1188 for (nn
= mdoc
->last
->child
; nn
; nn
= nn
->next
)
1219 return(mdoc_nerr(mdoc
, nn
, EBADCHILD
));
1230 if (MDOC_HEAD
== mdoc
->last
->type
)
1231 return(post_sh_head(mdoc
));
1232 if (MDOC_BODY
== mdoc
->last
->type
)
1233 return(post_sh_body(mdoc
));
1240 post_sh_body(POST_ARGS
)
1242 struct mdoc_node
*n
;
1244 if (SEC_NAME
!= mdoc
->lastsec
)
1248 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1249 * macros (can have multiple `Nm' and one `Nd'). Note that the
1250 * children of the BODY declaration can also be "text".
1253 if (NULL
== (n
= mdoc
->last
->child
))
1254 return(mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
));
1256 for ( ; n
&& n
->next
; n
= n
->next
) {
1257 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1259 if (MDOC_TEXT
== n
->type
)
1261 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
))
1266 if (MDOC_BLOCK
== n
->type
&& MDOC_Nd
== n
->tok
)
1268 return(mdoc_nwarn(mdoc
, mdoc
->last
, ENAMESECINC
));
1273 post_sh_head(POST_ARGS
)
1277 const struct mdoc_node
*n
;
1280 * Process a new section. Sections are either "named" or
1281 * "custom"; custom sections are user-defined, while named ones
1282 * usually follow a conventional order and may only appear in
1283 * certain manual sections.
1288 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1289 /* XXX - copied from compact(). */
1290 assert(MDOC_TEXT
== n
->type
);
1292 if (strlcat(buf
, n
->string
, 64) >= 64)
1293 return(mdoc_nerr(mdoc
, n
, ETOOLONG
));
1294 if (NULL
== n
->next
)
1296 if (strlcat(buf
, " ", 64) >= 64)
1297 return(mdoc_nerr(mdoc
, n
, ETOOLONG
));
1300 sec
= mdoc_atosec(buf
);
1303 * Check: NAME should always be first, CUSTOM has no roles,
1304 * non-CUSTOM has a conventional order to be followed.
1307 if (SEC_NAME
!= sec
&& SEC_NONE
== mdoc
->lastnamed
&&
1308 ! mdoc_nwarn(mdoc
, mdoc
->last
, ESECNAME
))
1310 if (SEC_CUSTOM
== sec
)
1312 if (sec
== mdoc
->lastnamed
)
1313 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ESECREP
))
1315 if (sec
< mdoc
->lastnamed
)
1316 if ( ! mdoc_nwarn(mdoc
, mdoc
->last
, ESECOOO
))
1320 * Check particular section/manual conventions. LIBRARY can
1321 * only occur in msec 2, 3 (TODO: are there more of these?).
1326 switch (mdoc
->meta
.msec
) {
1332 return(mdoc_nwarn(mdoc
, mdoc
->last
, EWRONGMSEC
));
1347 return(check_sec(mdoc
, n
, SEC_SYNOPSIS
, SEC_CUSTOM
));