summaryrefslogtreecommitdiffstats
path: root/update_verifier/update_verifier.cpp
diff options
context:
space:
mode:
authorAkilesh Kailash <akailash@google.com>2022-03-23 19:53:52 +0100
committerKalesh Singh <kaleshsingh@google.com>2023-01-09 20:25:32 +0100
commit2fa4a46b465cd812dc93d05a3157456a4a0c105d (patch)
treefa474dbcd1043cf932a0277d2e3abcdbfd9391ef /update_verifier/update_verifier.cpp
parentImport translations. DO NOT MERGE ANYWHERE (diff)
downloadandroid_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar.gz
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar.bz2
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar.lz
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar.xz
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.tar.zst
android_bootable_recovery-2fa4a46b465cd812dc93d05a3157456a4a0c105d.zip
Diffstat (limited to '')
-rw-r--r--update_verifier/update_verifier.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp
index a042f9008..88fcfa502 100644
--- a/update_verifier/update_verifier.cpp
+++ b/update_verifier/update_verifier.cpp
@@ -52,6 +52,7 @@
#include <future>
#include <thread>
+#include <android-base/chrono_utils.h>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/parseint.h>
@@ -188,7 +189,28 @@ bool UpdateVerifier::ReadBlocks(const std::string partition_name,
return ret;
}
+bool UpdateVerifier::CheckVerificationStatus() {
+ auto client =
+ android::snapshot::SnapuserdClient::Connect(android::snapshot::kSnapuserdSocket, 5s);
+ if (!client) {
+ LOG(ERROR) << "Unable to connect to snapuserd";
+ return false;
+ }
+
+ return client->QueryUpdateVerification();
+}
+
bool UpdateVerifier::VerifyPartitions() {
+ const bool userspace_snapshots =
+ android::base::GetBoolProperty("ro.virtual_ab.userspace.snapshots.enabled", false);
+
+ if (userspace_snapshots && CheckVerificationStatus()) {
+ LOG(INFO) << "Partitions verified by snapuserd daemon";
+ return true;
+ }
+
+ LOG(INFO) << "Partitions not verified by snapuserd daemon";
+
auto dm_block_devices = FindDmPartitions();
if (dm_block_devices.empty()) {
LOG(ERROR) << "No dm-enabled block device is found.";