Skip to content

Commit 514d748

Browse files
jankaraAl Viro
authored andcommitted
ufs: Fix possible deadlock when looking up directories
Commit e4502c6 (ufs: deal with nfsd/iget races) made ufs create inodes with I_NEW flag set. However ufs_mkdir() never cleared this flag. Thus if someone ever tried to lookup the directory by inode number, he would deadlock waiting for I_NEW to be cleared. Luckily this mostly happens only if the filesystem is exported over NFS since otherwise we have the inode attached to dentry and don't look it up by inode number. In rare cases dentry can get freed without inode being freed and then we'd hit the deadlock even without NFS export. Fix the problem by clearing I_NEW before instantiating new directory inode. Fixes: e4502c6 Reported-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
1 parent 12ecbb4 commit 514d748

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fs/ufs/namei.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ static int ufs_mkdir(struct inode * dir, struct dentry * dentry, umode_t mode)
212212
goto out_fail;
213213
unlock_ufs(dir->i_sb);
214214

215+
unlock_new_inode(inode);
215216
d_instantiate(dentry, inode);
216217
out:
217218
return err;

0 commit comments

Comments
 (0)