[BACK]Return to doas.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / doas

Annotation of src/usr.bin/doas/doas.c, Revision 1.74

1.74    ! tedu        1: /* $OpenBSD: doas.c,v 1.73 2018/08/08 18:32:51 deraadt Exp $ */
1.1       tedu        2: /*
                      3:  * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org>
                      4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
                      6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
                      8:  *
                      9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     16:  */
1.6       nicm       17:
1.1       tedu       18: #include <sys/types.h>
1.6       nicm       19: #include <sys/stat.h>
1.63      tedu       20: #include <sys/ioctl.h>
1.1       tedu       21:
                     22: #include <limits.h>
                     23: #include <login_cap.h>
                     24: #include <bsd_auth.h>
1.46      tedu       25: #include <readpassphrase.h>
1.1       tedu       26: #include <string.h>
                     27: #include <stdio.h>
                     28: #include <stdlib.h>
                     29: #include <err.h>
                     30: #include <unistd.h>
                     31: #include <pwd.h>
                     32: #include <grp.h>
                     33: #include <syslog.h>
1.10      tedu       34: #include <errno.h>
1.63      tedu       35: #include <fcntl.h>
1.1       tedu       36:
                     37: #include "doas.h"
                     38:
                     39: static void __dead
                     40: usage(void)
                     41: {
1.63      tedu       42:        fprintf(stderr, "usage: doas [-Lns] [-a style] [-C config] [-u user]"
1.47      sthen      43:            " command [args]\n");
1.1       tedu       44:        exit(1);
                     45: }
                     46:
                     47: static int
                     48: parseuid(const char *s, uid_t *uid)
                     49: {
                     50:        struct passwd *pw;
                     51:        const char *errstr;
                     52:
                     53:        if ((pw = getpwnam(s)) != NULL) {
                     54:                *uid = pw->pw_uid;
                     55:                return 0;
                     56:        }
                     57:        *uid = strtonum(s, 0, UID_MAX, &errstr);
                     58:        if (errstr)
                     59:                return -1;
                     60:        return 0;
                     61: }
                     62:
                     63: static int
                     64: uidcheck(const char *s, uid_t desired)
                     65: {
                     66:        uid_t uid;
                     67:
                     68:        if (parseuid(s, &uid) != 0)
                     69:                return -1;
                     70:        if (uid != desired)
                     71:                return -1;
                     72:        return 0;
                     73: }
                     74:
1.33      tedu       75: static int
                     76: parsegid(const char *s, gid_t *gid)
1.1       tedu       77: {
                     78:        struct group *gr;
                     79:        const char *errstr;
                     80:
1.33      tedu       81:        if ((gr = getgrnam(s)) != NULL) {
                     82:                *gid = gr->gr_gid;
                     83:                return 0;
                     84:        }
                     85:        *gid = strtonum(s, 0, GID_MAX, &errstr);
1.1       tedu       86:        if (errstr)
                     87:                return -1;
1.33      tedu       88:        return 0;
1.1       tedu       89: }
                     90:
                     91: static int
                     92: match(uid_t uid, gid_t *groups, int ngroups, uid_t target, const char *cmd,
1.15      zhuk       93:     const char **cmdargs, struct rule *r)
1.1       tedu       94: {
                     95:        int i;
                     96:
                     97:        if (r->ident[0] == ':') {
1.33      tedu       98:                gid_t rgid;
                     99:                if (parsegid(r->ident + 1, &rgid) == -1)
1.1       tedu      100:                        return 0;
                    101:                for (i = 0; i < ngroups; i++) {
                    102:                        if (rgid == groups[i])
                    103:                                break;
                    104:                }
                    105:                if (i == ngroups)
                    106:                        return 0;
                    107:        } else {
                    108:                if (uidcheck(r->ident, uid) != 0)
                    109:                        return 0;
                    110:        }
                    111:        if (r->target && uidcheck(r->target, target) != 0)
                    112:                return 0;
1.15      zhuk      113:        if (r->cmd) {
                    114:                if (strcmp(r->cmd, cmd))
                    115:                        return 0;
                    116:                if (r->cmdargs) {
                    117:                        /* if arguments were given, they should match explicitly */
                    118:                        for (i = 0; r->cmdargs[i]; i++) {
                    119:                                if (!cmdargs[i])
                    120:                                        return 0;
                    121:                                if (strcmp(r->cmdargs[i], cmdargs[i]))
                    122:                                        return 0;
                    123:                        }
                    124:                        if (cmdargs[i])
                    125:                                return 0;
                    126:                }
                    127:        }
1.1       tedu      128:        return 1;
                    129: }
                    130:
                    131: static int
