Skip to content

Commit 5f8b551

Browse files
tytsogregkh
authored andcommitted
ext4: fix deadlock when converting an inline directory in nojournal mode
commit f4ce24f upstream. In no journal mode, ext4_finish_convert_inline_dir() can self-deadlock by calling ext4_handle_dirty_dirblock() when it already has taken the directory lock. There is a similar self-deadlock in ext4_incvert_inline_data_nolock() for data files which we'll fix at the same time. A simple reproducer demonstrating the problem: mke2fs -Fq -t ext2 -O inline_data -b 4k /dev/vdc 64 mount -t ext4 -o dirsync /dev/vdc /vdc cd /vdc mkdir file0 cd file0 touch file0 touch file1 attr -s BurnSpaceInEA -V abcde . touch supercalifragilisticexpialidocious Cc: stable@kernel.org Link: https://lore.kernel.org/r/20230507021608.1290720-1-tytso@mit.edu Reported-by: syzbot+91dccab7c64e2850a4e5@syzkaller.appspotmail.com Link: https://syzkaller.appspot.com/bug?id=ba84cc80a9491d65416bc7877e1650c87530fe8a Signed-off-by: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 37c69da commit 5f8b551

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

fs/ext4/inline.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1172,6 +1172,7 @@ static int ext4_finish_convert_inline_dir(handle_t *handle,
11721172
ext4_initialize_dirent_tail(dir_block,
11731173
inode->i_sb->s_blocksize);
11741174
set_buffer_uptodate(dir_block);
1175+
unlock_buffer(dir_block);
11751176
err = ext4_handle_dirty_dirblock(handle, inode, dir_block);
11761177
if (err)
11771178
return err;
@@ -1245,14 +1246,14 @@ static int ext4_convert_inline_data_nolock(handle_t *handle,
12451246
if (!S_ISDIR(inode->i_mode)) {
12461247
memcpy(data_bh->b_data, buf, inline_size);
12471248
set_buffer_uptodate(data_bh);
1249+
unlock_buffer(data_bh);
12481250
error = ext4_handle_dirty_metadata(handle,
12491251
inode, data_bh);
12501252
} else {
12511253
error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
12521254
buf, inline_size);
12531255
}
12541256

1255-
unlock_buffer(data_bh);
12561257
out_restore:
12571258
if (error)
12581259
ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);

0 commit comments

Comments
 (0)