summaryrefslogtreecommitdiffstats
path: root/recovery.cpp
diff options
context:
space:
mode:
authorxunchang <xunchang@google.com>2019-02-25 23:14:01 +0100
committerxunchang <xunchang@google.com>2019-03-11 18:43:52 +0100
commitf07ed2efeb18121fd3f1c489053e84fd9f46c4c1 (patch)
tree786208bfa07ce110fcaffd9ad576c4815ca54380 /recovery.cpp
parentMerge "Add a new entry in wipe package to list all wipe partitions" (diff)
downloadandroid_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar.gz
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar.bz2
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar.lz
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar.xz
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.tar.zst
android_bootable_recovery-f07ed2efeb18121fd3f1c489053e84fd9f46c4c1.zip
Diffstat (limited to '')
-rw-r--r--recovery.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 90c84878b..2c9f9de68 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -64,6 +64,7 @@
#include "otautil/error_code.h"
#include "otautil/paths.h"
#include "otautil/sysutil.h"
+#include "package.h"
#include "roots.h"
#include "screen_ui.h"
#include "ui.h"
@@ -517,13 +518,15 @@ static std::string ReadWipePackage(size_t wipe_package_size) {
// 1. verify the package.
// 2. check metadata (ota-type, pre-device and serial number if having one).
static bool CheckWipePackage(const std::string& wipe_package) {
- if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
- wipe_package.size())) {
+ auto package = Package::CreateMemoryPackage(
+ std::vector<uint8_t>(wipe_package.begin(), wipe_package.end()), nullptr);
+
+ if (!package || !verify_package(package.get())) {
LOG(ERROR) << "Failed to verify package";
return false;
}
- // Extract metadata
+ // TODO(xunchang) get zip archive from package.
ZipArchiveHandle zip;
if (auto err =
OpenArchiveFromMemory(const_cast<void*>(static_cast<const void*>(&wipe_package[0])),