mirror of
https://github.com/tianocore/edk2
synced 2026-08-27 00:23:19 -04:00
CPUID bit Fn8000001F_EBX[31] defines the COHERNECY_SFW_NO CPUID bit that, when set, indicates that the software mitigation for this vulnerability is not needed. Add support to check for this CPUID bit and avoid the mitigation if set. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
228 lines
5.3 KiB
C
228 lines
5.3 KiB
C
/** @file
|
|
|
|
Secure Encrypted Virtualization (SEV) library helper function
|
|
|
|
Copyright (c) 2017 - 2020, AMD Incorporated. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include <Library/BaseLib.h>
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/MemEncryptSevLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Register/Amd/Cpuid.h>
|
|
#include <Register/Amd/Msr.h>
|
|
#include <Register/Cpuid.h>
|
|
#include <Uefi/UefiBaseType.h>
|
|
#include <ConfidentialComputingGuestAttr.h>
|
|
|
|
STATIC UINT64 mCurrentAttr = 0;
|
|
STATIC BOOLEAN mCurrentAttrRead = FALSE;
|
|
STATIC UINT64 mSevEncryptionMask = 0;
|
|
STATIC BOOLEAN mSevEncryptionMaskSaved = FALSE;
|
|
STATIC BOOLEAN mSevSnpCoherencySfwNo = FALSE;
|
|
STATIC BOOLEAN mSevSnpCoherencySfwNoRead = FALSE;
|
|
|
|
/**
|
|
The function check if the specified Attr is set.
|
|
|
|
@param[in] CurrentAttr The current attribute.
|
|
@param[in] Attr The attribute to check.
|
|
|
|
@retval TRUE The specified Attr is set.
|
|
@retval FALSE The specified Attr is not set.
|
|
|
|
**/
|
|
STATIC
|
|
BOOLEAN
|
|
AmdMemEncryptionAttrCheck (
|
|
IN UINT64 CurrentAttr,
|
|
IN CONFIDENTIAL_COMPUTING_GUEST_ATTR Attr
|
|
)
|
|
{
|
|
UINT64 CurrentLevel;
|
|
|
|
CurrentLevel = CurrentAttr & CCAttrTypeMask;
|
|
|
|
switch (Attr) {
|
|
case CCAttrAmdSev:
|
|
//
|
|
// SEV is automatically enabled if SEV-ES or SEV-SNP is active.
|
|
//
|
|
return CurrentLevel >= CCAttrAmdSev;
|
|
case CCAttrAmdSevEs:
|
|
//
|
|
// SEV-ES is automatically enabled if SEV-SNP is active.
|
|
//
|
|
return CurrentLevel >= CCAttrAmdSevEs;
|
|
case CCAttrAmdSevSnp:
|
|
return CurrentLevel == CCAttrAmdSevSnp;
|
|
case CCAttrFeatureAmdSevEsDebugVirtualization:
|
|
return !!(CurrentAttr & CCAttrFeatureAmdSevEsDebugVirtualization);
|
|
default:
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Check if the specified confidential computing attribute is active.
|
|
|
|
@param[in] Attr The attribute to check.
|
|
|
|
@retval TRUE The specified Attr is active.
|
|
@retval FALSE The specified Attr is not active.
|
|
|
|
**/
|
|
STATIC
|
|
BOOLEAN
|
|
EFIAPI
|
|
ConfidentialComputingGuestHas (
|
|
IN CONFIDENTIAL_COMPUTING_GUEST_ATTR Attr
|
|
)
|
|
{
|
|
//
|
|
// Get the current CC attribute.
|
|
//
|
|
// We avoid reading the PCD on every check because this routine could be indirectly
|
|
// called during the virtual pointer conversion. And its not safe to access the
|
|
// PCDs during the virtual pointer conversion.
|
|
//
|
|
if (!mCurrentAttrRead) {
|
|
mCurrentAttr = PcdGet64 (PcdConfidentialComputingGuestAttr);
|
|
mCurrentAttrRead = TRUE;
|
|
}
|
|
|
|
//
|
|
// If attr is for the AMD group then call AMD specific checks.
|
|
//
|
|
if (((RShiftU64 (mCurrentAttr, 8)) & 0xff) == 1) {
|
|
return AmdMemEncryptionAttrCheck (mCurrentAttr, Attr);
|
|
}
|
|
|
|
return (mCurrentAttr == Attr);
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate whether SEV-SNP is enabled.
|
|
|
|
@retval TRUE SEV-SNP is enabled
|
|
@retval FALSE SEV-SNP is not enabled
|
|
**/
|
|
BOOLEAN
|
|
EFIAPI
|
|
MemEncryptSevSnpIsEnabled (
|
|
VOID
|
|
)
|
|
{
|
|
return ConfidentialComputingGuestHas (CCAttrAmdSevSnp);
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate whether SEV-ES is enabled.
|
|
|
|
@retval TRUE SEV-ES is enabled
|
|
@retval FALSE SEV-ES is not enabled
|
|
**/
|
|
BOOLEAN
|
|
EFIAPI
|
|
MemEncryptSevEsIsEnabled (
|
|
VOID
|
|
)
|
|
{
|
|
return ConfidentialComputingGuestHas (CCAttrAmdSevEs);
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate whether SEV is enabled.
|
|
|
|
@retval TRUE SEV is enabled
|
|
@retval FALSE SEV is not enabled
|
|
**/
|
|
BOOLEAN
|
|
EFIAPI
|
|
MemEncryptSevIsEnabled (
|
|
VOID
|
|
)
|
|
{
|
|
return ConfidentialComputingGuestHas (CCAttrAmdSev);
|
|
}
|
|
|
|
/**
|
|
Returns the SEV encryption mask.
|
|
|
|
@return The SEV pagtable encryption mask
|
|
**/
|
|
UINT64
|
|
EFIAPI
|
|
MemEncryptSevGetEncryptionMask (
|
|
VOID
|
|
)
|
|
{
|
|
if (!mSevEncryptionMaskSaved) {
|
|
mSevEncryptionMask = PcdGet64 (PcdPteMemoryEncryptionAddressOrMask);
|
|
mSevEncryptionMaskSaved = TRUE;
|
|
}
|
|
|
|
return mSevEncryptionMask;
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate whether DebugVirtualization is enabled.
|
|
|
|
@retval TRUE DebugVirtualization is enabled
|
|
@retval FALSE DebugVirtualization is not enabled
|
|
**/
|
|
BOOLEAN
|
|
EFIAPI
|
|
MemEncryptSevEsDebugVirtualizationIsEnabled (
|
|
VOID
|
|
)
|
|
{
|
|
return ConfidentialComputingGuestHas (CCAttrFeatureAmdSevEsDebugVirtualization);
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate if the CPUID COHERENCY_SFW_NO bit is set.
|
|
|
|
@retval TRUE The COHERENCY_SFW_NO bit is set.
|
|
@retval FALSE The COHERENCY_SFW_NO bit is not set.
|
|
|
|
**/
|
|
STATIC
|
|
BOOLEAN
|
|
MemEncryptCoherencSfwNo (
|
|
VOID
|
|
)
|
|
{
|
|
CPUID_MEMORY_ENCRYPTION_INFO_EBX RegEbx;
|
|
|
|
if (!mSevSnpCoherencySfwNoRead) {
|
|
AsmCpuid (0x8000001F, NULL, &RegEbx.Uint32, NULL, NULL);
|
|
if (RegEbx.Bits.CoherencySfwNo == 1) {
|
|
mSevSnpCoherencySfwNo = TRUE;
|
|
}
|
|
|
|
mSevSnpCoherencySfwNoRead = TRUE;
|
|
}
|
|
|
|
return mSevSnpCoherencySfwNo;
|
|
}
|
|
|
|
/**
|
|
Returns a boolean to indicate whether the SEV-SNP cache line eviction
|
|
mitigation is needed.
|
|
|
|
@retval TRUE Cache line eviction mitigation required
|
|
@retval FALSE Cache line eviction migigation not required
|
|
|
|
**/
|
|
BOOLEAN
|
|
EFIAPI
|
|
MemEncryptSevSnpDoCoherencyMitigation (
|
|
VOID
|
|
)
|
|
{
|
|
return MemEncryptSevSnpIsEnabled () && !MemEncryptCoherencSfwNo ();
|
|
}
|