# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1205935578 0
# Node ID f45aa9a14db425d1f726fb1368a8932263de68da
# Parent d1e91aba27584bbefd3650ac8e5174d63b8e5b33
x86_emulate: Return X86EMUL_UNHANDLEABLE if mode_iopl() or
mode_ring0() checks cannot be carried out.
Also fix handling of EFLAGS.IF in iret and popf.
Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx>
---
xen/arch/x86/x86_emulate.c | 22 ++++++++++++++++++----
1 files changed, 18 insertions(+), 4 deletions(-)
diff -r d1e91aba2758 -r f45aa9a14db4 xen/arch/x86/x86_emulate.c
--- a/xen/arch/x86/x86_emulate.c Wed Mar 19 12:41:48 2008 +0000
+++ b/xen/arch/x86/x86_emulate.c Wed Mar 19 14:06:18 2008 +0000
@@ -785,11 +785,21 @@ _mode_iopl(
struct x86_emulate_ops *ops)
{
int cpl = get_cpl(ctxt, ops);
+ if ( cpl == -1 )
+ return -1;
return ((cpl >= 0) && (cpl <= ((ctxt->regs->eflags >> 12) & 3)));
}
-#define mode_ring0() (get_cpl(ctxt, ops) == 0)
-#define mode_iopl() _mode_iopl(ctxt, ops)
+#define mode_ring0() ({ \
+ int _cpl = get_cpl(ctxt, ops); \
+ fail_if(_cpl < 0); \
+ (_cpl == 0); \
+})
+#define mode_iopl() ({ \
+ int _iopl = _mode_iopl(ctxt, ops); \
+ fail_if(_iopl < 0); \
+ _iopl; \
+})
static int
in_realmode(
@@ -2394,8 +2404,10 @@ x86_emulate(
case 0x9d: /* popf */ {
uint32_t mask = EFLG_VIP | EFLG_VIF | EFLG_VM;
+ if ( !mode_ring0() )
+ mask |= EFLG_IOPL;
if ( !mode_iopl() )
- mask |= EFLG_IOPL;
+ mask |= EFLG_IF;
/* 64-bit mode: POP defaults to a 64-bit operand. */
if ( mode_64bit() && (op_bytes == 4) )
op_bytes = 8;
@@ -2640,8 +2652,10 @@ x86_emulate(
case 0xcf: /* iret */ {
unsigned long cs, eip, eflags;
uint32_t mask = EFLG_VIP | EFLG_VIF | EFLG_VM;
+ if ( !mode_ring0() )
+ mask |= EFLG_IOPL;
if ( !mode_iopl() )
- mask |= EFLG_IOPL;
+ mask |= EFLG_IF;
fail_if(!in_realmode(ctxt, ops));
if ( (rc = ops->read(x86_seg_ss, sp_post_inc(op_bytes),
&eip, op_bytes, ctxt)) ||
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|