1.71      tedu      132: permit(uid_t uid, gid_t *groups, int ngroups, const struct rule **lastr,
1.15      zhuk      133:     uid_t target, const char *cmd, const char **cmdargs)
1.1       tedu      134: {
                    135:        int i;
                    136:
                    137:        *lastr = NULL;
                    138:        for (i = 0; i < nrules; i++) {
1.31      deraadt   139:                if (match(uid, groups, ngroups, target, cmd,
                    140:                    cmdargs, rules[i]))
1.1       tedu      141:                        *lastr = rules[i];
                    142:        }
                    143:        if (!*lastr)
                    144:                return 0;
                    145:        return (*lastr)->action == PERMIT;
                    146: }
                    147:
                    148: static void
1.22      zhuk      149: parseconfig(const char *filename, int checkperms)
1.1       tedu      150: {
                    151:        extern FILE *yyfp;
1.67      tedu      152:        extern int yyparse(void);
1.6       nicm      153:        struct stat sb;
1.1       tedu      154:
                    155:        yyfp = fopen(filename, "r");
1.36      espie     156:        if (!yyfp)
                    157:                err(1, checkperms ? "doas is not enabled, %s" :
                    158:                    "could not open config file %s", filename);
1.6       nicm      159:
1.22      zhuk      160:        if (checkperms) {
                    161:                if (fstat(fileno(yyfp), &sb) != 0)
                    162:                        err(1, "fstat(\"%s\")", filename);
                    163:                if ((sb.st_mode & (S_IWGRP|S_IWOTH)) != 0)
                    164:                        errx(1, "%s is writable by group or other", filename);
                    165:                if (sb.st_uid != 0)
                    166:                        errx(1, "%s is not owned by root", filename);
                    167:        }
1.6       nicm      168:
1.68      tb        169:        yyparse();
1.1       tedu      170:        fclose(yyfp);
1.21      zhuk      171:        if (parse_errors)
                    172:                exit(1);
1.1       tedu      173: }
                    174:
                    175: static void __dead
1.22      zhuk      176: checkconfig(const char *confpath, int argc, char **argv,
1.24      tedu      177:     uid_t uid, gid_t *groups, int ngroups, uid_t target)
                    178: {
1.71      tedu      179:        const struct rule *rule;
1.22      zhuk      180:
                    181:        setresuid(uid, uid, uid);
                    182:        parseconfig(confpath, 0);
                    183:        if (!argc)
                    184:                exit(0);
                    185:
                    186:        if (permit(uid, groups, ngroups, &rule, target, argv[0],
                    187:            (const char **)argv + 1)) {
                    188:                printf("permit%s\n", (rule->options & NOPASS) ? " nopass" : "");
1.24      tedu      189:                exit(0);
1.22      zhuk      190:        } else {
                    191:                printf("deny\n");
1.24      tedu      192:                exit(1);
1.22      zhuk      193:        }
                    194: }
                    195:
