summaryrefslogtreecommitdiffstats
path: root/uncrypt/uncrypt.cpp
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-06-21 20:00:44 +0200
committerYabin Cui <yabinc@google.com>2016-06-21 20:09:38 +0200
commitbf049bffe2ea70e788e5c54ca307839232eb2f5d (patch)
treefc7c54a8c23f5849d29d11ffa09c3e641997dc02 /uncrypt/uncrypt.cpp
parentMerge \\"Import translations. DO NOT MERGE\\" into stage-aosp-master am: 2c709ccef9 -s ours (diff)
parentMerge "Verify wipe package when wiping A/B device in recovery." into nyc-mr1-dev (diff)
downloadandroid_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar.gz
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar.bz2
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar.lz
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar.xz
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.tar.zst
android_bootable_recovery-bf049bffe2ea70e788e5c54ca307839232eb2f5d.zip
Diffstat (limited to 'uncrypt/uncrypt.cpp')
-rw-r--r--uncrypt/uncrypt.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index 5697712aa..0f2487d3f 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -501,14 +501,31 @@ static bool setup_bcb(const int socket) {
return false;
}
ALOGI(" received command: [%s] (%zu)", content.c_str(), content.size());
+ std::vector<std::string> options = android::base::Split(content, "\n");
+ std::string wipe_package;
+ for (auto& option : options) {
+ if (android::base::StartsWith(option, "--wipe_package=")) {
+ std::string path = option.substr(strlen("--wipe_package="));
+ if (!android::base::ReadFileToString(path, &wipe_package)) {
+ ALOGE("failed to read %s: %s", path.c_str(), strerror(errno));
+ return false;
+ }
+ option = android::base::StringPrintf("--wipe_package_size=%zu", wipe_package.size());
+ }
+ }
// c8. setup the bcb command
std::string err;
- if (!write_bootloader_message({content}, &err)) {
+ if (!write_bootloader_message(options, &err)) {
ALOGE("failed to set bootloader message: %s", err.c_str());
write_status_to_socket(-1, socket);
return false;
}
+ if (!wipe_package.empty() && !write_wipe_package(wipe_package, &err)) {
+ ALOGE("failed to set wipe package: %s", err.c_str());
+ write_status_to_socket(-1, socket);
+ return false;
+ }
// c10. send "100" status
write_status_to_socket(100, socket);
return true;