From d04d93f783533612e20326b7b6ea5958eb5fcdc6 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 22 Jan 2009 16:10:36 -0800 Subject: [PATCH] Fix logic error in try_chown - we shouldn't arbitrarily chown to ourselves unless that was passed in. Jeremy. --- source/smbd/posix_acls.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index 0598384663b..97c3f823796 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -3197,6 +3197,15 @@ int try_chown(connection_struct *conn, const char *fname, uid_t uid, gid_t gid) return -1; } + /* only allow chown to the current user. This is more secure, + and also copes with the case where the SID in a take ownership ACL is + a local SID on the users workstation + */ + if (uid != current_user.ut.uid) { + errno = EPERM; + return -1; + } + if (SMB_VFS_STAT(conn,fname,&st)) { return -1; } @@ -3205,12 +3214,6 @@ int try_chown(connection_struct *conn, const char *fname, uid_t uid, gid_t gid) return -1; } - /* only allow chown to the current user. This is more secure, - and also copes with the case where the SID in a take ownership ACL is - a local SID on the users workstation - */ - uid = current_user.ut.uid; - become_root(); /* Keep the current file gid the same. */ ret = SMB_VFS_FCHOWN(fsp, uid, (gid_t)-1); -- 2.11.4.GIT