X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/05dba91fcb152e1941e7f7f145b1d830c5e8f6d0..9b706433f:/uip/slocal.c?ds=inline diff --git a/uip/slocal.c b/uip/slocal.c index a807d816..fb21c880 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -34,6 +34,10 @@ #include #include +/* Hopefully, grp.h declares initgroups(). If we run into a platform + where it doesn't, we could consider declaring it here as well. */ +#include + /* This define is needed for Berkeley db v2 and above to * make the header file expose the 'historical' ndbm APIs. * We define it unconditionally because this is simple and @@ -278,6 +282,16 @@ main (int argc, char **argv) chdir ("/"); umask (0077); + if (geteuid() == 0) { + if (setgid (pw->pw_gid) != 0) { + adios ("setgid", "unable to set group to %ld", (long) pw->pw_gid); + } + initgroups (pw->pw_name, pw->pw_gid); + if (setuid (pw->pw_uid) != 0) { + adios ("setuid", "unable to set user to %ld", (long) pw->pw_uid); + } + } + if (info == NULL) info = "";