SecurityPkg/DxeImageVerificationHandler: eliminate "Status" variable
The "Status" variable is set to EFI_ACCESS_DENIED at the top of the function. Then it is overwritten with EFI_SECURITY_VIOLATION under the "Failed" (earlier: "Done") label. We finally return "Status". The above covers the complete usage of "Status" in DxeImageVerificationHandler(). Remove the variable, and simply return EFI_SECURITY_VIOLATION in the end. This patch is a no-op, regarding behavior. Cc: Chao Zhang <chao.b.zhang@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2129 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200116190705.18816-9-lersek@redhat.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> [lersek@redhat.com: push with Mike's R-b due to Chinese New Year Holiday: <https://edk2.groups.io/g/devel/message/53429>; msgid <d3fbb76dabed4e1987c512c328c82810@intel.com>]
This commit is contained in:
parent
c602e97446
commit
fb02f5b2cd
|
@ -1560,7 +1560,6 @@ DxeImageVerificationHandler (
|
||||||
IN BOOLEAN BootPolicy
|
IN BOOLEAN BootPolicy
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
|
||||||
EFI_IMAGE_DOS_HEADER *DosHdr;
|
EFI_IMAGE_DOS_HEADER *DosHdr;
|
||||||
BOOLEAN IsVerified;
|
BOOLEAN IsVerified;
|
||||||
EFI_SIGNATURE_LIST *SignatureList;
|
EFI_SIGNATURE_LIST *SignatureList;
|
||||||
|
@ -1588,7 +1587,6 @@ DxeImageVerificationHandler (
|
||||||
SecDataDir = NULL;
|
SecDataDir = NULL;
|
||||||
PkcsCertData = NULL;
|
PkcsCertData = NULL;
|
||||||
Action = EFI_IMAGE_EXECUTION_AUTH_UNTESTED;
|
Action = EFI_IMAGE_EXECUTION_AUTH_UNTESTED;
|
||||||
Status = EFI_ACCESS_DENIED;
|
|
||||||
IsVerified = FALSE;
|
IsVerified = FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
@ -1880,13 +1878,12 @@ Failed:
|
||||||
DEBUG ((DEBUG_INFO, "The image doesn't pass verification: %s\n", NameStr));
|
DEBUG ((DEBUG_INFO, "The image doesn't pass verification: %s\n", NameStr));
|
||||||
FreePool(NameStr);
|
FreePool(NameStr);
|
||||||
}
|
}
|
||||||
Status = EFI_SECURITY_VIOLATION;
|
|
||||||
|
|
||||||
if (SignatureList != NULL) {
|
if (SignatureList != NULL) {
|
||||||
FreePool (SignatureList);
|
FreePool (SignatureList);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Status;
|
return EFI_SECURITY_VIOLATION;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue