aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/exec.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/fs/exec.c b/fs/exec.c
index 639177b0eeac..41ae8e0de72d 100644
--- a/fs/exec.c
+++ b/fs/exec.c
@@ -126,11 +126,7 @@ SYSCALL_DEFINE1(uselib, const char __user *, library)
126 if (nd.path.mnt->mnt_flags & MNT_NOEXEC) 126 if (nd.path.mnt->mnt_flags & MNT_NOEXEC)
127 goto exit; 127 goto exit;
128 128
129 error = inode_permission(nd.path.dentry->d_inode, 129 error = may_open(&nd.path, MAY_READ | MAY_EXEC | MAY_OPEN, 0);
130 MAY_READ | MAY_EXEC | MAY_OPEN);
131 if (error)
132 goto exit;
133 error = ima_path_check(&nd.path, MAY_READ | MAY_EXEC | MAY_OPEN);
134 if (error) 130 if (error)
135 goto exit; 131 goto exit;
136 132
@@ -677,10 +673,7 @@ struct file *open_exec(const char *name)
677 if (nd.path.mnt->mnt_flags & MNT_NOEXEC) 673 if (nd.path.mnt->mnt_flags & MNT_NOEXEC)
678 goto out_path_put; 674 goto out_path_put;
679 675
680 err = inode_permission(nd.path.dentry->d_inode, MAY_EXEC | MAY_OPEN); 676 err = may_open(&nd.path, MAY_EXEC | MAY_OPEN, 0);
681 if (err)
682 goto out_path_put;
683 err = ima_path_check(&nd.path, MAY_EXEC | MAY_OPEN);
684 if (err) 677 if (err)
685 goto out_path_put; 678 goto out_path_put;
686 679