X-Git-Url: https://git.armaanb.net/?a=blobdiff_plain;f=doas.c;h=28954ecb6c7aee7a3db12ebf871a6e5e00782528;hb=025db698803cbd722444ba2745ead9a5c51efcb4;hp=6223aff219168fa87f9a38909f9f072535114c21;hpb=37bd6612bdffabe6d8a588b391bd353c39497abb;p=opendoas.git diff --git a/doas.c b/doas.c index 6223aff..28954ec 100644 --- a/doas.c +++ b/doas.c @@ -257,16 +257,22 @@ main(int argc, char **argv) const char *confpath = NULL; char *shargv[] = { NULL, NULL }; char *sh; + const char *p; const char *cmd; char cmdline[LINE_MAX]; - char myname[_PW_NAME_LEN + 1]; - struct passwd *pw; +#ifdef __OpenBSD__ + char mypwbuf[_PW_BUF_LEN], targpwbuf[_PW_BUF_LEN]; +#else + char *mypwbuf = NULL, *targpwbuf = NULL; +#endif + struct passwd mypwstore, targpwstore; + struct passwd *mypw, *targpw; const struct rule *rule; uid_t uid; uid_t target = 0; gid_t groups[NGROUPS_MAX + 1]; int ngroups; - int i, ch; + int i, ch, rv; int sflag = 0; int nflag = 0; char cwdpath[PATH_MAX]; @@ -333,11 +339,24 @@ main(int argc, char **argv) } else if ((!sflag && !argc) || (sflag && argc)) usage(); - pw = getpwuid(uid); - if (!pw) - err(1, "getpwuid failed"); - if (strlcpy(myname, pw->pw_name, sizeof(myname)) >= sizeof(myname)) - errx(1, "pw_name too long"); +#ifdef __OpenBSD__ + rv = getpwuid_r(uid, &mypwstore, mypwbuf, sizeof(mypwbuf), &mypw); + if (rv != 0) + err(1, "getpwuid_r failed"); +#else + for (size_t sz = 1024; sz <= 16*1024; sz *= 2) { + mypwbuf = reallocarray(mypwbuf, sz, sizeof (char)); + if (mypwbuf == NULL) + errx(1, "can't allocate mypwbuf"); + rv = getpwuid_r(uid, &mypwstore, mypwbuf, sz, &mypw); + if (rv != ERANGE) + break; + } + if (rv != 0) + err(1, "getpwuid_r failed"); +#endif + if (mypw == NULL) + errx(1, "no passwd entry for self"); ngroups = getgroups(NGROUPS_MAX, groups); if (ngroups == -1) err(1, "can't get groups"); @@ -346,9 +365,7 @@ main(int argc, char **argv) if (sflag) { sh = getenv("SHELL"); if (sh == NULL || *sh == '\0') { - shargv[0] = strdup(pw->pw_shell); - if (shargv[0] == NULL) - err(1, NULL); + shargv[0] = mypw->pw_shell; } else shargv[0] = sh; argv = shargv; @@ -379,61 +396,85 @@ main(int argc, char **argv) if (!permit(uid, groups, ngroups, &rule, target, cmd, (const char **)argv + 1)) { syslog(LOG_AUTHPRIV | LOG_NOTICE, - "failed command for %s: %s", myname, cmdline); + "failed command for %s: %s", mypw->pw_name, cmdline); errc(1, EPERM, NULL); } -#if defined(__OpenBSD__) +#if defined(__OpenBSD__) || defined(USE_SHADOW) if (!(rule->options & NOPASS)) { if (nflag) errx(1, "Authorization required"); - authuser(myname, login_style, rule->options & PERSIST); +# ifdef __OpenBSD__ + authuser(mypw->pw_name, login_style, rule->options & PERSIST); +# else + shadowauth(mypw->pw_name, rule->options & PERSIST); +# endif } + if ((p = getenv("PATH")) != NULL) + formerpath = strdup(p); + if (formerpath == NULL) + formerpath = ""; + +# ifdef __OpenBSD__ + if (unveil(_PATH_LOGIN_CONF, "r") == -1 || + unveil(_PATH_LOGIN_CONF ".db", "r") == -1) + err(1, "unveil"); +# endif + if (rule->cmd) { + if (setenv("PATH", safepath, 1) == -1) + err(1, "failed to set PATH '%s'", safepath); + } +# ifdef __OpenBSD__ + if (unveilcommands(getenv("PATH"), cmd) == 0) + goto fail; + if (pledge("stdio rpath getpw exec id", NULL) == -1) err(1, "pledge"); +# endif - pw = getpwuid(target); - if (!pw) - errx(1, "no passwd entry for target"); - -#elif defined(USE_SHADOW) +#elif !defined(USE_PAM) + (void) nflag; if (!(rule->options & NOPASS)) { - if (nflag) - errx(1, "Authorization required"); - - shadowauth(myname, rule->options & PERSIST); + errx(1, "Authorization required"); } +#endif /* !(__OpenBSD__ || USE_SHADOW) && !USE_PAM */ - pw = getpwuid(target); - if (!pw) - errx(1, "no passwd entry for target"); - -#elif defined(USE_PAM) - pw = getpwuid(target); - if (!pw) +#ifdef __OpenBSD__ + rv = getpwuid_r(target, &targpwstore, targpwbuf, sizeof(targpwbuf), &targpw); + if (rv != 0) errx(1, "no passwd entry for target"); - - pamauth(pw->pw_name, myname, !nflag, rule->options & NOPASS, - rule->options & PERSIST); - #else - (void) nflag; - if (!(rule->options & NOPASS)) { - errx(1, "Authorization required"); + for (size_t sz = 1024; sz <= 16*1024; sz *= 2) { + targpwbuf = reallocarray(targpwbuf, sz, sizeof (char)); + if (targpwbuf == NULL) + errx(1, "can't allocate targpwbuf"); + rv = getpwuid_r(target, &targpwstore, targpwbuf, sz, &targpw); + if (rv != ERANGE) + break; } + if (rv != 0) + err(1, "getpwuid_r failed"); +#endif + if (targpw == NULL) + err(1, "getpwuid_r failed"); + +#if defined(USE_PAM) + pamauth(targpw->pw_name, mypw->pw_name, !nflag, rule->options & NOPASS, + rule->options & PERSIST); #endif #ifdef HAVE_SETUSERCONTEXT - if (setusercontext(NULL, pw, target, LOGIN_SETGROUP | + if (setusercontext(NULL, targpw, target, LOGIN_SETGROUP | + LOGIN_SETPATH | LOGIN_SETPRIORITY | LOGIN_SETRESOURCES | LOGIN_SETUMASK | LOGIN_SETUSER) != 0) errx(1, "failed to set user context for target"); #else - if (setresgid(pw->pw_gid, pw->pw_gid, pw->pw_gid) != 0) + if (setresgid(targpw->pw_gid, targpw->pw_gid, targpw->pw_gid) != 0) err(1, "setresgid"); - if (initgroups(pw->pw_name, pw->pw_gid) != 0) + if (initgroups(targpw->pw_name, targpw->pw_gid) != 0) err(1, "initgroups"); if (setresuid(target, target, target) != 0) err(1, "setresuid"); @@ -455,11 +496,12 @@ main(int argc, char **argv) #endif syslog(LOG_AUTHPRIV | LOG_INFO, "%s ran command %s as %s from %s", - myname, cmdline, pw->pw_name, cwd); + mypw->pw_name, cmdline, targpw->pw_name, cwd); - envp = prepenv(rule); + envp = prepenv(rule, mypw, targpw); if (rule->cmd) { + /* do this again after setusercontext reset it */ if (setenv("PATH", safepath, 1) == -1) err(1, "failed to set PATH '%s'", safepath); }