Skip to content

Commit f50733b

Browse files
committed
exec: Fix ToCToU between perm check and set-uid/gid usage
When opening a file for exec via do_filp_open(), permission checking is done against the file's metadata at that moment, and on success, a file pointer is passed back. Much later in the execve() code path, the file metadata (specifically mode, uid, and gid) is used to determine if/how to set the uid and gid. However, those values may have changed since the permissions check, meaning the execution may gain unintended privileges. For example, if a file could change permissions from executable and not set-id: ---------x 1 root root 16048 Aug 7 13:16 target to set-id and non-executable: ---S------ 1 root root 16048 Aug 7 13:16 target it is possible to gain root privileges when execution should have been disallowed. While this race condition is rare in real-world scenarios, it has been observed (and proven exploitable) when package managers are updating the setuid bits of installed programs. Such files start with being world-executable but then are adjusted to be group-exec with a set-uid bit. For example, "chmod o-x,u+s target" makes "target" executable only by uid "root" and gid "cdrom", while also becoming setuid-root: -rwxr-xr-x 1 root cdrom 16048 Aug 7 13:16 target becomes: -rwsr-xr-- 1 root cdrom 16048 Aug 7 13:16 target But racing the chmod means users without group "cdrom" membership can get the permission to execute "target" just before the chmod, and when the chmod finishes, the exec reaches brpm_fill_uid(), and performs the setuid to root, violating the expressed authorization of "only cdrom group members can setuid to root". Re-check that we still have execute permissions in case the metadata has changed. It would be better to keep a copy from the perm-check time, but until we can do that refactoring, the least-bad option is to do a full inode_permission() call (under inode lock). It is understood that this is safe against dead-locks, but hardly optimal. Reported-by: Marco Vanotti <[email protected]> Tested-by: Marco Vanotti <[email protected]> Suggested-by: Linus Torvalds <[email protected]> Cc: [email protected] Cc: Eric Biederman <[email protected]> Cc: Alexander Viro <[email protected]> Cc: Christian Brauner <[email protected]> Signed-off-by: Kees Cook <[email protected]>
1 parent 3eb3cd5 commit f50733b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

fs/exec.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1692,6 +1692,7 @@ static void bprm_fill_uid(struct linux_binprm *bprm, struct file *file)
16921692
unsigned int mode;
16931693
vfsuid_t vfsuid;
16941694
vfsgid_t vfsgid;
1695+
int err;
16951696

16961697
if (!mnt_may_suid(file->f_path.mnt))
16971698
return;
@@ -1708,12 +1709,17 @@ static void bprm_fill_uid(struct linux_binprm *bprm, struct file *file)
17081709
/* Be careful if suid/sgid is set */
17091710
inode_lock(inode);
17101711

1711-
/* reload atomically mode/uid/gid now that lock held */
1712+
/* Atomically reload and check mode/uid/gid now that lock held. */
17121713
mode = inode->i_mode;
17131714
vfsuid = i_uid_into_vfsuid(idmap, inode);
17141715
vfsgid = i_gid_into_vfsgid(idmap, inode);
1716+
err = inode_permission(idmap, inode, MAY_EXEC);
17151717
inode_unlock(inode);
17161718

1719+
/* Did the exec bit vanish out from under us? Give up. */
1720+
if (err)
1721+
return;
1722+
17171723
/* We ignore suid/sgid if there are no mappings for them in the ns */
17181724
if (!vfsuid_has_mapping(bprm->cred->user_ns, vfsuid) ||
17191725
!vfsgid_has_mapping(bprm->cred->user_ns, vfsgid))

0 commit comments

Comments
 (0)