x86emul: assert no duplicate mappings of stub space Suggested-by: Andrew Cooper Signed-off-by: Jan Beulich --- a/tools/tests/x86_emulator/x86_emulate.c +++ b/tools/tests/x86_emulator/x86_emulate.c @@ -19,8 +19,11 @@ # define __OP "r" /* Operand Prefix */ #endif -#define get_stub(stb) ((void *)((stb).addr = (uintptr_t)(stb).buf)) -#define put_stub(stb) +#define get_stub(stb) ({ \ + assert(!(stb).addr); \ + (void *)((stb).addr = (uintptr_t)(stb).buf); \ +}) +#define put_stub(stb) ((stb).addr = 0) bool emul_test_make_stack_executable(void) { --- a/xen/arch/x86/x86_emulate.c +++ b/xen/arch/x86/x86_emulate.c @@ -28,6 +28,7 @@ #define get_stub(stb) ({ \ BUILD_BUG_ON(STUB_BUF_SIZE / 2 < MAX_INST_LEN + 1); \ + ASSERT(!(stb).ptr); \ (stb).addr = this_cpu(stubs.addr) + STUB_BUF_SIZE / 2; \ ((stb).ptr = map_domain_page(_mfn(this_cpu(stubs.mfn)))) + \ ((stb).addr & ~PAGE_MASK); \