From: Wanpeng Li <kernellwp@gmail.com> To: Sean Christopherson <seanjc@google.com> Cc: LKML <linux-kernel@vger.kernel.org>, kvm <kvm@vger.kernel.org>, Paolo Bonzini <pbonzini@redhat.com>, Vitaly Kuznetsov <vkuznets@redhat.com>, Wanpeng Li <wanpengli@tencent.com>, Jim Mattson <jmattson@google.com>, Joerg Roedel <joro@8bytes.org> Subject: Re: [PATCH 1/3] KVM: emulate: #GP when emulating rdpmc if CR0.PE is 1 Date: Sat, 9 Oct 2021 17:09:40 +0800 [thread overview] Message-ID: <CANRm+CxCLjts0EPORmQvkiggujN_bRf_rL0LvVq8homLoVS6Og@mail.gmail.com> (raw) In-Reply-To: <YWBhpzsBxe16z+L1@google.com> On Fri, 8 Oct 2021 at 23:20, Sean Christopherson <seanjc@google.com> wrote: > > The shortlog makes it sound like "inject a #GP if CR0.PE=1", i.e. unconditionally > inject #GP for RDMPC in protected mode. Maybe "Don't inject #GP when emulating > RDMPC if CR0.PE=0"? > Agreed. > On Fri, Oct 08, 2021, Wanpeng Li wrote: > > From: Wanpeng Li <wanpengli@tencent.com> > > > > SDM mentioned that, RDPMC: > > > > IF (((CR4.PCE = 1) or (CPL = 0) or (CR0.PE = 0)) and (ECX indicates a supported counter)) > > THEN > > EAX := counter[31:0]; > > EDX := ZeroExtend(counter[MSCB:32]); > > ELSE (* ECX is not valid or CR4.PCE is 0 and CPL is 1, 2, or 3 and CR0.PE is 1 *) > > #GP(0); > > FI; > > > > Let's add the CR0.PE is 1 checking to rdpmc emulate. > > > > Signed-off-by: Wanpeng Li <wanpengli@tencent.com> > > --- > > arch/x86/kvm/emulate.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c > > index 9a144ca8e146..ab7ec569e8c9 100644 > > --- a/arch/x86/kvm/emulate.c > > +++ b/arch/x86/kvm/emulate.c > > @@ -4213,6 +4213,7 @@ static int check_rdtsc(struct x86_emulate_ctxt *ctxt) > > static int check_rdpmc(struct x86_emulate_ctxt *ctxt) > > { > > u64 cr4 = ctxt->ops->get_cr(ctxt, 4); > > + u64 cr0 = ctxt->ops->get_cr(ctxt, 0); > > u64 rcx = reg_read(ctxt, VCPU_REGS_RCX); > > > > /* > > @@ -4222,7 +4223,7 @@ static int check_rdpmc(struct x86_emulate_ctxt *ctxt) > > if (enable_vmware_backdoor && is_vmware_backdoor_pmc(rcx)) > > return X86EMUL_CONTINUE; > > > > - if ((!(cr4 & X86_CR4_PCE) && ctxt->ops->cpl(ctxt)) || > > + if ((!(cr4 & X86_CR4_PCE) && ctxt->ops->cpl(ctxt) && (cr0 & X86_CR0_PE)) || > > I don't think it's possible for CPL to be >0 if CR0.PE=0, e.g. we could probably > WARN in the #GP path. Realistically it doesn't add value though, so maybe just > add a blurb in the changelog saying this isn't strictly necessary? Do it in v2. Wanpeng
prev parent reply other threads:[~2021-10-09 9:09 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-10-08 9:57 Wanpeng Li 2021-10-08 9:57 ` [PATCH 2/3] KVM: vPMU: Fill get_msr MSR_CORE_PERF_GLOBAL_OVF_CTRL w/ 0 Wanpeng Li 2021-10-08 11:02 ` Like Xu 2021-10-08 11:17 ` Wanpeng Li 2021-10-08 9:57 ` [PATCH 3/3] KVM: LAPIC: Optimize PMI delivering overhead Wanpeng Li 2021-10-08 10:52 ` Vitaly Kuznetsov 2021-10-08 11:06 ` Wanpeng Li 2021-10-08 15:59 ` Sean Christopherson 2021-10-09 9:14 ` Wanpeng Li 2021-10-08 15:20 ` [PATCH 1/3] KVM: emulate: #GP when emulating rdpmc if CR0.PE is 1 Sean Christopherson 2021-10-09 9:09 ` Wanpeng Li [this message]
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=CANRm+CxCLjts0EPORmQvkiggujN_bRf_rL0LvVq8homLoVS6Og@mail.gmail.com \ --to=kernellwp@gmail.com \ --cc=jmattson@google.com \ --cc=joro@8bytes.org \ --cc=kvm@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=pbonzini@redhat.com \ --cc=seanjc@google.com \ --cc=vkuznets@redhat.com \ --cc=wanpengli@tencent.com \ --subject='Re: [PATCH 1/3] KVM: emulate: #GP when emulating rdpmc if CR0.PE is 1' \ /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 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.