[BACK]Return to validate.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/validate.c, Revision 1.91

1.91    ! kristaps    1: /* $Id: validate.c,v 1.90 2009/03/21 13:37:31 kristaps Exp $ */
1.1       kristaps    2: /*
1.85      kristaps    3:  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
1.1       kristaps    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
                      7:  * above copyright notice and this permission notice appear in all
                      8:  * copies.
                      9:  *
                     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.
                     18:  */
1.77      kristaps   19: #include <sys/types.h>
                     20:
1.1       kristaps   21: #include <assert.h>
1.56      kristaps   22: #include <ctype.h>
1.69      kristaps   23: #include <stdarg.h>
1.8       kristaps   24: #include <stdlib.h>
1.1       kristaps   25:
                     26: #include "private.h"
                     27:
1.67      kristaps   28: /* FIXME: .Bl -diag can't have non-text children in HEAD. */
1.71      kristaps   29: /* TODO: ignoring Pp (it's superfluous in some invocations). */
1.67      kristaps   30:
1.44      kristaps   31: /*
                     32:  * Pre- and post-validate macros as they're parsed.  Pre-validation
                     33:  * occurs when the macro has been detected and its arguments parsed.
                     34:  * Post-validation occurs when all child macros have also been parsed.
                     35:  * In the ELEMENT case, this is simply the parameters of the macro; in
                     36:  * the BLOCK case, this is the HEAD, BODY, TAIL and so on.
                     37:  */
                     38:
1.55      kristaps   39: #define        PRE_ARGS        struct mdoc *mdoc, const struct mdoc_node *n
                     40: #define        POST_ARGS       struct mdoc *mdoc
                     41:
1.71      kristaps   42: enum   merr {
1.86      kristaps   43:        EESCAPE,
1.84      kristaps   44:        EPRINT,
1.71      kristaps   45:        ENODATA,
                     46:        ENOPROLOGUE,
                     47:        ELINE,
                     48:        EATT,
                     49:        ENAME,
                     50:        ELISTTYPE,
                     51:        EDISPTYPE,
                     52:        EMULTIDISP,
                     53:        EMULTILIST,
                     54:        EARGREP,
                     55:        EBOOL,
                     56:        ENESTDISP
                     57: };
                     58:
                     59: enum   mwarn {
1.86      kristaps   60:        WESCAPE,
1.71      kristaps   61:        WWRONGMSEC,
                     62:        WSECOOO,
                     63:        WSECREP,
                     64:        WBADSTAND,
                     65:        WNAMESECINC,
                     66:        WNOMULTILINE,
                     67:        WMULTILINE,
                     68:        WLINE,
                     69:        WNOLINE,
                     70:        WPROLOOO,
                     71:        WPROLREP,
                     72:        WARGVAL,
                     73:        WBADSEC,
                     74:        WBADMSEC
                     75: };
                     76:
1.55      kristaps   77: typedef        int     (*v_pre)(PRE_ARGS);
                     78: typedef        int     (*v_post)(POST_ARGS);
1.14      kristaps   79:
                     80: struct valids {
1.24      kristaps   81:        v_pre   *pre;
1.17      kristaps   82:        v_post  *post;
1.14      kristaps   83: };
1.1       kristaps   84:
1.37      kristaps   85: /* Utility checks. */
                     86:
1.84      kristaps   87: static int     pwarn(struct mdoc *, int, int, enum mwarn);
                     88: static int     perr(struct mdoc *, int, int, enum merr);
1.55      kristaps   89: static int     check_parent(PRE_ARGS, int, enum mdoc_type);
1.69      kristaps   90: static int     check_msec(PRE_ARGS, ...);
                     91: static int     check_sec(PRE_ARGS, ...);
1.55      kristaps   92: static int     check_stdarg(PRE_ARGS);
1.84      kristaps   93: static int     check_text(struct mdoc *, int, int, const char *);
1.68      kristaps   94: static int     check_argv(struct mdoc *,
                     95:                        const struct mdoc_node *,
1.71      kristaps   96:                        const struct mdoc_argv *);
                     97: static int     check_args(struct mdoc *,
                     98:                        const struct mdoc_node *);
1.51      kristaps   99: static int     err_child_lt(struct mdoc *, const char *, int);
1.59      kristaps  100: static int     warn_child_lt(struct mdoc *, const char *, int);
1.51      kristaps  101: static int     err_child_gt(struct mdoc *, const char *, int);
                    102: static int     warn_child_gt(struct mdoc *, const char *, int);
                    103: static int     err_child_eq(struct mdoc *, const char *, int);
                    104: static int     warn_child_eq(struct mdoc *, const char *, int);
                    105: static inline int count_child(struct mdoc *);
                    106: static inline int warn_count(struct mdoc *, const char *,
                    107:                        int, const char *, int);
                    108: static inline int err_count(struct mdoc *, const char *,
                    109:                        int, const char *, int);
1.69      kristaps  110: static int     pre_an(PRE_ARGS);
1.55      kristaps  111: static int     pre_bd(PRE_ARGS);
                    112: static int     pre_bl(PRE_ARGS);
                    113: static int     pre_cd(PRE_ARGS);
1.69      kristaps  114: static int     pre_dd(PRE_ARGS);
                    115: static int     pre_display(PRE_ARGS);
                    116: static int     pre_dt(PRE_ARGS);
1.55      kristaps  117: static int     pre_er(PRE_ARGS);
                    118: static int     pre_ex(PRE_ARGS);
1.69      kristaps  119: static int     pre_fd(PRE_ARGS);
                    120: static int     pre_it(PRE_ARGS);
                    121: static int     pre_lb(PRE_ARGS);
                    122: static int     pre_os(PRE_ARGS);
                    123: static int     pre_prologue(PRE_ARGS);
1.55      kristaps  124: static int     pre_rv(PRE_ARGS);
1.69      kristaps  125: static int     pre_sh(PRE_ARGS);
                    126: static int     pre_ss(PRE_ARGS);
1.55      kristaps  127: static int     herr_ge1(POST_ARGS);
1.59      kristaps  128: static int     hwarn_le1(POST_ARGS);
1.55      kristaps  129: static int     herr_eq0(POST_ARGS);
                    130: static int     eerr_eq0(POST_ARGS);
                    131: static int     eerr_le2(POST_ARGS);
                    132: static int     eerr_eq1(POST_ARGS);
                    133: static int     eerr_ge1(POST_ARGS);
                    134: static int     ewarn_eq0(POST_ARGS);
                    135: static int     ewarn_eq1(POST_ARGS);
                    136: static int     bwarn_ge1(POST_ARGS);
1.58      kristaps  137: static int     hwarn_eq1(POST_ARGS);
1.55      kristaps  138: static int     ewarn_ge1(POST_ARGS);
                    139: static int     ebool(POST_ARGS);
1.78      kristaps  140:
1.69      kristaps  141: static int     post_an(POST_ARGS);
1.82      kristaps  142: static int     post_args(POST_ARGS);
1.69      kristaps  143: static int     post_at(POST_ARGS);
                    144: static int     post_bf(POST_ARGS);
1.55      kristaps  145: static int     post_bl(POST_ARGS);
                    146: static int     post_it(POST_ARGS);
                    147: static int     post_nm(POST_ARGS);
                    148: static int     post_root(POST_ARGS);
1.69      kristaps  149: static int     post_sh(POST_ARGS);
                    150: static int     post_sh_body(POST_ARGS);
                    151: static int     post_sh_head(POST_ARGS);
                    152: static int     post_st(POST_ARGS);
1.37      kristaps  153:
1.84      kristaps  154: #define        mwarn(m, t) nwarn((m), (m)->last, (t))
                    155: #define        merr(m, t) nerr((m), (m)->last, (t))
                    156: #define        nwarn(m, n, t) pwarn((m), (n)->line, (n)->pos, (t))
                    157: #define        nerr(m, n, t) perr((m), (n)->line, (n)->pos, (t))
                    158:
1.69      kristaps  159: static v_pre   pres_an[] = { pre_an, NULL };
1.24      kristaps  160: static v_pre   pres_bd[] = { pre_display, pre_bd, NULL };
                    161: static v_pre   pres_bl[] = { pre_bl, NULL };
