All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xiao Guangrong <xiaoguangrong@linux.vnet.ibm.com>
To: David Matlack <dmatlack@google.com>,
	Gleb Natapov <gleb@kernel.org>,
	Paolo Bonzini <pbonzini@redhat.com>,
	kvm@vger.kernel.org, x86@kernel.org
Cc: Eric Northup <digitaleric@google.com>
Subject: Re: [PATCH v3] kvm: x86: fix stale mmio cache bug
Date: Fri, 08 Aug 2014 09:36:20 +0800	[thread overview]
Message-ID: <53E42994.7040700@linux.vnet.ibm.com> (raw)
In-Reply-To: <1407436366-7582-1-git-send-email-dmatlack@google.com>

On 08/08/2014 02:32 AM, David Matlack wrote:
> The following events can lead to an incorrect KVM_EXIT_MMIO bubbling
> up to userspace:
> 
> (1) Guest accesses gpa X without a memory slot. The gfn is cached in
> struct kvm_vcpu_arch (mmio_gfn). On Intel EPT-enabled hosts, KVM sets
> the SPTE write-execute-noread so that future accesses cause
> EPT_MISCONFIGs.
> 
> (2) Host userspace creates a memory slot via KVM_SET_USER_MEMORY_REGION
> covering the page just accessed.
> 
> (3) Guest attempts to read or write to gpa X again. On Intel, this
> generates an EPT_MISCONFIG. The memory slot generation number that
> was incremented in (2) would normally take care of this but we fast
> path mmio faults through quickly_check_mmio_pf(), which only checks
> the per-vcpu mmio cache. Since we hit the cache, KVM passes a
> KVM_EXIT_MMIO up to userspace.
> 
> This patch fixes the issue by using the memslot generation number
> to validate the mmio cache.
> 
> Signed-off-by: David Matlack <dmatlack@google.com>
> ---
> The patch diff is rather large because I had to pull some code out
> of x86.h and mmu.c and into mmu.h. The main change is adding the
> memslot generation in vcpu_cach_mmio_info() and then validating
> that slot in vcpu_match_mmio_*().

Why not just move vcpu_cach_mmio_info() into mmu.c where is
the only place vcpu_cach_mmio_info is called. :)

BTW, i will post a patch to fix the generation-number issue
soon.



  reply	other threads:[~2014-08-08  1:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-07 18:32 [PATCH v3] kvm: x86: fix stale mmio cache bug David Matlack
2014-08-08  1:36 ` Xiao Guangrong [this message]
2014-08-08  4:18   ` David Matlack

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=53E42994.7040700@linux.vnet.ibm.com \
    --to=xiaoguangrong@linux.vnet.ibm.com \
    --cc=digitaleric@google.com \
    --cc=dmatlack@google.com \
    --cc=gleb@kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=x86@kernel.org \
    /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 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.