]> xenbits.xensource.com Git - people/royger/xen.git/commitdiff
x86/hvm: Correct the position of the %cs L/D checks
authorAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 13 Oct 2016 10:27:28 +0000 (11:27 +0100)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 14 Oct 2016 11:43:17 +0000 (12:43 +0100)
Contrary to the description in the software manuals, in Long Mode, attempts to
load %cs check that D is not set in combination with L before the present flag
is checked.

This can be observed because the L/D check fails with #GP before the presence
check failes with #NP.

This change partially reverts c/s 78ff18c90 "x86: defer not-present segment
checks", taking it back to how it was in the v1 submission.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/x86_emulate/x86_emulate.c

index 793ce30f143f863c35ef429a448a428601ebdbd3..b23cd994448b4f303800261a025975cdae2ba8bc 100644 (file)
@@ -1405,6 +1405,14 @@ protmode_load_seg(
                /* Non-conforming segment: check RPL and DPL against CPL. */
                : rpl > cpl || dpl != cpl )
             goto raise_exn;
+        /*
+         * 64-bit code segments (L bit set) must have D bit clear.
+         * Experimentally in long mode, the L and D bits are checked before
+         * the Present bit.
+         */
+        if ( in_longmode(ctxt, ops) &&
+             (desc.b & (1 << 21)) && (desc.b & (1 << 22)) )
+            goto raise_exn;
         sel = (sel ^ rpl) | cpl;
         break;
     case x86_seg_ss:
@@ -1444,11 +1452,6 @@ protmode_load_seg(
         goto raise_exn;
     }
 
-    /* 64-bit code segments (L bit set) must have D bit clear. */
-    if ( seg == x86_seg_cs && in_longmode(ctxt, ops) &&
-         (desc.b & (1 << 21)) && (desc.b & (1 << 22)) )
-        goto raise_exn;
-
     /* Ensure Accessed flag is set. */
     if ( a_flag && !(desc.b & a_flag) )
     {