]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/i386: check validity of VMCB addresses
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 22 Dec 2023 16:47:38 +0000 (17:47 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 28 Feb 2024 18:03:15 +0000 (21:03 +0300)
commit5eba614159d17a6916f33ff9a088e8fb230181c2
tree176a726c9565e7c400693bcb8bb27f72f4da6d29
parent6156ca0da12c545cf6be0a964ebdac4b8eb50f2b
target/i386: check validity of VMCB addresses

MSR_VM_HSAVE_PA bits 0-11 are reserved, as are the bits above the
maximum physical address width of the processor.  Setting them to
1 causes a #GP (see "15.30.4 VM_HSAVE_PA MSR" in the AMD manual).

The same is true of VMCB addresses passed to VMRUN/VMLOAD/VMSAVE,
even though the manual is not clear on that.

Cc: qemu-stable@nongnu.org
Fixes: 4a1e9d4d11c ("target/i386: Use atomic operations for pte updates", 2022-10-18)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit d09c79010ffd880dc69e7a21e3cfdef90b928fb8)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target/i386/tcg/sysemu/misc_helper.c
target/i386/tcg/sysemu/svm_helper.c