Skip to content

Commit 566975f

Browse files
xinli-intelsean-jc
authored andcommitted
KVM: nVMX: Use macros and #defines in vmx_restore_vmx_misc()
Use macros in vmx_restore_vmx_misc() instead of open coding everything using BIT_ULL() and GENMASK_ULL(). Opportunistically split feature bits and reserved bits into separate variables, and add a comment explaining the subset logic (it's not immediately obvious that the set of feature bits is NOT the set of _supported_ feature bits). Cc: Shan Kang <shan.kang@intel.com> Cc: Kai Huang <kai.huang@intel.com> Signed-off-by: Xin Li <xin3.li@intel.com> [sean: split to separate patch, write changelog, drop #defines] Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com> Reviewed-by: Kai Huang <kai.huang@intel.com> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Link: https://lore.kernel.org/r/20240605231918.2915961-11-seanjc@google.com Signed-off-by: Sean Christopherson <seanjc@google.com>
1 parent 8f56b14 commit 566975f

File tree

1 file changed

+20
-7
lines changed

1 file changed

+20
-7
lines changed

arch/x86/kvm/vmx/nested.c

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1345,16 +1345,29 @@ vmx_restore_control_msr(struct vcpu_vmx *vmx, u32 msr_index, u64 data)
13451345

13461346
static int vmx_restore_vmx_misc(struct vcpu_vmx *vmx, u64 data)
13471347
{
1348-
const u64 feature_and_reserved_bits =
1349-
/* feature */
1350-
BIT_ULL(5) | GENMASK_ULL(8, 6) | BIT_ULL(14) | BIT_ULL(15) |
1351-
BIT_ULL(28) | BIT_ULL(29) | BIT_ULL(30) |
1352-
/* reserved */
1353-
GENMASK_ULL(13, 9) | BIT_ULL(31);
1348+
const u64 feature_bits = VMX_MISC_SAVE_EFER_LMA |
1349+
VMX_MISC_ACTIVITY_HLT |
1350+
VMX_MISC_ACTIVITY_SHUTDOWN |
1351+
VMX_MISC_ACTIVITY_WAIT_SIPI |
1352+
VMX_MISC_INTEL_PT |
1353+
VMX_MISC_RDMSR_IN_SMM |
1354+
VMX_MISC_VMWRITE_SHADOW_RO_FIELDS |
1355+
VMX_MISC_VMXOFF_BLOCK_SMI |
1356+
VMX_MISC_ZERO_LEN_INS;
1357+
1358+
const u64 reserved_bits = BIT_ULL(31) | GENMASK_ULL(13, 9);
1359+
13541360
u64 vmx_misc = vmx_control_msr(vmcs_config.nested.misc_low,
13551361
vmcs_config.nested.misc_high);
13561362

1357-
if (!is_bitwise_subset(vmx_misc, data, feature_and_reserved_bits))
1363+
BUILD_BUG_ON(feature_bits & reserved_bits);
1364+
1365+
/*
1366+
* The incoming value must not set feature bits or reserved bits that
1367+
* aren't allowed/supported by KVM. Fields, i.e. multi-bit values, are
1368+
* explicitly checked below.
1369+
*/
1370+
if (!is_bitwise_subset(vmx_misc, data, feature_bits | reserved_bits))
13581371
return -EINVAL;
13591372

13601373
if ((vmx->nested.msrs.pinbased_ctls_high &

0 commit comments

Comments
 (0)