]> www.infradead.org Git - users/dwmw2/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)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 27 Feb 2024 23:23:39 +0000 (00:23 +0100)
commitd09c79010ffd880dc69e7a21e3cfdef90b928fb8
tree75932ced011a5659ab23adcef8a5689a8c1f40f0
parent68fb78d7d5723066ec2cacee7d25d67a4143b42f
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>
target/i386/tcg/sysemu/misc_helper.c
target/i386/tcg/sysemu/svm_helper.c