aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com>2024-04-05 18:52:15 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-05 18:52:15 +0000
commite288aff6fa50477091c5f71fdc641aa8672d3e77 (patch)
treefe4df07acad020fce38b0e1100d0d8d96eee5a07
parent5aee6aca72b7cbf53566c91eb5734716a8286d3f (diff)
parente366fe9f01a91d0a86f892ef544c85672627813e (diff)
downloadrecovery-e288aff6fa50477091c5f71fdc641aa8672d3e77.tar.gz
Merge "Check for build-tags before installing sideload OTA" into main
-rw-r--r--install/install.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/install/install.cpp b/install/install.cpp
index a9786cfd..6294a3dc 100644
--- a/install/install.cpp
+++ b/install/install.cpp
@@ -189,6 +189,17 @@ static bool CheckAbSpecificMetadata(const std::map<std::string, std::string>& me
return false;
}
}
+ const auto post_build = get_value(metadata, "post-build");
+ const auto build_fingerprint = android::base::Tokenize(post_build, "/");
+ if (!build_fingerprint.empty()) {
+ const auto& post_build_tag = build_fingerprint.back();
+ const auto build_tag = android::base::GetProperty("ro.build.tags", "");
+ if (build_tag != post_build_tag) {
+ LOG(ERROR) << "Post build-tag " << post_build_tag << " does not match device build tag "
+ << build_tag;
+ return false;
+ }
+ }
return true;
}