summaryrefslogtreecommitdiffstats
path: root/install/verifier.cpp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2020-09-19 09:04:48 +0200
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-09-19 09:04:48 +0200
commita5c4d3c016f09d2470a9231d97925cb4322005eb (patch)
tree6a1b77b1e1a62e27ea23f0940266b7557dec8382 /install/verifier.cpp
parent[automerger skipped] Merge "Merge mainline-release 6664920 to master - DO NOT MERGE" am: 7a899bb461 am: d3865b7a63 -s ours am: c4eabe78c5 -s ours (diff)
parentMerge "Check for overflow before allocating memory fore decompression." am: c1d2c15785 am: 115a017218 (diff)
downloadandroid_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar.gz
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar.bz2
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar.lz
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar.xz
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.tar.zst
android_bootable_recovery-a5c4d3c016f09d2470a9231d97925cb4322005eb.zip
Diffstat (limited to 'install/verifier.cpp')
-rw-r--r--install/verifier.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/install/verifier.cpp b/install/verifier.cpp
index d8bc53f69..3f0260138 100644
--- a/install/verifier.cpp
+++ b/install/verifier.cpp
@@ -323,6 +323,12 @@ static std::vector<Certificate> IterateZipEntriesAndSearchForKeys(const ZipArchi
std::string_view name;
ZipEntry64 entry;
while ((iter_status = Next(cookie, &entry, &name)) == 0) {
+ if (entry.uncompressed_length > std::numeric_limits<size_t>::max()) {
+ LOG(ERROR) << "Failed to extract " << name
+ << " because's uncompressed size exceeds size of address space. "
+ << entry.uncompressed_length;
+ return {};
+ }
std::vector<uint8_t> pem_content(entry.uncompressed_length);
if (int32_t extract_status =
ExtractToMemory(handle, &entry, pem_content.data(), pem_content.size());