]>
git.cameronkatri.com Git - mandoc.git/blob - validate.c
1 /* $Id: validate.c,v 1.66 2009/03/02 17:14:46 kristaps Exp $ */
3 * Copyright (c) 2008 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
7 * above copyright notice and this permission notice appear in all
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
11 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
12 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
13 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
16 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
26 * Pre- and post-validate macros as they're parsed. Pre-validation
27 * occurs when the macro has been detected and its arguments parsed.
28 * Post-validation occurs when all child macros have also been parsed.
29 * In the ELEMENT case, this is simply the parameters of the macro; in
30 * the BLOCK case, this is the HEAD, BODY, TAIL and so on.
33 #define PRE_ARGS struct mdoc *mdoc, const struct mdoc_node *n
34 #define POST_ARGS struct mdoc *mdoc
36 typedef int (*v_pre
)(PRE_ARGS
);
37 typedef int (*v_post
)(POST_ARGS
);
39 /* TODO: ignoring Pp (it's superfluous in some invocations). */
48 static int check_parent(PRE_ARGS
, int, enum mdoc_type
);
49 static int check_msec(PRE_ARGS
, int, enum mdoc_msec
*);
50 static int check_stdarg(PRE_ARGS
);
52 static int check_text(struct mdoc
*,
53 int, int, const char *);
55 static int err_child_lt(struct mdoc
*, const char *, int);
56 static int warn_child_lt(struct mdoc
*, const char *, int);
57 static int err_child_gt(struct mdoc
*, const char *, int);
58 static int warn_child_gt(struct mdoc
*, const char *, int);
59 static int err_child_eq(struct mdoc
*, const char *, int);
60 static int warn_child_eq(struct mdoc
*, const char *, int);
62 /* Utility auxiliaries. */
64 static inline int count_child(struct mdoc
*);
65 static inline int warn_count(struct mdoc
*, const char *,
66 int, const char *, int);
67 static inline int err_count(struct mdoc
*, const char *,
68 int, const char *, int);
70 /* Specific pre-child-parse routines. */
72 static int pre_display(PRE_ARGS
);
73 static int pre_sh(PRE_ARGS
);
74 static int pre_ss(PRE_ARGS
);
75 static int pre_bd(PRE_ARGS
);
76 static int pre_bl(PRE_ARGS
);
77 static int pre_it(PRE_ARGS
);
78 static int pre_cd(PRE_ARGS
);
79 static int pre_er(PRE_ARGS
);
80 static int pre_ex(PRE_ARGS
);
81 static int pre_rv(PRE_ARGS
);
82 static int pre_an(PRE_ARGS
);
83 static int pre_st(PRE_ARGS
);
84 static int pre_prologue(PRE_ARGS
);
85 static int pre_prologue(PRE_ARGS
);
86 static int pre_prologue(PRE_ARGS
);
88 /* Specific post-child-parse routines. */
90 static int herr_ge1(POST_ARGS
);
91 static int hwarn_le1(POST_ARGS
);
92 static int herr_eq0(POST_ARGS
);
93 static int eerr_eq0(POST_ARGS
);
94 static int eerr_le1(POST_ARGS
);
95 static int eerr_le2(POST_ARGS
);
96 static int eerr_eq1(POST_ARGS
);
97 static int eerr_ge1(POST_ARGS
);
98 static int ewarn_eq0(POST_ARGS
);
99 static int ewarn_eq1(POST_ARGS
);
100 static int bwarn_ge1(POST_ARGS
);
101 static int hwarn_eq1(POST_ARGS
);
102 static int ewarn_ge1(POST_ARGS
);
103 static int ebool(POST_ARGS
);
105 static int post_sh(POST_ARGS
);
106 static int post_sh_body(POST_ARGS
);
107 static int post_sh_head(POST_ARGS
);
108 static int post_fd(POST_ARGS
);
109 static int post_bl(POST_ARGS
);
110 static int post_it(POST_ARGS
);
111 static int post_ex(POST_ARGS
);
112 static int post_an(POST_ARGS
);
113 static int post_at(POST_ARGS
);
114 static int post_xr(POST_ARGS
);
115 static int post_nm(POST_ARGS
);
116 static int post_bf(POST_ARGS
);
117 static int post_root(POST_ARGS
);
119 /* Collections of pre-child-parse routines. */
121 static v_pre pres_prologue
[] = { pre_prologue
, NULL
};
122 static v_pre pres_d1
[] = { pre_display
, NULL
};
123 static v_pre pres_bd
[] = { pre_display
, pre_bd
, NULL
};
124 static v_pre pres_bl
[] = { pre_bl
, NULL
};
125 static v_pre pres_it
[] = { pre_it
, NULL
};
126 static v_pre pres_ss
[] = { pre_ss
, NULL
};
127 static v_pre pres_sh
[] = { pre_sh
, NULL
};
128 static v_pre pres_cd
[] = { pre_cd
, NULL
};
129 static v_pre pres_er
[] = { pre_er
, NULL
};
130 static v_pre pres_ex
[] = { pre_ex
, NULL
};
131 static v_pre pres_rv
[] = { pre_rv
, NULL
};
132 static v_pre pres_an
[] = { pre_an
, NULL
};
133 static v_pre pres_st
[] = { pre_st
, NULL
};
135 /* Collections of post-child-parse routines. */
137 static v_post posts_bool
[] = { eerr_eq1
, ebool
, NULL
};
138 static v_post posts_bd
[] = { herr_eq0
, bwarn_ge1
, NULL
};
139 static v_post posts_text
[] = { eerr_ge1
, NULL
};
140 static v_post posts_wtext
[] = { ewarn_ge1
, NULL
};
141 static v_post posts_notext
[] = { eerr_eq0
, NULL
};
142 static v_post posts_wline
[] = { bwarn_ge1
, herr_eq0
, NULL
};
143 static v_post posts_sh
[] = { herr_ge1
, bwarn_ge1
, post_sh
, NULL
};
144 static v_post posts_bl
[] = { herr_eq0
, bwarn_ge1
, post_bl
, NULL
};
145 static v_post posts_it
[] = { post_it
, NULL
};
146 static v_post posts_in
[] = { ewarn_eq1
, NULL
};
147 static v_post posts_ss
[] = { herr_ge1
, NULL
};
148 static v_post posts_pf
[] = { eerr_eq1
, NULL
};
149 static v_post posts_pp
[] = { ewarn_eq0
, NULL
};
150 static v_post posts_ex
[] = { eerr_le1
, post_ex
, NULL
};
151 static v_post posts_an
[] = { post_an
, NULL
};
152 static v_post posts_at
[] = { post_at
, NULL
};
153 static v_post posts_xr
[] = { eerr_ge1
, eerr_le2
, post_xr
, NULL
};
154 static v_post posts_nm
[] = { post_nm
, NULL
};
155 static v_post posts_bf
[] = { hwarn_le1
, post_bf
, NULL
};
156 static v_post posts_rs
[] = { herr_eq0
, bwarn_ge1
, NULL
};
157 static v_post posts_fo
[] = { hwarn_eq1
, bwarn_ge1
, NULL
};
158 static v_post posts_bk
[] = { herr_eq0
, bwarn_ge1
, NULL
};
159 static v_post posts_fd
[] = { ewarn_ge1
, post_fd
, NULL
};
161 /* Per-macro pre- and post-child-check routine collections. */
163 const struct valids mdoc_valids
[MDOC_MAX
] = {
164 { NULL
, NULL
}, /* \" */
165 { pres_prologue
, posts_text
}, /* Dd */
166 { pres_prologue
, NULL
}, /* Dt */
167 { pres_prologue
, NULL
}, /* Os */
168 { pres_sh
, posts_sh
}, /* Sh */
169 { pres_ss
, posts_ss
}, /* Ss */
170 { NULL
, posts_pp
}, /* Pp */
171 { pres_d1
, posts_wline
}, /* D1 */
172 { pres_d1
, posts_wline
}, /* Dl */
173 { pres_bd
, posts_bd
}, /* Bd */
174 { NULL
, NULL
}, /* Ed */
175 { pres_bl
, posts_bl
}, /* Bl */
176 { NULL
, NULL
}, /* El */
177 { pres_it
, posts_it
}, /* It */
178 { NULL
, posts_text
}, /* Ad */
179 { pres_an
, posts_an
}, /* An */
180 { NULL
, NULL
}, /* Ar */
181 { pres_cd
, posts_text
}, /* Cd */
182 { NULL
, NULL
}, /* Cm */
183 { NULL
, posts_text
}, /* Dv */
184 { pres_er
, posts_text
}, /* Er */
185 { NULL
, posts_text
}, /* Ev */
186 { pres_ex
, posts_ex
}, /* Ex */
187 { NULL
, posts_text
}, /* Fa */
188 { NULL
, posts_fd
}, /* Fd */
189 { NULL
, NULL
}, /* Fl */
190 { NULL
, posts_text
}, /* Fn */
191 { NULL
, posts_wtext
}, /* Ft */
192 { NULL
, posts_text
}, /* Ic */
193 { NULL
, posts_in
}, /* In */
194 { NULL
, posts_text
}, /* Li */
195 { NULL
, posts_wtext
}, /* Nd */
196 { NULL
, posts_nm
}, /* Nm */
197 { NULL
, posts_wline
}, /* Op */
198 { NULL
, NULL
}, /* Ot */
199 { NULL
, NULL
}, /* Pa */
200 { pres_rv
, posts_notext
}, /* Rv */
201 { pres_st
, posts_notext
}, /* St */
202 { NULL
, posts_text
}, /* Va */
203 { NULL
, posts_text
}, /* Vt */
204 { NULL
, posts_xr
}, /* Xr */
205 { NULL
, posts_text
}, /* %A */
206 { NULL
, posts_text
}, /* %B */
207 { NULL
, posts_text
}, /* %D */
208 { NULL
, posts_text
}, /* %I */
209 { NULL
, posts_text
}, /* %J */
210 { NULL
, posts_text
}, /* %N */
211 { NULL
, posts_text
}, /* %O */
212 { NULL
, posts_text
}, /* %P */
213 { NULL
, posts_text
}, /* %R */
214 { NULL
, posts_text
}, /* %T */
215 { NULL
, posts_text
}, /* %V */
216 { NULL
, NULL
}, /* Ac */
217 { NULL
, NULL
}, /* Ao */
218 { NULL
, posts_wline
}, /* Aq */
219 { NULL
, posts_at
}, /* At */
220 { NULL
, NULL
}, /* Bc */
221 { NULL
, posts_bf
}, /* Bf */
222 { NULL
, NULL
}, /* Bo */
223 { NULL
, posts_wline
}, /* Bq */
224 { NULL
, NULL
}, /* Bsx */
225 { NULL
, NULL
}, /* Bx */
226 { NULL
, posts_bool
}, /* Db */
227 { NULL
, NULL
}, /* Dc */
228 { NULL
, NULL
}, /* Do */
229 { NULL
, posts_wline
}, /* Dq */
230 { NULL
, NULL
}, /* Ec */
231 { NULL
, NULL
}, /* Ef */
232 { NULL
, posts_text
}, /* Em */
233 { NULL
, NULL
}, /* Eo */
234 { NULL
, NULL
}, /* Fx */
235 { NULL
, posts_text
}, /* Ms */
236 { NULL
, posts_notext
}, /* No */
237 { NULL
, posts_notext
}, /* Ns */
238 { NULL
, NULL
}, /* Nx */
239 { NULL
, NULL
}, /* Ox */
240 { NULL
, NULL
}, /* Pc */
241 { NULL
, posts_pf
}, /* Pf */
242 { NULL
, NULL
}, /* Po */
243 { NULL
, posts_wline
}, /* Pq */
244 { NULL
, NULL
}, /* Qc */
245 { NULL
, posts_wline
}, /* Ql */
246 { NULL
, NULL
}, /* Qo */
247 { NULL
, posts_wline
}, /* Qq */
248 { NULL
, NULL
}, /* Re */
249 { NULL
, posts_rs
}, /* Rs */
250 { NULL
, NULL
}, /* Sc */
251 { NULL
, NULL
}, /* So */
252 { NULL
, posts_wline
}, /* Sq */
253 { NULL
, posts_bool
}, /* Sm */
254 { NULL
, posts_text
}, /* Sx */
255 { NULL
, posts_text
}, /* Sy */
256 { NULL
, posts_text
}, /* Tn */
257 { NULL
, NULL
}, /* Ux */
258 { NULL
, NULL
}, /* Xc */
259 { NULL
, NULL
}, /* Xo */
260 { NULL
, posts_fo
}, /* Fo */
261 { NULL
, NULL
}, /* Fc */
262 { NULL
, NULL
}, /* Oo */
263 { NULL
, NULL
}, /* Oc */
264 { NULL
, posts_bk
}, /* Bk */
265 { NULL
, NULL
}, /* Ek */
266 { NULL
, posts_notext
}, /* Bt */
267 { NULL
, NULL
}, /* Hf */
268 { NULL
, NULL
}, /* Fr */
269 { NULL
, posts_notext
}, /* Ud */
274 mdoc_valid_pre(struct mdoc
*mdoc
,
275 const struct mdoc_node
*node
)
278 struct mdoc_arg
*argv
;
283 if (MDOC_TEXT
== node
->type
) {
284 tp
= node
->data
.text
.string
;
287 return(check_text(mdoc
, line
, pos
, tp
));
290 if (MDOC_BLOCK
== node
->type
|| MDOC_ELEM
== node
->type
) {
291 argv
= MDOC_BLOCK
== node
->type
?
292 node
->data
.block
.argv
:
293 node
->data
.elem
.argv
;
294 argc
= MDOC_BLOCK
== node
->type
?
295 node
->data
.block
.argc
:
296 node
->data
.elem
.argc
;
298 for (i
= 0; i
< (int)argc
; i
++) {
301 for (j
= 0; j
< (int)argv
[i
].sz
; j
++) {
302 tp
= argv
[i
].value
[j
];
305 if ( ! check_text(mdoc
, line
, pos
, tp
))
311 if (NULL
== mdoc_valids
[node
->tok
].pre
)
313 for (p
= mdoc_valids
[node
->tok
].pre
; *p
; p
++)
314 if ( ! (*p
)(mdoc
, node
))
321 mdoc_valid_post(struct mdoc
*mdoc
)
326 * This check occurs after the macro's children have been filled
327 * in: postfix validation. Since this happens when we're
328 * rewinding the scope tree, it's possible to have multiple
329 * invocations (as by design, for now), we set bit MDOC_VALID to
330 * indicate that we've validated.
333 if (MDOC_VALID
& mdoc
->last
->flags
)
335 mdoc
->last
->flags
|= MDOC_VALID
;
337 if (MDOC_TEXT
== mdoc
->last
->type
)
339 if (MDOC_ROOT
== mdoc
->last
->type
)
340 return(post_root(mdoc
));
342 if (NULL
== mdoc_valids
[mdoc
->last
->tok
].post
)
344 for (p
= mdoc_valids
[mdoc
->last
->tok
].post
; *p
; p
++)
354 warn_count(struct mdoc
*m
, const char *k
,
355 int want
, const char *v
, int has
)
358 return(mdoc_warn(m
, WARN_SYNTAX
,
359 "suggests %s %s %d (has %d)",
365 err_count(struct mdoc
*m
, const char *k
,
366 int want
, const char *v
, int has
)
369 return(mdoc_err(m
, "requires %s %s %d (has %d)",
375 count_child(struct mdoc
*mdoc
)
380 for (i
= 0, n
= mdoc
->last
->child
; n
; n
= n
->next
, i
++)
388 * Build these up with macros because they're basically the same check
389 * for different inequalities. Yes, this could be done with functions,
390 * but this is reasonable for now.
393 #define CHECK_CHILD_DEFN(lvl, name, ineq) \
395 lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz) \
398 if ((i = count_child(mdoc)) ineq sz) \
400 return(lvl##_count(mdoc, #ineq, sz, p, i)); \
403 #define CHECK_BODY_DEFN(name, lvl, func, num) \
405 b##lvl##_##name(POST_ARGS) \
407 if (MDOC_BODY != mdoc->last->type) \
409 return(func(mdoc, "multiline parameters", (num))); \
412 #define CHECK_ELEM_DEFN(name, lvl, func, num) \
414 e##lvl##_##name(POST_ARGS) \
416 assert(MDOC_ELEM == mdoc->last->type); \
417 return(func(mdoc, "line parameters", (num))); \
420 #define CHECK_HEAD_DEFN(name, lvl, func, num) \
422 h##lvl##_##name(POST_ARGS) \
424 if (MDOC_HEAD != mdoc->last->type) \
426 return(func(mdoc, "line parameters", (num))); \
430 CHECK_CHILD_DEFN(warn
, gt
, >) /* warn_child_gt() */
431 CHECK_CHILD_DEFN(err
, gt
, >) /* err_child_gt() */
432 CHECK_CHILD_DEFN(warn
, eq
, ==) /* warn_child_eq() */
433 CHECK_CHILD_DEFN(err
, eq
, ==) /* err_child_eq() */
434 CHECK_CHILD_DEFN(err
, lt
, <) /* err_child_lt() */
435 CHECK_CHILD_DEFN(warn
, lt
, <) /* warn_child_lt() */
436 CHECK_BODY_DEFN(ge1
, warn
, warn_child_gt
, 0) /* bwarn_ge1() */
437 CHECK_ELEM_DEFN(eq1
, warn
, warn_child_eq
, 1) /* ewarn_eq1() */
438 CHECK_ELEM_DEFN(eq0
, warn
, warn_child_eq
, 0) /* ewarn_eq0() */
439 CHECK_ELEM_DEFN(ge1
, warn
, warn_child_gt
, 0) /* ewarn_gt1() */
440 CHECK_ELEM_DEFN(eq1
, err
, err_child_eq
, 1) /* eerr_eq1() */
441 CHECK_ELEM_DEFN(le2
, err
, err_child_lt
, 3) /* eerr_le2() */
442 CHECK_ELEM_DEFN(le1
, err
, err_child_lt
, 2) /* eerr_le1() */
443 CHECK_ELEM_DEFN(eq0
, err
, err_child_eq
, 0) /* eerr_eq0() */
444 CHECK_ELEM_DEFN(ge1
, err
, err_child_gt
, 0) /* eerr_ge1() */
445 CHECK_HEAD_DEFN(eq0
, err
, err_child_eq
, 0) /* herr_eq0() */
446 CHECK_HEAD_DEFN(le1
, warn
, warn_child_lt
, 2) /* hwarn_le1() */
447 CHECK_HEAD_DEFN(ge1
, err
, err_child_gt
, 0) /* herr_ge1() */
448 CHECK_HEAD_DEFN(eq1
, warn
, warn_child_eq
, 1) /* hwarn_eq1() */
452 check_stdarg(PRE_ARGS
)
455 if (MDOC_Std
== n
->data
.elem
.argv
[0].arg
&&
456 1 == n
->data
.elem
.argc
)
459 return(mdoc_nwarn(mdoc
, n
, WARN_COMPAT
,
460 "one argument suggested"));
465 check_msec(PRE_ARGS
, int sz
, enum mdoc_msec
*msecs
)
469 for (i
= 0; i
< sz
; i
++)
470 if (msecs
[i
] == mdoc
->meta
.msec
)
472 return(mdoc_nwarn(mdoc
, n
, WARN_COMPAT
,
473 "invalid manual section"));
478 check_text(struct mdoc
*mdoc
, int line
, int pos
, const char *p
)
482 /* XXX - indicate deprecated escapes \*(xx and \*x. */
485 if ( ! isprint((int)*p
) && '\t' != *p
)
486 return(mdoc_perr(mdoc
, line
, pos
,
487 "invalid non-printing characters"));
490 if ((c
= mdoc_isescape(p
))) {
494 return(mdoc_perr(mdoc
, line
, pos
,
495 "invalid escape sequence"));
505 check_parent(PRE_ARGS
, int tok
, enum mdoc_type t
)
509 if ((MDOC_ROOT
== t
|| tok
== n
->parent
->tok
) &&
510 (t
== n
->parent
->type
))
513 return(mdoc_nerr(mdoc
, n
, "require parent %s",
514 MDOC_ROOT
== t
? "<root>" : mdoc_macronames
[tok
]));
520 pre_display(PRE_ARGS
)
522 struct mdoc_node
*node
;
524 /* Display elements (`Bd', `D1'...) cannot be nested. */
526 if (MDOC_BLOCK
!= n
->type
)
530 for (node
= mdoc
->last
->parent
; node
; node
= node
->parent
)
531 if (MDOC_BLOCK
== node
->type
)
532 if (MDOC_Bd
== node
->tok
)
537 return(mdoc_nerr(mdoc
, n
, "displays may not be nested"));
544 int type
, i
, width
, offset
;
545 struct mdoc_arg
*argv
;
548 if (MDOC_BLOCK
!= n
->type
)
551 argc
= n
->data
.block
.argc
;
553 /* Make sure that only one type of list is specified. */
555 type
= offset
= width
= -1;
558 for (i
= 0; i
< (int)argc
; i
++) {
559 argv
= &n
->data
.block
.argv
[i
];
587 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
588 "multiple types specified"));
594 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
595 "multiple -%s arguments",
596 mdoc_argnames
[MDOC_Width
]));
602 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
603 "multiple -%s arguments",
604 mdoc_argnames
[MDOC_Offset
]));
611 return(mdoc_err(mdoc
, "no type specified"));
623 return(mdoc_nwarn(mdoc
, n
, WARN_SYNTAX
,
624 "superfluous -%s argument",
625 mdoc_argnames
[MDOC_Width
]));
627 if (-1 == width
&& ! mdoc_nwarn(mdoc
, n
, WARN_SYNTAX
,
628 "suggest -%s argument",
629 mdoc_argnames
[MDOC_Width
]))
644 struct mdoc_arg
*argv
;
647 if (MDOC_BLOCK
!= n
->type
)
650 argc
= n
->data
.block
.argc
;
652 /* Make sure that only one type of display is specified. */
655 for (i
= 0, err
= type
= 0; ! err
&& i
< (int)argc
; i
++) {
656 argv
= &n
->data
.block
.argv
[i
];
661 case (MDOC_Unfilled
):
670 return(mdoc_perr(mdoc
, argv
->line
, argv
->pos
,
671 "multiple types specified"));
679 return(mdoc_err(mdoc
, "no type specified"));
687 if (MDOC_BLOCK
!= n
->type
)
689 return(check_parent(mdoc
, n
, MDOC_Sh
, MDOC_BODY
));
697 if (MDOC_BLOCK
!= n
->type
)
699 return(check_parent(mdoc
, n
, -1, MDOC_ROOT
));
707 if (MDOC_BLOCK
!= n
->type
)
709 return(check_parent(mdoc
, n
, MDOC_Bl
, MDOC_BODY
));
717 if (1 == n
->data
.elem
.argc
)
719 return(mdoc_nerr(mdoc
, n
, "one argument required"));
727 if (1 >= n
->data
.elem
.argc
)
729 return(mdoc_nerr(mdoc
, n
, "one argument allowed"));
736 enum mdoc_msec msecs
[] = { MSEC_2
, MSEC_3
};
738 if ( ! check_msec(mdoc
, n
, 2, msecs
))
740 return(check_stdarg(mdoc
, n
));
747 enum mdoc_msec msecs
[] = { MSEC_1
, MSEC_6
, MSEC_8
};
749 if ( ! check_msec(mdoc
, n
, 3, msecs
))
751 return(check_stdarg(mdoc
, n
));
758 enum mdoc_msec msecs
[] = { MSEC_2
};
760 return(check_msec(mdoc
, n
, 1, msecs
));
767 enum mdoc_msec msecs
[] = { MSEC_4
};
769 return(check_msec(mdoc
, n
, 1, msecs
));
774 pre_prologue(PRE_ARGS
)
777 if (SEC_PROLOGUE
!= mdoc
->lastnamed
)
778 return(mdoc_nerr(mdoc
, n
, "prologue only"));
780 /* Check for ordering. */
784 if (mdoc
->meta
.title
&& mdoc
->meta
.date
)
786 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
788 if (NULL
== mdoc
->meta
.title
&& mdoc
->meta
.date
)
790 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
792 if (NULL
== mdoc
->meta
.title
&& 0 == mdoc
->meta
.date
)
794 return(mdoc_nerr(mdoc
, n
, "prologue out-of-order"));
800 /* Check for repetition. */
804 if (NULL
== mdoc
->meta
.os
)
808 if (0 == mdoc
->meta
.date
)
812 if (NULL
== mdoc
->meta
.title
)
820 return(mdoc_nerr(mdoc
, n
, "prologue repetition"));
828 struct mdoc_node
*head
;
830 if (MDOC_BLOCK
!= mdoc
->last
->type
)
833 head
= mdoc
->last
->data
.block
.head
;
835 if (0 == mdoc
->last
->data
.block
.argc
) {
836 if (NULL
== head
->child
)
837 return(mdoc_err(mdoc
, "argument expected"));
839 p
= head
->child
->data
.text
.string
;
840 if (xstrcmp(p
, "Em"))
842 else if (xstrcmp(p
, "Li"))
844 else if (xstrcmp(p
, "Sm"))
846 return(mdoc_nerr(mdoc
, head
->child
, "invalid font"));
850 return(mdoc_err(mdoc
, "argument expected"));
852 if (1 == mdoc
->last
->data
.block
.argc
)
854 return(mdoc_err(mdoc
, "argument expected"));
862 if (mdoc
->last
->child
)
866 return(mdoc_err(mdoc
, "not yet invoked with name"));
875 if (NULL
== (n
= mdoc
->last
->child
->next
))
877 if (MSEC_DEFAULT
!= mdoc_atomsec(n
->data
.text
.string
))
879 return(mdoc_nerr(mdoc
, n
, "invalid manual section"));
887 if (NULL
== mdoc
->last
->child
)
889 if (ATT_DEFAULT
!= mdoc_atoatt(mdoc
->last
->child
->data
.text
.string
))
891 return(mdoc_err(mdoc
, "require valid symbol"));
899 if (0 != mdoc
->last
->data
.elem
.argc
) {
900 if (NULL
== mdoc
->last
->child
)
902 return(mdoc_err(mdoc
, "argument(s) expected"));
905 if (mdoc
->last
->child
)
907 return(mdoc_err(mdoc
, "argument(s) expected"));
915 if (0 == mdoc
->last
->data
.elem
.argc
) {
916 if (mdoc
->last
->child
)
918 return(mdoc_err(mdoc
, "argument(s) expected"));
920 if (mdoc
->last
->child
)
921 return(mdoc_err(mdoc
, "argument(s) expected"));
922 if (1 != mdoc
->last
->data
.elem
.argc
)
923 return(mdoc_err(mdoc
, "argument(s) expected"));
924 if (MDOC_Std
!= mdoc
->last
->data
.elem
.argv
[0].arg
)
925 return(mdoc_err(mdoc
, "argument(s) expected"));
935 #define TYPE_NONE (0)
936 #define TYPE_BODY (1)
937 #define TYPE_HEAD (2)
938 #define TYPE_OHEAD (3)
942 if (MDOC_BLOCK
!= mdoc
->last
->type
)
945 n
= mdoc
->last
->parent
->parent
;
947 argc
= n
->data
.block
.argc
;
951 /* Some types require block-head, some not. */
954 for (i
= 0; TYPE_NONE
== type
&& i
< (int)argc
; i
++)
955 switch (n
->data
.block
.argv
[i
].arg
) {
966 sv
= n
->data
.block
.argv
[i
].arg
;
978 sv
= n
->data
.block
.argv
[i
].arg
;
982 sv
= n
->data
.block
.argv
[i
].arg
;
988 assert(TYPE_NONE
!= type
);
990 n
= mdoc
->last
->data
.block
.head
;
992 if (TYPE_HEAD
== type
) {
993 if (NULL
== n
->child
)
994 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
995 "argument(s) suggested"))
998 n
= mdoc
->last
->data
.block
.body
;
999 if (NULL
== n
->child
)
1000 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
1001 "multiline body suggested"))
1004 } else if (TYPE_BODY
== type
) {
1006 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
1007 "no argument suggested"))
1010 n
= mdoc
->last
->data
.block
.body
;
1011 if (NULL
== n
->child
)
1012 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
1013 "multiline body suggested"))
1016 if (NULL
== n
->child
)
1017 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
1018 "argument(s) suggested"))
1021 n
= mdoc
->last
->data
.block
.body
;
1023 if ( ! mdoc_warn(mdoc
, WARN_SYNTAX
,
1024 "no multiline body suggested"))
1028 if (MDOC_Column
!= sv
)
1031 argc
= mdoc
->last
->parent
->parent
->data
.block
.argv
->sz
;
1032 n
= mdoc
->last
->data
.block
.head
->child
;
1034 for (i
= 0; n
; n
= n
->next
)
1040 return(mdoc_err(mdoc
, "need %zu columns (have %d)", argc
, i
));
1051 struct mdoc_node
*n
;
1053 if (MDOC_BODY
!= mdoc
->last
->type
)
1055 if (NULL
== (mdoc
->last
->child
))
1059 * Only allow `It' macros to be the immediate descendants of the
1064 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1065 if (MDOC_BLOCK
== n
->type
)
1066 if (MDOC_It
== n
->tok
)
1069 return(mdoc_nerr(mdoc
, n
, "bad child of parent %s",
1070 mdoc_macronames
[mdoc
->last
->tok
]));
1078 ebool(struct mdoc
*mdoc
)
1080 struct mdoc_node
*n
;
1083 for (n
= mdoc
->last
->child
; n
; n
= n
->next
) {
1084 if (MDOC_TEXT
!= n
->type
)
1086 if (xstrcmp(n
->data
.text
.string
, "on"))
1088 if (xstrcmp(n
->data
.text
.string
, "off"))
1095 return(mdoc_nerr(mdoc
, n
, "expected boolean"));
1100 post_root(POST_ARGS
)
1103 if (NULL
== mdoc
->first
->child
)
1104 return(mdoc_err(mdoc
, "document lacks data"));
1105 if (SEC_PROLOGUE
== mdoc
->lastnamed
)
1106 return(mdoc_err(mdoc
, "document lacks prologue"));
1108 if (MDOC_BLOCK
!= mdoc
->first
->child
->type
)
1109 return(mdoc_err(mdoc
, "lacking post-prologue %s",
1110 mdoc_macronames
[MDOC_Sh
]));
1111 if (MDOC_Sh
!= mdoc
->first
->child
->tok
)
1112 return(mdoc_err(mdoc
, "lacking post-prologue %s",
1113 mdoc_macronames
[MDOC_Sh
]));
1123 if (MDOC_HEAD
== mdoc
->last
->type
)
1124 return(post_sh_head(mdoc
));
1125 if (MDOC_BODY
== mdoc
->last
->type
)
1126 return(post_sh_body(mdoc
));
1133 post_sh_body(POST_ARGS
)
1135 struct mdoc_node
*n
;
1137 if (SEC_NAME
!= mdoc
->lastnamed
)
1141 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1142 * macros (can have multiple `Nm' and one `Nd'). Note that the
1143 * children of the BODY declaration can also be "text".
1146 if (NULL
== (n
= mdoc
->last
->child
))
1147 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1148 "section should have %s and %s",
1149 mdoc_macronames
[MDOC_Nm
],
1150 mdoc_macronames
[MDOC_Nd
]));
1152 for ( ; n
&& n
->next
; n
= n
->next
) {
1153 if (MDOC_ELEM
== n
->type
&& MDOC_Nm
== n
->tok
)
1155 if (MDOC_TEXT
== n
->type
)
1157 if ( ! (mdoc_nwarn(mdoc
, n
, WARN_SYNTAX
,
1158 "section should have %s first",
1159 mdoc_macronames
[MDOC_Nm
])))
1163 if (MDOC_ELEM
== n
->type
&& MDOC_Nd
== n
->tok
)
1166 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1167 "section should have %s last",
1168 mdoc_macronames
[MDOC_Nd
]));
1173 post_sh_head(POST_ARGS
)
1178 assert(MDOC_Sh
== mdoc
->last
->tok
);
1180 if ( ! xstrlcats(buf
, mdoc
->last
->child
, sizeof(buf
)))
1181 return(mdoc_err(mdoc
, "argument too long"));
1183 sec
= mdoc_atosec(buf
);
1185 if (SEC_BODY
== mdoc
->lastnamed
&& SEC_NAME
!= sec
)
1186 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1187 "section NAME should be first"));
1188 if (SEC_CUSTOM
== sec
)
1190 if (sec
== mdoc
->lastnamed
)
1191 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1192 "section repeated"));
1193 if (sec
< mdoc
->lastnamed
)
1194 return(mdoc_warn(mdoc
, WARN_SYNTAX
,
1195 "section out of order"));
1205 if (SEC_SYNOPSIS
== mdoc
->last
->sec
)
1207 return(mdoc_warn(mdoc
, WARN_COMPAT
,
1208 "suggested only in section SYNOPSIS"));