From: Gao Xiang via Linux-erofs <linux-erofs@lists.ozlabs.org>
To: Namjae Jeon <linkinjeon@kernel.org>,
Sungjong Seo <sj1557.seo@samsung.com>,
Yuezhang Mo <yuezhang.mo@sony.com>,
syzbot <syzbot+1379ee6b9a14d5dacaf2@syzkaller.appspotmail.com>
Cc: syzkaller-bugs@googlegroups.com, linux-erofs@lists.ozlabs.org,
linux-kernel@vger.kernel.org
Subject: Re: [syzbot] [erofs?] KMSAN: uninit-value in erofs_fc_fill_super
Date: Mon, 30 Dec 2024 10:53:11 +0800 [thread overview]
Message-ID: <Z3ILF2ClX4sSA0wd@debian> (raw)
In-Reply-To: <6770fe12.050a0220.226966.00bb.GAE@google.com>
Hi exfat maintainers,
On Sat, Dec 28, 2024 at 11:45:22PM -0800, syzbot wrote:
> Hello,
>
> syzbot found the following issue on:
>
> HEAD commit: 9b2ffa6148b1 Merge tag 'mtd/fixes-for-6.13-rc5' of git://g..
> git tree: upstream
> console output: https://syzkaller.appspot.com/x/log.txt?x=112374c4580000
> kernel config: https://syzkaller.appspot.com/x/.config?x=f9048090d7bb0d06
> dashboard link: https://syzkaller.appspot.com/bug?extid=1379ee6b9a14d5dacaf2
> compiler: Debian clang version 15.0.6, GNU ld (GNU Binutils for Debian) 2.40
>
> Unfortunately, I don't have any reproducer for this issue yet.
>
> Downloadable assets:
> disk image: https://storage.googleapis.com/syzbot-assets/244f25c1a275/disk-9b2ffa61.raw.xz
> vmlinux: https://storage.googleapis.com/syzbot-assets/0d14fc6634fd/vmlinux-9b2ffa61.xz
> kernel image: https://storage.googleapis.com/syzbot-assets/cb152a4c0fd2/bzImage-9b2ffa61.xz
>
> IMPORTANT: if you fix the issue, please add the following tag to the commit:
> Reported-by: syzbot+1379ee6b9a14d5dacaf2@syzkaller.appspotmail.com
>
> exFAT-fs (loop7): failed to load upcase table (idx : 0x00010000, chksum : 0x1a9973fb, utbl_chksum : 0xe619d30d)
> =====================================================
> BUG: KMSAN: uninit-value in erofs_read_superblock fs/erofs/super.c:274 [inline]
> BUG: KMSAN: uninit-value in erofs_fc_fill_super+0x66a/0x2520 fs/erofs/super.c:614
> erofs_read_superblock fs/erofs/super.c:274 [inline]
> erofs_fc_fill_super+0x66a/0x2520 fs/erofs/super.c:614
> vfs_get_super fs/super.c:1280 [inline]
> get_tree_nodev+0x183/0x350 fs/super.c:1299
> erofs_fc_get_tree+0x34d/0x450 fs/erofs/super.c:721
> vfs_get_tree+0xb1/0x5a0 fs/super.c:1814
> do_new_mount+0x71f/0x15e0 fs/namespace.c:3507
> path_mount+0x742/0x1f10 fs/namespace.c:3834
> do_mount fs/namespace.c:3847 [inline]
> __do_sys_mount fs/namespace.c:4057 [inline]
> __se_sys_mount+0x722/0x810 fs/namespace.c:4034
> __x64_sys_mount+0xe4/0x150 fs/namespace.c:4034
> x64_sys_call+0x39bf/0x3c30 arch/x86/include/generated/asm/syscalls_64.h:166
> do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> do_syscall_64+0xcd/0x1e0 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe+0x77/0x7f
>
> Uninit was created at:
> __alloc_pages_noprof+0x9a7/0xe00 mm/page_alloc.c:4776
> alloc_pages_mpol_noprof+0x299/0x990 mm/mempolicy.c:2269
> alloc_pages_noprof mm/mempolicy.c:2348 [inline]
> folio_alloc_noprof+0x1db/0x310 mm/mempolicy.c:2355
> filemap_alloc_folio_noprof+0xa6/0x440 mm/filemap.c:1009
> __filemap_get_folio+0xac4/0x1550 mm/filemap.c:1951
> block_write_begin+0x6e/0x2b0 fs/buffer.c:2221
> exfat_write_begin+0xfb/0x400 fs/exfat/inode.c:434
> exfat_extend_valid_size fs/exfat/file.c:553 [inline]
> exfat_file_write_iter+0x771/0x12a0 fs/exfat/file.c:598
> do_iter_readv_writev+0x88a/0xa30
> vfs_writev+0x56a/0x14f0 fs/read_write.c:1050
> do_pwritev fs/read_write.c:1146 [inline]
> __do_sys_pwritev2 fs/read_write.c:1204 [inline]
> __se_sys_pwritev2+0x262/0x460 fs/read_write.c:1195
> __x64_sys_pwritev2+0x11f/0x1a0 fs/read_write.c:1195
> x64_sys_call+0x368c/0x3c30 arch/x86/include/generated/asm/syscalls_64.h:329
> do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> do_syscall_64+0xcd/0x1e0 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe+0x77/0x7f
>
Currently, I don't think it's an EROFS issue but since it doesn't have
a valid reproducer so I don't have an exact idea.
This case is out of EROFS file-backed mount, which seems to read EROFS
superblock (erofs_read_superblock -> erofs_read_metabuf -> erofs_bread)
via exfat page cache:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/erofs/super.c?h=v6.13-rc5#n274
But it seems exfat returns an unlocked uptodate page without fully
initialized data.
I'm not sure if it's a post-EOF read for this specific regular inode,
but IMHO, at least mmap read allows post-EOF read within the same page,
so it'd be better to leave the whole page initialized on the exfat side.
I'm not sure if it's related to exfat_extend_valid_size() though.
Thanks,
Gao Xiang
WARNING: multiple messages have this Message-ID (diff)
From: Gao Xiang <xiang@kernel.org>
To: Namjae Jeon <linkinjeon@kernel.org>,
Sungjong Seo <sj1557.seo@samsung.com>,
Yuezhang Mo <yuezhang.mo@sony.com>,
syzbot <syzbot+1379ee6b9a14d5dacaf2@syzkaller.appspotmail.com>
Cc: linux-erofs@lists.ozlabs.org, linux-kernel@vger.kernel.org,
syzkaller-bugs@googlegroups.com
Subject: Re: [syzbot] [erofs?] KMSAN: uninit-value in erofs_fc_fill_super
Date: Mon, 30 Dec 2024 10:53:11 +0800 [thread overview]
Message-ID: <Z3ILF2ClX4sSA0wd@debian> (raw)
In-Reply-To: <6770fe12.050a0220.226966.00bb.GAE@google.com>
Hi exfat maintainers,
On Sat, Dec 28, 2024 at 11:45:22PM -0800, syzbot wrote:
> Hello,
>
> syzbot found the following issue on:
>
> HEAD commit: 9b2ffa6148b1 Merge tag 'mtd/fixes-for-6.13-rc5' of git://g..
> git tree: upstream
> console output: https://syzkaller.appspot.com/x/log.txt?x=112374c4580000
> kernel config: https://syzkaller.appspot.com/x/.config?x=f9048090d7bb0d06
> dashboard link: https://syzkaller.appspot.com/bug?extid=1379ee6b9a14d5dacaf2
> compiler: Debian clang version 15.0.6, GNU ld (GNU Binutils for Debian) 2.40
>
> Unfortunately, I don't have any reproducer for this issue yet.
>
> Downloadable assets:
> disk image: https://storage.googleapis.com/syzbot-assets/244f25c1a275/disk-9b2ffa61.raw.xz
> vmlinux: https://storage.googleapis.com/syzbot-assets/0d14fc6634fd/vmlinux-9b2ffa61.xz
> kernel image: https://storage.googleapis.com/syzbot-assets/cb152a4c0fd2/bzImage-9b2ffa61.xz
>
> IMPORTANT: if you fix the issue, please add the following tag to the commit:
> Reported-by: syzbot+1379ee6b9a14d5dacaf2@syzkaller.appspotmail.com
>
> exFAT-fs (loop7): failed to load upcase table (idx : 0x00010000, chksum : 0x1a9973fb, utbl_chksum : 0xe619d30d)
> =====================================================
> BUG: KMSAN: uninit-value in erofs_read_superblock fs/erofs/super.c:274 [inline]
> BUG: KMSAN: uninit-value in erofs_fc_fill_super+0x66a/0x2520 fs/erofs/super.c:614
> erofs_read_superblock fs/erofs/super.c:274 [inline]
> erofs_fc_fill_super+0x66a/0x2520 fs/erofs/super.c:614
> vfs_get_super fs/super.c:1280 [inline]
> get_tree_nodev+0x183/0x350 fs/super.c:1299
> erofs_fc_get_tree+0x34d/0x450 fs/erofs/super.c:721
> vfs_get_tree+0xb1/0x5a0 fs/super.c:1814
> do_new_mount+0x71f/0x15e0 fs/namespace.c:3507
> path_mount+0x742/0x1f10 fs/namespace.c:3834
> do_mount fs/namespace.c:3847 [inline]
> __do_sys_mount fs/namespace.c:4057 [inline]
> __se_sys_mount+0x722/0x810 fs/namespace.c:4034
> __x64_sys_mount+0xe4/0x150 fs/namespace.c:4034
> x64_sys_call+0x39bf/0x3c30 arch/x86/include/generated/asm/syscalls_64.h:166
> do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> do_syscall_64+0xcd/0x1e0 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe+0x77/0x7f
>
> Uninit was created at:
> __alloc_pages_noprof+0x9a7/0xe00 mm/page_alloc.c:4776
> alloc_pages_mpol_noprof+0x299/0x990 mm/mempolicy.c:2269
> alloc_pages_noprof mm/mempolicy.c:2348 [inline]
> folio_alloc_noprof+0x1db/0x310 mm/mempolicy.c:2355
> filemap_alloc_folio_noprof+0xa6/0x440 mm/filemap.c:1009
> __filemap_get_folio+0xac4/0x1550 mm/filemap.c:1951
> block_write_begin+0x6e/0x2b0 fs/buffer.c:2221
> exfat_write_begin+0xfb/0x400 fs/exfat/inode.c:434
> exfat_extend_valid_size fs/exfat/file.c:553 [inline]
> exfat_file_write_iter+0x771/0x12a0 fs/exfat/file.c:598
> do_iter_readv_writev+0x88a/0xa30
> vfs_writev+0x56a/0x14f0 fs/read_write.c:1050
> do_pwritev fs/read_write.c:1146 [inline]
> __do_sys_pwritev2 fs/read_write.c:1204 [inline]
> __se_sys_pwritev2+0x262/0x460 fs/read_write.c:1195
> __x64_sys_pwritev2+0x11f/0x1a0 fs/read_write.c:1195
> x64_sys_call+0x368c/0x3c30 arch/x86/include/generated/asm/syscalls_64.h:329
> do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> do_syscall_64+0xcd/0x1e0 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe+0x77/0x7f
>
Currently, I don't think it's an EROFS issue but since it doesn't have
a valid reproducer so I don't have an exact idea.
This case is out of EROFS file-backed mount, which seems to read EROFS
superblock (erofs_read_superblock -> erofs_read_metabuf -> erofs_bread)
via exfat page cache:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/erofs/super.c?h=v6.13-rc5#n274
But it seems exfat returns an unlocked uptodate page without fully
initialized data.
I'm not sure if it's a post-EOF read for this specific regular inode,
but IMHO, at least mmap read allows post-EOF read within the same page,
so it'd be better to leave the whole page initialized on the exfat side.
I'm not sure if it's related to exfat_extend_valid_size() though.
Thanks,
Gao Xiang
next prev parent reply other threads:[~2024-12-30 2:53 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-29 7:45 [syzbot] [erofs?] KMSAN: uninit-value in erofs_fc_fill_super syzbot
2024-12-30 2:53 ` Gao Xiang via Linux-erofs [this message]
2024-12-30 2:53 ` Gao Xiang
2024-12-30 4:33 ` Namjae Jeon via Linux-erofs
2024-12-30 4:33 ` Namjae Jeon
2024-12-30 6:13 ` Gao Xiang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Z3ILF2ClX4sSA0wd@debian \
--to=linux-erofs@lists.ozlabs.org \
--cc=linkinjeon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sj1557.seo@samsung.com \
--cc=syzbot+1379ee6b9a14d5dacaf2@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=xiang@kernel.org \
--cc=yuezhang.mo@sony.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.