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

Annotation of mandoc/manpath.c, Revision 1.42

1.42    ! schwarze    1: /*     $Id: manpath.c,v 1.41 2020/02/10 14:42:10 schwarze Exp $ */
1.1       kristaps    2: /*
1.40      schwarze    3:  * Copyright (c) 2011,2014,2015,2017-2019 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    4:  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
                      5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
1.22      schwarze   10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
1.1       kristaps   11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1.22      schwarze   12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
1.1       kristaps   13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
                     18: #include "config.h"
1.16      schwarze   19:
                     20: #include <sys/types.h>
1.18      schwarze   21: #include <sys/stat.h>
1.1       kristaps   22:
                     23: #include <ctype.h>
1.40      schwarze   24: #include <errno.h>
1.1       kristaps   25: #include <limits.h>
                     26: #include <stdio.h>
                     27: #include <stdlib.h>
                     28: #include <string.h>
                     29:
1.13      schwarze   30: #include "mandoc_aux.h"
1.40      schwarze   31: #include "mandoc.h"
1.23      schwarze   32: #include "manconf.h"
1.1       kristaps   33:
1.23      schwarze   34: static void     manconf_file(struct manconf *, const char *);
1.40      schwarze   35: static void     manpath_add(struct manpaths *, const char *, char);
                     36: static void     manpath_parseline(struct manpaths *, char *, char);
1.1       kristaps   37:
1.23      schwarze   38:
1.1       kristaps   39: void
1.23      schwarze   40: manconf_parse(struct manconf *conf, const char *file,
1.5       schwarze   41:                char *defp, char *auxp)
1.1       kristaps   42: {
1.8       kristaps   43:        char            *insert;
1.4       schwarze   44:
1.8       kristaps   45:        /* Always prepend -m. */
1.40      schwarze   46:        manpath_parseline(&conf->manpath, auxp, 'm');
1.10      schwarze   47:
1.8       kristaps   48:        /* If -M is given, it overrides everything else. */
                     49:        if (NULL != defp) {
1.40      schwarze   50:                manpath_parseline(&conf->manpath, defp, 'M');
1.8       kristaps   51:                return;
                     52:        }
1.1       kristaps   53:
1.8       kristaps   54:        /* MANPATH and man.conf(5) cooperate. */
                     55:        defp = getenv("MANPATH");
                     56:        if (NULL == file)
                     57:                file = MAN_CONF_FILE;
                     58:
                     59:        /* No MANPATH; use man.conf(5) only. */
                     60:        if (NULL == defp || '\0' == defp[0]) {
1.23      schwarze   61:                manconf_file(conf, file);
1.8       kristaps   62:                return;
                     63:        }
                     64:
                     65:        /* Prepend man.conf(5) to MANPATH. */
                     66:        if (':' == defp[0]) {
1.23      schwarze   67:                manconf_file(conf, file);
1.40      schwarze   68:                manpath_parseline(&conf->manpath, defp, '\0');
1.8       kristaps   69:                return;
                     70:        }
                     71:
                     72:        /* Append man.conf(5) to MANPATH. */
1.9       kristaps   73:        if (':' == defp[strlen(defp) - 1]) {
1.40      schwarze   74:                manpath_parseline(&conf->manpath, defp, '\0');
1.23      schwarze   75:                manconf_file(conf, file);
1.8       kristaps   76:                return;
                     77:        }
                     78:
                     79:        /* Insert man.conf(5) into MANPATH. */
                     80:        insert = strstr(defp, "::");
                     81:        if (NULL != insert) {
                     82:                *insert++ = '\0';
1.40      schwarze   83:                manpath_parseline(&conf->manpath, defp, '\0');
1.23      schwarze   84:                manconf_file(conf, file);
1.40      schwarze   85:                manpath_parseline(&conf->manpath, insert + 1, '\0');
1.8       kristaps   86:                return;
                     87:        }
                     88:
                     89:        /* MANPATH overrides man.conf(5) completely. */