1.61      tedu      196: static void
1.63      tedu      197: authuser(char *myname, char *login_style, int persist)
1.61      tedu      198: {
                    199:        char *challenge = NULL, *response, rbuf[1024], cbuf[128];
                    200:        auth_session_t *as;
1.63      tedu      201:        int fd = -1;
                    202:
                    203:        if (persist)
                    204:                fd = open("/dev/tty", O_RDWR);
                    205:        if (fd != -1) {
                    206:                if (ioctl(fd, TIOCCHKVERAUTH) == 0)
                    207:                        goto good;
                    208:        }
1.61      tedu      209:
                    210:        if (!(as = auth_userchallenge(myname, login_style, "auth-doas",
                    211:            &challenge)))
                    212:                errx(1, "Authorization failed");
                    213:        if (!challenge) {
                    214:                char host[HOST_NAME_MAX + 1];
                    215:                if (gethostname(host, sizeof(host)))
                    216:                        snprintf(host, sizeof(host), "?");
                    217:                snprintf(cbuf, sizeof(cbuf),
                    218:                    "\rdoas (%.32s@%.32s) password: ", myname, host);
                    219:                challenge = cbuf;
                    220:        }
                    221:        response = readpassphrase(challenge, rbuf, sizeof(rbuf),
                    222:            RPP_REQUIRE_TTY);
                    223:        if (response == NULL && errno == ENOTTY) {
                    224:                syslog(LOG_AUTHPRIV | LOG_NOTICE,
                    225:                    "tty required for %s", myname);
                    226:                errx(1, "a tty is required");
                    227:        }
                    228:        if (!auth_userresponse(as, response, 0)) {
1.74    ! tedu      229:                explicit_bzero(rbuf, sizeof(rbuf));
1.61      tedu      230:                syslog(LOG_AUTHPRIV | LOG_NOTICE,
                    231:                    "failed auth for %s", myname);
1.72      tedu      232:                errx(1, "Authorization failed");
1.61      tedu      233:        }
                    234:        explicit_bzero(rbuf, sizeof(rbuf));
1.63      tedu      235: good:
                    236:        if (fd != -1) {
1.64      tedu      237:                int secs = 5 * 60;
1.63      tedu      238:                ioctl(fd, TIOCSETVERAUTH, &secs);
                    239:                close(fd);
                    240:        }
1.61      tedu      241: }
                    242:
1.1       tedu      243: int
1.73      deraadt   244: unveilcommands(const char *ipath, const char *cmd)
                    245: {
                    246:        char *path = NULL, *p;
                    247:        int unveils = 0;
                    248:
                    249:        if (strchr(cmd, '/') != NULL) {
                    250:                if (unveil(cmd, "x") != -1)
                    251:                        unveils++;
                    252:                goto done;
                    253:        }
                    254:
                    255:        if (!ipath) {
                    256:                errno = ENOENT;
                    257:                goto done;
                    258:        }
                    259:        path = strdup(ipath);
                    260:        if (!path) {
                    261:                errno = ENOENT;
                    262:                goto done;
                    263:        }
                    264:        for (p = path; p && *p; ) {
                    265:                char buf[PATH_MAX];
                    266:                char *cp = strsep(&p, ":");
                    267:
                    268:                if (cp) {
                    269:                        int r = snprintf(buf, sizeof buf, "%s/%s", cp, cmd);
                    270:                        if (r != -1 && r < sizeof buf) {
                    271:                                if (unveil(buf, "x") != -1)
                    272:                                        unveils++;
                    273:                        }
                    274:                }
                    275:        }
                    276: done:
                    277:        free(path);
                    278:        return (unveils);
                    279: }
                    280:
                    281: int
