x86/PVH: avoid call to handle_mmio
authorMukesh Rathor <mukesh.rathor@oracle.com>
Wed, 4 Jun 2014 09:27:50 +0000 (11:27 +0200)
committerJan Beulich <jbeulich@suse.com>
Wed, 4 Jun 2014 09:27:50 +0000 (11:27 +0200)
handle_mmio() is currently unsafe for pvh guests. A call to it would
result in call to vioapic_range that will crash xen since the vioapic
ptr in struct hvm_domain is not initialized for pvh guests.

However, one path exists for such a call. If a pvh guest, dom0 or domU,
unintentionally touches non-existing memory, an EPT violation would occur.
This would result in unconditional call to hvm_hap_nested_page_fault. In
that function, because get_gfn_type_access returns p2m_mmio_dm for non
existing mfns by default, handle_mmio() will get called. This would result
in xen crash instead of the guest crash. This patch addresses that.

Signed-off-by: Mukesh Rathor <mukesh.rathor@oracle.com>
xen/arch/x86/hvm/hvm.c
xen/arch/x86/hvm/io.c

index 163e62a589c33c3aa97feeb7dfe8c6839cfc8ca0..4f993f4bd144e42732889831f7e39ab424440b4a 100644 (file)
@@ -2743,6 +2743,11 @@ int hvm_hap_nested_page_fault(paddr_t gpa,
          (access_w && (p2mt == p2m_ram_ro)) )
     {
         put_gfn(p2m->domain, gfn);
+
+        rc = 0;
+        if ( unlikely(is_pvh_vcpu(v)) )
+            goto out;
+
         if ( !handle_mmio() )
             hvm_inject_hw_exception(TRAP_gp_fault, 0);
         rc = 1;
index a8fe0aa29c685ab24a4c3cfd01b224ba9dad1d83..b2b7b2736c976ec6b18dc9b37698e5e2a755f57a 100644 (file)
@@ -84,6 +84,8 @@ int handle_mmio(void)
     struct hvm_vcpu_io *vio = &curr->arch.hvm_vcpu.hvm_io;
     int rc;
 
+    ASSERT(!is_pvh_vcpu(curr));
+
     hvm_emulate_prepare(&ctxt, guest_cpu_user_regs());
 
     rc = hvm_emulate_one(&ctxt);