ext4: add error checking to ext4_ext_replay_set_iblocks()

If the call to ext4_map_blocks() fails due to an corrupted file
system, ext4_ext_replay_set_iblocks() can get stuck in an infinite
loop. This could be reproduced by running generic/526 with a file
system that has inline_data and fast_commit enabled. The system will
repeatedly log to the console:

EXT4-fs warning (device dm-3): ext4_block_to_path:105: block 1074800922 > max in inode 131076

and the stack that it gets stuck in is:

ext4_block_to_path+0xe3/0x130
ext4_ind_map_blocks+0x93/0x690
ext4_map_blocks+0x100/0x660
skip_hole+0x47/0x70
ext4_ext_replay_set_iblocks+0x223/0x440
ext4_fc_replay_inode+0x29e/0x3b0
ext4_fc_replay+0x278/0x550
do_one_pass+0x646/0xc10
jbd2_journal_recover+0x14a/0x270
jbd2_journal_load+0xc4/0x150
ext4_load_journal+0x1f3/0x490
ext4_fill_super+0x22d4/0x2c00

With this patch, generic/526 still fails, but system is no longer
locking up in a tight loop. It's likely the root casue is that
fast_commit replay is corrupting file systems with inline_data, and we
probably need to add better error handling in the fast commit replay
code path beyond what is done here, which essentially just breaks the
infinite loop without reporting the to the higher levels of the code.

Fixes: 8016E29F4362 ("ext4: fast commit recovery path")
Cc: stable@kernel.org
Cc: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>

+14 -5
+14 -5
fs/ext4/extents.c
··· 5913 5913 } 5914 5914 5915 5915 /* Check if *cur is a hole and if it is, skip it */ 5916 - static void skip_hole(struct inode *inode, ext4_lblk_t *cur) 5916 + static int skip_hole(struct inode *inode, ext4_lblk_t *cur) 5917 5917 { 5918 5918 int ret; 5919 5919 struct ext4_map_blocks map; ··· 5922 5922 map.m_len = ((inode->i_size) >> inode->i_sb->s_blocksize_bits) - *cur; 5923 5923 5924 5924 ret = ext4_map_blocks(NULL, inode, &map, 0); 5925 + if (ret < 0) 5926 + return ret; 5925 5927 if (ret != 0) 5926 - return; 5928 + return 0; 5927 5929 *cur = *cur + map.m_len; 5930 + return 0; 5928 5931 } 5929 5932 5930 5933 /* Count number of blocks used by this inode and update i_blocks */ ··· 5976 5973 * iblocks by total number of differences found. 5977 5974 */ 5978 5975 cur = 0; 5979 - skip_hole(inode, &cur); 5976 + ret = skip_hole(inode, &cur); 5977 + if (ret < 0) 5978 + goto out; 5980 5979 path = ext4_find_extent(inode, cur, NULL, 0); 5981 5980 if (IS_ERR(path)) 5982 5981 goto out; ··· 5997 5992 } 5998 5993 cur = max(cur + 1, le32_to_cpu(ex->ee_block) + 5999 5994 ext4_ext_get_actual_len(ex)); 6000 - skip_hole(inode, &cur); 6001 - 5995 + ret = skip_hole(inode, &cur); 5996 + if (ret < 0) { 5997 + ext4_ext_drop_refs(path); 5998 + kfree(path); 5999 + break; 6000 + } 6002 6001 path2 = ext4_find_extent(inode, cur, NULL, 0); 6003 6002 if (IS_ERR(path2)) { 6004 6003 ext4_ext_drop_refs(path);