summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/vfs.c
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2016-07-21 16:00:12 -0400
committerJ. Bruce Fields <bfields@redhat.com>2016-08-04 17:11:52 -0400
commitfa08139d5e02838ccabd9dcde22663d3b6780cad (patch)
treea7889d475555d0a593a536322de8d536dc772232 /fs/nfsd/vfs.c
parent71423274498169911bf9eedf02d5e7ac0a083801 (diff)
downloadop-kernel-dev-fa08139d5e02838ccabd9dcde22663d3b6780cad.zip
op-kernel-dev-fa08139d5e02838ccabd9dcde22663d3b6780cad.tar.gz
nfsd: drop unnecessary MAY_EXEC check from create
We need an fh_verify to make sure we at least have a dentry, but actual permission checks happen later. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r--fs/nfsd/vfs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
index 1809624..6666188 100644
--- a/fs/nfsd/vfs.c
+++ b/fs/nfsd/vfs.c
@@ -1236,11 +1236,7 @@ nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
if (isdotent(fname, flen))
return nfserr_exist;
- /*
- * Even though it is a create, first let's see if we are even allowed
- * to peek inside the parent
- */
- err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
+ err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
if (err)
return err;
OpenPOWER on IntegriCloud