]> git.cameronkatri.com Git - mandoc.git/blob - mdoc_validate.c
d2ef944af0f5bd1521203bea6dcd603ab41075c4
[mandoc.git] / mdoc_validate.c
1 /* $Id: mdoc_validate.c,v 1.128 2010/11/29 15:45:15 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
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.
8 *
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.
16 */
17 #ifdef HAVE_CONFIG_H
18 #include "config.h"
19 #endif
20
21 #include <sys/types.h>
22
23 #include <assert.h>
24 #include <ctype.h>
25 #include <limits.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include "mandoc.h"
31 #include "libmdoc.h"
32 #include "libmandoc.h"
33
34 /* FIXME: .Bl -diag can't have non-text children in HEAD. */
35
36 #define PRE_ARGS struct mdoc *mdoc, struct mdoc_node *n
37 #define POST_ARGS struct mdoc *mdoc
38
39 enum check_ineq {
40 CHECK_LT,
41 CHECK_GT,
42 CHECK_EQ
43 };
44
45 enum check_lvl {
46 CHECK_WARN,
47 CHECK_ERROR,
48 CHECK_FATAL
49 };
50
51 typedef int (*v_pre)(PRE_ARGS);
52 typedef int (*v_post)(POST_ARGS);
53
54 struct valids {
55 v_pre *pre;
56 v_post *post;
57 };
58
59 static int check_count(struct mdoc *, enum mdoc_type,
60 enum check_lvl, enum check_ineq, int);
61 static int check_parent(PRE_ARGS, enum mdoct, enum mdoc_type);
62 static int check_stdarg(PRE_ARGS);
63 static int check_text(struct mdoc *, int, int, char *);
64 static int check_argv(struct mdoc *,
65 struct mdoc_node *, struct mdoc_argv *);
66 static int check_args(struct mdoc *, struct mdoc_node *);
67
68 static int ebool(POST_ARGS);
69 static int berr_ge1(POST_ARGS);
70 static int bwarn_ge1(POST_ARGS);
71 static int eerr_eq0(POST_ARGS);
72 static int eerr_eq1(POST_ARGS);
73 static int eerr_ge1(POST_ARGS);
74 static int eerr_le1(POST_ARGS);
75 static int ewarn_eq0(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_eq0(POST_ARGS);
80 static int hwarn_eq1(POST_ARGS);
81 static int hwarn_le1(POST_ARGS);
82
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_defaults(POST_ARGS);
89 static int post_literal(POST_ARGS);
90 static int post_eoln(POST_ARGS);
91 static int post_dt(POST_ARGS);
92 static int post_it(POST_ARGS);
93 static int post_lb(POST_ARGS);
94 static int post_nm(POST_ARGS);
95 static int post_root(POST_ARGS);
96 static int post_rs(POST_ARGS);
97 static int post_sh(POST_ARGS);
98 static int post_sh_body(POST_ARGS);
99 static int post_sh_head(POST_ARGS);
100 static int post_st(POST_ARGS);
101 static int post_vt(POST_ARGS);
102 static int pre_an(PRE_ARGS);
103 static int pre_bd(PRE_ARGS);
104 static int pre_bl(PRE_ARGS);
105 static int pre_dd(PRE_ARGS);
106 static int pre_display(PRE_ARGS);
107 static int pre_dt(PRE_ARGS);
108 static int pre_it(PRE_ARGS);
109 static int pre_literal(PRE_ARGS);
110 static int pre_os(PRE_ARGS);
111 static int pre_par(PRE_ARGS);
112 static int pre_rv(PRE_ARGS);
113 static int pre_sh(PRE_ARGS);
114 static int pre_ss(PRE_ARGS);
115
116 static v_post posts_an[] = { post_an, NULL };
117 static v_post posts_at[] = { post_at, post_defaults, NULL };
118 static v_post posts_bd[] = { post_literal, hwarn_eq0, bwarn_ge1, NULL };
119 static v_post posts_bf[] = { hwarn_le1, post_bf, NULL };
120 static v_post posts_bk[] = { hwarn_eq0, bwarn_ge1, NULL };
121 static v_post posts_bl[] = { bwarn_ge1, post_bl, NULL };
122 static v_post posts_bool[] = { eerr_eq1, ebool, NULL };
123 static v_post posts_eoln[] = { post_eoln, NULL };
124 static v_post posts_defaults[] = { post_defaults, NULL };
125 static v_post posts_dl[] = { post_literal, bwarn_ge1, herr_eq0, NULL };
126 static v_post posts_dt[] = { post_dt, NULL };
127 static v_post posts_fo[] = { hwarn_eq1, bwarn_ge1, NULL };
128 static v_post posts_it[] = { post_it, NULL };
129 static v_post posts_lb[] = { eerr_eq1, post_lb, NULL };
130 static v_post posts_nd[] = { berr_ge1, NULL };
131 static v_post posts_nm[] = { post_nm, NULL };
132 static v_post posts_notext[] = { ewarn_eq0, NULL };
133 static v_post posts_rs[] = { berr_ge1, herr_eq0, post_rs, NULL };
134 static v_post posts_sh[] = { herr_ge1, bwarn_ge1, post_sh, NULL };
135 static v_post posts_sp[] = { eerr_le1, NULL };
136 static v_post posts_ss[] = { herr_ge1, NULL };
137 static v_post posts_st[] = { eerr_eq1, post_st, NULL };
138 static v_post posts_text[] = { eerr_ge1, NULL };
139 static v_post posts_text1[] = { eerr_eq1, NULL };
140 static v_post posts_vt[] = { post_vt, NULL };
141 static v_post posts_wline[] = { bwarn_ge1, herr_eq0, NULL };
142 static v_post posts_wtext[] = { ewarn_ge1, NULL };
143 static v_pre pres_an[] = { pre_an, NULL };
144 static v_pre pres_bd[] = { pre_display, pre_bd, pre_literal, pre_par, NULL };
145 static v_pre pres_bl[] = { pre_bl, pre_par, NULL };
146 static v_pre pres_d1[] = { pre_display, NULL };
147 static v_pre pres_dl[] = { pre_literal, pre_display, NULL };
148 static v_pre pres_dd[] = { pre_dd, NULL };
149 static v_pre pres_dt[] = { pre_dt, NULL };
150 static v_pre pres_er[] = { NULL, NULL };
151 static v_pre pres_ex[] = { NULL, NULL };
152 static v_pre pres_fd[] = { NULL, NULL };
153 static v_pre pres_it[] = { pre_it, NULL };
154 static v_pre pres_os[] = { pre_os, NULL };
155 static v_pre pres_pp[] = { pre_par, NULL };
156 static v_pre pres_rv[] = { pre_rv, NULL };
157 static v_pre pres_sh[] = { pre_sh, NULL };
158 static v_pre pres_ss[] = { pre_ss, NULL };
159
160 const struct valids mdoc_valids[MDOC_MAX] = {
161 { NULL, NULL }, /* Ap */
162 { pres_dd, posts_wtext }, /* Dd */
163 { pres_dt, posts_dt }, /* Dt */
164 { pres_os, NULL }, /* Os */
165 { pres_sh, posts_sh }, /* Sh */
166 { pres_ss, posts_ss }, /* Ss */
167 { pres_pp, posts_notext }, /* Pp */
168 { pres_d1, posts_wline }, /* D1 */
169 { pres_dl, posts_dl }, /* Dl */
170 { pres_bd, posts_bd }, /* Bd */
171 { NULL, NULL }, /* Ed */
172 { pres_bl, posts_bl }, /* Bl */
173 { NULL, NULL }, /* El */
174 { pres_it, posts_it }, /* It */
175 { NULL, posts_text }, /* Ad */
176 { pres_an, posts_an }, /* An */
177 { NULL, posts_defaults }, /* Ar */
178 { NULL, posts_text }, /* Cd */
179 { NULL, NULL }, /* Cm */
180 { NULL, NULL }, /* Dv */
181 { pres_er, posts_text }, /* Er */
182 { NULL, NULL }, /* Ev */
183 { pres_ex, NULL }, /* Ex */
184 { NULL, NULL }, /* Fa */
185 { pres_fd, posts_wtext }, /* Fd */
186 { NULL, NULL }, /* Fl */
187 { NULL, posts_text }, /* Fn */
188 { NULL, posts_wtext }, /* Ft */
189 { NULL, posts_text }, /* Ic */
190 { NULL, posts_text1 }, /* In */
191 { NULL, posts_defaults }, /* Li */
192 { NULL, posts_nd }, /* Nd */
193 { NULL, posts_nm }, /* Nm */
194 { NULL, posts_wline }, /* Op */
195 { NULL, NULL }, /* Ot */
196 { NULL, NULL }, /* Pa */
197 { pres_rv, NULL }, /* Rv */
198 { NULL, posts_st }, /* St */
199 { NULL, NULL }, /* Va */
200 { NULL, posts_vt }, /* Vt */
201 { NULL, posts_wtext }, /* Xr */
202 { NULL, posts_text }, /* %A */
203 { NULL, posts_text }, /* %B */ /* FIXME: can be used outside Rs/Re. */
204 { NULL, posts_text }, /* %D */ /* FIXME: check date with mandoc_a2time(). */
205 { NULL, posts_text }, /* %I */
206 { NULL, posts_text }, /* %J */
207 { NULL, posts_text }, /* %N */
208 { NULL, posts_text }, /* %O */
209 { NULL, posts_text }, /* %P */
210 { NULL, posts_text }, /* %R */
211 { NULL, posts_text }, /* %T */ /* FIXME: can be used outside Rs/Re. */
212 { NULL, posts_text }, /* %V */
213 { NULL, NULL }, /* Ac */
214 { NULL, NULL }, /* Ao */
215 { NULL, posts_wline }, /* Aq */
216 { NULL, posts_at }, /* At */
217 { NULL, NULL }, /* Bc */
218 { NULL, posts_bf }, /* Bf */
219 { NULL, NULL }, /* Bo */
220 { NULL, posts_wline }, /* Bq */
221 { NULL, NULL }, /* Bsx */
222 { NULL, NULL }, /* Bx */
223 { NULL, posts_bool }, /* Db */
224 { NULL, NULL }, /* Dc */
225 { NULL, NULL }, /* Do */
226 { NULL, posts_wline }, /* Dq */
227 { NULL, NULL }, /* Ec */
228 { NULL, NULL }, /* Ef */
229 { NULL, NULL }, /* Em */
230 { NULL, NULL }, /* Eo */
231 { NULL, NULL }, /* Fx */
232 { NULL, posts_text }, /* Ms */
233 { NULL, posts_notext }, /* No */
234 { NULL, posts_notext }, /* Ns */
235 { NULL, NULL }, /* Nx */
236 { NULL, NULL }, /* Ox */
237 { NULL, NULL }, /* Pc */
238 { NULL, posts_text1 }, /* Pf */
239 { NULL, NULL }, /* Po */
240 { NULL, posts_wline }, /* Pq */
241 { NULL, NULL }, /* Qc */
242 { NULL, posts_wline }, /* Ql */
243 { NULL, NULL }, /* Qo */
244 { NULL, posts_wline }, /* Qq */
245 { NULL, NULL }, /* Re */
246 { NULL, posts_rs }, /* Rs */
247 { NULL, NULL }, /* Sc */
248 { NULL, NULL }, /* So */
249 { NULL, posts_wline }, /* Sq */
250 { NULL, posts_bool }, /* Sm */
251 { NULL, posts_text }, /* Sx */
252 { NULL, posts_text }, /* Sy */
253 { NULL, posts_text }, /* Tn */
254 { NULL, NULL }, /* Ux */
255 { NULL, NULL }, /* Xc */
256 { NULL, NULL }, /* Xo */
257 { NULL, posts_fo }, /* Fo */
258 { NULL, NULL }, /* Fc */
259 { NULL, NULL }, /* Oo */
260 { NULL, NULL }, /* Oc */
261 { NULL, posts_bk }, /* Bk */
262 { NULL, NULL }, /* Ek */
263 { NULL, posts_eoln }, /* Bt */
264 { NULL, NULL }, /* Hf */
265 { NULL, NULL }, /* Fr */
266 { NULL, posts_eoln }, /* Ud */
267 { NULL, posts_lb }, /* Lb */
268 { NULL, posts_notext }, /* Lp */
269 { NULL, posts_text }, /* Lk */
270 { NULL, posts_defaults }, /* Mt */
271 { NULL, posts_wline }, /* Brq */
272 { NULL, NULL }, /* Bro */
273 { NULL, NULL }, /* Brc */
274 { NULL, posts_text }, /* %C */
275 { NULL, NULL }, /* Es */
276 { NULL, NULL }, /* En */
277 { NULL, NULL }, /* Dx */
278 { NULL, posts_text }, /* %Q */
279 { NULL, posts_notext }, /* br */
280 { pres_pp, posts_sp }, /* sp */
281 { NULL, posts_text1 }, /* %U */
282 { NULL, NULL }, /* Ta */
283 };
284
285 #define RSORD_MAX 14 /* Number of `Rs' blocks. */
286
287 static const enum mdoct rsord[RSORD_MAX] = {
288 MDOC__A,
289 MDOC__T,
290 MDOC__B,
291 MDOC__I,
292 MDOC__J,
293 MDOC__R,
294 MDOC__N,
295 MDOC__V,
296 MDOC__P,
297 MDOC__Q,
298 MDOC__D,
299 MDOC__O,
300 MDOC__C,
301 MDOC__U
302 };
303
304
305 int
306 mdoc_valid_pre(struct mdoc *mdoc, struct mdoc_node *n)
307 {
308 v_pre *p;
309 int line, pos;
310 char *tp;
311
312 if (MDOC_TEXT == n->type) {
313 tp = n->string;
314 line = n->line;
315 pos = n->pos;
316 return(check_text(mdoc, line, pos, tp));
317 }
318
319 if ( ! check_args(mdoc, n))
320 return(0);
321 if (NULL == mdoc_valids[n->tok].pre)
322 return(1);
323 for (p = mdoc_valids[n->tok].pre; *p; p++)
324 if ( ! (*p)(mdoc, n))
325 return(0);
326 return(1);
327 }
328
329
330 int
331 mdoc_valid_post(struct mdoc *mdoc)
332 {
333 v_post *p;
334
335 if (MDOC_VALID & mdoc->last->flags)
336 return(1);
337 mdoc->last->flags |= MDOC_VALID;
338
339 if (MDOC_TEXT == mdoc->last->type)
340 return(1);
341 if (MDOC_ROOT == mdoc->last->type)
342 return(post_root(mdoc));
343
344 if (NULL == mdoc_valids[mdoc->last->tok].post)
345 return(1);
346 for (p = mdoc_valids[mdoc->last->tok].post; *p; p++)
347 if ( ! (*p)(mdoc))
348 return(0);
349
350 return(1);
351 }
352
353 static int
354 check_count(struct mdoc *m, enum mdoc_type type,
355 enum check_lvl lvl, enum check_ineq ineq, int val)
356 {
357 const char *p;
358
359 if (m->last->type != type)
360 return(1);
361
362 switch (ineq) {
363 case (CHECK_LT):
364 p = "less than ";
365 if (m->last->nchild < val)
366 return(1);
367 break;
368 case (CHECK_GT):
369 p = "greater than ";
370 if (m->last->nchild > val)
371 return(1);
372 break;
373 case (CHECK_EQ):
374 p = "";
375 if (val == m->last->nchild)
376 return(1);
377 break;
378 }
379
380 if (CHECK_WARN == lvl) {
381 return(mdoc_vmsg(m, MANDOCERR_ARGCOUNT,
382 m->last->line, m->last->pos,
383 "want %s%d children (have %d)",
384 p, val, m->last->nchild));
385 }
386
387 return(mdoc_vmsg(m, MANDOCERR_ARGCOUNT,
388 m->last->line, m->last->pos,
389 "require %s%d children (have %d)",
390 p, val, m->last->nchild));
391 }
392
393 static int
394 berr_ge1(POST_ARGS)
395 {
396
397 return(check_count(mdoc, MDOC_BODY, CHECK_FATAL, CHECK_GT, 0));
398 }
399
400 static int
401 bwarn_ge1(POST_ARGS)
402 {
403 return(check_count(mdoc, MDOC_BODY, CHECK_WARN, CHECK_GT, 0));
404 }
405
406 static int
407 eerr_eq0(POST_ARGS)
408 {
409 return(check_count(mdoc, MDOC_ELEM, CHECK_FATAL, CHECK_EQ, 0));
410 }
411
412 static int
413 eerr_eq1(POST_ARGS)
414 {
415 return(check_count(mdoc, MDOC_ELEM, CHECK_FATAL, CHECK_EQ, 1));
416 }
417
418 static int
419 eerr_ge1(POST_ARGS)
420 {
421 return(check_count(mdoc, MDOC_ELEM, CHECK_FATAL, CHECK_GT, 0));
422 }
423
424 static int
425 eerr_le1(POST_ARGS)
426 {
427 return(check_count(mdoc, MDOC_ELEM, CHECK_FATAL, CHECK_LT, 2));
428 }
429
430 static int
431 ewarn_eq0(POST_ARGS)
432 {
433 return(check_count(mdoc, MDOC_ELEM, CHECK_WARN, CHECK_EQ, 0));
434 }
435
436 static int
437 ewarn_ge1(POST_ARGS)
438 {
439 return(check_count(mdoc, MDOC_ELEM, CHECK_WARN, CHECK_GT, 0));
440 }
441
442 static int
443 herr_eq0(POST_ARGS)
444 {
445 return(check_count(mdoc, MDOC_HEAD, CHECK_FATAL, CHECK_EQ, 0));
446 }
447
448 static int
449 herr_ge1(POST_ARGS)
450 {
451 return(check_count(mdoc, MDOC_HEAD, CHECK_FATAL, CHECK_GT, 0));
452 }
453
454 static int
455 hwarn_eq0(POST_ARGS)
456 {
457 return(check_count(mdoc, MDOC_HEAD, CHECK_WARN, CHECK_EQ, 0));
458 }
459
460 static int
461 hwarn_eq1(POST_ARGS)
462 {
463 return(check_count(mdoc, MDOC_HEAD, CHECK_WARN, CHECK_EQ, 1));
464 }
465
466 static int
467 hwarn_le1(POST_ARGS)
468 {
469 return(check_count(mdoc, MDOC_HEAD, CHECK_WARN, CHECK_LT, 2));
470 }
471
472
473 static int
474 check_stdarg(PRE_ARGS)
475 {
476
477 if (n->args && 1 == n->args->argc)
478 if (MDOC_Std == n->args->argv[0].arg)
479 return(1);
480 return(mdoc_nmsg(mdoc, n, MANDOCERR_NOARGV));
481 }
482
483
484 static int
485 check_args(struct mdoc *m, struct mdoc_node *n)
486 {
487 int i;
488
489 if (NULL == n->args)
490 return(1);
491
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]))
495 return(0);
496
497 return(1);
498 }
499
500
501 static int
502 check_argv(struct mdoc *m, struct mdoc_node *n, struct mdoc_argv *v)
503 {
504 int i;
505
506 for (i = 0; i < (int)v->sz; i++)
507 if ( ! check_text(m, v->line, v->pos, v->value[i]))
508 return(0);
509
510 if (MDOC_Std == v->arg) {
511 if (v->sz || m->meta.name)
512 return(1);
513 if ( ! mdoc_nmsg(m, n, MANDOCERR_NONAME))
514 return(0);
515 }
516
517 return(1);
518 }
519
520
521 static int
522 check_text(struct mdoc *m, int ln, int pos, char *p)
523 {
524 int c;
525 size_t sz;
526
527 for ( ; *p; p++, pos++) {
528 sz = strcspn(p, "\t\\");
529 p += (int)sz;
530
531 if ('\0' == *p)
532 break;
533
534 pos += (int)sz;
535
536 if ('\t' == *p) {
537 if (MDOC_LITERAL & m->flags)
538 continue;
539 if (mdoc_pmsg(m, ln, pos, MANDOCERR_BADTAB))
540 continue;
541 return(0);
542 }
543
544 /* Check the special character. */
545
546 c = mandoc_special(p);
547 if (c) {
548 p += c - 1;
549 pos += c - 1;
550 } else
551 mdoc_pmsg(m, ln, pos, MANDOCERR_BADESCAPE);
552 }
553
554 return(1);
555 }
556
557
558 static int
559 check_parent(PRE_ARGS, enum mdoct tok, enum mdoc_type t)
560 {
561
562 assert(n->parent);
563 if ((MDOC_ROOT == t || tok == n->parent->tok) &&
564 (t == n->parent->type))
565 return(1);
566
567 mdoc_vmsg(mdoc, MANDOCERR_SYNTCHILD,
568 n->line, n->pos, "want parent %s",
569 MDOC_ROOT == t ? "<root>" :
570 mdoc_macronames[tok]);
571 return(0);
572 }
573
574
575 static int
576 pre_display(PRE_ARGS)
577 {
578 struct mdoc_node *node;
579
580 /* Display elements (`Bd', `D1'...) cannot be nested. */
581
582 if (MDOC_BLOCK != n->type)
583 return(1);
584
585 /* LINTED */
586 for (node = mdoc->last->parent; node; node = node->parent)
587 if (MDOC_BLOCK == node->type)
588 if (MDOC_Bd == node->tok)
589 break;
590
591 if (NULL == node)
592 return(1);
593
594 mdoc_nmsg(mdoc, n, MANDOCERR_NESTEDDISP);
595 return(0);
596 }
597
598
599 static int
600 pre_bl(PRE_ARGS)
601 {
602 int i, comp, dup;
603 const char *offs, *width;
604 enum mdoc_list lt;
605 struct mdoc_node *np;
606
607 if (MDOC_BLOCK != n->type) {
608 if (ENDBODY_NOT != n->end) {
609 assert(n->pending);
610 np = n->pending->parent;
611 } else
612 np = n->parent;
613
614 assert(np);
615 assert(MDOC_BLOCK == np->type);
616 assert(MDOC_Bl == np->tok);
617 assert(np->data.Bl);
618 n->data.Bl = np->data.Bl;
619 return(1);
620 }
621
622 /*
623 * First figure out which kind of list to use: bind ourselves to
624 * the first mentioned list type and warn about any remaining
625 * ones. If we find no list type, we default to LIST_item.
626 */
627
628 assert(NULL == n->data.Bl);
629 n->data.Bl = mandoc_calloc(1, sizeof(struct mdoc_bl));
630
631 /* LINTED */
632 for (i = 0; n->args && i < (int)n->args->argc; i++) {
633 lt = LIST__NONE;
634 dup = comp = 0;
635 width = offs = NULL;
636 switch (n->args->argv[i].arg) {
637 /* Set list types. */
638 case (MDOC_Bullet):
639 lt = LIST_bullet;
640 break;
641 case (MDOC_Dash):
642 lt = LIST_dash;
643 break;
644 case (MDOC_Enum):
645 lt = LIST_enum;
646 break;
647 case (MDOC_Hyphen):
648 lt = LIST_hyphen;
649 break;
650 case (MDOC_Item):
651 lt = LIST_item;
652 break;
653 case (MDOC_Tag):
654 lt = LIST_tag;
655 break;
656 case (MDOC_Diag):
657 lt = LIST_diag;
658 break;
659 case (MDOC_Hang):
660 lt = LIST_hang;
661 break;
662 case (MDOC_Ohang):
663 lt = LIST_ohang;
664 break;
665 case (MDOC_Inset):
666 lt = LIST_inset;
667 break;
668 case (MDOC_Column):
669 lt = LIST_column;
670 break;
671 /* Set list arguments. */
672 case (MDOC_Compact):
673 dup = n->data.Bl->comp;
674 comp = 1;
675 break;
676 case (MDOC_Width):
677 dup = (NULL != n->data.Bl->width);
678 width = n->args->argv[i].value[0];
679 break;
680 case (MDOC_Offset):
681 /* NB: this can be empty! */
682 if (n->args->argv[i].sz) {
683 offs = n->args->argv[i].value[0];
684 dup = (NULL != n->data.Bl->offs);
685 break;
686 }
687 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_IGNARGV))
688 return(0);
689 break;
690 default:
691 continue;
692 }
693
694 /* Check: duplicate auxiliary arguments. */
695
696 if (dup && ! mdoc_nmsg(mdoc, n, MANDOCERR_ARGVREP))
697 return(0);
698
699 if (comp && ! dup)
700 n->data.Bl->comp = comp;
701 if (offs && ! dup)
702 n->data.Bl->offs = offs;
703 if (width && ! dup)
704 n->data.Bl->width = width;
705
706 /* Check: multiple list types. */
707
708 if (LIST__NONE != lt && n->data.Bl->type != LIST__NONE)
709 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_LISTREP))
710 return(0);
711
712 /* Assign list type. */
713
714 if (LIST__NONE != lt && n->data.Bl->type == LIST__NONE) {
715 n->data.Bl->type = lt;
716 /* Set column information, too. */
717 if (LIST_column == lt) {
718 n->data.Bl->ncols =
719 n->args->argv[i].sz;
720 n->data.Bl->cols = (const char **)
721 n->args->argv[i].value;
722 }
723 }
724
725 /* The list type should come first. */
726
727 if (n->data.Bl->type == LIST__NONE)
728 if (n->data.Bl->width ||
729 n->data.Bl->offs ||
730 n->data.Bl->comp)
731 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_LISTFIRST))
732 return(0);
733
734 continue;
735 }
736
737 /* Allow lists to default to LIST_item. */
738
739 if (LIST__NONE == n->data.Bl->type) {
740 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_LISTTYPE))
741 return(0);
742 n->data.Bl->type = LIST_item;
743 }
744
745 /*
746 * Validate the width field. Some list types don't need width
747 * types and should be warned about them. Others should have it
748 * and must also be warned.
749 */
750
751 switch (n->data.Bl->type) {
752 case (LIST_tag):
753 if (n->data.Bl->width)
754 break;
755 if (mdoc_nmsg(mdoc, n, MANDOCERR_NOWIDTHARG))
756 break;
757 return(0);
758 case (LIST_column):
759 /* FALLTHROUGH */
760 case (LIST_diag):
761 /* FALLTHROUGH */
762 case (LIST_ohang):
763 /* FALLTHROUGH */
764 case (LIST_inset):
765 /* FALLTHROUGH */
766 case (LIST_item):
767 if (NULL == n->data.Bl->width)
768 break;
769 if (mdoc_nmsg(mdoc, n, MANDOCERR_WIDTHARG))
770 break;
771 return(0);
772 default:
773 break;
774 }
775
776 return(1);
777 }
778
779
780 static int
781 pre_bd(PRE_ARGS)
782 {
783 int i, dup, comp;
784 enum mdoc_disp dt;
785 const char *offs;
786 struct mdoc_node *np;
787
788 if (MDOC_BLOCK != n->type) {
789 if (ENDBODY_NOT != n->end) {
790 assert(n->pending);
791 np = n->pending->parent;
792 } else
793 np = n->parent;
794
795 assert(np);
796 assert(MDOC_BLOCK == np->type);
797 assert(MDOC_Bd == np->tok);
798 assert(np->data.Bd);
799 n->data.Bd = np->data.Bd;
800 return(1);
801 }
802
803 assert(NULL == n->data.Bd);
804 n->data.Bd = mandoc_calloc(1, sizeof(struct mdoc_bd));
805
806 /* LINTED */
807 for (i = 0; n->args && i < (int)n->args->argc; i++) {
808 dt = DISP__NONE;
809 dup = comp = 0;
810 offs = NULL;
811
812 switch (n->args->argv[i].arg) {
813 case (MDOC_Centred):
814 dt = DISP_centred;
815 break;
816 case (MDOC_Ragged):
817 dt = DISP_ragged;
818 break;
819 case (MDOC_Unfilled):
820 dt = DISP_unfilled;
821 break;
822 case (MDOC_Filled):
823 dt = DISP_filled;
824 break;
825 case (MDOC_Literal):
826 dt = DISP_literal;
827 break;
828 case (MDOC_File):
829 mdoc_nmsg(mdoc, n, MANDOCERR_BADDISP);
830 return(0);
831 case (MDOC_Offset):
832 /* NB: this can be empty! */
833 if (n->args->argv[i].sz) {
834 offs = n->args->argv[i].value[0];
835 dup = (NULL != n->data.Bd->offs);
836 break;
837 }
838 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_IGNARGV))
839 return(0);
840 break;
841 case (MDOC_Compact):
842 comp = 1;
843 dup = n->data.Bd->comp;
844 break;
845 default:
846 abort();
847 /* NOTREACHED */
848 }
849
850 /* Check whether we have duplicates. */
851
852 if (dup && ! mdoc_nmsg(mdoc, n, MANDOCERR_ARGVREP))
853 return(0);
854
855 /* Make our auxiliary assignments. */
856
857 if (offs && ! dup)
858 n->data.Bd->offs = offs;
859 if (comp && ! dup)
860 n->data.Bd->comp = comp;
861
862 /* Check whether a type has already been assigned. */
863
864 if (DISP__NONE != dt && n->data.Bd->type != DISP__NONE)
865 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_DISPREP))
866 return(0);
867
868 /* Make our type assignment. */
869
870 if (DISP__NONE != dt && n->data.Bd->type == DISP__NONE)
871 n->data.Bd->type = dt;
872 }
873
874 if (DISP__NONE == n->data.Bd->type) {
875 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_DISPTYPE))
876 return(0);
877 n->data.Bd->type = DISP_ragged;
878 }
879
880 return(1);
881 }
882
883
884 static int
885 pre_ss(PRE_ARGS)
886 {
887
888 if (MDOC_BLOCK != n->type)
889 return(1);
890 return(check_parent(mdoc, n, MDOC_Sh, MDOC_BODY));
891 }
892
893
894 static int
895 pre_sh(PRE_ARGS)
896 {
897
898 if (MDOC_BLOCK != n->type)
899 return(1);
900
901 mdoc->regs->regs[(int)REG_nS].set = 0;
902 return(check_parent(mdoc, n, MDOC_MAX, MDOC_ROOT));
903 }
904
905
906 static int
907 pre_it(PRE_ARGS)
908 {
909
910 if (MDOC_BLOCK != n->type)
911 return(1);
912 /*
913 * FIXME: this can probably be lifted if we make the It into
914 * something else on-the-fly?
915 */
916 return(check_parent(mdoc, n, MDOC_Bl, MDOC_BODY));
917 }
918
919
920 static int
921 pre_an(PRE_ARGS)
922 {
923 int i;
924
925 if (NULL == n->args)
926 return(1);
927
928 for (i = 1; i < (int)n->args->argc; i++)
929 if ( ! mdoc_pmsg(mdoc, n->args->argv[i].line,
930 n->args->argv[i].pos, MANDOCERR_IGNARGV))
931 return(0);
932
933 if (MDOC_Split == n->args->argv[0].arg)
934 n->data.An.auth = AUTH_split;
935 else if (MDOC_Nosplit == n->args->argv[0].arg)
936 n->data.An.auth = AUTH_nosplit;
937 else
938 abort();
939
940 return(1);
941 }
942
943
944 static int
945 pre_rv(PRE_ARGS)
946 {
947
948 return(check_stdarg(mdoc, n));
949 }
950
951
952 static int
953 post_dt(POST_ARGS)
954 {
955 const struct mdoc_node *nn;
956 const char *p;
957
958 if (NULL != (nn = mdoc->last->child))
959 for (p = nn->string; *p; p++) {
960 if (toupper((u_char)*p) == *p)
961 continue;
962 if ( ! mdoc_nmsg(mdoc, nn, MANDOCERR_UPPERCASE))
963 return(0);
964 break;
965 }
966
967 return(1);
968 }
969
970
971 static int
972 pre_dt(PRE_ARGS)
973 {
974
975 if (0 == mdoc->meta.date || mdoc->meta.os)
976 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGOOO))
977 return(0);
978 if (mdoc->meta.title)
979 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGREP))
980 return(0);
981 return(1);
982 }
983
984
985 static int
986 pre_os(PRE_ARGS)
987 {
988
989 if (NULL == mdoc->meta.title || 0 == mdoc->meta.date)
990 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGOOO))
991 return(0);
992 if (mdoc->meta.os)
993 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGREP))
994 return(0);
995 return(1);
996 }
997
998
999 static int
1000 pre_dd(PRE_ARGS)
1001 {
1002
1003 if (mdoc->meta.title || mdoc->meta.os)
1004 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGOOO))
1005 return(0);
1006 if (mdoc->meta.date)
1007 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_PROLOGREP))
1008 return(0);
1009 return(1);
1010 }
1011
1012
1013 static int
1014 post_bf(POST_ARGS)
1015 {
1016 struct mdoc_node *np;
1017 enum mdocargt arg;
1018
1019 /*
1020 * Unlike other data pointers, these are "housed" by the HEAD
1021 * element, which contains the goods.
1022 */
1023
1024 if (MDOC_HEAD != mdoc->last->type) {
1025 if (ENDBODY_NOT != mdoc->last->end) {
1026 assert(mdoc->last->pending);
1027 np = mdoc->last->pending->parent->head;
1028 } else if (MDOC_BLOCK != mdoc->last->type) {
1029 np = mdoc->last->parent->head;
1030 } else
1031 np = mdoc->last->head;
1032
1033 assert(np);
1034 assert(MDOC_HEAD == np->type);
1035 assert(MDOC_Bf == np->tok);
1036 assert(np->data.Bf);
1037 mdoc->last->data.Bf = np->data.Bf;
1038 return(1);
1039 }
1040
1041 np = mdoc->last;
1042 assert(MDOC_BLOCK == np->parent->type);
1043 assert(MDOC_Bf == np->parent->tok);
1044 np->data.Bf = mandoc_calloc(1, sizeof(struct mdoc_bf));
1045
1046 /*
1047 * Cannot have both argument and parameter.
1048 * If neither is specified, let it through with a warning.
1049 */
1050
1051 if (np->parent->args && np->child) {
1052 mdoc_nmsg(mdoc, np, MANDOCERR_SYNTARGVCOUNT);
1053 return(0);
1054 } else if (NULL == np->parent->args && NULL == np->child)
1055 return(mdoc_nmsg(mdoc, np, MANDOCERR_FONTTYPE));
1056
1057 /* Extract argument into data. */
1058
1059 if (np->parent->args) {
1060 arg = np->parent->args->argv[0].arg;
1061 if (MDOC_Emphasis == arg)
1062 np->data.Bf->font = FONT_Em;
1063 else if (MDOC_Literal == arg)
1064 np->data.Bf->font = FONT_Li;
1065 else if (MDOC_Symbolic == arg)
1066 np->data.Bf->font = FONT_Sy;
1067 else
1068 abort();
1069 return(1);
1070 }
1071
1072 /* Extract parameter into data. */
1073
1074 if (0 == strcmp(np->child->string, "Em"))
1075 np->data.Bf->font = FONT_Em;
1076 else if (0 == strcmp(np->child->string, "Li"))
1077 np->data.Bf->font = FONT_Li;
1078 else if (0 == strcmp(np->child->string, "Sy"))
1079 np->data.Bf->font = FONT_Sy;
1080 else if ( ! mdoc_nmsg(mdoc, np, MANDOCERR_FONTTYPE))
1081 return(0);
1082
1083 return(1);
1084 }
1085
1086 static int
1087 post_lb(POST_ARGS)
1088 {
1089 const char *p;
1090 char *buf;
1091 size_t sz;
1092
1093 assert(mdoc->last->child);
1094 assert(MDOC_TEXT == mdoc->last->child->type);
1095
1096 p = mdoc_a2lib(mdoc->last->child->string);
1097
1098 /* If lookup ok, replace with table value. */
1099
1100 if (p) {
1101 free(mdoc->last->child->string);
1102 mdoc->last->child->string = mandoc_strdup(p);
1103 return(1);
1104 }
1105
1106 /* If not, use "library ``xxxx''. */
1107
1108 sz = strlen(mdoc->last->child->string) +
1109 2 + strlen("\\(lqlibrary\\(rq");
1110 buf = mandoc_malloc(sz);
1111 snprintf(buf, sz, "library \\(lq%s\\(rq",
1112 mdoc->last->child->string);
1113 free(mdoc->last->child->string);
1114 mdoc->last->child->string = buf;
1115 return(1);
1116 }
1117
1118 static int
1119 post_eoln(POST_ARGS)
1120 {
1121
1122 if (NULL == mdoc->last->child)
1123 return(1);
1124 return(mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_ARGSLOST));
1125 }
1126
1127
1128 static int
1129 post_vt(POST_ARGS)
1130 {
1131 const struct mdoc_node *n;
1132
1133 /*
1134 * The Vt macro comes in both ELEM and BLOCK form, both of which
1135 * have different syntaxes (yet more context-sensitive
1136 * behaviour). ELEM types must have a child; BLOCK types,
1137 * specifically the BODY, should only have TEXT children.
1138 */
1139
1140 if (MDOC_ELEM == mdoc->last->type)
1141 return(eerr_ge1(mdoc));
1142 if (MDOC_BODY != mdoc->last->type)
1143 return(1);
1144
1145 for (n = mdoc->last->child; n; n = n->next)
1146 if (MDOC_TEXT != n->type)
1147 if ( ! mdoc_nmsg(mdoc, n, MANDOCERR_CHILD))
1148 return(0);
1149
1150 return(1);
1151 }
1152
1153
1154 static int
1155 post_nm(POST_ARGS)
1156 {
1157
1158 if (mdoc->last->child)
1159 return(1);
1160 if (mdoc->meta.name)
1161 return(1);
1162 return(mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NONAME));
1163 }
1164
1165 static int
1166 post_literal(POST_ARGS)
1167 {
1168
1169 /*
1170 * The `Dl' (note "el" not "one") and `Bd' macros unset the
1171 * MDOC_LITERAL flag as they leave. Note that `Bd' only sets
1172 * this in literal mode, but it doesn't hurt to just switch it
1173 * off in general since displays can't be nested.
1174 */
1175
1176 if (MDOC_BODY == mdoc->last->type)
1177 mdoc->last->flags &= ~MDOC_LITERAL;
1178
1179 return(1);
1180 }
1181
1182 static int
1183 post_defaults(POST_ARGS)
1184 {
1185 struct mdoc_node *nn;
1186
1187 /*
1188 * The `Ar' defaults to "file ..." if no value is provided as an
1189 * argument; the `Mt' macro uses "~"; the `Li' just gets an
1190 * empty string.
1191 */
1192
1193 if (mdoc->last->child)
1194 return(1);
1195
1196 nn = mdoc->last;
1197 mdoc->next = MDOC_NEXT_CHILD;
1198
1199 switch (nn->tok) {
1200 case (MDOC_Ar):
1201 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, "file"))
1202 return(0);
1203 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, "..."))
1204 return(0);
1205 break;
1206 case (MDOC_At):
1207 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, "AT&T"))
1208 return(0);
1209 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, "UNIX"))
1210 return(0);
1211 break;
1212 case (MDOC_Li):
1213 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, ""))
1214 return(0);
1215 break;
1216 case (MDOC_Mt):
1217 if ( ! mdoc_word_alloc(mdoc, nn->line, nn->pos, "~"))
1218 return(0);
1219 break;
1220 default:
1221 abort();
1222 /* NOTREACHED */
1223 }
1224
1225 mdoc->last = nn;
1226 return(1);
1227 }
1228
1229 static int
1230 post_at(POST_ARGS)
1231 {
1232 const char *p, *q;
1233 char *buf;
1234 size_t sz;
1235
1236 /*
1237 * If we have a child, look it up in the standard keys. If a
1238 * key exist, use that instead of the child; if it doesn't,
1239 * prefix "AT&T UNIX " to the existing data.
1240 */
1241
1242 if (NULL == mdoc->last->child)
1243 return(1);
1244
1245 assert(MDOC_TEXT == mdoc->last->child->type);
1246 p = mdoc_a2att(mdoc->last->child->string);
1247
1248 if (p) {
1249 free(mdoc->last->child->string);
1250 mdoc->last->child->string = mandoc_strdup(p);
1251 } else {
1252 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_BADATT);
1253 p = "AT&T UNIX ";
1254 q = mdoc->last->child->string;
1255 sz = strlen(p) + strlen(q) + 1;
1256 buf = mandoc_malloc(sz);
1257 strlcpy(buf, p, sz);
1258 strlcat(buf, q, sz);
1259 free(mdoc->last->child->string);
1260 mdoc->last->child->string = buf;
1261 }
1262
1263 return(1);
1264 }
1265
1266 static int
1267 post_an(POST_ARGS)
1268 {
1269 struct mdoc_node *np;
1270
1271 np = mdoc->last;
1272 if (AUTH__NONE != np->data.An.auth && np->child)
1273 return(eerr_eq0(mdoc));
1274 /*
1275 * FIXME: make this ewarn and make sure that the front-ends
1276 * don't print the arguments.
1277 */
1278 if (AUTH__NONE != np->data.An.auth || np->child)
1279 return(1);
1280 return(mdoc_nmsg(mdoc, np, MANDOCERR_NOARGS));
1281 }
1282
1283
1284 static int
1285 post_it(POST_ARGS)
1286 {
1287 int i, cols, rc;
1288 enum mdoc_list lt;
1289 struct mdoc_node *n, *c;
1290 enum mandocerr er;
1291
1292 if (MDOC_BLOCK != mdoc->last->type)
1293 return(1);
1294
1295 n = mdoc->last->parent->parent;
1296 assert(n->data.Bl);
1297 lt = n->data.Bl->type;
1298
1299 if (LIST__NONE == lt) {
1300 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_LISTTYPE);
1301 return(0);
1302 }
1303
1304 switch (lt) {
1305 case (LIST_tag):
1306 if (mdoc->last->head->child)
1307 break;
1308 /* FIXME: give this a dummy value. */
1309 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NOARGS))
1310 return(0);
1311 break;
1312 case (LIST_hang):
1313 /* FALLTHROUGH */
1314 case (LIST_ohang):
1315 /* FALLTHROUGH */
1316 case (LIST_inset):
1317 /* FALLTHROUGH */
1318 case (LIST_diag):
1319 if (NULL == mdoc->last->head->child)
1320 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NOARGS))
1321 return(0);
1322 break;
1323 case (LIST_bullet):
1324 /* FALLTHROUGH */
1325 case (LIST_dash):
1326 /* FALLTHROUGH */
1327 case (LIST_enum):
1328 /* FALLTHROUGH */
1329 case (LIST_hyphen):
1330 if (NULL == mdoc->last->body->child)
1331 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NOBODY))
1332 return(0);
1333 /* FALLTHROUGH */
1334 case (LIST_item):
1335 if (mdoc->last->head->child)
1336 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_ARGSLOST))
1337 return(0);
1338 break;
1339 case (LIST_column):
1340 cols = (int)n->data.Bl->ncols;
1341
1342 assert(NULL == mdoc->last->head->child);
1343
1344 if (NULL == mdoc->last->body->child)
1345 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NOBODY))
1346 return(0);
1347
1348 for (i = 0, c = mdoc->last->child; c; c = c->next)
1349 if (MDOC_BODY == c->type)
1350 i++;
1351
1352 if (i < cols)
1353 er = MANDOCERR_ARGCOUNT;
1354 else if (i == cols || i == cols + 1)
1355 break;
1356 else
1357 er = MANDOCERR_SYNTARGCOUNT;
1358
1359 rc = mdoc_vmsg(mdoc, er,
1360 mdoc->last->line, mdoc->last->pos,
1361 "columns == %d (have %d)", cols, i);
1362 return(rc);
1363 default:
1364 break;
1365 }
1366
1367 return(1);
1368 }
1369
1370
1371 static int
1372 post_bl_head(POST_ARGS)
1373 {
1374 struct mdoc_node *n;
1375
1376 assert(mdoc->last->parent);
1377 n = mdoc->last->parent;
1378
1379 if (LIST_column == n->data.Bl->type) {
1380 if (n->data.Bl->ncols && mdoc->last->nchild) {
1381 mdoc_nmsg(mdoc, n, MANDOCERR_COLUMNS);
1382 return(0);
1383 }
1384 return(1);
1385 }
1386
1387 /* FIXME: should be ERROR class. */
1388 return(hwarn_eq0(mdoc));
1389 }
1390
1391
1392 static int
1393 post_bl(POST_ARGS)
1394 {
1395 struct mdoc_node *n;
1396
1397 if (MDOC_HEAD == mdoc->last->type)
1398 return(post_bl_head(mdoc));
1399 if (MDOC_BODY != mdoc->last->type)
1400 return(1);
1401 if (NULL == mdoc->last->child)
1402 return(1);
1403
1404 /*
1405 * We only allow certain children of `Bl'. This is usually on
1406 * `It', but apparently `Sm' occurs here and there, so we let
1407 * that one through, too.
1408 */
1409
1410 /* LINTED */
1411 for (n = mdoc->last->child; n; n = n->next) {
1412 if (MDOC_BLOCK == n->type && MDOC_It == n->tok)
1413 continue;
1414 if (MDOC_Sm == n->tok)
1415 continue;
1416 mdoc_nmsg(mdoc, n, MANDOCERR_SYNTCHILD);
1417 return(0);
1418 }
1419
1420 return(1);
1421 }
1422
1423
1424 static int
1425 ebool(struct mdoc *mdoc)
1426 {
1427 struct mdoc_node *n;
1428
1429 /* LINTED */
1430 for (n = mdoc->last->child; n; n = n->next) {
1431 if (MDOC_TEXT != n->type)
1432 break;
1433 if (0 == strcmp(n->string, "on"))
1434 continue;
1435 if (0 == strcmp(n->string, "off"))
1436 continue;
1437 break;
1438 }
1439
1440 if (NULL == n)
1441 return(1);
1442 return(mdoc_nmsg(mdoc, n, MANDOCERR_BADBOOL));
1443 }
1444
1445
1446 static int
1447 post_root(POST_ARGS)
1448 {
1449
1450 if (NULL == mdoc->first->child)
1451 mdoc_nmsg(mdoc, mdoc->first, MANDOCERR_NODOCBODY);
1452 else if ( ! (MDOC_PBODY & mdoc->flags))
1453 mdoc_nmsg(mdoc, mdoc->first, MANDOCERR_NODOCPROLOG);
1454 else if (MDOC_BLOCK != mdoc->first->child->type)
1455 mdoc_nmsg(mdoc, mdoc->first, MANDOCERR_NODOCBODY);
1456 else if (MDOC_Sh != mdoc->first->child->tok)
1457 mdoc_nmsg(mdoc, mdoc->first, MANDOCERR_NODOCBODY);
1458 else
1459 return(1);
1460
1461 return(0);
1462 }
1463
1464 static int
1465 post_st(POST_ARGS)
1466 {
1467 const char *p;
1468
1469 assert(MDOC_TEXT == mdoc->last->child->type);
1470
1471 p = mdoc_a2st(mdoc->last->child->string);
1472
1473 if (p == NULL) {
1474 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_BADSTANDARD);
1475 mdoc_node_delete(mdoc, mdoc->last);
1476 } else {
1477 free(mdoc->last->child->string);
1478 mdoc->last->child->string = mandoc_strdup(p);
1479 }
1480
1481 return(1);
1482 }
1483
1484 static int
1485 post_rs(POST_ARGS)
1486 {
1487 struct mdoc_node *nn, *next, *prev;
1488 int i, j;
1489
1490 if (MDOC_BODY != mdoc->last->type)
1491 return(1);
1492
1493 /*
1494 * Make sure only certain types of nodes are allowed within the
1495 * the `Rs' body. Delete offending nodes and raise a warning.
1496 * Do this before re-ordering for the sake of clarity.
1497 */
1498
1499 next = NULL;
1500 for (nn = mdoc->last->child; nn; nn = next) {
1501 for (i = 0; i < RSORD_MAX; i++)
1502 if (nn->tok == rsord[i])
1503 break;
1504
1505 if (i < RSORD_MAX) {
1506 next = nn->next;
1507 continue;
1508 }
1509
1510 next = nn->next;
1511 mdoc_nmsg(mdoc, nn, MANDOCERR_CHILD);
1512 mdoc_node_delete(mdoc, nn);
1513 }
1514
1515 /*
1516 * The full `Rs' block needs special handling to order the
1517 * sub-elements according to `rsord'. Pick through each element
1518 * and correctly order it. This is a insertion sort.
1519 */
1520
1521 next = NULL;
1522 for (nn = mdoc->last->child->next; nn; nn = next) {
1523 /* Determine order of `nn'. */
1524 for (i = 0; i < RSORD_MAX; i++)
1525 if (rsord[i] == nn->tok)
1526 break;
1527
1528 /*
1529 * Remove `nn' from the chain. This somewhat
1530 * repeats mdoc_node_unlink(), but since we're
1531 * just re-ordering, there's no need for the
1532 * full unlink process.
1533 */
1534
1535 if (NULL != (next = nn->next))
1536 next->prev = nn->prev;
1537
1538 if (NULL != (prev = nn->prev))
1539 prev->next = nn->next;
1540
1541 nn->prev = nn->next = NULL;
1542
1543 /*
1544 * Scan back until we reach a node that's
1545 * ordered before `nn'.
1546 */
1547
1548 for ( ; prev ; prev = prev->prev) {
1549 /* Determine order of `prev'. */
1550 for (j = 0; j < RSORD_MAX; j++)
1551 if (rsord[j] == prev->tok)
1552 break;
1553
1554 if (j <= i)
1555 break;
1556 }
1557
1558 /*
1559 * Set `nn' back into its correct place in front
1560 * of the `prev' node.
1561 */
1562
1563 nn->prev = prev;
1564
1565 if (prev) {
1566 if (prev->next)
1567 prev->next->prev = nn;
1568 nn->next = prev->next;
1569 prev->next = nn;
1570 } else {
1571 mdoc->last->child->prev = nn;
1572 nn->next = mdoc->last->child;
1573 mdoc->last->child = nn;
1574 }
1575 }
1576
1577 return(1);
1578 }
1579
1580
1581 static int
1582 post_sh(POST_ARGS)
1583 {
1584
1585 if (MDOC_HEAD == mdoc->last->type)
1586 return(post_sh_head(mdoc));
1587 if (MDOC_BODY == mdoc->last->type)
1588 return(post_sh_body(mdoc));
1589
1590 return(1);
1591 }
1592
1593
1594 static int
1595 post_sh_body(POST_ARGS)
1596 {
1597 struct mdoc_node *n;
1598
1599 if (SEC_NAME != mdoc->lastsec)
1600 return(1);
1601
1602 /*
1603 * Warn if the NAME section doesn't contain the `Nm' and `Nd'
1604 * macros (can have multiple `Nm' and one `Nd'). Note that the
1605 * children of the BODY declaration can also be "text".
1606 */
1607
1608 if (NULL == (n = mdoc->last->child))
1609 return(mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_BADNAMESEC));
1610
1611 for ( ; n && n->next; n = n->next) {
1612 if (MDOC_ELEM == n->type && MDOC_Nm == n->tok)
1613 continue;
1614 if (MDOC_TEXT == n->type)
1615 continue;
1616 if ( ! mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_BADNAMESEC))
1617 return(0);
1618 }
1619
1620 assert(n);
1621 if (MDOC_BLOCK == n->type && MDOC_Nd == n->tok)
1622 return(1);
1623 return(mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_BADNAMESEC));
1624 }
1625
1626
1627 static int
1628 post_sh_head(POST_ARGS)
1629 {
1630 char buf[BUFSIZ];
1631 enum mdoc_sec sec;
1632 struct mdoc_node *n;
1633
1634 /*
1635 * Process a new section. Sections are either "named" or
1636 * "custom". Custom sections are user-defined, while named ones
1637 * follow a conventional order and may only appear in certain
1638 * manual sections.
1639 */
1640
1641 buf[0] = '\0';
1642
1643 /* FIXME: use dynamic buffer... */
1644
1645 for (n = mdoc->last->child; n; n = n->next) {
1646 /* XXX - copied from concat(). */
1647 assert(MDOC_TEXT == n->type);
1648
1649 if (strlcat(buf, n->string, BUFSIZ) >= BUFSIZ) {
1650 mdoc_nmsg(mdoc, n, MANDOCERR_MEM);
1651 return(0);
1652 }
1653
1654 if (NULL == n->next)
1655 continue;
1656
1657 if (strlcat(buf, " ", BUFSIZ) >= BUFSIZ) {
1658 mdoc_nmsg(mdoc, n, MANDOCERR_MEM);
1659 return(0);
1660 }
1661 }
1662
1663 sec = mdoc_str2sec(buf);
1664
1665 /* The NAME should be first. */
1666
1667 if (SEC_NAME != sec && SEC_NONE == mdoc->lastnamed)
1668 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_NAMESECFIRST);
1669
1670 /* The SYNOPSIS gets special attention in other areas. */
1671
1672 if (SEC_SYNOPSIS == sec)
1673 mdoc->flags |= MDOC_SYNOPSIS;
1674 else
1675 mdoc->flags &= ~MDOC_SYNOPSIS;
1676
1677 /* Mark our last section. */
1678
1679 mdoc->lastsec = sec;
1680
1681 /* We don't care about custom sections after this. */
1682
1683 if (SEC_CUSTOM == sec)
1684 return(1);
1685
1686 /*
1687 * Check whether our non-custom section is being repeated or is
1688 * out of order.
1689 */
1690
1691 if (sec == mdoc->lastnamed)
1692 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_SECREP);
1693
1694 if (sec < mdoc->lastnamed)
1695 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_SECOOO);
1696
1697 /* Mark the last named section. */
1698
1699 mdoc->lastnamed = sec;
1700
1701 /* Check particular section/manual conventions. */
1702
1703 assert(mdoc->meta.msec);
1704
1705 switch (sec) {
1706 case (SEC_RETURN_VALUES):
1707 /* FALLTHROUGH */
1708 case (SEC_ERRORS):
1709 /* FALLTHROUGH */
1710 case (SEC_LIBRARY):
1711 if (*mdoc->meta.msec == '2')
1712 break;
1713 if (*mdoc->meta.msec == '3')
1714 break;
1715 if (*mdoc->meta.msec == '9')
1716 break;
1717 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_SECMSEC);
1718 break;
1719 default:
1720 break;
1721 }
1722
1723 return(1);
1724 }
1725
1726 static int
1727 pre_par(PRE_ARGS)
1728 {
1729
1730 if (NULL == mdoc->last)
1731 return(1);
1732
1733 /*
1734 * Don't allow prior `Lp' or `Pp' prior to a paragraph-type
1735 * block: `Lp', `Pp', or non-compact `Bd' or `Bl'.
1736 */
1737
1738 if (MDOC_Pp != mdoc->last->tok && MDOC_Lp != mdoc->last->tok)
1739 return(1);
1740
1741 if (MDOC_Bl == n->tok && n->data.Bl->comp)
1742 return(1);
1743 if (MDOC_Bd == n->tok && n->data.Bd->comp)
1744 return(1);
1745
1746 mdoc_nmsg(mdoc, mdoc->last, MANDOCERR_IGNPAR);
1747 mdoc_node_delete(mdoc, mdoc->last);
1748 return(1);
1749 }
1750
1751 static int
1752 pre_literal(PRE_ARGS)
1753 {
1754
1755 if (MDOC_BODY != n->type)
1756 return(1);
1757
1758 /*
1759 * The `Dl' (note "el" not "one") and `Bd -literal' and `Bd
1760 * -unfilled' macros set MDOC_LITERAL on entrance to the body.
1761 */
1762
1763 switch (n->tok) {
1764 case (MDOC_Dl):
1765 mdoc->flags |= MDOC_LITERAL;
1766 break;
1767 case (MDOC_Bd):
1768 assert(n->data.Bd);
1769 if (DISP_literal == n->data.Bd->type)
1770 mdoc->flags |= MDOC_LITERAL;
1771 if (DISP_unfilled == n->data.Bd->type)
1772 mdoc->flags |= MDOC_LITERAL;
1773 break;
1774 default:
1775 abort();
1776 /* NOTREACHED */
1777 }
1778
1779 return(1);
1780 }