From: Xiaoyao Li <xiaoyao.li@intel.com>
To: Sean Christopherson <seanjc@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Jiri Olsa <jolsa@kernel.org>, Namhyung Kim <namhyung@kernel.org>,
Paolo Bonzini <pbonzini@redhat.com>,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
kvm@vger.kernel.org
Subject: Re: [RFC PATCH 2/2] KVM: VMX: Stop/resume host PT before/after VM entry when PT_MODE_HOST_GUEST
Date: Thu, 25 Aug 2022 23:45:26 +0800 [thread overview]
Message-ID: <6bcab33b-3fde-d470-88b9-7667c7dc4b2d@intel.com> (raw)
In-Reply-To: <YweWmF3wMPRnthIh@google.com>
On 8/25/2022 11:34 PM, Sean Christopherson wrote:
> On Thu, Aug 25, 2022, Xiaoyao Li wrote:
>> diff --git a/arch/x86/kvm/vmx/vmx.c b/arch/x86/kvm/vmx/vmx.c
>> index d7f8331d6f7e..3e9ce8f600d2 100644
>> --- a/arch/x86/kvm/vmx/vmx.c
>> +++ b/arch/x86/kvm/vmx/vmx.c
>> @@ -38,6 +38,7 @@
>> #include <asm/fpu/api.h>
>> #include <asm/fpu/xstate.h>
>> #include <asm/idtentry.h>
>> +#include <asm/intel_pt.h>
>> #include <asm/io.h>
>> #include <asm/irq_remapping.h>
>> #include <asm/kexec.h>
>> @@ -1128,13 +1129,19 @@ static void pt_guest_enter(struct vcpu_vmx *vmx)
>> if (vmx_pt_mode_is_system())
>> return;
>>
>> + /*
>> + * Stop Intel PT on host to avoid vm-entry failure since
>> + * VM_ENTRY_LOAD_IA32_RTIT_CTL is set
>> + */
>> + intel_pt_stop();
>> +
>> /*
>> * GUEST_IA32_RTIT_CTL is already set in the VMCS.
>> * Save host state before VM entry.
>> */
>> rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
>
> KVM's manual save/restore of MSR_IA32_RTIT_CTL should be dropped.
No. It cannot. Please see below.
> If PT/RTIT can
> trace post-VMXON, then intel_pt_stop() will disable tracing and intel_pt_resume()
> will restore the host's desired value.
intel_pt_stop() and intel_pt_resume() touches host's RTIT_CTL only when
host enables/uses Intel PT. Otherwise, they're just noop. In this case,
we cannot assume host's RTIT_CTL is zero (only the RTIT_CTL.TraceEn is
0). After VM-exit, RTIT_CTL is cleared, we need to restore it.
>> if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) {
>> - wrmsrl(MSR_IA32_RTIT_CTL, 0);
>> + /* intel_pt_stop() ensures RTIT_CTL.TraceEn is zero */
>> pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.num_address_ranges);
>
> Isn't this at risk of the same corruption? What prevents a PT NMI that arrives
> after this point from changing other RTIT MSRs, thus causing KVM to restore the
> wrong values?
intel_pt_stop() -> pt_event_stop() will do
WRITE_ONCE(pt->handle_nmi, 0);
which ensure PT NMI handler as noop that at the beginning of
intel_pt_interrupt():
if (!READ_ONCE(pt->handle_nmi))
return;
>> pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.num_address_ranges);
>> }
>> @@ -1156,6 +1163,8 @@ static void pt_guest_exit(struct vcpu_vmx *vmx)
>> */
>> if (vmx->pt_desc.host.ctl)
>> wrmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl);
>> +
>> + intel_pt_resume();
>> }
>>
>> void vmx_set_host_fs_gs(struct vmcs_host_state *host, u16 fs_sel, u16 gs_sel,
>> --
>> 2.27.0
>>
next prev parent reply other threads:[~2022-08-25 15:45 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-25 8:56 [RFC PATCH 0/2] KVM: VMX: Fix VM entry failure on PT_MODE_HOST_GUEST while host is using PT Xiaoyao Li
2022-08-25 8:56 ` [RFC PATCH 1/2] perf/x86/intel/pt: Introduce intel_pt_{stop,resume}() Xiaoyao Li
2022-08-25 15:23 ` Sean Christopherson
2022-08-25 8:56 ` [RFC PATCH 2/2] KVM: VMX: Stop/resume host PT before/after VM entry when PT_MODE_HOST_GUEST Xiaoyao Li
2022-08-25 15:34 ` Sean Christopherson
2022-08-25 15:45 ` Xiaoyao Li [this message]
2022-08-25 15:59 ` Sean Christopherson
2022-08-26 6:32 ` Xiaoyao Li
2022-08-26 15:08 ` Sean Christopherson
2022-08-29 7:49 ` [RFC PATCH 0/2] KVM: VMX: Fix VM entry failure on PT_MODE_HOST_GUEST while host is using PT Wang, Wei W
2022-08-29 17:33 ` Sean Christopherson
2022-08-30 6:02 ` Wang, Wei W
2022-09-08 7:25 ` Xiaoyao Li
2022-09-08 8:53 ` Wang, Wei W
2022-09-14 4:15 ` Xiaoyao Li
2022-09-14 6:16 ` Wang, Wei W
2022-09-14 20:25 ` Liang, Kan
2022-09-15 2:46 ` Wang, Wei W
2022-09-15 13:54 ` Liang, Kan
2022-09-15 14:39 ` Wang, Wei W
2022-09-15 15:42 ` Liang, Kan
2022-09-16 2:30 ` Wang, Wei W
2022-09-16 13:27 ` Liang, Kan
2022-09-19 13:46 ` Wang, Wei W
2022-09-19 14:41 ` Liang, Kan
2022-09-19 15:22 ` Wang, Wei W
2022-09-19 15:55 ` Liang, Kan
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=6bcab33b-3fde-d470-88b9-7667c7dc4b2d@intel.com \
--to=xiaoyao.li@intel.com \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=jolsa@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=namhyung@kernel.org \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=seanjc@google.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).