1.33      kristaps  162: static v_pre   pres_cd[] = { pre_cd, NULL };
1.69      kristaps  163: static v_pre   pres_dd[] = { pre_prologue, pre_dd, NULL };
                    164: static v_pre   pres_d1[] = { pre_display, NULL };
                    165: static v_pre   pres_dt[] = { pre_prologue, pre_dt, NULL };
1.33      kristaps  166: static v_pre   pres_er[] = { pre_er, NULL };
                    167: static v_pre   pres_ex[] = { pre_ex, NULL };
1.69      kristaps  168: static v_pre   pres_fd[] = { pre_fd, NULL };
                    169: static v_pre   pres_it[] = { pre_it, NULL };
                    170: static v_pre   pres_lb[] = { pre_lb, NULL };
                    171: static v_pre   pres_os[] = { pre_prologue, pre_os, NULL };
1.36      kristaps  172: static v_pre   pres_rv[] = { pre_rv, NULL };
1.69      kristaps  173: static v_pre   pres_sh[] = { pre_sh, NULL };
                    174: static v_pre   pres_ss[] = { pre_ss, NULL };
1.37      kristaps  175: static v_post  posts_bool[] = { eerr_eq1, ebool, NULL };
                    176: static v_post  posts_bd[] = { herr_eq0, bwarn_ge1, NULL };
                    177: static v_post  posts_text[] = { eerr_ge1, NULL };
                    178: static v_post  posts_wtext[] = { ewarn_ge1, NULL };
                    179: static v_post  posts_notext[] = { eerr_eq0, NULL };
1.43      kristaps  180: static v_post  posts_wline[] = { bwarn_ge1, herr_eq0, NULL };
1.37      kristaps  181: static v_post  posts_sh[] = { herr_ge1, bwarn_ge1, post_sh, NULL };
                    182: static v_post  posts_bl[] = { herr_eq0, bwarn_ge1, post_bl, NULL };
1.25      kristaps  183: static v_post  posts_it[] = { post_it, NULL };
1.39      kristaps  184: static v_post  posts_in[] = { ewarn_eq1, NULL };
1.37      kristaps  185: static v_post  posts_ss[] = { herr_ge1, NULL };
1.52      kristaps  186: static v_post  posts_pf[] = { eerr_eq1, NULL };
1.69      kristaps  187: static v_post  posts_lb[] = { eerr_eq1, NULL };
                    188: static v_post  posts_st[] = { eerr_eq1, post_st, NULL };
1.37      kristaps  189: static v_post  posts_pp[] = { ewarn_eq0, NULL };
1.82      kristaps  190: static v_post  posts_ex[] = { eerr_eq0, post_args, NULL };
                    191: static v_post  posts_rv[] = { eerr_eq0, post_args, NULL };
1.35      kristaps  192: static v_post  posts_an[] = { post_an, NULL };
1.37      kristaps  193: static v_post  posts_at[] = { post_at, NULL };
1.69      kristaps  194: static v_post  posts_xr[] = { eerr_ge1, eerr_le2, NULL };
1.37      kristaps  195: static v_post  posts_nm[] = { post_nm, NULL };
1.59      kristaps  196: static v_post  posts_bf[] = { hwarn_le1, post_bf, NULL };
1.58      kristaps  197: static v_post  posts_fo[] = { hwarn_eq1, bwarn_ge1, NULL };
1.9       kristaps  198:
                    199: const  struct valids mdoc_valids[MDOC_MAX] = {
1.51      kristaps  200:        { NULL, NULL },                         /* \" */
1.69      kristaps  201:        { pres_dd, posts_text },                /* Dd */
                    202:        { pres_dt, NULL },                      /* Dt */
                    203:        { pres_os, NULL },                      /* Os */
1.51      kristaps  204:        { pres_sh, posts_sh },                  /* Sh */
                    205:        { pres_ss, posts_ss },                  /* Ss */
                    206:        { NULL, posts_pp },                     /* Pp */
                    207:        { pres_d1, posts_wline },               /* D1 */
                    208:        { pres_d1, posts_wline },               /* Dl */
                    209:        { pres_bd, posts_bd },                  /* Bd */
                    210:        { NULL, NULL },                         /* Ed */
                    211:        { pres_bl, posts_bl },                  /* Bl */
                    212:        { NULL, NULL },                         /* El */
                    213:        { pres_it, posts_it },                  /* It */
                    214:        { NULL, posts_text },                   /* Ad */
                    215:        { pres_an, posts_an },                  /* An */
                    216:        { NULL, NULL },                         /* Ar */
                    217:        { pres_cd, posts_text },                /* Cd */
                    218:        { NULL, NULL },                         /* Cm */
1.90      kristaps  219:        { NULL, NULL },                         /* Dv */
1.51      kristaps  220:        { pres_er, posts_text },                /* Er */
1.90      kristaps  221:        { NULL, NULL },                         /* Ev */
1.51      kristaps  222:        { pres_ex, posts_ex },                  /* Ex */
1.91    ! kristaps  223:        { NULL, NULL },                         /* Fa */
1.86      kristaps  224:        { pres_fd, posts_wtext },               /* Fd */
1.51      kristaps  225:        { NULL, NULL },                         /* Fl */
                    226:        { NULL, posts_text },                   /* Fn */
                    227:        { NULL, posts_wtext },                  /* Ft */
                    228:        { NULL, posts_text },                   /* Ic */
                    229:        { NULL, posts_in },                     /* In */
1.90      kristaps  230:        { NULL, NULL },                         /* Li */
1.51      kristaps  231:        { NULL, posts_wtext },                  /* Nd */
                    232:        { NULL, posts_nm },                     /* Nm */
                    233:        { NULL, posts_wline },                  /* Op */
                    234:        { NULL, NULL },                         /* Ot */
                    235:        { NULL, NULL },                         /* Pa */
1.82      kristaps  236:        { pres_rv, posts_rv },                  /* Rv */
1.69      kristaps  237:        { NULL, posts_st },                     /* St */
1.90      kristaps  238:        { NULL, NULL },                         /* Va */
1.51      kristaps  239:        { NULL, posts_text },                   /* Vt */
                    240:        { NULL, posts_xr },                     /* Xr */
                    241:        { NULL, posts_text },                   /* %A */
                    242:        { NULL, posts_text },                   /* %B */
                    243:        { NULL, posts_text },                   /* %D */
                    244:        { NULL, posts_text },                   /* %I */
                    245:        { NULL, posts_text },                   /* %J */
                    246:        { NULL, posts_text },                   /* %N */
                    247:        { NULL, posts_text },                   /* %O */
                    248:        { NULL, posts_text },                   /* %P */
                    249:        { NULL, posts_text },                   /* %R */
                    250:        { NULL, posts_text },                   /* %T */
                    251:        { NULL, posts_text },                   /* %V */
                    252:        { NULL, NULL },                         /* Ac */
                    253:        { NULL, NULL },                         /* Ao */
                    254:        { NULL, posts_wline },                  /* Aq */
                    255:        { NULL, posts_at },                     /* At */
                    256:        { NULL, NULL },                         /* Bc */
                    257:        { NULL, posts_bf },                     /* Bf */
                    258:        { NULL, NULL },                         /* Bo */
                    259:        { NULL, posts_wline },                  /* Bq */
                    260:        { NULL, NULL },                         /* Bsx */
                    261:        { NULL, NULL },                         /* Bx */
                    262:        { NULL, posts_bool },                   /* Db */
                    263:        { NULL, NULL },                         /* Dc */
                    264:        { NULL, NULL },                         /* Do */
                    265:        { NULL, posts_wline },                  /* Dq */
                    266:        { NULL, NULL },                         /* Ec */
                    267:        { NULL, NULL },                         /* Ef */
1.89      kristaps  268:        { NULL, NULL },                         /* Em */
1.51      kristaps  269:        { NULL, NULL },                         /* Eo */
                    270:        { NULL, NULL },                         /* Fx */
                    271:        { NULL, posts_text },                   /* Ms */
                    272:        { NULL, posts_notext },                 /* No */
                    273:        { NULL, posts_notext },                 /* Ns */
                    274:        { NULL, NULL },                         /* Nx */
                    275:        { NULL, NULL },                         /* Ox */
                    276:        { NULL, NULL },                         /* Pc */
1.52      kristaps  277:        { NULL, posts_pf },                     /* Pf */
1.51      kristaps  278:        { NULL, NULL },                         /* Po */
                    279:        { NULL, posts_wline },                  /* Pq */
                    280:        { NULL, NULL },                         /* Qc */
                    281:        { NULL, posts_wline },                  /* Ql */
                    282:        { NULL, NULL },                         /* Qo */
                    283:        { NULL, posts_wline },                  /* Qq */
                    284:        { NULL, NULL },                         /* Re */
1.86      kristaps  285:        { NULL, posts_wline },                  /* Rs */
1.51      kristaps  286:        { NULL, NULL },                         /* Sc */
                    287:        { NULL, NULL },                         /* So */
                    288:        { NULL, posts_wline },                  /* Sq */
                    289:        { NULL, posts_bool },                   /* Sm */
                    290:        { NULL, posts_text },                   /* Sx */
                    291:        { NULL, posts_text },                   /* Sy */
                    292:        { NULL, posts_text },                   /* Tn */
                    293:        { NULL, NULL },                         /* Ux */
                    294:        { NULL, NULL },                         /* Xc */
                    295:        { NULL, NULL },                         /* Xo */
                    296:        { NULL, posts_fo },                     /* Fo */
                    297:        { NULL, NULL },                         /* Fc */
                    298:        { NULL, NULL },                         /* Oo */
                    299:        { NULL, NULL },                         /* Oc */
1.86      kristaps  300:        { NULL, posts_wline },                  /* Bk */
1.51      kristaps  301:        { NULL, NULL },                         /* Ek */
                    302:        { NULL, posts_notext },                 /* Bt */
                    303:        { NULL, NULL },                         /* Hf */
                    304:        { NULL, NULL },                         /* Fr */
                    305:        { NULL, posts_notext },                 /* Ud */
1.69      kristaps  306:        { pres_lb, posts_lb },                  /* Lb */
1.83      kristaps  307:        { NULL, NULL },                         /* Ap */
                    308:        { NULL, posts_pp },                     /* Lp */
                    309:        { NULL, posts_text },                   /* Lk */
                    310:        { NULL, posts_text },                   /* Mt */
1.79      kristaps  311:        { NULL, posts_wline },                  /* Brq */
                    312:        { NULL, NULL },                         /* Bro */
                    313:        { NULL, NULL },                         /* Brc */
1.82      kristaps  314:        { NULL, posts_text },                   /* %C */
1.84      kristaps  315:        { NULL, NULL },                         /* Es */
                    316:        { NULL, NULL },                         /* En */
1.85      kristaps  317:        { NULL, NULL },                         /* Dx */
1.87      kristaps  318:        { NULL, posts_text },                   /* %Q */
1.9       kristaps  319: };
1.6       kristaps  320:
                    321:
1.57      kristaps  322: int
                    323: mdoc_valid_pre(struct mdoc *mdoc,
1.84      kristaps  324:                const struct mdoc_node *n)
1.57      kristaps  325: {
                    326:        v_pre           *p;
1.71      kristaps  327:        int              line, pos;
1.57      kristaps  328:        const char      *tp;
                    329:
1.84      kristaps  330:        if (MDOC_TEXT == n->type) {
                    331:                tp = n->string;
                    332:                line = n->line;
                    333:                pos = n->pos;
1.57      kristaps  334:                return(check_text(mdoc, line, pos, tp));
                    335:        }
                    336:
1.84      kristaps  337:        if ( ! check_args(mdoc, n))
1.71      kristaps  338:                return(0);
1.84      kristaps  339:        if (NULL == mdoc_valids[n->tok].pre)
1.57      kristaps  340:                return(1);
1.84      kristaps  341:        for (p = mdoc_valids[n->tok].pre; *p; p++)
                    342:                if ( ! (*p)(mdoc, n))
1.57      kristaps  343:                        return(0);
                    344:        return(1);
                    345: }
                    346:
                    347:
                    348: int
                    349: mdoc_valid_post(struct mdoc *mdoc)
                    350: {
                    351:        v_post          *p;
                    352:
                    353:        /*
                    354:         * This check occurs after the macro's children have been filled
                    355:         * in: postfix validation.  Since this happens when we're
                    356:         * rewinding the scope tree, it's possible to have multiple
                    357:         * invocations (as by design, for now), we set bit MDOC_VALID to
                    358:         * indicate that we've validated.
                    359:         */
                    360:
                    361:        if (MDOC_VALID & mdoc->last->flags)
                    362:                return(1);
                    363:        mdoc->last->flags |= MDOC_VALID;
                    364:
                    365:        if (MDOC_TEXT == mdoc->last->type)
                    366:                return(1);
                    367:        if (MDOC_ROOT == mdoc->last->type)
                    368:                return(post_root(mdoc));
                    369:
                    370:        if (NULL == mdoc_valids[mdoc->last->tok].post)
                    371:                return(1);
                    372:        for (p = mdoc_valids[mdoc->last->tok].post; *p; p++)
                    373:                if ( ! (*p)(mdoc))
                    374:                        return(0);
                    375:
                    376:        return(1);
                    377: }
                    378:
                    379:
1.71      kristaps  380: static int
1.84      kristaps  381: perr(struct mdoc *m, int line, int pos, enum merr type)
1.71      kristaps  382: {
                    383:        char             *p;
                    384:
                    385:        p = NULL;
                    386:        switch (type) {
1.86      kristaps  387:        case (EESCAPE):
                    388:                p = "invalid escape sequence";
                    389:                break;
1.84      kristaps  390:        case (EPRINT):
                    391:                p = "invalid character";
                    392:                break;
1.71      kristaps  393:        case (ENESTDISP):
                    394:                p = "displays may not be nested";
                    395:                break;
                    396:        case (EBOOL):
                    397:                p = "expected boolean value";
                    398:                break;
                    399:        case (EARGREP):
                    400:                p = "argument repeated";
                    401:                break;
                    402:        case (EMULTIDISP):
                    403:                p = "multiple display types specified";
                    404:                break;
                    405:        case (EMULTILIST):
                    406:                p = "multiple list types specified";
                    407:                break;
                    408:        case (ELISTTYPE):
                    409:                p = "missing list type";
                    410:                break;
                    411:        case (EDISPTYPE):
                    412:                p = "missing display type";
                    413:                break;
                    414:        case (ELINE):
                    415:                p = "expected line arguments";
                    416:                break;
                    417:        case (ENOPROLOGUE):
                    418:                p = "document has no prologue";
                    419:                break;
                    420:        case (ENODATA):
                    421:                p = "document has no data";
                    422:                break;
                    423:        case (EATT):
                    424:                p = "expected valid AT&T symbol";
                    425:                break;
                    426:        case (ENAME):
                    427:                p = "default name not yet set";
                    428:                break;
                    429:        }
                    430:        assert(p);
1.84      kristaps  431:        return(mdoc_perr(m, line, pos, p));
1.71      kristaps  432: }
                    433:
                    434:
                    435: static int
1.84      kristaps  436: pwarn(struct mdoc *m, int line, int pos, enum mwarn type)
1.71      kristaps  437: {
                    438:        char             *p;
                    439:        enum mdoc_warn    c;
                    440:
                    441:        c = WARN_SYNTAX;
                    442:        p = NULL;
                    443:        switch (type) {
                    444:        case (WBADMSEC):
                    445:                p = "inappropriate manual section";
                    446:                c = WARN_COMPAT;
                    447:                break;
                    448:        case (WBADSEC):
                    449:                p = "inappropriate document section";
                    450:                c = WARN_COMPAT;
                    451:                break;
                    452:        case (WARGVAL):
                    453:                p = "argument value suggested";
                    454:                c = WARN_COMPAT;
                    455:                break;
                    456:        case (WPROLREP):
                    457:                p = "prologue macros repeated";
                    458:                c = WARN_COMPAT;
                    459:                break;
                    460:        case (WPROLOOO):
                    461:                p = "prologue macros out-of-order";
                    462:                c = WARN_COMPAT;
                    463:                break;
1.86      kristaps  464:        case (WESCAPE):
                    465:                p = "invalid escape sequence";
                    466:                break;
1.71      kristaps  467:        case (WNOLINE):
                    468:                p = "suggested no line arguments";
                    469:                break;
                    470:        case (WLINE):
                    471:                p = "suggested line arguments";
                    472:                break;
                    473:        case (WMULTILINE):
                    474:                p = "suggested multi-line arguments";
                    475:                break;
                    476:        case (WNOMULTILINE):
                    477:                p = "suggested no multi-line arguments";
                    478:                break;
                    479:        case (WWRONGMSEC):
                    480:                p = "document section in wrong manual section";
                    481:                c = WARN_COMPAT;
                    482:                break;
                    483:        case (WSECOOO):
                    484:                p = "document section out of conventional order";
                    485:                break;
                    486:        case (WSECREP):
                    487:                p = "document section repeated";
                    488:                break;
                    489:        case (WBADSTAND):
                    490:                p = "unknown standard";
                    491:                break;
                    492:        case (WNAMESECINC):
                    493:                p = "NAME section contents incomplete/badly-ordered";
                    494:                break;
                    495:        }
                    496:        assert(p);
1.84      kristaps  497:        return(mdoc_pwarn(m, line, pos, c, p));
1.71      kristaps  498: }
                    499:
                    500:
