projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bec1bea
)
ext4: fix possible double unlock when moving a directory
author
Theodore Ts'o
<tytso@mit.edu>
Sat, 18 Mar 2023 01:53:52 +0000
(21:53 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 22 Mar 2023 12:31:31 +0000
(13:31 +0100)
commit
70e42feab2e20618ddd0cbfc4ab4b08628236ecd
upstream.
Fixes: 0813299c586b ("ext4: Fix possible corruption when moving a directory")
Link:
https://lore.kernel.org/r/5efbe1b9-ad8b-4a4f-b422-24824d2b775c@kili.mountain
Reported-by: Dan Carpenter <error27@gmail.com>
Reported-by: syzbot+0c73d1d8b952c5f3d714@syzkaller.appspotmail.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/namei.c
patch
|
blob
|
history
diff --git
a/fs/ext4/namei.c
b/fs/ext4/namei.c
index c79c61002a62055614640ee80f93006b96dfcfb9..0c47e1e3cba435383b8a950ac1e91ae80fc112c9 100644
(file)
--- a/
fs/ext4/namei.c
+++ b/
fs/ext4/namei.c
@@
-3898,10
+3898,8
@@
static int ext4_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
goto end_rename;
}
retval = ext4_rename_dir_prepare(handle, &old);
- if (retval) {
- inode_unlock(old.inode);
+ if (retval)
goto end_rename;
- }
}
/*
* If we're renaming a file within an inline_data dir and adding or