From: Christian Brauner <brauner@kernel.org>
To: syzbot <syzbot+c18de0ad13d62f18469d@syzkaller.appspotmail.com>
Cc: Liam.Howlett@oracle.com, akpm@linux-foundation.org,
david@kernel.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org, ljs@kernel.org, mhocko@suse.com,
rppt@kernel.org, surenb@google.com,
syzkaller-bugs@googlegroups.com, vbabka@kernel.org
Subject: Re: [syzbot] [mm?] KMSAN: uninit-value in copy_from_kernel_nofault
Date: Mon, 16 Mar 2026 12:58:39 +0100 [thread overview]
Message-ID: <20260316-fachtagung-gelitten-17389c00b6c2@brauner> (raw)
In-Reply-To: <69b7d9f6.050a0220.248e02.0112.GAE@google.com>
On Mon, Mar 16, 2026 at 03:22:46AM -0700, syzbot wrote:
> Hello,
>
> syzbot found the following issue on:
>
> HEAD commit: 80234b5ab240 Merge tag 'rproc-v7.0-fixes' of git://git.ker..
> git tree: upstream
> console output: https://syzkaller.appspot.com/x/log.txt?x=1474cd52580000
> kernel config: https://syzkaller.appspot.com/x/.config?x=242f02fcd3fbc8f3
> dashboard link: https://syzkaller.appspot.com/bug?extid=c18de0ad13d62f18469d
> compiler: Debian clang version 21.1.8 (++20251221033036+2078da43e25a-1~exp1~20251221153213.50), Debian LLD 21.1.8
> userspace arch: i386
>
> Unfortunately, I don't have any reproducer for this issue yet.
>
> Downloadable assets:
> disk image: https://storage.googleapis.com/syzbot-assets/a0d037332dff/disk-80234b5a.raw.xz
> vmlinux: https://storage.googleapis.com/syzbot-assets/0a1f7f8b54f8/vmlinux-80234b5a.xz
> kernel image: https://storage.googleapis.com/syzbot-assets/83eb68ee6421/bzImage-80234b5a.xz
>
> IMPORTANT: if you fix the issue, please add the following tag to the commit:
> Reported-by: syzbot+c18de0ad13d62f18469d@syzkaller.appspotmail.com
>
> =====================================================
> BUG: KMSAN: uninit-value in copy_from_kernel_nofault+0x15f/0x570 mm/maccess.c:41
> copy_from_kernel_nofault+0x15f/0x570 mm/maccess.c:41
> prepend_copy fs/d_path.c:50 [inline]
> prepend fs/d_path.c:76 [inline]
> prepend_name fs/d_path.c:101 [inline]
> __prepend_path fs/d_path.c:133 [inline]
> prepend_path+0x64e/0x1090 fs/d_path.c:172
I think this might just be KMSAN not being able to deal with seqlocks
appropriately?
dentry->d_shortname.string[DNAME_INLINE_LEN-1] = 0;
is initialized with a zero byte at the end instead of:
memset(&dentry->d_shortname, 0, sizeof(dentry->d_shortname));
which would prevent that warning. But that's zeroing 40 bytes vs one and
the dache is fast-fast-fast.
prepend_path() detects the initialization race via rename_lock seqlock
and retries d_absolute_path(). So this is entirely harmless and works
correct.
next prev parent reply other threads:[~2026-03-16 11:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-16 10:22 syzbot
2026-03-16 11:58 ` Christian Brauner [this message]
2026-03-16 12:44 ` vbabka
2026-03-16 14:36 ` Alexander Potapenko
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=20260316-fachtagung-gelitten-17389c00b6c2@brauner \
--to=brauner@kernel.org \
--cc=Liam.Howlett@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=david@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=mhocko@suse.com \
--cc=rppt@kernel.org \
--cc=surenb@google.com \
--cc=syzbot+c18de0ad13d62f18469d@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=vbabka@kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox