summaryrefslogtreecommitdiffstats
path: root/uncrypt
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-09-13 04:29:39 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-09-13 04:29:39 +0200
commite8437b53402086dc59f3f47f779bafbbffe40e11 (patch)
tree0ac1a5cc33cf2181d5d02001b527493020dfd98f /uncrypt
parentMerge "save uncrypt status to last_install" am: cdf509cce2 am: 6048138e10 am: 86ea1724ae -s ours (diff)
parentsave uncrypt status to last_install am: e16e799dfd (diff)
downloadandroid_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar.gz
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar.bz2
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar.lz
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar.xz
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.tar.zst
android_bootable_recovery-e8437b53402086dc59f3f47f779bafbbffe40e11.zip
Diffstat (limited to 'uncrypt')
-rw-r--r--uncrypt/uncrypt.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index 993441a5d..1fba717f3 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -130,6 +130,7 @@
// devices, on which /cache partitions always exist.
static const std::string CACHE_BLOCK_MAP = "/cache/recovery/block.map";
static const std::string UNCRYPT_PATH_FILE = "/cache/recovery/uncrypt_file";
+static const std::string UNCRYPT_STATUS = "/cache/recovery/uncrypt_status";
static const std::string UNCRYPT_SOCKET = "uncrypt";
static struct fstab* fstab = nullptr;
@@ -466,12 +467,32 @@ static bool uncrypt_wrapper(const char* input_path, const char* map_file, const
input_path = package.c_str();
}
CHECK(map_file != nullptr);
+
+#define UNCRYPT_TIME_HOLDER 0x7FFFFFFF
+ // Intialize the uncrypt time cost to a huge number so that we can tell from
+ // the statistics if an uncrypt fails to finish.
+ if (!android::base::WriteStringToFile(android::base::StringPrintf(
+ "uncrypt_time: %d\n", UNCRYPT_TIME_HOLDER), UNCRYPT_STATUS)) {
+ PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS;
+ }
+
+ auto start = std::chrono::system_clock::now();
int status = uncrypt(input_path, map_file, socket);
if (status != 0) {
write_status_to_socket(-1, socket);
return false;
}
+
+ std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
+ int count = static_cast<int>(duration.count());
+ // Overwrite the uncrypt_time if uncrypt finishes successfully.
+ if (!android::base::WriteStringToFile(
+ android::base::StringPrintf("uncrypt_time: %d\n", count), UNCRYPT_STATUS)) {
+ PLOG(WARNING) << "failed to write to " << UNCRYPT_STATUS;
+ }
+
write_status_to_socket(100, socket);
+
return true;
}