From: Peter Zijlstra <peterz@infradead.org>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: kernel test robot <lkp@intel.com>,
llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
linux-kernel@vger.kernel.org,
Josh Poimboeuf <jpoimboe@redhat.com>
Subject: Re: ERROR: modpost: "kmsan_handle_dma" [drivers/virtio/virtio_ring.ko] undefined!
Date: Tue, 18 Feb 2025 14:28:55 +0100 [thread overview]
Message-ID: <20250218132855.GE40464@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <20250218114857.oBuLvPYs@linutronix.de>
On Tue, Feb 18, 2025 at 12:48:57PM +0100, Sebastian Andrzej Siewior wrote:
> On 2025-02-15 06:42:36 [+0800], kernel test robot wrote:
> > >> arch/x86/kvm/cpuid.o: warning: objtool: do_cpuid_func+0x2428: undefined stack state
>
> From the assembly it seems to make sense:
> | 110ae: 49 89 e0 mov %rsp,%r8
> stash for later
> | 110b1: 48 85 db test %rbx,%rbx
> | 110b4: c7 00 00 00 00 00 movl $0x0,(%rax)
> | 110ba: 45 89 7e 14 mov %r15d,0x14(%r14)
> | 110be: 0f 85 40 01 00 00 jne 11204 <do_cpuid_func+0x22f4>
> …
> | 11204: 44 8b 74 24 38 mov 0x38(%rsp),%r14d
> | 11209: 44 89 f7 mov %r14d,%edi
> | 1120c: 4d 89 c7 mov %r8,%r15
>
> mov rsp to r15
This, objtool doesn't track this one. It only does:
mov %rsp, reg
mov reg, %rsp
I'm not entirely sure how painful it would be to teach objtool about
this case. Horrible code it is :/
> | 1120f: e8 00 00 00 00 call 11214 <do_cpuid_func+0x2304>
> | 11210: R_X86_64_PLT32 __msan_chain_origin-0x4
> | 11214: 89 c7 mov %eax,%edi
> | 11216: e8 00 00 00 00 call 1121b <do_cpuid_func+0x230b>
> | 11217: R_X86_64_PLT32 __msan_warning-0x4
> | 1121b: 44 89 f7 mov %r14d,%edi
> | 1121e: e8 00 00 00 00 call 11223 <do_cpuid_func+0x2313>
> | 1121f: R_X86_64_PLT32 __msan_chain_origin-0x4
> | 11223: 89 c7 mov %eax,%edi
> | 11225: e8 00 00 00 00 call 1122a <do_cpuid_func+0x231a>
> | 11226: R_X86_64_PLT32 __msan_warning-0x4
> | 1122a: 44 89 f7 mov %r14d,%edi
> | 1122d: e8 00 00 00 00 call 11232 <do_cpuid_func+0x2322>
> | 1122e: R_X86_64_PLT32 __msan_chain_origin-0x4
> | 11232: 89 c7 mov %eax,%edi
> | 11234: e8 00 00 00 00 call 11239 <do_cpuid_func+0x2329>
> | 11235: R_X86_64_PLT32 __msan_warning-0x4
> | 11239: 44 89 f7 mov %r14d,%edi
> | 1123c: e8 00 00 00 00 call 11241 <do_cpuid_func+0x2331>
> | 1123d: R_X86_64_PLT32 __msan_chain_origin-0x4
> | 11241: 89 c7 mov %eax,%edi
> | 11243: e8 00 00 00 00 call 11248 <do_cpuid_func+0x2338>
> | 11244: R_X86_64_PLT32 __msan_warning-0x4
> | 11248: 4c 89 ef mov %r13,%rdi
> | 1124b: 48 8b 74 24 20 mov 0x20(%rsp),%rsi
> | 11250: 4c 89 e2 mov %r12,%rdx
> | 11253: 48 8b 4c 24 08 mov 0x8(%rsp),%rcx
> | 11258: 4c 89 fc mov %r15,%rsp
>
> restore rsp. I just don't see how rsp is destroyed but this could be
> related to paravirt's xxl clobbing in__cpuid().
>
> I miss 1120c in my output. I don't understand how it jumps from 110ae to
> 1124b. It misses the assignments in between but this might not be goal
> here…
>
> gcc does not cause objtool to produce the warning but then gcc does
> shuffle rsp as much as llvm does.
>
> Sebastian
next prev parent reply other threads:[~2025-02-18 13:28 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-14 22:42 ERROR: modpost: "kmsan_handle_dma" [drivers/virtio/virtio_ring.ko] undefined! kernel test robot
2025-02-18 9:14 ` [PATCH] dma: kmsan: Export kmsan_handle_dma() for modules Sebastian Andrzej Siewior
2025-02-18 11:14 ` Alexander Potapenko
2025-02-19 0:12 ` Andrew Morton
2025-02-18 11:48 ` ERROR: modpost: "kmsan_handle_dma" [drivers/virtio/virtio_ring.ko] undefined! Sebastian Andrzej Siewior
2025-02-18 13:28 ` Peter Zijlstra [this message]
2025-02-18 16:47 ` Josh Poimboeuf
2025-02-19 1:17 ` Josh Poimboeuf
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=20250218132855.GE40464@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=bigeasy@linutronix.de \
--cc=jpoimboe@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lkp@intel.com \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
/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