1.57      kristaps  501:
1.51      kristaps  502: static inline int
                    503: warn_count(struct mdoc *m, const char *k,
                    504:                int want, const char *v, int has)
                    505: {
                    506:
1.55      kristaps  507:        return(mdoc_warn(m, WARN_SYNTAX,
1.71      kristaps  508:                "suggests %s %s %d (has %d)", v, k, want, has));
1.51      kristaps  509: }
                    510:
                    511:
                    512: static inline int
                    513: err_count(struct mdoc *m, const char *k,
                    514:                int want, const char *v, int has)
                    515: {
                    516:
1.71      kristaps  517:        return(mdoc_err(m,
                    518:                "requires %s %s %d (has %d)", v, k, want, has));
1.51      kristaps  519: }
                    520:
                    521:
                    522: static inline int
                    523: count_child(struct mdoc *mdoc)
1.36      kristaps  524: {
1.51      kristaps  525:        int               i;
1.36      kristaps  526:        struct mdoc_node *n;
                    527:
                    528:        for (i = 0, n = mdoc->last->child; n; n = n->next, i++)
                    529:                /* Do nothing */ ;
1.53      kristaps  530:
1.36      kristaps  531:        return(i);
                    532: }
                    533:
                    534:
1.53      kristaps  535: /*
                    536:  * Build these up with macros because they're basically the same check
                    537:  * for different inequalities.  Yes, this could be done with functions,
                    538:  * but this is reasonable for now.
                    539:  */
