LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Sean Christopherson <seanjc@google.com>
To: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Ingo Molnar <mingo@redhat.com>,
linux-kernel@vger.kernel.org, Jiri Olsa <jolsa@kernel.org>,
kvm@vger.kernel.org, Artem Kashkanov <artem.kashkanov@intel.com>
Subject: Re: [PATCH] kvm/x86: Fix PT "host mode"
Date: Mon, 23 Aug 2021 16:16:51 +0000 [thread overview]
Message-ID: <YSPJ8/PgcFRnp4N9@google.com> (raw)
In-Reply-To: <20210823134239.45402-1-alexander.shishkin@linux.intel.com>
On Mon, Aug 23, 2021, Alexander Shishkin wrote:
> Regardless of the "pt_mode", the kvm driver installs its interrupt handler
> for Intel PT, which always overrides the native handler, causing data loss
> inside kvm guests, while we're expecting to trace them.
>
> Fix this by only installing kvm's perf_guest_cbs if pt_mode is set to
> guest tracing.
Uh, regardless of the correctness of such a change (spoiler alert), making an
enormous leap from "one thing is wrong" to "nuke it all!" needs way more
justfication/explanation. Or more realistically, such a leap should be a good
indication that the proposed change is not correct.
> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
> Fixes: ff9d07a0e7ce7 ("KVM: Implement perf callbacks for guest sampling")
This should be another clue that the fix isn't correct. That patch is from 2010,
Intel PT was announced in 2013 and merged in 2019.
> Reported-by: Artem Kashkanov <artem.kashkanov@intel.com>
> Tested-by: Artem Kashkanov <artem.kashkanov@intel.com>
> ---
> arch/x86/include/asm/kvm_host.h | 1 +
> arch/x86/kvm/vmx/vmx.c | 6 ++++++
> arch/x86/kvm/x86.c | 10 ++++++++--
> 3 files changed, 15 insertions(+), 2 deletions(-)
>
...
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index 9b6bca616929..3ba0001e7388 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -268,6 +268,8 @@ static struct kmem_cache *x86_fpu_cache;
>
> static struct kmem_cache *x86_emulator_cache;
>
> +static int __read_mostly intel_pt_enabled;
> +
> /*
> * When called, it means the previous get/set msr reached an invalid msr.
> * Return true if we want to ignore/silent this failed msr access.
> @@ -8194,7 +8196,10 @@ int kvm_arch_init(void *opaque)
>
> kvm_timer_init();
>
> - perf_register_guest_info_callbacks(&kvm_guest_cbs);
> + if (ops->intel_pt_enabled && ops->intel_pt_enabled()) r
This is not remotely correct. vmx.c's "pt_mode", which is queried via this path,
is modified by hardware_setup(), a.k.a. kvm_x86_ops.hardware_setup(), which runs
_after_ this code. And as alluded to above, these are generic perf callbacks,
installing them if and only if Intel PT is enabled in a specific mode completely
breaks "regular" perf.
I'll post a small series, there's a bit of code massage needed to fix this
properly. The PMI handler can also be optimized to avoid a retpoline when PT is
not exposed to the guest.
> + perf_register_guest_info_callbacks(&kvm_guest_cbs);
> + intel_pt_enabled = 1;
> + }
>
> if (boot_cpu_has(X86_FEATURE_XSAVE)) {
> host_xcr0 = xgetbv(XCR_XFEATURE_ENABLED_MASK);
> @@ -8229,7 +8234,8 @@ void kvm_arch_exit(void)
> clear_hv_tscchange_cb();
> #endif
> kvm_lapic_exit();
> - perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
> + if (intel_pt_enabled)
> + perf_unregister_guest_info_callbacks(&kvm_guest_cbs);
>
> if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
> cpufreq_unregister_notifier(&kvmclock_cpufreq_notifier_block,
> --
> 2.32.0
>
next prev parent reply other threads:[~2021-08-23 16:17 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-23 13:42 Alexander Shishkin
2021-08-23 16:16 ` Sean Christopherson [this message]
2021-08-23 17:11 ` Alexander Shishkin
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=YSPJ8/PgcFRnp4N9@google.com \
--to=seanjc@google.com \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@redhat.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=artem.kashkanov@intel.com \
--cc=jolsa@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=pbonzini@redhat.com \
--subject='Re: [PATCH] kvm/x86: Fix PT "host mode"' \
/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
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).