Commit a2ece088 authored by Al Viro's avatar Al Viro

exportfs_decode_fh(): negative pinned may become positive without the parent locked

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 630faf81
...@@ -519,26 +519,33 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid, ...@@ -519,26 +519,33 @@ struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
* inode is actually connected to the parent. * inode is actually connected to the parent.
*/ */
err = exportfs_get_name(mnt, target_dir, nbuf, result); err = exportfs_get_name(mnt, target_dir, nbuf, result);
if (!err) { if (err) {
dput(target_dir);
goto err_result;
}
inode_lock(target_dir->d_inode); inode_lock(target_dir->d_inode);
nresult = lookup_one_len(nbuf, target_dir, nresult = lookup_one_len(nbuf, target_dir, strlen(nbuf));
strlen(nbuf));
inode_unlock(target_dir->d_inode);
if (!IS_ERR(nresult)) { if (!IS_ERR(nresult)) {
if (nresult->d_inode) { if (unlikely(nresult->d_inode != result->d_inode)) {
dput(result);
result = nresult;
} else
dput(nresult); dput(nresult);
nresult = ERR_PTR(-ESTALE);
} }
} }
inode_unlock(target_dir->d_inode);
/* /*
* At this point we are done with the parent, but it's pinned * At this point we are done with the parent, but it's pinned
* by the child dentry anyway. * by the child dentry anyway.
*/ */
dput(target_dir); dput(target_dir);
if (IS_ERR(nresult)) {
err = PTR_ERR(nresult);
goto err_result;
}
dput(result);
result = nresult;
/* /*
* And finally make sure the dentry is actually acceptable * And finally make sure the dentry is actually acceptable
* to NFSD. * to NFSD.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment