]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: x86: fix emulation of "MOV SS, null selector"
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 12 Jan 2017 14:02:32 +0000 (15:02 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 12 Jan 2017 14:17:13 +0000 (15:17 +0100)
commitf87911c82066cd6eea4723ca9517468ead4458ff
tree61bb5323aea25c0f3dd96d8a9891106898d28cad
parentd01fb0be46615b9d320db69d28d2926bf28651d5
KVM: x86: fix emulation of "MOV SS, null selector"

This is CVE-2017-2583.  On Intel this causes a failed vmentry because
SS's type is neither 3 nor 7 (even though the manual says this check is
only done for usable SS, and the dmesg splat says that SS is unusable!).
On AMD it's worse: svm.c is confused and sets CPL to 0 in the vmcb.

The fix fabricates a data segment descriptor when SS is set to a null
selector, so that CPL and SS.DPL are set correctly in the VMCS/vmcb.
Furthermore, only allow setting SS to a NULL selector if SS.RPL < 3;
this in turn ensures CPL < 3 because RPL must be equal to CPL.

Thanks to Andy Lutomirski and Willy Tarreau for help in analyzing
the bug and deciphering the manuals.

Reported-by: Xiaohan Zhang <zhangxiaohan1@huawei.com>
Fixes: 3a42bd1a908aaf83b337f796e9d9d6c5a4e948f6
Cc: stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/emulate.c