Skip to content

Commit f2f26b4

Browse files
konisakpm00
authored andcommitted
nilfs2: fix failure to detect DAT corruption in btree and direct mappings
Patch series "nilfs2: fix kernel bug at submit_bh_wbc()". This resolves a kernel BUG reported by syzbot. Since there are two flaws involved, I've made each one a separate patch. The first patch alone resolves the syzbot-reported bug, but I think both fixes should be sent to stable, so I've tagged them as such. This patch (of 2): Syzbot has reported a kernel bug in submit_bh_wbc() when writing file data to a nilfs2 file system whose metadata is corrupted. There are two flaws involved in this issue. The first flaw is that when nilfs_get_block() locates a data block using btree or direct mapping, if the disk address translation routine nilfs_dat_translate() fails with internal code -ENOENT due to DAT metadata corruption, it can be passed back to nilfs_get_block(). This causes nilfs_get_block() to misidentify an existing block as non-existent, causing both data block lookup and insertion to fail inconsistently. The second flaw is that nilfs_get_block() returns a successful status in this inconsistent state. This causes the caller __block_write_begin_int() or others to request a read even though the buffer is not mapped, resulting in a BUG_ON check for the BH_Mapped flag in submit_bh_wbc() failing. This fixes the first issue by changing the return value to code -EINVAL when a conversion using DAT fails with code -ENOENT, avoiding the conflicting condition that leads to the kernel bug described above. Here, code -EINVAL indicates that metadata corruption was detected during the block lookup, which will be properly handled as a file system error and converted to -EIO when passing through the nilfs2 bmap layer. Link: https://lkml.kernel.org/r/20240313105827.5296-1-konishi.ryusuke@gmail.com Link: https://lkml.kernel.org/r/20240313105827.5296-2-konishi.ryusuke@gmail.com Fixes: c3a7abf ("nilfs2: support contiguous lookup of blocks") Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com> Reported-by: syzbot+cfed5b56649bddf80d6e@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=cfed5b56649bddf80d6e Tested-by: Ryusuke Konishi <konishi.ryusuke@gmail.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent 41e296f commit f2f26b4

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

fs/nilfs2/btree.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ static int nilfs_btree_lookup_contig(const struct nilfs_bmap *btree,
724724
dat = nilfs_bmap_get_dat(btree);
725725
ret = nilfs_dat_translate(dat, ptr, &blocknr);
726726
if (ret < 0)
727-
goto out;
727+
goto dat_error;
728728
ptr = blocknr;
729729
}
730730
cnt = 1;
@@ -743,7 +743,7 @@ static int nilfs_btree_lookup_contig(const struct nilfs_bmap *btree,
743743
if (dat) {
744744
ret = nilfs_dat_translate(dat, ptr2, &blocknr);
745745
if (ret < 0)
746-
goto out;
746+
goto dat_error;
747747
ptr2 = blocknr;
748748
}
749749
if (ptr2 != ptr + cnt || ++cnt == maxblocks)
@@ -781,6 +781,11 @@ static int nilfs_btree_lookup_contig(const struct nilfs_bmap *btree,
781781
out:
782782
nilfs_btree_free_path(path);
783783
return ret;
784+
785+
dat_error:
786+
if (ret == -ENOENT)
787+
ret = -EINVAL; /* Notify bmap layer of metadata corruption */
788+
goto out;
784789
}
785790

786791
static void nilfs_btree_promote_key(struct nilfs_bmap *btree,

fs/nilfs2/direct.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ static int nilfs_direct_lookup_contig(const struct nilfs_bmap *direct,
6666
dat = nilfs_bmap_get_dat(direct);
6767
ret = nilfs_dat_translate(dat, ptr, &blocknr);
6868
if (ret < 0)
69-
return ret;
69+
goto dat_error;
7070
ptr = blocknr;
7171
}
7272

@@ -79,14 +79,19 @@ static int nilfs_direct_lookup_contig(const struct nilfs_bmap *direct,
7979
if (dat) {
8080
ret = nilfs_dat_translate(dat, ptr2, &blocknr);
8181
if (ret < 0)
82-
return ret;
82+
goto dat_error;
8383
ptr2 = blocknr;
8484
}
8585
if (ptr2 != ptr + cnt)
8686
break;
8787
}
8888
*ptrp = ptr;
8989
return cnt;
90+
91+
dat_error:
92+
if (ret == -ENOENT)
93+
ret = -EINVAL; /* Notify bmap layer of metadata corruption */
94+
return ret;
9095
}
9196

9297
static __u64

0 commit comments

Comments
 (0)