From: David Hildenbrand <david@redhat.com>
To: Wanpeng Li <kernellwp@gmail.com>,
linux-kernel@vger.kernel.org, kvm@vger.kernel.org
Cc: "Paolo Bonzini" <pbonzini@redhat.com>,
"Radim Krčmář" <rkrcmar@redhat.com>,
"Wanpeng Li" <wanpeng.li@hotmail.com>,
"Brijesh Singh" <brijesh.singh@amd.com>
Subject: Re: [PATCH v3] KVM: MMU: Fix guest stuck during boot due to read/write emulation against GVA
Date: Fri, 11 Aug 2017 08:53:46 +0200 [thread overview]
Message-ID: <f2bd387f-93c8-795d-307a-9eb9729b0e60@redhat.com> (raw)
In-Reply-To: <1502433993-4326-1-git-send-email-wanpeng.li@hotmail.com>
On 11.08.2017 08:46, Wanpeng Li wrote:
> From: Wanpeng Li <wanpeng.li@hotmail.com>
>
> Commit c016004494b0 (KVM: x86: Avoid guest page table walk when gpa_available
> is set) avoids the page table walk when cr2 has already contained a valid GPA.
> However, that is not the truth if ept == 0 and shadow page table is used. In
> this scenario cr2 can just contains a valid GVA. The commit results in guest
> stuck during boot due to read/write emulation against GVA instead of GPA of
> the guest.
>
> This patch fixes it by setting the gpa_available flag under direct mode.
>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Cc: Radim Krčmář <rkrcmar@redhat.com>
> Cc: Brijesh Singh <brijesh.singh@amd.com>
> Cc: David Hildenbrand <david@redhat.com>
> Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com>
> ---
> arch/x86/kvm/mmu.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
> index 849312d..4780348 100644
> --- a/arch/x86/kvm/mmu.c
> +++ b/arch/x86/kvm/mmu.c
> @@ -3791,8 +3791,11 @@ int kvm_handle_page_fault(struct kvm_vcpu *vcpu, u64 error_code,
>
> if (need_unprotect && kvm_event_needs_reinjection(vcpu))
> kvm_mmu_unprotect_page_virt(vcpu, fault_address);
> - vcpu->arch.gpa_available = true;
> - vcpu->arch.gpa_val = fault_address;
> + /* With shadow page tables, cr2 could contain a GVA, not a GPA */
> + if (vcpu->arch.mmu.direct_map) {
> + vcpu->arch.gpa_available = true;
> + vcpu->arch.gpa_val = fault_address;
> + }
> r = kvm_mmu_page_fault(vcpu, fault_address, error_code, insn,
> insn_len);
> break;
>
Reviewed-by: David Hildenbrand <david@redhat.com>
--
Thanks,
David
next prev parent reply other threads:[~2017-08-11 6:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-11 6:46 Wanpeng Li
2017-08-11 6:53 ` David Hildenbrand [this message]
2017-08-11 15:01 ` Paolo Bonzini
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=f2bd387f-93c8-795d-307a-9eb9729b0e60@redhat.com \
--to=david@redhat.com \
--cc=brijesh.singh@amd.com \
--cc=kernellwp@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=rkrcmar@redhat.com \
--cc=wanpeng.li@hotmail.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
all inboxes | Powered by JetHome®