From: Andrew Cooper Date: Fri, 14 Sep 2018 11:01:52 +0000 (+0200) Subject: x86/vmx: Avoid hitting BUG_ON() after EPTP-related domain_crash() X-Git-Tag: archive/raspbian/4.11.1-1+rpi1^2~53^2~39 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8c8b3cb17ee53b1871b524e05a38c3aabd238fea;p=xen.git x86/vmx: Avoid hitting BUG_ON() after EPTP-related domain_crash() If the EPTP pointer can't be located in the altp2m list, the domain is (legitimately) crashed. Under those circumstances, execution will continue and guarentee to hit the BUG_ON(idx >= MAX_ALTP2M) (unfortunately, just out of context). Return from vmx_vmexit_handler() after the domain_crash(), which also has the side effect of reentering the scheduler more promptly. Signed-off-by: Andrew Cooper Reviewed-by: Razvan Cojocaru Acked-by: Kevin Tian master commit: 48dbb2dbe9d9f92a2890a15bb48a0598c065b9f8 master date: 2018-08-02 10:10:43 +0100 --- diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arch/x86/hvm/vmx/vmx.c index b0fababede..a6415f08f9 100644 --- a/xen/arch/x86/hvm/vmx/vmx.c +++ b/xen/arch/x86/hvm/vmx/vmx.c @@ -3644,6 +3644,8 @@ void vmx_vmexit_handler(struct cpu_user_regs *regs) { gdprintk(XENLOG_ERR, "EPTP not found in alternate p2m list\n"); domain_crash(v->domain); + + return; } }