-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport a fix from upstream to resolve CVE-2024-1298 tianocore/edk2@284dbac Signed-off-by: Hongxu Jia <[email protected]>
- Loading branch information
1 parent
c3d1be5
commit af65d3e
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
meta/recipes-core/ovmf/ovmf/0001-MdeModulePkg-Potential-UINT32-overflow-in-S3-ResumeC.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
From 63f29c180dd04d13614440740a8795ee422567b8 Mon Sep 17 00:00:00 2001 | ||
From: Hongxu Jia <[email protected]> | ||
Date: Fri, 22 Nov 2024 17:43:28 +0800 | ||
Subject: [PATCH] MdeModulePkg: Potential UINT32 overflow in S3 ResumeCount | ||
|
||
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4677 | ||
|
||
Attacker able to modify physical memory and ResumeCount. | ||
System will crash/DoS when ResumeCount reaches its MAX_UINT32. | ||
|
||
Cc: Zhiguang Liu <[email protected]> | ||
Cc: Dandan Bi <[email protected]> | ||
Cc: Liming Gao <[email protected]> | ||
|
||
Signed-off-by: Pakkirisamy ShanmugavelX <[email protected]> | ||
Reviewed-by: Liming Gao <[email protected]> | ||
|
||
CVE: CVE-2024-1298 | ||
Upstream-Status: Backport [https://github.com/tianocore/edk2/commit/284dbac43da752ee34825c8b3f6f9e8281cb5a19] | ||
Signed-off-by: Hongxu Jia <[email protected]> | ||
--- | ||
.../FirmwarePerformancePei.c | 12 ++++++++---- | ||
1 file changed, 8 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/FirmwarePerformancePei.c b/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/FirmwarePerformancePei.c | ||
index 2f2b2a80b2..2ba9215226 100644 | ||
--- a/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/FirmwarePerformancePei.c | ||
+++ b/MdeModulePkg/Universal/Acpi/FirmwarePerformanceDataTablePei/FirmwarePerformancePei.c | ||
@@ -112,11 +112,15 @@ FpdtStatusCodeListenerPei ( | ||
// | ||
S3ResumeTotal = MultU64x32 (AcpiS3ResumeRecord->AverageResume, AcpiS3ResumeRecord->ResumeCount); | ||
AcpiS3ResumeRecord->ResumeCount++; | ||
- AcpiS3ResumeRecord->AverageResume = DivU64x32 (S3ResumeTotal + AcpiS3ResumeRecord->FullResume, AcpiS3ResumeRecord->ResumeCount); | ||
+ if (AcpiS3ResumeRecord->ResumeCount > 0) { | ||
+ AcpiS3ResumeRecord->AverageResume = DivU64x32 (S3ResumeTotal + AcpiS3ResumeRecord->FullResume, AcpiS3ResumeRecord->ResumeCount); | ||
+ DEBUG ((DEBUG_INFO, "\nFPDT: S3 Resume Performance - AverageResume = 0x%x\n", AcpiS3ResumeRecord->AverageResume)); | ||
+ } else { | ||
+ DEBUG ((DEBUG_ERROR, "\nFPDT: S3 ResumeCount reaches the MAX_UINT32 value. S3 ResumeCount record reset to Zero.")); | ||
+ } | ||
|
||
- DEBUG ((DEBUG_INFO, "FPDT: S3 Resume Performance - ResumeCount = %d\n", AcpiS3ResumeRecord->ResumeCount)); | ||
- DEBUG ((DEBUG_INFO, "FPDT: S3 Resume Performance - FullResume = %ld\n", AcpiS3ResumeRecord->FullResume)); | ||
- DEBUG ((DEBUG_INFO, "FPDT: S3 Resume Performance - AverageResume = %ld\n", AcpiS3ResumeRecord->AverageResume)); | ||
+ DEBUG ((DEBUG_INFO, "FPDT: S3 Resume Performance - ResumeCount = 0x%x\n", AcpiS3ResumeRecord->ResumeCount)); | ||
+ DEBUG ((DEBUG_INFO, "FPDT: S3 Resume Performance - FullResume = 0x%x\n", AcpiS3ResumeRecord->FullResume)); | ||
|
||
// | ||
// Update S3 Suspend Performance Record. | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters