Assert if INVEPT or INVVPID fails instead of silently ignoring potential problems and hoping they'll show up later. Signed-off-by: Sean Christopherson <seanjc@xxxxxxxxxx> --- x86/vmx.h | 26 ++++++++++++++++++-------- x86/vmx_tests.c | 6 +++--- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/x86/vmx.h b/x86/vmx.h index 47b0461..28e28f1 100644 --- a/x86/vmx.h +++ b/x86/vmx.h @@ -912,28 +912,38 @@ static inline int vmcs_save(struct vmcs **vmcs) return ret; } -static inline bool invept(unsigned long type, u64 eptp) +static inline int __invept(unsigned long type, u64 eptp) { - bool ret; + bool failed = false; u64 rflags = read_rflags() | X86_EFLAGS_CF | X86_EFLAGS_ZF; struct { u64 eptp, gpa; } operand = {eptp, 0}; asm volatile("push %1; popf; invept %2, %3; setbe %0" - : "=q" (ret) : "r" (rflags), "m"(operand),"r"(type) : "cc"); - return ret; + : "=q" (failed) : "r" (rflags), "m"(operand),"r"(type) : "cc"); + return failed ? -1: 0; } -static inline bool invvpid(unsigned long type, u64 vpid, u64 gla) +static inline void invept(unsigned long type, u64 eptp) { - bool ret; + __TEST_ASSERT(!__invept(type, eptp)); +} + +static inline int __invvpid(unsigned long type, u64 vpid, u64 gla) +{ + bool failed = false; u64 rflags = read_rflags() | X86_EFLAGS_CF | X86_EFLAGS_ZF; struct invvpid_operand operand = {vpid, gla}; asm volatile("push %1; popf; invvpid %2, %3; setbe %0" - : "=q" (ret) : "r" (rflags), "m"(operand),"r"(type) : "cc"); - return ret; + : "=q" (failed) : "r" (rflags), "m"(operand),"r"(type) : "cc"); + return failed ? -1: 0; +} + +static inline void invvpid(unsigned long type, u64 vpid, u64 gla) +{ + __TEST_ASSERT(!__invvpid(type, vpid, gla)); } void enable_vmx(void); diff --git a/x86/vmx_tests.c b/x86/vmx_tests.c index cbf22e3..0df69ee 100644 --- a/x86/vmx_tests.c +++ b/x86/vmx_tests.c @@ -1248,7 +1248,7 @@ static bool invept_test(int type, u64 eptp) bool ret, supported; supported = ept_vpid.val & (EPT_CAP_INVEPT_SINGLE >> INVEPT_SINGLE << type); - ret = invept(type, eptp); + ret = __invept(type, eptp); if (ret == !supported) return false; @@ -1551,7 +1551,7 @@ static bool invvpid_test(int type, u16 vpid) supported = ept_vpid.val & (VPID_CAP_INVVPID_ADDR >> INVVPID_ADDR << type); - ret = invvpid(type, vpid, 0); + ret = __invvpid(type, vpid, 0); if (ret == !supported) return false; @@ -3280,7 +3280,7 @@ static void try_invvpid(u64 type, u64 vpid, u64 gla) * that we can tell if it is updated by INVVPID. */ vmcs_read(~0); - rc = invvpid(type, vpid, gla); + rc = __invvpid(type, vpid, gla); report(!rc == valid, "INVVPID type %ld VPID %lx GLA %lx %s", type, vpid, gla, valid ? "passes" : "fails"); -- 2.34.0.rc2.393.gf8c9666880-goog