aboutsummaryrefslogtreecommitdiffstats
path: root/fs/udf
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2018-05-04 08:23:01 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2018-05-11 15:36:37 -0400
commit1e2e547a93a00ebc21582c06ca3c6cfea2a309ee (patch)
treee31468774e0543997a15daa0409ef79a02d1438c /fs/udf
parentd7760d638b140d53c6390a2fbee9b06460b43e9e (diff)
do d_instantiate/unlock_new_inode combinations safely
For anything NFS-exported we do _not_ want to unlock new inode before it has grown an alias; original set of fixes got the ordering right, but missed the nasty complication in case of lockdep being enabled - unlock_new_inode() does lockdep_annotate_inode_mutex_key(inode) which can only be done before anyone gets a chance to touch ->i_mutex. Unfortunately, flipping the order and doing unlock_new_inode() before d_instantiate() opens a window when mkdir can race with open-by-fhandle on a guessed fhandle, leading to multiple aliases for a directory inode and all the breakage that follows from that. Correct solution: a new primitive (d_instantiate_new()) combining these two in the right order - lockdep annotate, then d_instantiate(), then the rest of unlock_new_inode(). All combinations of d_instantiate() with unlock_new_inode() should be converted to that. Cc: stable@kernel.org # 2.6.29 and later Tested-by: Mike Marshall <hubcap@omnibond.com> Reviewed-by: Andreas Dilger <adilger@dilger.ca> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/udf')
-rw-r--r--fs/udf/namei.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/udf/namei.c b/fs/udf/namei.c
index 0458dd47e105..c586026508db 100644
--- a/fs/udf/namei.c
+++ b/fs/udf/namei.c
@@ -622,8 +622,7 @@ static int udf_add_nondir(struct dentry *dentry, struct inode *inode)
622 if (fibh.sbh != fibh.ebh) 622 if (fibh.sbh != fibh.ebh)
623 brelse(fibh.ebh); 623 brelse(fibh.ebh);
624 brelse(fibh.sbh); 624 brelse(fibh.sbh);
625 unlock_new_inode(inode); 625 d_instantiate_new(dentry, inode);
626 d_instantiate(dentry, inode);
627 626
628 return 0; 627 return 0;
629} 628}
@@ -733,8 +732,7 @@ static int udf_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
733 inc_nlink(dir); 732 inc_nlink(dir);
734 dir->i_ctime = dir->i_mtime = current_time(dir); 733 dir->i_ctime = dir->i_mtime = current_time(dir);
735 mark_inode_dirty(dir); 734 mark_inode_dirty(dir);
736 unlock_new_inode(inode); 735 d_instantiate_new(dentry, inode);
737 d_instantiate(dentry, inode);
738 if (fibh.sbh != fibh.ebh) 736 if (fibh.sbh != fibh.ebh)
739 brelse(fibh.ebh); 737 brelse(fibh.ebh);
740 brelse(fibh.sbh); 738 brelse(fibh.sbh);