[PATCH kvm-unit-tests 07/13] x86: access: extract ac_emulate_access

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This provides a better way to compute the status for AC_ACCESS_TWICE_MASK.
Just treat as a supervisor mode read where the fault is ignored.

Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
---
 x86/access.c | 55 +++++++++++++++++++++++--------------------------------
 1 file changed, 23 insertions(+), 32 deletions(-)

diff --git a/x86/access.c b/x86/access.c
index 9c61a02..5a6d31c 100644
--- a/x86/access.c
+++ b/x86/access.c
@@ -336,21 +336,11 @@ void ac_test_reset_pt_pool(ac_pool_t *pool)
     pool->pt_pool_current = 0;
 }
 
-void ac_set_expected_status(ac_test_t *at)
+void ac_emulate_access(ac_test_t *at, unsigned flags)
 {
     int pde_valid, pte_valid;
-    int flags = at->flags;
     bool user, writable, kwritable, executable;
 
-    invlpg(at->virt);
-
-    if (at->ptep)
-	at->expected_pte = *at->ptep;
-    at->expected_pde = *at->pdep;
-    at->ignore_pde = 0;
-    at->expected_fault = 0;
-    at->expected_error = PFERR_PRESENT_MASK;
-
     pde_valid = F(AC_PDE_PRESENT)
         && !F(AC_PDE_BIT51) && !F(AC_PDE_BIT13)
         && !(F(AC_PDE_NX) && !F(AC_CPU_EFER_NX));
@@ -400,13 +390,6 @@ void ac_set_expected_status(ac_test_t *at)
         at->expected_pde |= PT_ACCESSED_MASK;
 
     if (F(AC_PDE_PSE)) {
-        /* Even for "twice" accesses, PKEY might cause pde.a=0.  */
-        if (user && F(AC_ACCESS_TWICE) &&
-            F(AC_PKU_PKEY) && F(AC_CPU_CR4_PKE) &&
-            F(AC_PKU_AD)) {
-            pde_valid = false;
-        }
-
 	if (F(AC_ACCESS_FETCH) && user && F(AC_CPU_CR4_SMEP))
 	    at->expected_fault = 1;
 
@@ -442,13 +425,6 @@ void ac_set_expected_status(ac_test_t *at)
     user &= F(AC_PTE_USER);
     executable &= !F(AC_PTE_NX);
 
-    /* Even for "twice" accesses, PKEY might cause pte.a=0.  */
-    if (user && F(AC_ACCESS_TWICE) &&
-        F(AC_PKU_PKEY) && F(AC_CPU_CR4_PKE) &&
-	F(AC_PKU_AD)) {
-        pte_valid = false;
-    }
-
     if (F(AC_ACCESS_USER) && !user)
 	at->expected_fault = 1;
 
@@ -480,19 +456,34 @@ void ac_set_expected_status(ac_test_t *at)
 
 no_pte:
 fault:
-    if (F(AC_ACCESS_TWICE)) {
-	if (pde_valid) {
-	    at->expected_pde |= PT_ACCESSED_MASK;
-	    if (pte_valid)
-		at->expected_pte |= PT_ACCESSED_MASK;
-	}
-    }
     if (!at->expected_fault)
         at->ignore_pde = 0;
     if (!F(AC_CPU_EFER_NX) && !F(AC_CPU_CR4_SMEP))
         at->expected_error &= ~PFERR_FETCH_MASK;
 }
 
+void ac_set_expected_status(ac_test_t *at)
+{
+    invlpg(at->virt);
+
+    if (at->ptep)
+	at->expected_pte = *at->ptep;
+    at->expected_pde = *at->pdep;
+    at->ignore_pde = 0;
+    at->expected_fault = 0;
+    at->expected_error = PFERR_PRESENT_MASK;
+
+    if (at->flags & AC_ACCESS_TWICE_MASK) {
+        ac_emulate_access(at, at->flags & ~AC_ACCESS_WRITE_MASK
+                          & ~AC_ACCESS_FETCH_MASK & ~AC_ACCESS_USER_MASK);
+        at->expected_fault = 0;
+	at->expected_error = PFERR_PRESENT_MASK;
+        at->ignore_pde = 0;
+    }
+
+    ac_emulate_access(at, at->flags);
+}
+
 void __ac_setup_specific_pages(ac_test_t *at, ac_pool_t *pool, u64 pd_page,
 			       u64 pt_page)
 
-- 
2.5.0


--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux