Before this patch, btrfs check can only repair bad free space cache inode mode (as it was the first case detected by tree-checker and reported)
But Murphy is always right, what may happen will finally happen, we have users reporting bad inode mode in subvolume trees. According to the creation time, it looks like some older kernel around 2014 is causing the problem. Although the reported get the fs fixed by removing the offending old files, it's still a bad thing that "btrfs check" can't fix it. This patch will bring the repair functionality to all inodes, along with needed test image. The core complexity is in how to determine the correct imode. This patch will use the following methods to determine the correct imode: - INODE_REF Do a DIR_INDEX/ITEM search to find a valid filetype then convert it to imode. If it works, this should be the most reliable method. - DIR_INDEX/DIR_ITEM belong to this inode Then this inode must be a directory. - EXTENT_DATA This inode can be a regular file or soft link. We default to regular file so user can inspect the content to do further correction. - rdev of INODE_ITEM If all above fails, and the INODE_ITEM has non-zero rdev, this inode must be either BLK or CHR. We default to BLK for this case. - Error out if nothing matches This is to be 100% sure that we won't further corrupt the fs. Changelog: v2: - Implement INODE_REF based imode lookup functionality - Instead of defaulting to REG, error out if no imode can be found To avoid corrupting the fs. v3: - Fix two missing "found = true" in two branches - Update commit message to show the repair flow and its limitation - Fix coding style on (ret > 0) handling, to make it more explicit - Make original mode repair more friendly to repair_inode_nlinks() This involves the repair timing change and release path from reset_imode() - Update test case image to contain more complex corruption Not only regular imode corruption, but also combined with missing INODE_REF/DIR_ITEM/DIR_INDEX to test extra imode detection methods. Qu Wenruo (6): btrfs-progs: check: Export btrfs_type_to_imode btrfs-progs: check/common: Introduce a function to find imode using info from INODE_REF item btrfs-progs: check/common: Make repair_imode_common() to handle inodes in subvolume trees btrfs-progs: check/lowmem: Repair bad imode early btrfs-progs: check/original: Fix inode mode in subvolume trees btrfs-progs: tests/fsck: Add new images for inode mode repair functionality check/main.c | 56 ++-- check/mode-common.c | 262 +++++++++++++++++- check/mode-common.h | 17 ++ check/mode-lowmem.c | 39 +++ .../039-bad-inode-mode/.lowmem_repairable | 0 .../bad_free_space_cache_imode.raw.xz} | Bin .../bad_imodes_in_subvolume_tree.img.xz | Bin 0 -> 2956 bytes 7 files changed, 335 insertions(+), 39 deletions(-) create mode 100644 tests/fsck-tests/039-bad-inode-mode/.lowmem_repairable rename tests/fsck-tests/{039-bad-free-space-cache-inode-mode/test.raw.xz => 039-bad-inode-mode/bad_free_space_cache_imode.raw.xz} (100%) create mode 100644 tests/fsck-tests/039-bad-inode-mode/bad_imodes_in_subvolume_tree.img.xz -- 2.23.0