1.40      schwarze   90:        manpath_parseline(&conf->manpath, defp, '\0');
1.35      schwarze   91: }
                     92:
                     93: void
                     94: manpath_base(struct manpaths *dirs)
                     95: {
                     96:        char path_base[] = MANPATH_BASE;
1.40      schwarze   97:        manpath_parseline(dirs, path_base, '\0');
1.1       kristaps   98: }
                     99:
                    100: /*
                    101:  * Parse a FULL pathname from a colon-separated list of arrays.
                    102:  */
1.6       kristaps  103: static void
1.40      schwarze  104: manpath_parseline(struct manpaths *dirs, char *path, char option)
1.1       kristaps  105: {
                    106:        char    *dir;
                    107:
                    108:        if (NULL == path)
                    109:                return;
                    110:
                    111:        for (dir = strtok(path, ":"); dir; dir = strtok(NULL, ":"))
1.40      schwarze  112:                manpath_add(dirs, dir, option);
1.1       kristaps  113: }
                    114:
                    115: /*
                    116:  * Add a directory to the array, ignoring bad directories.
                    117:  * Grow the array one-by-one for simplicity's sake.
                    118:  */
                    119: static void
1.40      schwarze  120: manpath_add(struct manpaths *dirs, const char *dir, char option)
1.1       kristaps  121: {
                    122:        char             buf[PATH_MAX];
1.18      schwarze  123:        struct stat      sb;
1.1       kristaps  124:        char            *cp;
1.9       kristaps  125:        size_t           i;
1.1       kristaps  126:
1.40      schwarze  127:        if ((cp = realpath(dir, buf)) == NULL)
                    128:                goto fail;
1.1       kristaps  129:
                    130:        for (i = 0; i < dirs->sz; i++)
1.40      schwarze  131:                if (strcmp(dirs->paths[i], dir) == 0)
1.1       kristaps  132:                        return;
                    133:
1.40      schwarze  134:        if (stat(cp, &sb) == -1)
                    135:                goto fail;
1.18      schwarze  136:
1.15      schwarze  137:        dirs->paths = mandoc_reallocarray(dirs->paths,
1.40      schwarze  138:            dirs->sz + 1, sizeof(*dirs->paths));
                    139:        dirs->paths[dirs->sz++] = mandoc_strdup(cp);
                    140:        return;
1.1       kristaps  141:
1.40      schwarze  142: fail:
                    143:        if (option != '\0')
                    144:                mandoc_msg(MANDOCERR_BADARG_BAD, 0, 0,
                    145:                    "-%c %s: %s", option, dir, strerror(errno));
1.2       kristaps  146: }
                    147:
                    148: void
1.23      schwarze  149: manconf_free(struct manconf *conf)
1.2       kristaps  150: {
1.9       kristaps  151:        size_t           i;
1.2       kristaps  152:
1.23      schwarze  153:        for (i = 0; i < conf->manpath.sz; i++)
                    154:                free(conf->manpath.paths[i]);
1.2       kristaps  155:
1.23      schwarze  156:        free(conf->manpath.paths);
                    157:        free(conf->output.includes);
                    158:        free(conf->output.man);
                    159:        free(conf->output.paper);
                    160:        free(conf->output.style);
1.2       kristaps  161: }
                    162:
1.23      schwarze  163: static void
                    164: manconf_file(struct manconf *conf, const char *file)
