summaryrefslogtreecommitdiffstats
path: root/install/wipe_device.cpp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2020-09-17 17:32:29 +0200
committerKelvin Zhang <zhangkelvin@google.com>2020-09-18 23:41:51 +0200
commitd1ba38f7c96e74901779089fea6d09b0c7c2521d (patch)
treef892e9ca467b4f751345a2a3200caf8903a217c9 /install/wipe_device.cpp
parentMerge "Switch to zip64 in recovery" (diff)
downloadandroid_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar.gz
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar.bz2
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar.lz
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar.xz
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.tar.zst
android_bootable_recovery-d1ba38f7c96e74901779089fea6d09b0c7c2521d.zip
Diffstat (limited to 'install/wipe_device.cpp')
-rw-r--r--install/wipe_device.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/install/wipe_device.cpp b/install/wipe_device.cpp
index 0f896c43b..915c87b45 100644
--- a/install/wipe_device.cpp
+++ b/install/wipe_device.cpp
@@ -51,7 +51,12 @@ std::vector<std::string> GetWipePartitionList(Package* wipe_package) {
std::string partition_list_content;
ZipEntry64 entry;
if (FindEntry(zip, RECOVERY_WIPE_ENTRY_NAME, &entry) == 0) {
- uint32_t length = entry.uncompressed_length;
+ auto length = entry.uncompressed_length;
+ if (length > std::numeric_limits<size_t>::max()) {
+ LOG(ERROR) << "Failed to extract " << RECOVERY_WIPE_ENTRY_NAME
+ << " because's uncompressed size exceeds size of address space. " << length;
+ return {};
+ }
partition_list_content = std::string(length, '\0');
if (auto err = ExtractToMemory(
zip, &entry, reinterpret_cast<uint8_t*>(partition_list_content.data()), length);