- (djm) [session.c] FreeBSD needs setusercontext(..., LOGIN_SETUMASK) to
occur after UID switch; patch from John Marshall via des AT des.no; ok dtucker@
This commit is contained in:
parent
f4db77d766
commit
5852840190
|
@ -4,6 +4,9 @@
|
|||
des.no
|
||||
- (djm) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
|
||||
Add a usleep replacement for platforms that lack it; ok dtucker
|
||||
- (djm) [session.c] FreeBSD needs setusercontext(..., LOGIN_SETUMASK) to
|
||||
occur after UID switch; patch from John Marshall via des AT des.no;
|
||||
ok dtucker@
|
||||
|
||||
20120312
|
||||
- (dtucker) [regress/Makefile regress/cipher-speed.sh regress/test-exec.sh]
|
||||
|
|
|
@ -1520,6 +1520,11 @@ do_setusercontext(struct passwd *pw)
|
|||
perror("unable to set user context (setuser)");
|
||||
exit(1);
|
||||
}
|
||||
/*
|
||||
* FreeBSD's setusercontext() will not apply the user's
|
||||
* own umask setting unless running with the user's UID.
|
||||
*/
|
||||
(void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
|
||||
#else
|
||||
/* Permanently switch to the desired uid. */
|
||||
permanently_set_uid(pw);
|
||||
|
|
Loading…
Reference in New Issue