1.2       kristaps  165: {
1.41      schwarze  166:        const char *const toks[] = { "manpath", "output" };
1.25      schwarze  167:        char manpath_default[] = MANPATH_DEFAULT;
1.22      schwarze  168:
1.2       kristaps  169:        FILE            *stream;
1.29      schwarze  170:        char            *line, *cp, *ep;
                    171:        size_t           linesz, tok, toklen;
                    172:        ssize_t          linelen;
1.1       kristaps  173:
1.22      schwarze  174:        if ((stream = fopen(file, "r")) == NULL)
1.25      schwarze  175:                goto out;
1.1       kristaps  176:
1.29      schwarze  177:        line = NULL;
                    178:        linesz = 0;
                    179:
                    180:        while ((linelen = getline(&line, &linesz, stream)) != -1) {
                    181:                cp = line;
1.30      schwarze  182:                ep = cp + linelen - 1;
                    183:                while (ep > cp && isspace((unsigned char)*ep))
                    184:                        *ep-- = '\0';
1.22      schwarze  185:                while (isspace((unsigned char)*cp))
                    186:                        cp++;
1.30      schwarze  187:                if (cp == ep || *cp == '#')
1.1       kristaps  188:                        continue;
1.22      schwarze  189:
                    190:                for (tok = 0; tok < sizeof(toks)/sizeof(toks[0]); tok++) {
1.29      schwarze  191:                        toklen = strlen(toks[tok]);
                    192:                        if (cp + toklen < ep &&
                    193:                            isspace((unsigned char)cp[toklen]) &&
                    194:                            strncmp(cp, toks[tok], toklen) == 0) {
                    195:                                cp += toklen;
1.22      schwarze  196:                                while (isspace((unsigned char)*cp))
                    197:                                        cp++;
                    198:                                break;
                    199:                        }
                    200:                }
                    201:
                    202:                switch (tok) {
                    203:                case 0:  /* manpath */
1.40      schwarze  204:                        manpath_add(&conf->manpath, cp, '\0');
1.25      schwarze  205:                        *manpath_default = '\0';
1.23      schwarze  206:                        break;
                    207:                case 1:  /* output */
1.32      schwarze  208:                        manconf_output(&conf->output, cp, 1);
1.22      schwarze  209:                        break;
                    210:                default:
                    211:                        break;
                    212:                }
1.1       kristaps  213:        }
1.29      schwarze  214:        free(line);
1.25      schwarze  215:        fclose(stream);
1.1       kristaps  216:
1.25      schwarze  217: out:
                    218:        if (*manpath_default != '\0')
1.40      schwarze  219:                manpath_parseline(&conf->manpath, manpath_default, '\0');
1.23      schwarze  220: }
                    221:
1.32      schwarze  222: int
                    223: manconf_output(struct manoutput *conf, const char *cp, int fromfile)
