diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2008-07-22 00:02:33 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-07-26 20:53:30 -0400 |
commit | 30524472c2f728c20d6bf35191042a5d455c0a64 (patch) | |
tree | e9985d3883b45c4a9f5ef8185fa79c7b568bb4bd /fs/open.c | |
parent | e56b6a5dda1a36ffaa532df6f975ea324298fa4d (diff) |
[PATCH] take noexec checks to very few callers that care
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/open.c')
-rw-r--r-- | fs/open.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -461,6 +461,16 @@ asmlinkage long sys_faccessat(int dfd, const char __user *filename, int mode) | |||
461 | if (res) | 461 | if (res) |
462 | goto out; | 462 | goto out; |
463 | 463 | ||
464 | if ((mode & MAY_EXEC) && S_ISREG(nd.path.dentry->d_inode->i_mode)) { | ||
465 | /* | ||
466 | * MAY_EXEC on regular files is denied if the fs is mounted | ||
467 | * with the "noexec" flag. | ||
468 | */ | ||
469 | res = -EACCES; | ||
470 | if (nd.path.mnt->mnt_flags & MNT_NOEXEC) | ||
471 | goto out_path_release; | ||
472 | } | ||
473 | |||
464 | res = vfs_permission(&nd, mode | MAY_ACCESS); | 474 | res = vfs_permission(&nd, mode | MAY_ACCESS); |
465 | /* SuS v2 requires we report a read only fs too */ | 475 | /* SuS v2 requires we report a read only fs too */ |
466 | if(res || !(mode & S_IWOTH) || | 476 | if(res || !(mode & S_IWOTH) || |