mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-22 01:50:16 +00:00
- (tim) [platform.c session.c] Fix bug affecting SVR5 platforms introduced
with sftp chroot support. Move set_id call after chroot.
This commit is contained in:
parent
a6d573caa1
commit
9464ba6fb3
@ -5,6 +5,8 @@
|
||||
-ftrapv (it seems to work but fails when trying to link ssh). ok djm@
|
||||
- (dtucker) [aclocal.m4] Differentiate between compile-time and link-time
|
||||
tests in the configure output. ok djm.
|
||||
- (tim) [platform.c session.c] Fix bug affecting SVR5 platforms introduced
|
||||
with sftp chroot support. Move set_id call after chroot.
|
||||
|
||||
20140120
|
||||
- (dtucker) [gss-serv-krb5.c] Fall back to krb5_cc_gen_new if the Kerberos
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: platform.c,v 1.20 2013/09/22 09:02:40 dtucker Exp $ */
|
||||
/* $Id: platform.c,v 1.21 2014/01/21 01:59:29 tim Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2006 Darren Tucker. All rights reserved.
|
||||
@ -164,12 +164,6 @@ platform_setusercontext_post_groups(struct passwd *pw)
|
||||
aix_usrinfo(pw);
|
||||
#endif /* _AIX */
|
||||
|
||||
#if !defined(HAVE_LOGIN_CAP) && defined(USE_LIBIAF)
|
||||
if (set_id(pw->pw_name) != 0) {
|
||||
exit(1);
|
||||
}
|
||||
# endif /* USE_LIBIAF */
|
||||
|
||||
#ifdef HAVE_SETPCRED
|
||||
/*
|
||||
* If we have a chroot directory, we set all creds except real
|
||||
|
@ -1552,6 +1552,11 @@ do_setusercontext(struct passwd *pw)
|
||||
*/
|
||||
(void) setusercontext(lc, pw, pw->pw_uid, LOGIN_SETUMASK);
|
||||
#else
|
||||
# ifdef USE_LIBIAF
|
||||
if (set_id(pw->pw_name) != 0) {
|
||||
exit(1);
|
||||
}
|
||||
# endif /* USE_LIBIAF */
|
||||
/* Permanently switch to the desired uid. */
|
||||
permanently_set_uid(pw);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user