]> git.armaanb.net Git - opendoas.git/blobdiff - doas.c
a few cleanups and simplifications possible now that static pw is gone. noted by...
[opendoas.git] / doas.c
diff --git a/doas.c b/doas.c
index a32713623b29bfe54c5ca07415ab1d53b12546cd..1fd0e9a9c455ab62e32b738019cc2f3fbb14a947 100644 (file)
--- a/doas.c
+++ b/doas.c
@@ -234,6 +234,7 @@ authuser(char *myname, char *login_style, int persist)
                errx(1, "a tty is required");
        }
        if (!auth_userresponse(as, response, 0)) {
+               explicit_bzero(rbuf, sizeof(rbuf));
                syslog(LOG_AUTHPRIV | LOG_NOTICE,
                    "failed auth for %s", myname);
                errx(1, "Authorization failed");
@@ -258,14 +259,19 @@ main(int argc, char **argv)
        char *sh;
        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];
@@ -332,11 +338,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");
@@ -345,9 +364,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;
@@ -378,61 +395,67 @@ 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
        }
 
+# ifdef __OpenBSD__
        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_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");
@@ -454,7 +477,7 @@ 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);