1.57      martijn   282: main(int argc, char **argv)
1.1       tedu      283: {
1.9       tedu      284:        const char *safepath = "/bin:/sbin:/usr/bin:/usr/sbin:"
                    285:            "/usr/local/bin:/usr/local/sbin";
1.22      zhuk      286:        const char *confpath = NULL;
1.9       tedu      287:        char *shargv[] = { NULL, NULL };
                    288:        char *sh;
                    289:        const char *cmd;
1.7       doug      290:        char cmdline[LINE_MAX];
                    291:        char myname[_PW_NAME_LEN + 1];
1.9       tedu      292:        struct passwd *pw;
1.71      tedu      293:        const struct rule *rule;
1.9       tedu      294:        uid_t uid;
                    295:        uid_t target = 0;
1.1       tedu      296:        gid_t groups[NGROUPS_MAX + 1];
                    297:        int ngroups;
                    298:        int i, ch;
1.8       nicm      299:        int sflag = 0;
1.26      espie     300:        int nflag = 0;
1.38      doug      301:        char cwdpath[PATH_MAX];
                    302:        const char *cwd;
1.47      sthen     303:        char *login_style = NULL;
1.57      martijn   304:        char **envp;
1.52      tedu      305:
                    306:        setprogname("doas");
1.42      tedu      307:
                    308:        closefrom(STDERR_FILENO + 1);
1.1       tedu      309:
1.26      espie     310:        uid = getuid();
1.34      tedu      311:
1.63      tedu      312:        while ((ch = getopt(argc, argv, "a:C:Lnsu:")) != -1) {
1.1       tedu      313:                switch (ch) {
1.47      sthen     314:                case 'a':
                    315:                        login_style = optarg;
                    316:                        break;
1.16      tedu      317:                case 'C':
1.22      zhuk      318:                        confpath = optarg;
                    319:                        break;
1.63      tedu      320:                case 'L':
                    321:                        i = open("/dev/tty", O_RDWR);
                    322:                        if (i != -1)
                    323:                                ioctl(i, TIOCCLRVERAUTH);
1.70      tedu      324:                        exit(i == -1);
1.1       tedu      325:                case 'u':
                    326:                        if (parseuid(optarg, &target) != 0)
                    327:                                errx(1, "unknown user");
                    328:                        break;
1.26      espie     329:                case 'n':
                    330:                        nflag = 1;
                    331:                        break;
1.8       nicm      332:                case 's':
                    333:                        sflag = 1;
                    334:                        break;
1.1       tedu      335:                default:
                    336:                        usage();
                    337:                        break;
                    338:                }
                    339:        }
                    340:        argv += optind;
                    341:        argc -= optind;
                    342:
1.22      zhuk      343:        if (confpath) {
                    344:                if (sflag)
                    345:                        usage();
                    346:        } else if ((!sflag && !argc) || (sflag && argc))
1.1       tedu      347:                usage();
1.16      tedu      348:
1.1       tedu      349:        pw = getpwuid(uid);
                    350:        if (!pw)
                    351:                err(1, "getpwuid failed");
1.7       doug      352:        if (strlcpy(myname, pw->pw_name, sizeof(myname)) >= sizeof(myname))
                    353:                errx(1, "pw_name too long");
1.1       tedu      354:        ngroups = getgroups(NGROUPS_MAX, groups);
                    355:        if (ngroups == -1)
                    356:                err(1, "can't get groups");
                    357:        groups[ngroups++] = getgid();
1.8       nicm      358:
                    359:        if (sflag) {
                    360:                sh = getenv("SHELL");
1.60      zhuk      361:                if (sh == NULL || *sh == '\0') {
                    362:                        shargv[0] = strdup(pw->pw_shell);
                    363:                        if (shargv[0] == NULL)
                    364:                                err(1, NULL);
                    365:                } else
1.8       nicm      366:                        shargv[0] = sh;
                    367:                argv = shargv;
                    368:                argc = 1;
                    369:        }
1.22      zhuk      370:
1.24      tedu      371:        if (confpath) {
                    372:                checkconfig(confpath, argc, argv, uid, groups, ngroups,
                    373:                    target);
                    374:                exit(1);        /* fail safe */
                    375:        }
1.69      tedu      376:
                    377:        if (geteuid())
                    378:                errx(1, "not installed setuid");
1.24      tedu      379:
1.22      zhuk      380:        parseconfig("/etc/doas.conf", 1);
1.8       nicm      381:
1.23      zhuk      382:        /* cmdline is used only for logging, no need to abort on truncate */
1.58      tedu      383:        (void)strlcpy(cmdline, argv[0], sizeof(cmdline));
1.8       nicm      384:        for (i = 1; i < argc; i++) {
                    385:                if (strlcat(cmdline, " ", sizeof(cmdline)) >= sizeof(cmdline))
1.23      zhuk      386:                        break;
1.8       nicm      387:                if (strlcat(cmdline, argv[i], sizeof(cmdline)) >= sizeof(cmdline))
1.23      zhuk      388:                        break;
1.8       nicm      389:        }
1.1       tedu      390:
1.23      zhuk      391:        cmd = argv[0];
1.15      zhuk      392:        if (!permit(uid, groups, ngroups, &rule, target, cmd,
1.58      tedu      393:            (const char **)argv + 1)) {
1.4       deraadt   394:                syslog(LOG_AUTHPRIV | LOG_NOTICE,
                    395:                    "failed command for %s: %s", myname, cmdline);
1.41      tedu      396:                errc(1, EPERM, NULL);
1.1       tedu      397:        }
                    398:
                    399:        if (!(rule->options & NOPASS)) {
1.26      espie     400:                if (nflag)
                    401:                        errx(1, "Authorization required");
1.46      tedu      402:
1.63      tedu      403:                authuser(myname, login_style, rule->options & PERSIST);
1.1       tedu      404:        }
1.43      deraadt   405:
1.73      deraadt   406:        if (unveil(_PATH_LOGIN_CONF, "r") == -1)
                    407:                err(1, "unveil");
                    408:        if (rule->cmd) {
                    409:                if (setenv("PATH", safepath, 1) == -1)
                    410:                        err(1, "failed to set PATH '%s'", safepath);
                    411:        }
                    412:        if (unveilcommands(getenv("PATH"), cmd) == 0)
                    413:                goto fail;
                    414:
1.43      deraadt   415:        if (pledge("stdio rpath getpw exec id", NULL) == -1)
                    416:                err(1, "pledge");
                    417:
1.1       tedu      418:        pw = getpwuid(target);
                    419:        if (!pw)
                    420:                errx(1, "no passwd entry for target");
1.43      deraadt   421:
1.1       tedu      422:        if (setusercontext(NULL, pw, target, LOGIN_SETGROUP |
                    423:            LOGIN_SETPRIORITY | LOGIN_SETRESOURCES | LOGIN_SETUMASK |
                    424:            LOGIN_SETUSER) != 0)
                    425:                errx(1, "failed to set user context for target");
                    426:
1.43      deraadt   427:        if (pledge("stdio rpath exec", NULL) == -1)
                    428:                err(1, "pledge");
                    429:
1.38      doug      430:        if (getcwd(cwdpath, sizeof(cwdpath)) == NULL)
                    431:                cwd = "(failed)";
                    432:        else
                    433:                cwd = cwdpath;
1.43      deraadt   434:
                    435:        if (pledge("stdio exec", NULL) == -1)
                    436:                err(1, "pledge");
1.38      doug      437:
                    438:        syslog(LOG_AUTHPRIV | LOG_INFO, "%s ran command %s as %s from %s",
                    439:            myname, cmdline, pw->pw_name, cwd);
1.44      tedu      440:
1.57      martijn   441:        envp = prepenv(rule);
1.38      doug      442:
1.1       tedu      443:        execvpe(cmd, argv, envp);
1.73      deraadt   444: fail:
1.10      tedu      445:        if (errno == ENOENT)
                    446:                errx(1, "%s: command not found", cmd);
1.1       tedu      447:        err(1, "%s", cmd);
                    448: }