]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
KVM: x86: Access to LDT/GDT that wraparound is incorrect
authorNadav Amit <namit@cs.technion.ac.il>
Thu, 25 Dec 2014 00:52:23 +0000 (02:52 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 8 Jan 2015 21:48:08 +0000 (22:48 +0100)
commitedccda7ca7e56b335c70ae512f89d0fdf7fb8c69
tree472fe75d29ac7e228ffa48cd5c61f9ae60803b5d
parente2cefa746e7e2a1104931d411b6f5de159d98ec6
KVM: x86: Access to LDT/GDT that wraparound is incorrect

When access to descriptor in LDT/GDT wraparound outside long-mode, the address
of the descriptor should be truncated to 32-bit.  Citing Intel SDM 2.1.1.1
"Global and Local Descriptor Tables in IA-32e Mode": "GDTR and LDTR registers
are expanded to 64-bits wide in both IA-32e sub-modes (64-bit mode and
compatibility mode)."

So in other cases, we need to truncate. Creating new function to return a
pointer to descriptor table to avoid too much code duplication.

Signed-off-by: Nadav Amit <namit@cs.technion.ac.il>
[Wrap 64-bit check with #ifdef CONFIG_X86_64, to avoid a "right shift count
 >= width of type" warning and consequent undefined behavior. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/emulate.c