X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=SecurityPkg%2FTcg%2FTcgDxe%2FTcgDxe.c;h=ea05dc8433f024d9e947b2d5a4d4c77e39286742;hp=282505dbc77b477c766a46c3bca07365ac5f005a;hb=6f785cfcc304c48ec04e542ee429df95e7b51bc5;hpb=4610b23ab10942d140eb51c4bdbefc5f896979ad diff --git a/SecurityPkg/Tcg/TcgDxe/TcgDxe.c b/SecurityPkg/Tcg/TcgDxe/TcgDxe.c index 282505dbc7..ea05dc8433 100644 --- a/SecurityPkg/Tcg/TcgDxe/TcgDxe.c +++ b/SecurityPkg/Tcg/TcgDxe/TcgDxe.c @@ -8,7 +8,7 @@ buffer overflow, integer overflow. TcgDxePassThroughToTpm() will receive untrusted input and do basic validation. -Copyright (c) 2005 - 2014, Intel Corporation. All rights reserved.
+Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -51,6 +51,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include #include +#include #include "TpmComm.h" @@ -264,7 +265,7 @@ TcgDxeStatusCheck ( } if (EventLogLastEntry != NULL) { - if (TcgData->BsCap.TPMDeactivatedFlag) { + if (TcgData->BsCap.TPMDeactivatedFlag || (!ProtocolCapability.TPMPresentFlag)) { *EventLogLastEntry = (EFI_PHYSICAL_ADDRESS)(UINTN)0; } else { *EventLogLastEntry = (EFI_PHYSICAL_ADDRESS)(UINTN)TcgData->LastEvent; @@ -411,7 +412,7 @@ TcgDxeLogEvent ( TcgData = TCG_DXE_DATA_FROM_THIS (This); - if (TcgData->BsCap.TPMDeactivatedFlag) { + if (TcgData->BsCap.TPMDeactivatedFlag || (!ProtocolCapability.TPMPresentFlag)) { return EFI_DEVICE_ERROR; } return TcgDxeLogEventI ( @@ -495,8 +496,8 @@ TcgDxeHashLogExtendEventI ( { EFI_STATUS Status; - if (HashData == NULL && HashDataLen > 0) { - return EFI_INVALID_PARAMETER; + if (!TcgData->BsCap.TPMPresentFlag) { + return EFI_DEVICE_ERROR; } if (HashDataLen > 0 || HashData != NULL) { @@ -507,7 +508,7 @@ TcgDxeHashLogExtendEventI ( ); if (EFI_ERROR(Status)) { DEBUG ((DEBUG_ERROR, "TpmCommHashAll Failed. %x\n", Status)); - return Status; + goto Done; } } @@ -521,6 +522,17 @@ TcgDxeHashLogExtendEventI ( Status = TcgDxeLogEventI (TcgData, NewEventHdr, NewEventData); } +Done: + if ((Status == EFI_DEVICE_ERROR) || (Status == EFI_TIMEOUT)) { + DEBUG ((EFI_D_ERROR, "TcgDxeHashLogExtendEventI - %r. Disable TPM.\n", Status)); + TcgData->BsCap.TPMPresentFlag = FALSE; + REPORT_STATUS_CODE ( + EFI_ERROR_CODE | EFI_ERROR_MINOR, + (PcdGet32 (PcdStatusCodeSubClassTpmDevice) | EFI_P_EC_INTERFACE_ERROR) + ); + Status = EFI_DEVICE_ERROR; + } + return Status; } @@ -569,13 +581,17 @@ TcgDxeHashLogExtendEvent ( TcgData = TCG_DXE_DATA_FROM_THIS (This); - if (TcgData->BsCap.TPMDeactivatedFlag) { + if (TcgData->BsCap.TPMDeactivatedFlag || (!ProtocolCapability.TPMPresentFlag)) { return EFI_DEVICE_ERROR; } if (AlgorithmId != TPM_ALG_SHA) { return EFI_UNSUPPORTED; } + + if (HashData == NULL && HashDataLen > 0) { + return EFI_INVALID_PARAMETER; + } Status = TcgDxeHashLogExtendEventI ( TcgData, @@ -1346,6 +1362,10 @@ DriverEntry ( return Status; } + if (GetFirstGuidHob (&gTpmErrorHobGuid) != NULL) { + mTcgDxeData.BsCap.TPMPresentFlag = FALSE; + } + Status = GetTpmStatus (&mTcgDxeData.BsCap.TPMDeactivatedFlag); if (EFI_ERROR (Status)) { DEBUG (( @@ -1363,7 +1383,7 @@ DriverEntry ( EFI_NATIVE_INTERFACE, &mTcgDxeData.TcgProtocol ); - if (!EFI_ERROR (Status) && !mTcgDxeData.BsCap.TPMDeactivatedFlag) { + if (!EFI_ERROR (Status) && (!mTcgDxeData.BsCap.TPMDeactivatedFlag) && ProtocolCapability.TPMPresentFlag) { // // Setup the log area and copy event log from hob list to it //