1.23      schwarze  224: {
                    225:        const char *const toks[] = {
1.37      schwarze  226:            "includes", "man", "paper", "style", "indent", "width",
1.42    ! schwarze  227:            "tag", "outfilename", "tagfilename",
        !           228:            "fragment", "mdoc", "noval", "toc"
1.23      schwarze  229:        };
1.38      schwarze  230:        const size_t ntoks = sizeof(toks) / sizeof(toks[0]);
1.23      schwarze  231:
1.32      schwarze  232:        const char      *errstr;
                    233:        char            *oldval;
                    234:        size_t           len, tok;
1.23      schwarze  235:
1.38      schwarze  236:        for (tok = 0; tok < ntoks; tok++) {
1.23      schwarze  237:                len = strlen(toks[tok]);
1.40      schwarze  238:                if (strncmp(cp, toks[tok], len) == 0 &&
1.23      schwarze  239:                    strchr(" =  ", cp[len]) != NULL) {
                    240:                        cp += len;
                    241:                        if (*cp == '=')
                    242:                                cp++;
                    243:                        while (isspace((unsigned char)*cp))
                    244:                                cp++;
                    245:                        break;
                    246:                }
                    247:        }
                    248:
1.42    ! schwarze  249:        if (tok < 8 && *cp == '\0') {
1.40      schwarze  250:                mandoc_msg(MANDOCERR_BADVAL_MISS, 0, 0, "-O %s=?", toks[tok]);
1.32      schwarze  251:                return -1;
                    252:        }
1.42    ! schwarze  253:        if (tok > 8 && tok < ntoks && *cp != '\0') {
1.40      schwarze  254:                mandoc_msg(MANDOCERR_BADVAL, 0, 0, "-O %s=%s", toks[tok], cp);
1.32      schwarze  255:                return -1;
                    256:        }
1.23      schwarze  257:
                    258:        switch (tok) {
                    259:        case 0:
1.32      schwarze  260:                if (conf->includes != NULL) {
                    261:                        oldval = mandoc_strdup(conf->includes);
                    262:                        break;
                    263:                }
                    264:                conf->includes = mandoc_strdup(cp);
                    265:                return 0;
1.23      schwarze  266:        case 1:
1.32      schwarze  267:                if (conf->man != NULL) {
                    268:                        oldval = mandoc_strdup(conf->man);
                    269:                        break;
                    270:                }
                    271:                conf->man = mandoc_strdup(cp);
                    272:                return 0;
1.23      schwarze  273:        case 2:
1.32      schwarze  274:                if (conf->paper != NULL) {
                    275:                        oldval = mandoc_strdup(conf->paper);
                    276:                        break;
                    277:                }
                    278:                conf->paper = mandoc_strdup(cp);
                    279:                return 0;
1.23      schwarze  280:        case 3:
1.32      schwarze  281:                if (conf->style != NULL) {
                    282:                        oldval = mandoc_strdup(conf->style);
                    283:                        break;
                    284:                }
                    285:                conf->style = mandoc_strdup(cp);
                    286:                return 0;
1.23      schwarze  287:        case 4:
1.32      schwarze  288:                if (conf->indent) {
                    289:                        mandoc_asprintf(&oldval, "%zu", conf->indent);
                    290:                        break;
                    291:                }
                    292:                conf->indent = strtonum(cp, 0, 1000, &errstr);
                    293:                if (errstr == NULL)
                    294:                        return 0;
1.40      schwarze  295:                mandoc_msg(MANDOCERR_BADVAL_BAD, 0, 0,
                    296:                    "-O indent=%s is %s", cp, errstr);
1.32      schwarze  297:                return -1;
1.23      schwarze  298:        case 5:
1.32      schwarze  299:                if (conf->width) {
                    300:                        mandoc_asprintf(&oldval, "%zu", conf->width);
                    301:                        break;
                    302:                }
1.34      schwarze  303:                conf->width = strtonum(cp, 1, 1000, &errstr);
1.32      schwarze  304:                if (errstr == NULL)
                    305:                        return 0;
1.40      schwarze  306:                mandoc_msg(MANDOCERR_BADVAL_BAD, 0, 0,
                    307:                    "-O width=%s is %s", cp, errstr);
1.32      schwarze  308:                return -1;
1.23      schwarze  309:        case 6:
1.37      schwarze  310:                if (conf->tag != NULL) {
                    311:                        oldval = mandoc_strdup(conf->tag);
                    312:                        break;
                    313:                }
                    314:                conf->tag = mandoc_strdup(cp);
                    315:                return 0;
                    316:        case 7:
1.42    ! schwarze  317:                if (conf->outfilename != NULL) {
        !           318:                        oldval = mandoc_strdup(conf->outfilename);
        !           319:                        break;
        !           320:                }
        !           321:                conf->outfilename = mandoc_strdup(cp);
        !           322:                return 0;
        !           323:        case 8:
        !           324:                if (conf->tagfilename != NULL) {
        !           325:                        oldval = mandoc_strdup(conf->tagfilename);
        !           326:                        break;
        !           327:                }
        !           328:                conf->tagfilename = mandoc_strdup(cp);
        !           329:                return 0;
        !           330:        case 9:
1.23      schwarze  331:                conf->fragment = 1;
1.32      schwarze  332:                return 0;
1.42    ! schwarze  333:        case 10:
1.23      schwarze  334:                conf->mdoc = 1;
1.33      schwarze  335:                return 0;
1.42    ! schwarze  336:        case 11:
1.33      schwarze  337:                conf->noval = 1;
1.36      schwarze  338:                return 0;
1.42    ! schwarze  339:        case 12:
1.36      schwarze  340:                conf->toc = 1;
1.32      schwarze  341:                return 0;
1.23      schwarze  342:        default:
1.40      schwarze  343:                mandoc_msg(MANDOCERR_BADARG_BAD, 0, 0, "-O %s", cp);
                    344:                return -1;
                    345:        }
                    346:        if (fromfile) {
                    347:                free(oldval);
                    348:                return 0;
                    349:        } else {
                    350:                mandoc_msg(MANDOCERR_BADVAL_DUPE, 0, 0,
                    351:                    "-O %s=%s: already set to %s", toks[tok], cp, oldval);
                    352:                free(oldval);
1.32      schwarze  353:                return -1;
1.23      schwarze  354:        }
1.1       kristaps  355: }

CVSweb