From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gleb Natapov Subject: Re: [PATCH 2/5] KVM: emulator: sysexit should #GP in non protected mode. Date: Tue, 12 Apr 2011 15:23:57 +0300 Message-ID: <20110412122357.GO17809@redhat.com> References: <1302600985-10704-1-git-send-email-gleb@redhat.com> <1302600985-10704-2-git-send-email-gleb@redhat.com> <4DA442EF.3010108@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvm@vger.kernel.org, mtosatti@redhat.com To: Avi Kivity Return-path: Received: from mx1.redhat.com ([209.132.183.28]:21140 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751402Ab1DLMX7 (ORCPT ); Tue, 12 Apr 2011 08:23:59 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p3CCNx2X000508 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 12 Apr 2011 08:23:59 -0400 Content-Disposition: inline In-Reply-To: <4DA442EF.3010108@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Tue, Apr 12, 2011 at 03:17:51PM +0300, Avi Kivity wrote: > On 04/12/2011 12:36 PM, Gleb Natapov wrote: > >Signed-off-by: Gleb Natapov > >--- > > arch/x86/kvm/emulate.c | 2 ++ > > 1 files changed, 2 insertions(+), 0 deletions(-) > > > >diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c > >index 3e8b4ab..eb4c7eb 100644 > >--- a/arch/x86/kvm/emulate.c > >+++ b/arch/x86/kvm/emulate.c > >@@ -1973,6 +1973,8 @@ emulate_sysexit(struct x86_emulate_ctxt *ctxt, struct x86_emulate_ops *ops) > > cs.d = 0; > > cs.l = 1; > > break; > >+ default: > >+ return emulate_gp(ctxt, 0); > > } > > In addition, looks like the instruction is valid in 16-bit protected mode. > Actually we already check for real mode and vm86 at the start of the function, so the patch is incorrect. Will have to fix compile warning in some other way. -- Gleb.