1.36      kristaps  540:
1.53      kristaps  541: #define CHECK_CHILD_DEFN(lvl, name, ineq)                      \
                    542: static int                                                     \
                    543: lvl##_child_##name(struct mdoc *mdoc, const char *p, int sz)   \
                    544: {                                                              \
                    545:        int i;                                                  \
                    546:        if ((i = count_child(mdoc)) ineq sz)                    \
                    547:                return(1);                                      \
                    548:        return(lvl##_count(mdoc, #ineq, sz, p, i));             \
                    549: }
                    550:
                    551: #define CHECK_BODY_DEFN(name, lvl, func, num)                  \
                    552: static int                                                     \
1.55      kristaps  553: b##lvl##_##name(POST_ARGS)                                     \
1.53      kristaps  554: {                                                              \
                    555:        if (MDOC_BODY != mdoc->last->type)                      \
                    556:                return(1);                                      \
1.71      kristaps  557:        return(func(mdoc, "multi-line arguments", (num)));      \
1.53      kristaps  558: }
                    559:
                    560: #define CHECK_ELEM_DEFN(name, lvl, func, num)                  \
                    561: static int                                                     \
1.55      kristaps  562: e##lvl##_##name(POST_ARGS)                                     \
1.53      kristaps  563: {                                                              \
                    564:        assert(MDOC_ELEM == mdoc->last->type);                  \
1.71      kristaps  565:        return(func(mdoc, "line arguments", (num)));            \
1.53      kristaps  566: }
                    567:
                    568: #define CHECK_HEAD_DEFN(name, lvl, func, num)                  \
                    569: static int                                                     \
1.55      kristaps  570: h##lvl##_##name(POST_ARGS)                                     \
1.53      kristaps  571: {                                                              \
                    572:        if (MDOC_HEAD != mdoc->last->type)                      \
                    573:                return(1);                                      \
1.71      kristaps  574:        return(func(mdoc, "line arguments", (num)));            \
1.36      kristaps  575: }
                    576:
                    577:
1.53      kristaps  578: CHECK_CHILD_DEFN(warn, gt, >)                  /* warn_child_gt() */
                    579: CHECK_CHILD_DEFN(err, gt, >)                   /* err_child_gt() */
                    580: CHECK_CHILD_DEFN(warn, eq, ==)                 /* warn_child_eq() */
                    581: CHECK_CHILD_DEFN(err, eq, ==)                  /* err_child_eq() */
                    582: CHECK_CHILD_DEFN(err, lt, <)                   /* err_child_lt() */
1.59      kristaps  583: CHECK_CHILD_DEFN(warn, lt, <)                  /* warn_child_lt() */
1.53      kristaps  584: CHECK_BODY_DEFN(ge1, warn, warn_child_gt, 0)   /* bwarn_ge1() */
                    585: CHECK_ELEM_DEFN(eq1, warn, warn_child_eq, 1)   /* ewarn_eq1() */
                    586: CHECK_ELEM_DEFN(eq0, warn, warn_child_eq, 0)   /* ewarn_eq0() */
                    587: CHECK_ELEM_DEFN(ge1, warn, warn_child_gt, 0)   /* ewarn_gt1() */
                    588: CHECK_ELEM_DEFN(eq1, err, err_child_eq, 1)     /* eerr_eq1() */
                    589: CHECK_ELEM_DEFN(le2, err, err_child_lt, 3)     /* eerr_le2() */
                    590: CHECK_ELEM_DEFN(eq0, err, err_child_eq, 0)     /* eerr_eq0() */
                    591: CHECK_ELEM_DEFN(ge1, err, err_child_gt, 0)     /* eerr_ge1() */
                    592: CHECK_HEAD_DEFN(eq0, err, err_child_eq, 0)     /* herr_eq0() */
1.59      kristaps  593: CHECK_HEAD_DEFN(le1, warn, warn_child_lt, 2)   /* hwarn_le1() */
1.53      kristaps  594: CHECK_HEAD_DEFN(ge1, err, err_child_gt, 0)     /* herr_ge1() */
1.58      kristaps  595: CHECK_HEAD_DEFN(eq1, warn, warn_child_eq, 1)   /* hwarn_eq1() */
1.36      kristaps  596:
                    597:
                    598: static int
1.55      kristaps  599: check_stdarg(PRE_ARGS)
1.36      kristaps  600: {
                    601:
1.71      kristaps  602:        if (n->args && 1 == n->args->argc)
                    603:                if (MDOC_Std == n->args->argv[0].arg)
                    604:                        return(1);
                    605:        return(nwarn(mdoc, n, WARGVAL));
1.36      kristaps  606: }
                    607:
                    608:
                    609: static int
1.69      kristaps  610: check_sec(PRE_ARGS, ...)
                    611: {
                    612:        enum mdoc_sec    sec;
                    613:        va_list          ap;
                    614:
                    615:        va_start(ap, n);
                    616:
                    617:        for (;;) {
1.71      kristaps  618:                /* LINTED */
1.70      kristaps  619:                sec = (enum mdoc_sec)va_arg(ap, int);
                    620:                if (SEC_CUSTOM == sec)
1.69      kristaps  621:                        break;
                    622:                if (sec != mdoc->lastsec)
                    623:                        continue;
                    624:                va_end(ap);
                    625:                return(1);
                    626:        }
                    627:
                    628:        va_end(ap);
1.71      kristaps  629:        return(nwarn(mdoc, n, WBADSEC));
1.69      kristaps  630: }
                    631:
                    632:
                    633: static int
                    634: check_msec(PRE_ARGS, ...)
1.33      kristaps  635: {
1.69      kristaps  636:        va_list          ap;
                    637:        int              msec;
1.33      kristaps  638:
1.69      kristaps  639:        va_start(ap, n);
                    640:        for (;;) {
1.71      kristaps  641:                /* LINTED */
1.69      kristaps  642:                if (0 == (msec = va_arg(ap, int)))
                    643:                        break;
                    644:                if (msec != mdoc->meta.msec)
                    645:                        continue;
                    646:                va_end(ap);
                    647:                return(1);
                    648:        }
                    649:
                    650:        va_end(ap);
1.71      kristaps  651:        return(nwarn(mdoc, n, WBADMSEC));
1.55      kristaps  652: }
                    653:
                    654:
1.68      kristaps  655: static int
1.71      kristaps  656: check_args(struct mdoc *m, const struct mdoc_node *n)
                    657: {
                    658:        int              i;
                    659:
                    660:        if (NULL == n->args)
                    661:                return(1);
                    662:
1.73      kristaps  663:        assert(n->args->argc);
1.71      kristaps  664:        for (i = 0; i < (int)n->args->argc; i++)
                    665:                if ( ! check_argv(m, n, &n->args->argv[i]))
                    666:                        return(0);
                    667:
                    668:        return(1);
                    669: }
                    670:
                    671:
                    672: static int
                    673: check_argv(struct mdoc *m, const struct mdoc_node *n,
                    674:                const struct mdoc_argv *v)
1.68      kristaps  675: {
1.71      kristaps  676:        int              i;
1.68      kristaps  677:
1.71      kristaps  678:        for (i = 0; i < (int)v->sz; i++)
                    679:                if ( ! check_text(m, v->line, v->pos, v->value[i]))
                    680:                        return(0);
1.68      kristaps  681:
1.82      kristaps  682:        if (MDOC_Std == v->arg) {
1.71      kristaps  683:                /* `Nm' name must be set. */
                    684:                if (v->sz || m->meta.name)
                    685:                        return(1);
                    686:                return(nerr(m, n, ENAME));
1.68      kristaps  687:        }
                    688:
                    689:        return(1);
                    690: }
                    691:
                    692:
1.55      kristaps  693: static int
1.63      kristaps  694: check_text(struct mdoc *mdoc, int line, int pos, const char *p)
1.55      kristaps  695: {
                    696:        size_t           c;
                    697:
1.84      kristaps  698:        /* FIXME: indicate deprecated escapes \*(xx and \*x. */
1.62      kristaps  699:
1.55      kristaps  700:        for ( ; *p; p++) {
1.86      kristaps  701:                if ('\t' == *p) {
                    702:                        if ( ! (MDOC_LITERAL & mdoc->flags))
                    703:                                return(perr(mdoc, line, pos, EPRINT));
                    704:                } else if ( ! isprint((u_char)*p))
1.84      kristaps  705:                        return(perr(mdoc, line, pos, EPRINT));
1.86      kristaps  706:
1.55      kristaps  707:                if ('\\' != *p)
                    708:                        continue;
1.86      kristaps  709:
1.88      kristaps  710:                c = mdoc_isescape(p);
                    711:                if (c) {
1.63      kristaps  712:                        p += (int)c - 1;
1.55      kristaps  713:                        continue;
                    714:                }
1.74      kristaps  715:                if ( ! (MDOC_IGN_ESCAPE & mdoc->pflags))
1.86      kristaps  716:                        return(perr(mdoc, line, pos, EESCAPE));
                    717:                if ( ! pwarn(mdoc, line, pos, WESCAPE))
1.74      kristaps  718:                        return(0);
1.55      kristaps  719:        }
                    720:
                    721:        return(1);
1.14      kristaps  722: }
                    723:
                    724:
1.55      kristaps  725:
                    726:
1.14      kristaps  727: static int
1.55      kristaps  728: check_parent(PRE_ARGS, int tok, enum mdoc_type t)
1.54      kristaps  729: {
                    730:
                    731:        assert(n->parent);
                    732:        if ((MDOC_ROOT == t || tok == n->parent->tok) &&
                    733:                        (t == n->parent->type))
                    734:                return(1);
                    735:
                    736:        return(mdoc_nerr(mdoc, n, "require parent %s",
                    737:                MDOC_ROOT == t ? "<root>" : mdoc_macronames[tok]));
                    738: }
                    739:
                    740:
                    741:
                    742: static int
1.55      kristaps  743: pre_display(PRE_ARGS)
1.23      kristaps  744: {
1.55      kristaps  745:        struct mdoc_node *node;
1.23      kristaps  746:
1.53      kristaps  747:        /* Display elements (`Bd', `D1'...) cannot be nested. */
                    748:
1.55      kristaps  749:        if (MDOC_BLOCK != n->type)
1.24      kristaps  750:                return(1);
                    751:
1.38      kristaps  752:        /* LINTED */
1.55      kristaps  753:        for (node = mdoc->last->parent; node; node = node->parent)
                    754:                if (MDOC_BLOCK == node->type)
                    755:                        if (MDOC_Bd == node->tok)
1.23      kristaps  756:                                break;
1.55      kristaps  757:        if (NULL == node)
1.23      kristaps  758:                return(1);
1.53      kristaps  759:
1.71      kristaps  760:        return(nerr(mdoc, n, ENESTDISP));
1.23      kristaps  761: }
                    762:
                    763:
                    764: static int
1.55      kristaps  765: pre_bl(PRE_ARGS)
1.24      kristaps  766: {
1.71      kristaps  767:        int              i, type, width, offset;
1.24      kristaps  768:
1.55      kristaps  769:        if (MDOC_BLOCK != n->type)
1.24      kristaps  770:                return(1);
1.71      kristaps  771:        if (NULL == n->args)
                    772:                return(nerr(mdoc, n, ELISTTYPE));
1.24      kristaps  773:
1.53      kristaps  774:        /* Make sure that only one type of list is specified.  */
                    775:
1.61      kristaps  776:        type = offset = width = -1;
                    777:
1.38      kristaps  778:        /* LINTED */
1.71      kristaps  779:        for (i = 0; i < (int)n->args->argc; i++)
                    780:                switch (n->args->argv[i].arg) {
1.24      kristaps  781:                case (MDOC_Bullet):
                    782:                        /* FALLTHROUGH */
                    783:                case (MDOC_Dash):
                    784:                        /* FALLTHROUGH */
                    785:                case (MDOC_Enum):
                    786:                        /* FALLTHROUGH */
                    787:                case (MDOC_Hyphen):
                    788:                        /* FALLTHROUGH */
                    789:                case (MDOC_Item):
                    790:                        /* FALLTHROUGH */
                    791:                case (MDOC_Tag):
                    792:                        /* FALLTHROUGH */
                    793:                case (MDOC_Diag):
                    794:                        /* FALLTHROUGH */
                    795:                case (MDOC_Hang):
                    796:                        /* FALLTHROUGH */
                    797:                case (MDOC_Ohang):
                    798:                        /* FALLTHROUGH */
                    799:                case (MDOC_Inset):
1.26      kristaps  800:                        /* FALLTHROUGH */
                    801:                case (MDOC_Column):
1.61      kristaps  802:                        if (-1 == type) {
1.71      kristaps  803:                                type = n->args->argv[i].arg;
1.53      kristaps  804:                                break;
1.61      kristaps  805:                        }
1.71      kristaps  806:                        return(nerr(mdoc, n, EMULTILIST));
1.61      kristaps  807:                case (MDOC_Width):
                    808:                        if (-1 == width) {
1.71      kristaps  809:                                width = n->args->argv[i].arg;
1.61      kristaps  810:                                break;
                    811:                        }
1.71      kristaps  812:                        return(nerr(mdoc, n, EARGREP));
1.61      kristaps  813:                case (MDOC_Offset):
                    814:                        if (-1 == offset) {
1.71      kristaps  815:                                offset = n->args->argv[i].arg;
1.61      kristaps  816:                                break;
                    817:                        }
1.71      kristaps  818:                        return(nerr(mdoc, n, EARGREP));
1.24      kristaps  819:                default:
                    820:                        break;
                    821:                }
1.53      kristaps  822:
1.61      kristaps  823:        if (-1 == type)
1.71      kristaps  824:                return(nerr(mdoc, n, ELISTTYPE));
1.61      kristaps  825:
                    826:        switch (type) {
                    827:        case (MDOC_Column):
                    828:                /* FALLTHROUGH */
                    829:        case (MDOC_Diag):
                    830:                /* FALLTHROUGH */
                    831:        case (MDOC_Inset):
                    832:                /* FALLTHROUGH */
                    833:        case (MDOC_Item):
                    834:                if (-1 == width)
                    835:                        break;
                    836:                return(mdoc_nwarn(mdoc, n, WARN_SYNTAX,
1.71      kristaps  837:                                "superfluous %s argument",
1.61      kristaps  838:                                mdoc_argnames[MDOC_Width]));
                    839:        case (MDOC_Tag):
1.71      kristaps  840:                if (-1 != width)
                    841:                        break;
                    842:                return(mdoc_nerr(mdoc, n, "missing %s argument",
                    843:                                mdoc_argnames[MDOC_Width]));
1.61      kristaps  844:        default:
                    845:                break;
                    846:        }
                    847:
                    848:        return(1);
1.24      kristaps  849: }
                    850:
                    851:
                    852: static int
1.55      kristaps  853: pre_bd(PRE_ARGS)
1.24      kristaps  854: {
1.71      kristaps  855:        int              i, type, err;
1.24      kristaps  856:
1.55      kristaps  857:        if (MDOC_BLOCK != n->type)
1.24      kristaps  858:                return(1);
1.71      kristaps  859:        if (NULL == n->args)
                    860:                return(nerr(mdoc, n, EDISPTYPE));
1.24      kristaps  861:
1.53      kristaps  862:        /* Make sure that only one type of display is specified.  */
                    863:
1.38      kristaps  864:        /* LINTED */
1.71      kristaps  865:        for (i = 0, err = type = 0; ! err &&
                    866:                        i < (int)n->args->argc; i++)
                    867:                switch (n->args->argv[i].arg) {
1.24      kristaps  868:                case (MDOC_Ragged):
                    869:                        /* FALLTHROUGH */
                    870:                case (MDOC_Unfilled):
                    871:                        /* FALLTHROUGH */
1.29      kristaps  872:                case (MDOC_Filled):
                    873:                        /* FALLTHROUGH */
1.24      kristaps  874:                case (MDOC_Literal):
                    875:                        /* FALLTHROUGH */
                    876:                case (MDOC_File):
1.53      kristaps  877:                        if (0 == type++)
                    878:                                break;
1.71      kristaps  879:                        return(nerr(mdoc, n, EMULTIDISP));
1.24      kristaps  880:                default:
                    881:                        break;
                    882:                }
1.53      kristaps  883:
                    884:        if (type)
                    885:                return(1);
1.71      kristaps  886:        return(nerr(mdoc, n, EDISPTYPE));
1.24      kristaps  887: }
                    888:
                    889:
                    890: static int
1.55      kristaps  891: pre_ss(PRE_ARGS)
1.33      kristaps  892: {
                    893:
1.55      kristaps  894:        if (MDOC_BLOCK != n->type)
1.33      kristaps  895:                return(1);
1.55      kristaps  896:        return(check_parent(mdoc, n, MDOC_Sh, MDOC_BODY));
1.33      kristaps  897: }
                    898:
                    899:
                    900: static int
1.55      kristaps  901: pre_sh(PRE_ARGS)
1.33      kristaps  902: {
                    903:
1.55      kristaps  904:        if (MDOC_BLOCK != n->type)
1.33      kristaps  905:                return(1);
1.55      kristaps  906:        return(check_parent(mdoc, n, -1, MDOC_ROOT));
1.33      kristaps  907: }
                    908:
                    909:
                    910: static int
1.55      kristaps  911: pre_it(PRE_ARGS)
1.53      kristaps  912: {
                    913:
1.55      kristaps  914:        if (MDOC_BLOCK != n->type)
1.53      kristaps  915:                return(1);
1.55      kristaps  916:        return(check_parent(mdoc, n, MDOC_Bl, MDOC_BODY));
1.53      kristaps  917: }
                    918:
                    919:
                    920: static int
1.69      kristaps  921: pre_an(PRE_ARGS)
1.36      kristaps  922: {
                    923:
1.73      kristaps  924:        if (NULL == n->args || 1 == n->args->argc)
1.36      kristaps  925:                return(1);
1.71      kristaps  926:        return(mdoc_nerr(mdoc, n, "only one argument allowed"));
1.36      kristaps  927: }
                    928:
                    929:
                    930: static int
1.69      kristaps  931: pre_lb(PRE_ARGS)
1.35      kristaps  932: {
1.36      kristaps  933:
1.69      kristaps  934:        return(check_sec(mdoc, n, SEC_LIBRARY, SEC_CUSTOM));
1.35      kristaps  935: }
                    936:
                    937:
                    938: static int
1.55      kristaps  939: pre_rv(PRE_ARGS)
1.36      kristaps  940: {
                    941:
1.69      kristaps  942:        if ( ! check_msec(mdoc, n, 2, 3, 0))
1.36      kristaps  943:                return(0);
1.55      kristaps  944:        return(check_stdarg(mdoc, n));
1.36      kristaps  945: }
                    946:
                    947:
                    948: static int
1.55      kristaps  949: pre_ex(PRE_ARGS)
1.33      kristaps  950: {
1.35      kristaps  951:
1.69      kristaps  952:        if ( ! check_msec(mdoc, n, 1, 6, 8, 0))
1.35      kristaps  953:                return(0);
1.55      kristaps  954:        return(check_stdarg(mdoc, n));
1.33      kristaps  955: }
                    956:
                    957:
                    958: static int
1.55      kristaps  959: pre_er(PRE_ARGS)
1.33      kristaps  960: {
                    961:
1.69      kristaps  962:        return(check_msec(mdoc, n, 2, 0));
1.33      kristaps  963: }
                    964:
                    965:
                    966: static int
1.55      kristaps  967: pre_cd(PRE_ARGS)
1.33      kristaps  968: {
                    969:
1.69      kristaps  970:        return(check_msec(mdoc, n, 4, 0));
1.33      kristaps  971: }
                    972:
                    973:
                    974: static int
1.55      kristaps  975: pre_prologue(PRE_ARGS)
1.20      kristaps  976: {
                    977:
1.69      kristaps  978:        return(check_sec(mdoc, n, SEC_PROLOGUE, SEC_CUSTOM));
                    979: }
1.20      kristaps  980:
                    981:
1.69      kristaps  982: static int
                    983: pre_dt(PRE_ARGS)
                    984: {
                    985:
                    986:        if (0 == mdoc->meta.date || mdoc->meta.os)
1.71      kristaps  987:                if ( ! nwarn(mdoc, n, WPROLOOO))
1.69      kristaps  988:                        return(0);
                    989:        if (mdoc->meta.title)
1.71      kristaps  990:                if ( ! nwarn(mdoc, n, WPROLREP))
1.69      kristaps  991:                        return(0);
                    992:        return(1);
                    993: }
                    994:
                    995:
                    996: static int
                    997: pre_os(PRE_ARGS)
                    998: {
                    999:
                   1000:        if (NULL == mdoc->meta.title || 0 == mdoc->meta.date)
1.71      kristaps 1001:                if ( ! nwarn(mdoc, n, WPROLOOO))
1.69      kristaps 1002:                        return(0);
                   1003:        if (mdoc->meta.os)
1.71      kristaps 1004:                if ( ! nwarn(mdoc, n, WPROLREP))
1.69      kristaps 1005:                        return(0);
                   1006:        return(1);
                   1007: }
1.20      kristaps 1008:
                   1009:
1.69      kristaps 1010: static int
                   1011: pre_dd(PRE_ARGS)
                   1012: {
1.20      kristaps 1013:
1.69      kristaps 1014:        if (mdoc->meta.title || mdoc->meta.os)
1.71      kristaps 1015:                if ( ! nwarn(mdoc, n, WPROLOOO))
1.69      kristaps 1016:                        return(0);
                   1017:        if (mdoc->meta.date)
1.71      kristaps 1018:                if ( ! nwarn(mdoc, n, WPROLREP))
1.69      kristaps 1019:                        return(0);
                   1020:        return(1);
1.20      kristaps 1021: }
                   1022:
                   1023:
1.35      kristaps 1024: static int
1.55      kristaps 1025: post_bf(POST_ARGS)
1.41      kristaps 1026: {
                   1027:        char             *p;
                   1028:        struct mdoc_node *head;
                   1029:
                   1030:        if (MDOC_BLOCK != mdoc->last->type)
                   1031:                return(1);
1.53      kristaps 1032:
1.71      kristaps 1033:        head = mdoc->last->head;
1.41      kristaps 1034:
1.71      kristaps 1035:        if (NULL == mdoc->last->args) {
                   1036:                if (NULL == head->child ||
                   1037:                                MDOC_TEXT != head->child->type)
                   1038:                        return(mdoc_err(mdoc, "text argument expected"));
1.53      kristaps 1039:
1.71      kristaps 1040:                p = head->child->string;
1.53      kristaps 1041:                if (xstrcmp(p, "Em"))
                   1042:                        return(1);
                   1043:                else if (xstrcmp(p, "Li"))
                   1044:                        return(1);
                   1045:                else if (xstrcmp(p, "Sm"))
                   1046:                        return(1);
                   1047:                return(mdoc_nerr(mdoc, head->child, "invalid font"));
1.41      kristaps 1048:        }
1.53      kristaps 1049:
1.41      kristaps 1050:        if (head->child)
1.71      kristaps 1051:                return(mdoc_err(mdoc, "one argument expected"));
1.53      kristaps 1052:
1.71      kristaps 1053:        return(1);
1.41      kristaps 1054: }
                   1055:
                   1056:
                   1057: static int
1.55      kristaps 1058: post_nm(POST_ARGS)
1.37      kristaps 1059: {
                   1060:
                   1061:        if (mdoc->last->child)
                   1062:                return(1);
                   1063:        if (mdoc->meta.name)
                   1064:                return(1);
1.71      kristaps 1065:        return(merr(mdoc, ENAME));
1.37      kristaps 1066: }
                   1067:
                   1068:
                   1069: static int
1.55      kristaps 1070: post_at(POST_ARGS)
1.36      kristaps 1071: {
                   1072:
1.37      kristaps 1073:        if (NULL == mdoc->last->child)
                   1074:                return(1);
1.71      kristaps 1075:        if (MDOC_TEXT != mdoc->last->child->type)
                   1076:                return(merr(mdoc, EATT));
                   1077:        if (mdoc_a2att(mdoc->last->child->string))
1.36      kristaps 1078:                return(1);
1.71      kristaps 1079:        return(merr(mdoc, EATT));
1.36      kristaps 1080: }
                   1081:
                   1082:
                   1083: static int
1.55      kristaps 1084: post_an(POST_ARGS)
1.35      kristaps 1085: {
                   1086:
1.71      kristaps 1087:        if (mdoc->last->args) {
1.35      kristaps 1088:                if (NULL == mdoc->last->child)
                   1089:                        return(1);
1.71      kristaps 1090:                return(merr(mdoc, ELINE));
1.35      kristaps 1091:        }
                   1092:
                   1093:        if (mdoc->last->child)
                   1094:                return(1);
1.71      kristaps 1095:        return(merr(mdoc, ELINE));
1.35      kristaps 1096: }
                   1097:
                   1098:
                   1099: static int
1.82      kristaps 1100: post_args(POST_ARGS)
1.35      kristaps 1101: {
                   1102:
1.71      kristaps 1103:        if (mdoc->last->args)
                   1104:                return(1);
                   1105:        return(merr(mdoc, ELINE));
1.35      kristaps 1106: }
                   1107:
                   1108:
1.25      kristaps 1109: static int
1.55      kristaps 1110: post_it(POST_ARGS)
1.25      kristaps 1111: {
1.71      kristaps 1112:        int               type, i, cols;
                   1113:        struct mdoc_node *n, *c;
1.25      kristaps 1114:
                   1115:        if (MDOC_BLOCK != mdoc->last->type)
                   1116:                return(1);
                   1117:
1.53      kristaps 1118:        n = mdoc->last->parent->parent;
1.71      kristaps 1119:        if (NULL == n->args)
                   1120:                return(merr(mdoc, ELISTTYPE));
1.25      kristaps 1121:
1.26      kristaps 1122:        /* Some types require block-head, some not. */
1.25      kristaps 1123:
1.38      kristaps 1124:        /* LINTED */
1.71      kristaps 1125:        for (cols = type = -1, i = 0; -1 == type &&
                   1126:                        i < (int)n->args->argc; i++)
                   1127:                switch (n->args->argv[i].arg) {
1.25      kristaps 1128:                case (MDOC_Tag):
                   1129:                        /* FALLTHROUGH */
                   1130:                case (MDOC_Diag):
                   1131:                        /* FALLTHROUGH */
                   1132:                case (MDOC_Hang):
                   1133:                        /* FALLTHROUGH */
                   1134:                case (MDOC_Ohang):
                   1135:                        /* FALLTHROUGH */
                   1136:                case (MDOC_Inset):
1.71      kristaps 1137:                        /* FALLTHROUGH */
1.25      kristaps 1138:                case (MDOC_Bullet):
                   1139:                        /* FALLTHROUGH */
                   1140:                case (MDOC_Dash):
                   1141:                        /* FALLTHROUGH */
                   1142:                case (MDOC_Enum):
                   1143:                        /* FALLTHROUGH */
                   1144:                case (MDOC_Hyphen):
                   1145:                        /* FALLTHROUGH */
                   1146:                case (MDOC_Item):
1.71      kristaps 1147:                        type = n->args->argv[i].arg;
1.47      kristaps 1148:                        break;
1.25      kristaps 1149:                case (MDOC_Column):
1.71      kristaps 1150:                        type = n->args->argv[i].arg;
                   1151:                        cols = (int)n->args->argv[i].sz;
1.25      kristaps 1152:                        break;
                   1153:                default:
                   1154:                        break;
                   1155:                }
                   1156:
1.71      kristaps 1157:        if (-1 == type)
                   1158:                return(merr(mdoc, ELISTTYPE));
1.25      kristaps 1159:
1.71      kristaps 1160:        switch (type) {
                   1161:        case (MDOC_Tag):
                   1162:                if (NULL == mdoc->last->head->child)
                   1163:                        if ( ! mwarn(mdoc, WLINE))
                   1164:                                return(0);
                   1165:                break;
                   1166:        case (MDOC_Hang):
                   1167:                /* FALLTHROUGH */
                   1168:        case (MDOC_Ohang):
                   1169:                /* FALLTHROUGH */
                   1170:        case (MDOC_Inset):
                   1171:                /* FALLTHROUGH */
                   1172:        case (MDOC_Diag):
                   1173:                if (NULL == mdoc->last->head->child)
                   1174:                        if ( ! mwarn(mdoc, WLINE))
1.25      kristaps 1175:                                return(0);
1.71      kristaps 1176:                if (NULL == mdoc->last->body->child)
                   1177:                        if ( ! mwarn(mdoc, WMULTILINE))
1.25      kristaps 1178:                                return(0);
1.71      kristaps 1179:                break;
                   1180:        case (MDOC_Bullet):
                   1181:                /* FALLTHROUGH */
                   1182:        case (MDOC_Dash):
                   1183:                /* FALLTHROUGH */
                   1184:        case (MDOC_Enum):
                   1185:                /* FALLTHROUGH */
                   1186:        case (MDOC_Hyphen):
                   1187:                /* FALLTHROUGH */
                   1188:        case (MDOC_Item):
                   1189:                if (mdoc->last->head->child)
                   1190:                        if ( ! mwarn(mdoc, WNOLINE))
1.47      kristaps 1191:                                return(0);
1.71      kristaps 1192:                if (NULL == mdoc->last->body->child)
                   1193:                        if ( ! mwarn(mdoc, WMULTILINE))
1.47      kristaps 1194:                                return(0);
1.71      kristaps 1195:                break;
                   1196:        case (MDOC_Column):
                   1197:                if (NULL == mdoc->last->head->child)
                   1198:                        if ( ! mwarn(mdoc, WLINE))
1.47      kristaps 1199:                                return(0);
1.71      kristaps 1200:                if (mdoc->last->body->child)
                   1201:                        if ( ! mwarn(mdoc, WNOMULTILINE))
1.47      kristaps 1202:                                return(0);
1.81      kristaps 1203:                c = mdoc->last->child;
1.80      kristaps 1204:                for (i = 0; c && MDOC_HEAD == c->type; c = c->next)
1.71      kristaps 1205:                        i++;
                   1206:                if (i == cols)
                   1207:                        break;
1.81      kristaps 1208:                return(mdoc_err(mdoc, "column mismatch (have "
                   1209:                                        "%d, want %d)", i, cols));
1.71      kristaps 1210:        default:
                   1211:                break;
1.25      kristaps 1212:        }
                   1213:
1.71      kristaps 1214:        return(1);
1.25      kristaps 1215: }
                   1216:
                   1217:
1.24      kristaps 1218: static int
1.55      kristaps 1219: post_bl(POST_ARGS)
1.24      kristaps 1220: {
1.53      kristaps 1221:        struct mdoc_node        *n;
1.24      kristaps 1222:
                   1223:        if (MDOC_BODY != mdoc->last->type)
                   1224:                return(1);
1.71      kristaps 1225:        if (NULL == mdoc->last->child)
1.64      kristaps 1226:                return(1);
                   1227:
1.38      kristaps 1228:        /* LINTED */
1.24      kristaps 1229:        for (n = mdoc->last->child; n; n = n->next) {
                   1230:                if (MDOC_BLOCK == n->type)
1.25      kristaps 1231:                        if (MDOC_It == n->tok)
1.24      kristaps 1232:                                continue;
1.64      kristaps 1233:                return(mdoc_nerr(mdoc, n, "bad child of parent %s",
                   1234:                                mdoc_macronames[mdoc->last->tok]));
1.24      kristaps 1235:        }
1.53      kristaps 1236:
1.64      kristaps 1237:        return(1);
1.24      kristaps 1238: }
                   1239:
                   1240:
1.34      kristaps 1241: static int
1.37      kristaps 1242: ebool(struct mdoc *mdoc)
1.34      kristaps 1243: {
                   1244:        struct mdoc_node *n;
                   1245:
1.38      kristaps 1246:        /* LINTED */
1.34      kristaps 1247:        for (n = mdoc->last->child; n; n = n->next) {
                   1248:                if (MDOC_TEXT != n->type)
                   1249:                        break;
1.71      kristaps 1250:                if (xstrcmp(n->string, "on"))
1.34      kristaps 1251:                        continue;
1.71      kristaps 1252:                if (xstrcmp(n->string, "off"))
1.34      kristaps 1253:                        continue;
                   1254:                break;
                   1255:        }
1.53      kristaps 1256:
1.34      kristaps 1257:        if (NULL == n)
                   1258:                return(1);
1.71      kristaps 1259:        return(nerr(mdoc, n, EBOOL));
1.37      kristaps 1260: }
                   1261:
                   1262:
                   1263: static int
1.55      kristaps 1264: post_root(POST_ARGS)
1.37      kristaps 1265: {
                   1266:
1.46      kristaps 1267:        if (NULL == mdoc->first->child)
1.71      kristaps 1268:                return(merr(mdoc, ENODATA));
1.46      kristaps 1269:        if (SEC_PROLOGUE == mdoc->lastnamed)
1.71      kristaps 1270:                return(merr(mdoc, ENOPROLOGUE));
1.53      kristaps 1271:
1.46      kristaps 1272:        if (MDOC_BLOCK != mdoc->first->child->type)
1.71      kristaps 1273:                return(merr(mdoc, ENODATA));
1.46      kristaps 1274:        if (MDOC_Sh != mdoc->first->child->tok)
1.71      kristaps 1275:                return(merr(mdoc, ENODATA));
1.53      kristaps 1276:
1.37      kristaps 1277:        return(1);
1.34      kristaps 1278: }
                   1279:
                   1280:
1.20      kristaps 1281: static int
1.69      kristaps 1282: post_st(POST_ARGS)
                   1283: {
                   1284:
1.71      kristaps 1285:        if (mdoc_a2st(mdoc->last->child->string))
1.69      kristaps 1286:                return(1);
1.71      kristaps 1287:        return(mwarn(mdoc, WBADSTAND));
1.69      kristaps 1288: }
                   1289:
                   1290:
                   1291: static int
1.55      kristaps 1292: post_sh(POST_ARGS)
1.14      kristaps 1293: {
1.46      kristaps 1294:
                   1295:        if (MDOC_HEAD == mdoc->last->type)
                   1296:                return(post_sh_head(mdoc));
                   1297:        if (MDOC_BODY == mdoc->last->type)
                   1298:                return(post_sh_body(mdoc));
1.53      kristaps 1299:
1.46      kristaps 1300:        return(1);
                   1301: }
                   1302:
                   1303:
                   1304: static int
1.55      kristaps 1305: post_sh_body(POST_ARGS)
1.46      kristaps 1306: {
                   1307:        struct mdoc_node *n;
                   1308:
                   1309:        if (SEC_NAME != mdoc->lastnamed)
                   1310:                return(1);
                   1311:
1.51      kristaps 1312:        /*
                   1313:         * Warn if the NAME section doesn't contain the `Nm' and `Nd'
                   1314:         * macros (can have multiple `Nm' and one `Nd').  Note that the
                   1315:         * children of the BODY declaration can also be "text".
                   1316:         */
                   1317:
1.46      kristaps 1318:        if (NULL == (n = mdoc->last->child))
1.71      kristaps 1319:                return(mwarn(mdoc, WNAMESECINC));
1.51      kristaps 1320:
                   1321:        for ( ; n && n->next; n = n->next) {
                   1322:                if (MDOC_ELEM == n->type && MDOC_Nm == n->tok)
                   1323:                        continue;
                   1324:                if (MDOC_TEXT == n->type)
                   1325:                        continue;
1.71      kristaps 1326:                if ( ! mwarn(mdoc, WNAMESECINC))
1.51      kristaps 1327:                        return(0);
                   1328:        }
                   1329:
                   1330:        if (MDOC_ELEM == n->type && MDOC_Nd == n->tok)
1.46      kristaps 1331:                return(1);
1.71      kristaps 1332:        return(mwarn(mdoc, WNAMESECINC));
1.46      kristaps 1333: }
                   1334:
                   1335:
                   1336: static int
1.55      kristaps 1337: post_sh_head(POST_ARGS)
1.46      kristaps 1338: {
1.36      kristaps 1339:        char              buf[64];
1.21      kristaps 1340:        enum mdoc_sec     sec;
                   1341:
1.69      kristaps 1342:        /*
                   1343:         * Process a new section.  Sections are either "named" or
                   1344:         * "custom"; custom sections are user-defined, while named ones
                   1345:         * usually follow a conventional order and may only appear in
                   1346:         * certain manual sections.
                   1347:         */
                   1348:
1.25      kristaps 1349:        assert(MDOC_Sh == mdoc->last->tok);
1.21      kristaps 1350:
1.69      kristaps 1351:        (void)xstrlcpys(buf, mdoc->last->child, sizeof(buf));
1.14      kristaps 1352:
1.46      kristaps 1353:        sec = mdoc_atosec(buf);
                   1354:
1.69      kristaps 1355:        /* The NAME section should always be first. */
                   1356:
1.46      kristaps 1357:        if (SEC_BODY == mdoc->lastnamed && SEC_NAME != sec)
1.71      kristaps 1358:                return(mwarn(mdoc, WSECOOO));
1.46      kristaps 1359:        if (SEC_CUSTOM == sec)
1.21      kristaps 1360:                return(1);
1.69      kristaps 1361:
                   1362:        /* Check for repeated or out-of-order sections. */
                   1363:
1.46      kristaps 1364:        if (sec == mdoc->lastnamed)
1.71      kristaps 1365:                return(mwarn(mdoc, WSECREP));
1.46      kristaps 1366:        if (sec < mdoc->lastnamed)
1.71      kristaps 1367:                return(mwarn(mdoc, WSECOOO));
1.69      kristaps 1368:
                   1369:        /* Check particular section/manual section conventions. */
                   1370:
                   1371:        switch (sec) {
                   1372:        case (SEC_LIBRARY):
                   1373:                switch (mdoc->meta.msec) {
                   1374:                case (2):
                   1375:                        /* FALLTHROUGH */
                   1376:                case (3):
                   1377:                        break;
                   1378:                default:
1.71      kristaps 1379:                        return(mwarn(mdoc, WWRONGMSEC));
1.69      kristaps 1380:                }
                   1381:                break;
                   1382:        default:
                   1383:                break;
                   1384:        }
1.46      kristaps 1385:
                   1386:        return(1);
1.11      kristaps 1387: }
                   1388:
                   1389:
1.57      kristaps 1390: static int
1.69      kristaps 1391: pre_fd(PRE_ARGS)
1.11      kristaps 1392: {
1.39      kristaps 1393:
1.69      kristaps 1394:        return(check_sec(mdoc, n, SEC_SYNOPSIS, SEC_CUSTOM));
1.11      kristaps 1395: }

CVSweb