nilfs2: initialize unused bytes in segment summary blocks
authorRyusuke Konishi <konishi.ryusuke@gmail.com>
Mon, 17 Apr 2023 17:35:13 +0000 (02:35 +0900)
committerAndrew Morton <akpm@linux-foundation.org>
Tue, 18 Apr 2023 21:22:14 +0000 (14:22 -0700)
commitef832747a82dfbc22a3702219cc716f449b24e4a
tree9f7983f90ebc9036bdf586af79c57f80ebf19269
parent4d73ba5fa710fe7d432e0b271e6fecd252aef66e
nilfs2: initialize unused bytes in segment summary blocks

Syzbot still reports uninit-value in nilfs_add_checksums_on_logs() for
KMSAN enabled kernels after applying commit 7397031622e0 ("nilfs2:
initialize "struct nilfs_binfo_dat"->bi_pad field").

This is because the unused bytes at the end of each block in segment
summaries are not initialized.  So this fixes the issue by padding the
unused bytes with null bytes.

Link: https://lkml.kernel.org/r/20230417173513.12598-1-konishi.ryusuke@gmail.com
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Tested-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Reported-by: syzbot+048585f3f4227bb2b49b@syzkaller.appspotmail.com
Link: https://syzkaller.appspot.com/bug?extid=048585f3f4227bb2b49b
Cc: Alexander Potapenko <glider@google.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/nilfs2/segment.c