blob: ea47a65ca61eb51fc4bddc6d20ded61bcf1b799a [file] [log] [blame]
Tao Bao7197ee02015-12-05 21:21:27 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
Tao Bao1cc03512018-04-18 17:10:49 -070018 * update_verifier verifies the integrity of the partitions after an A/B OTA update. It gets invoked
19 * by init, and will only perform the verification if it's the first boot post an A/B OTA update
20 * (https://source.android.com/devices/tech/ota/ab/#after_reboot).
Tao Bao7197ee02015-12-05 21:21:27 -080021 *
Tao Bao1cc03512018-04-18 17:10:49 -070022 * update_verifier relies on device-mapper-verity (dm-verity) to capture any corruption on the
23 * partitions being verified (https://source.android.com/security/verifiedboot). The verification
24 * will be skipped, if dm-verity is not enabled on the device.
25 *
26 * Upon detecting verification failures, the device will be rebooted, although the trigger of the
27 * reboot depends on the dm-verity mode.
Tianjie Xu3958a952017-03-01 15:31:25 -080028 * enforcing mode: dm-verity reboots the device
29 * eio mode: dm-verity fails the read and update_verifier reboots the device
30 * other mode: not supported and update_verifier reboots the device
31 *
Tao Bao1cc03512018-04-18 17:10:49 -070032 * All these reboots prevent the device from booting into a known corrupt state. If the device
33 * continuously fails to boot into the new slot, the bootloader should mark the slot as unbootable
34 * and trigger a fallback to the old slot.
Tao Bao7197ee02015-12-05 21:21:27 -080035 *
Tao Bao1cc03512018-04-18 17:10:49 -070036 * The current slot will be marked as having booted successfully if the verifier reaches the end
37 * after the verification.
Tao Bao7197ee02015-12-05 21:21:27 -080038 */
39
Tao Bao83b07802017-04-26 14:30:56 -070040#include "update_verifier/update_verifier.h"
41
Tianjie Xub0ac8722017-01-18 18:41:53 -080042#include <dirent.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080043#include <errno.h>
44#include <fcntl.h>
Tao Baoc89c3942019-03-13 15:30:13 -070045#include <stdint.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080046#include <stdio.h>
Tao Baoc89c3942019-03-13 15:30:13 -070047#include <stdlib.h>
Tao Bao7197ee02015-12-05 21:21:27 -080048#include <string.h>
Tianjie Xu3958a952017-03-01 15:31:25 -080049#include <unistd.h>
Tao Bao7197ee02015-12-05 21:21:27 -080050
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -070051#include <algorithm>
Wei Wang5226f472017-08-02 10:27:31 -070052#include <future>
Tao Baoc89c3942019-03-13 15:30:13 -070053#include <thread>
Tianjie Xud007cf22016-02-29 16:08:06 -080054
Kelvin Zhangfa554fe2022-04-01 14:17:10 -070055#include <BootControlClient.h>
Akilesh Kailashdc1f6da2022-03-23 18:53:52 +000056#include <android-base/chrono_utils.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080057#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070058#include <android-base/logging.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080059#include <android-base/parseint.h>
Tao Bao4f8d2172017-01-13 15:36:32 -080060#include <android-base/properties.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080061#include <android-base/strings.h>
62#include <android-base/unique_fd.h>
Tao Baoc89c3942019-03-13 15:30:13 -070063#include <android/os/IVold.h>
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -080064#include <binder/BinderService.h>
65#include <binder/Status.h>
Tianjie Xu3958a952017-03-01 15:31:25 -080066#include <cutils/android_reboot.h>
Connor O'Brienad43d2d2016-11-21 12:47:33 -080067
Tianjie Xu4d9e62d2018-05-11 10:41:44 -070068#include "care_map.pb.h"
Tao Bao160514b2017-11-04 00:08:08 -070069
xunchangaaa61032019-03-13 14:21:48 -070070// TODO(xunchang) remove the prefix and use a default path instead.
Tianjie Xu9eed65e2018-09-14 12:52:02 -070071constexpr const char* kDefaultCareMapPrefix = "/data/ota_package/care_map";
72
Tianjie Xub0ac8722017-01-18 18:41:53 -080073// Find directories in format of "/sys/block/dm-X".
74static int dm_name_filter(const dirent* de) {
75 if (android::base::StartsWith(de->d_name, "dm-")) {
76 return 1;
77 }
78 return 0;
79}
80
Tianjie Xu9eed65e2018-09-14 12:52:02 -070081UpdateVerifier::UpdateVerifier()
82 : care_map_prefix_(kDefaultCareMapPrefix),
83 property_reader_([](const std::string& id) { return android::base::GetProperty(id, ""); }) {}
84
Tianjie Xu446b64b2018-09-19 15:45:28 -070085// Iterate the content of "/sys/block/dm-X/dm/name" and find all the dm-wrapped block devices.
86// We will later read all the ("cared") blocks from "/dev/block/dm-X" to ensure the target
87// partition's integrity.
88std::map<std::string, std::string> UpdateVerifier::FindDmPartitions() {
Tao Bao83b07802017-04-26 14:30:56 -070089 static constexpr auto DM_PATH_PREFIX = "/sys/block/";
Kelvin Zhangfa554fe2022-04-01 14:17:10 -070090 dirent** namelist = nullptr;
Tianjie Xub0ac8722017-01-18 18:41:53 -080091 int n = scandir(DM_PATH_PREFIX, &namelist, dm_name_filter, alphasort);
92 if (n == -1) {
93 PLOG(ERROR) << "Failed to scan dir " << DM_PATH_PREFIX;
Tianjie Xu446b64b2018-09-19 15:45:28 -070094 return {};
Tianjie Xub0ac8722017-01-18 18:41:53 -080095 }
96 if (n == 0) {
Tianjie Xu446b64b2018-09-19 15:45:28 -070097 LOG(ERROR) << "No dm block device found.";
98 return {};
Tianjie Xub0ac8722017-01-18 18:41:53 -080099 }
100
Tao Bao83b07802017-04-26 14:30:56 -0700101 static constexpr auto DM_PATH_SUFFIX = "/dm/name";
102 static constexpr auto DEV_PATH = "/dev/block/";
Tianjie Xu446b64b2018-09-19 15:45:28 -0700103 std::map<std::string, std::string> dm_block_devices;
Tianjie Xub0ac8722017-01-18 18:41:53 -0800104 while (n--) {
105 std::string path = DM_PATH_PREFIX + std::string(namelist[n]->d_name) + DM_PATH_SUFFIX;
106 std::string content;
107 if (!android::base::ReadFileToString(path, &content)) {
108 PLOG(WARNING) << "Failed to read " << path;
David Zeuthen8ed97382017-05-08 13:41:28 -0400109 } else {
110 std::string dm_block_name = android::base::Trim(content);
David Zeuthen8ed97382017-05-08 13:41:28 -0400111 // AVB is using 'vroot' for the root block device but we're expecting 'system'.
112 if (dm_block_name == "vroot") {
113 dm_block_name = "system";
David Andersonc52663c2019-04-01 14:37:33 -0700114 } else if (android::base::EndsWith(dm_block_name, "-verity")) {
115 auto npos = dm_block_name.rfind("-verity");
116 dm_block_name = dm_block_name.substr(0, npos);
117 } else if (!android::base::GetProperty("ro.boot.avb_version", "").empty()) {
118 // Verified Boot 1.0 doesn't add a -verity suffix. On AVB 2 devices,
119 // if DAP is enabled, then a -verity suffix must be used to
120 // differentiate between dm-linear and dm-verity devices. If we get
121 // here, we're AVB 2 and looking at a non-verity partition.
122 continue;
Tianjie Xub0ac8722017-01-18 18:41:53 -0800123 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700124
125 dm_block_devices.emplace(dm_block_name, DEV_PATH + std::string(namelist[n]->d_name));
Tianjie Xub0ac8722017-01-18 18:41:53 -0800126 }
127 free(namelist[n]);
128 }
129 free(namelist);
130
Tianjie Xu446b64b2018-09-19 15:45:28 -0700131 return dm_block_devices;
132}
Tao Bao4f8d2172017-01-13 15:36:32 -0800133
Tianjie Xu446b64b2018-09-19 15:45:28 -0700134bool UpdateVerifier::ReadBlocks(const std::string partition_name,
135 const std::string& dm_block_device, const RangeSet& ranges) {
Tao Bao160514b2017-11-04 00:08:08 -0700136 // RangeSet::Split() splits the ranges into multiple groups with same number of blocks (except for
137 // the last group).
138 size_t thread_num = std::thread::hardware_concurrency() ?: 4;
139 std::vector<RangeSet> groups = ranges.Split(thread_num);
Tao Bao4f8d2172017-01-13 15:36:32 -0800140
Wei Wang5226f472017-08-02 10:27:31 -0700141 std::vector<std::future<bool>> threads;
Tao Bao160514b2017-11-04 00:08:08 -0700142 for (const auto& group : groups) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700143 auto thread_func = [&group, &dm_block_device, &partition_name]() {
Wei Wang5226f472017-08-02 10:27:31 -0700144 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(dm_block_device.c_str(), O_RDONLY)));
145 if (fd.get() == -1) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700146 PLOG(ERROR) << "Error reading " << dm_block_device << " for partition " << partition_name;
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -0700147 return false;
148 }
Wei Wang5226f472017-08-02 10:27:31 -0700149
Tao Bao160514b2017-11-04 00:08:08 -0700150 static constexpr size_t kBlockSize = 4096;
151 std::vector<uint8_t> buf(1024 * kBlockSize);
Wei Wang5226f472017-08-02 10:27:31 -0700152
Tao Bao160514b2017-11-04 00:08:08 -0700153 size_t block_count = 0;
Tianjie Xu446b64b2018-09-19 15:45:28 -0700154 for (const auto& [range_start, range_end] : group) {
Wei Wang5226f472017-08-02 10:27:31 -0700155 if (lseek64(fd.get(), static_cast<off64_t>(range_start) * kBlockSize, SEEK_SET) == -1) {
156 PLOG(ERROR) << "lseek to " << range_start << " failed";
157 return false;
158 }
159
160 size_t remain = (range_end - range_start) * kBlockSize;
161 while (remain > 0) {
162 size_t to_read = std::min(remain, 1024 * kBlockSize);
163 if (!android::base::ReadFully(fd.get(), buf.data(), to_read)) {
164 PLOG(ERROR) << "Failed to read blocks " << range_start << " to " << range_end;
165 return false;
166 }
167 remain -= to_read;
168 }
Tao Bao160514b2017-11-04 00:08:08 -0700169 block_count += (range_end - range_start);
Wei Wang5226f472017-08-02 10:27:31 -0700170 }
Tao Bao160514b2017-11-04 00:08:08 -0700171 LOG(INFO) << "Finished reading " << block_count << " blocks on " << dm_block_device;
Wei Wang5226f472017-08-02 10:27:31 -0700172 return true;
173 };
174
175 threads.emplace_back(std::async(std::launch::async, thread_func));
Tao Bao4f8d2172017-01-13 15:36:32 -0800176 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800177
Wei Wang5226f472017-08-02 10:27:31 -0700178 bool ret = true;
179 for (auto& t : threads) {
180 ret = t.get() && ret;
181 }
182 LOG(INFO) << "Finished reading blocks on " << dm_block_device << " with " << thread_num
183 << " threads.";
184 return ret;
Tianjie Xud007cf22016-02-29 16:08:06 -0800185}
186
Akilesh Kailashdc1f6da2022-03-23 18:53:52 +0000187bool UpdateVerifier::CheckVerificationStatus() {
188 auto client =
189 android::snapshot::SnapuserdClient::Connect(android::snapshot::kSnapuserdSocket, 5s);
190 if (!client) {
191 LOG(ERROR) << "Unable to connect to snapuserd";
192 return false;
193 }
194
195 return client->QueryUpdateVerification();
196}
197
Tianjie Xu446b64b2018-09-19 15:45:28 -0700198bool UpdateVerifier::VerifyPartitions() {
Akilesh Kailashdc1f6da2022-03-23 18:53:52 +0000199 const bool userspace_snapshots =
200 android::base::GetBoolProperty("ro.virtual_ab.userspace.snapshots.enabled", false);
201
202 if (userspace_snapshots && CheckVerificationStatus()) {
203 LOG(INFO) << "Partitions verified by snapuserd daemon";
204 return true;
205 }
206
207 LOG(INFO) << "Partitions not verified by snapuserd daemon";
208
Tianjie Xu446b64b2018-09-19 15:45:28 -0700209 auto dm_block_devices = FindDmPartitions();
210 if (dm_block_devices.empty()) {
211 LOG(ERROR) << "No dm-enabled block device is found.";
Tao Bao5a1dee02017-07-21 15:15:31 -0700212 return false;
213 }
214
Tianjie Xu446b64b2018-09-19 15:45:28 -0700215 for (const auto& [partition_name, ranges] : partition_map_) {
216 if (dm_block_devices.find(partition_name) == dm_block_devices.end()) {
217 LOG(ERROR) << "Failed to find dm block device for " << partition_name;
218 return false;
Tao Bao5a1dee02017-07-21 15:15:31 -0700219 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700220
221 if (!ReadBlocks(partition_name, dm_block_devices.at(partition_name), ranges)) {
Tao Bao5a1dee02017-07-21 15:15:31 -0700222 return false;
223 }
224 }
225
226 return true;
Tianjie Xud007cf22016-02-29 16:08:06 -0800227}
228
Tianjie Xu9eed65e2018-09-14 12:52:02 -0700229bool UpdateVerifier::ParseCareMap() {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700230 partition_map_.clear();
231
Tianjie Xu9eed65e2018-09-14 12:52:02 -0700232 std::string care_map_name = care_map_prefix_ + ".pb";
233 if (access(care_map_name.c_str(), R_OK) == -1) {
xunchangaaa61032019-03-13 14:21:48 -0700234 LOG(ERROR) << care_map_name << " doesn't exist";
235 return false;
Tianjie Xu446b64b2018-09-19 15:45:28 -0700236 }
237
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700238 android::base::unique_fd care_map_fd(TEMP_FAILURE_RETRY(open(care_map_name.c_str(), O_RDONLY)));
239 // If the device is flashed before the current boot, it may not have care_map.txt in
240 // /data/ota_package. To allow the device to continue booting in this situation, we should
241 // print a warning and skip the block verification.
242 if (care_map_fd.get() == -1) {
243 PLOG(WARNING) << "Failed to open " << care_map_name;
Tianjie Xu446b64b2018-09-19 15:45:28 -0700244 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700245 }
246
247 std::string file_content;
248 if (!android::base::ReadFdToString(care_map_fd.get(), &file_content)) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700249 PLOG(WARNING) << "Failed to read " << care_map_name;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700250 return false;
251 }
252
253 if (file_content.empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700254 LOG(WARNING) << "Unexpected empty care map";
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700255 return false;
256 }
257
Tianjie Xu446b64b2018-09-19 15:45:28 -0700258 recovery_update_verifier::CareMap care_map;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700259 if (!care_map.ParseFromString(file_content)) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700260 LOG(WARNING) << "Failed to parse " << care_map_name << " in protobuf format.";
261 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700262 }
263
264 for (const auto& partition : care_map.partitions()) {
265 if (partition.name().empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700266 LOG(WARNING) << "Unexpected empty partition name.";
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700267 return false;
268 }
269 if (partition.ranges().empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700270 LOG(WARNING) << "Unexpected block ranges for partition " << partition.name();
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700271 return false;
272 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700273 RangeSet ranges = RangeSet::Parse(partition.ranges());
274 if (!ranges) {
275 LOG(WARNING) << "Error parsing RangeSet string " << partition.ranges();
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700276 return false;
277 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700278
Tianjie Xu9eed65e2018-09-14 12:52:02 -0700279 // Continues to check other partitions if there is a fingerprint mismatch.
280 if (partition.id().empty() || partition.id() == "unknown") {
281 LOG(WARNING) << "Skip reading partition " << partition.name()
282 << ": property_id is not provided to get fingerprint.";
283 continue;
284 }
285
286 std::string fingerprint = property_reader_(partition.id());
287 if (fingerprint != partition.fingerprint()) {
288 LOG(WARNING) << "Skip reading partition " << partition.name() << ": fingerprint "
289 << fingerprint << " doesn't match the expected value "
290 << partition.fingerprint();
291 continue;
292 }
293
Tianjie Xu446b64b2018-09-19 15:45:28 -0700294 partition_map_.emplace(partition.name(), ranges);
295 }
296
297 if (partition_map_.empty()) {
298 LOG(WARNING) << "No partition to verify";
299 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700300 }
301
302 return true;
303}
304
Tianjie Xu9eed65e2018-09-14 12:52:02 -0700305void UpdateVerifier::set_care_map_prefix(const std::string& prefix) {
306 care_map_prefix_ = prefix;
307}
308
309void UpdateVerifier::set_property_reader(
310 const std::function<std::string(const std::string&)>& property_reader) {
311 property_reader_ = property_reader;
312}
313
Tianjie Xu3958a952017-03-01 15:31:25 -0800314static int reboot_device() {
315 if (android_reboot(ANDROID_RB_RESTART2, 0, nullptr) == -1) {
316 LOG(ERROR) << "Failed to reboot.";
317 return -1;
318 }
319 while (true) pause();
320}
321
Tao Bao83b07802017-04-26 14:30:56 -0700322int update_verifier(int argc, char** argv) {
Tao Bao7197ee02015-12-05 21:21:27 -0800323 for (int i = 1; i < argc; i++) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700324 LOG(INFO) << "Started with arg " << i << ": " << argv[i];
Tao Bao7197ee02015-12-05 21:21:27 -0800325 }
326
Kelvin Zhangfa554fe2022-04-01 14:17:10 -0700327 const auto module = android::hal::BootControlClient::WaitForService();
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800328 if (module == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700329 LOG(ERROR) << "Error getting bootctrl module.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800330 return reboot_device();
Tao Bao7197ee02015-12-05 21:21:27 -0800331 }
332
Kelvin Zhangfa554fe2022-04-01 14:17:10 -0700333 uint32_t current_slot = module->GetCurrentSlot();
334 const auto is_successful = module->IsSlotMarkedSuccessful(current_slot);
335 if (!is_successful.has_value()) {
336 LOG(INFO) << "Booting slot " << current_slot << " failed";
337 } else {
338 LOG(INFO) << "Booting slot " << current_slot
339 << ": isSlotMarkedSuccessful=" << is_successful.value();
340 }
341 if (is_successful.has_value() && !is_successful.value()) {
Tao Bao7197ee02015-12-05 21:21:27 -0800342 // The current slot has not booted successfully.
Tao Baodb57f0d2017-03-10 14:21:25 -0800343
David Zeuthen1a0929c2017-08-07 18:47:27 -0400344 bool skip_verification = false;
Tao Bao4f8d2172017-01-13 15:36:32 -0800345 std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", "");
346 if (verity_mode.empty()) {
Tao Bao1cc03512018-04-18 17:10:49 -0700347 // Skip the verification if ro.boot.veritymode property is not set. This could be a result
348 // that device doesn't support dm-verity, or has disabled that.
349 LOG(WARNING) << "dm-verity not enabled; marking without verification.";
David Zeuthen1a0929c2017-08-07 18:47:27 -0400350 skip_verification = true;
Tao Bao4f8d2172017-01-13 15:36:32 -0800351 } else if (android::base::EqualsIgnoreCase(verity_mode, "eio")) {
Tianjie Xu3958a952017-03-01 15:31:25 -0800352 // We shouldn't see verity in EIO mode if the current slot hasn't booted successfully before.
353 // Continue the verification until we fail to read some blocks.
354 LOG(WARNING) << "Found dm-verity in EIO mode.";
David Zeuthen1a0929c2017-08-07 18:47:27 -0400355 } else if (android::base::EqualsIgnoreCase(verity_mode, "disabled")) {
356 LOG(WARNING) << "dm-verity in disabled mode; marking without verification.";
357 skip_verification = true;
Tao Bao4f8d2172017-01-13 15:36:32 -0800358 } else if (verity_mode != "enforcing") {
Tao Bao1cc03512018-04-18 17:10:49 -0700359 LOG(ERROR) << "Unexpected dm-verity mode: " << verity_mode << ", expecting enforcing.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800360 return reboot_device();
361 }
362
David Zeuthen1a0929c2017-08-07 18:47:27 -0400363 if (!skip_verification) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700364 UpdateVerifier verifier;
365 if (!verifier.ParseCareMap()) {
366 LOG(WARNING) << "Failed to parse the care map file, skipping verification";
367 } else if (!verifier.VerifyPartitions()) {
David Zeuthen1a0929c2017-08-07 18:47:27 -0400368 LOG(ERROR) << "Failed to verify all blocks in care map file.";
369 return reboot_device();
370 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800371 }
Tao Bao7197ee02015-12-05 21:21:27 -0800372
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800373 bool supports_checkpoint = false;
374 auto sm = android::defaultServiceManager();
375 android::sp<android::IBinder> binder = sm->getService(android::String16("vold"));
376 if (binder) {
377 auto vold = android::interface_cast<android::os::IVold>(binder);
378 android::binder::Status status = vold->supportsCheckpoint(&supports_checkpoint);
379 if (!status.isOk()) {
380 LOG(ERROR) << "Failed to check if checkpoints supported. Continuing";
381 }
382 } else {
383 LOG(ERROR) << "Failed to obtain vold Binder. Continuing";
Tao Bao7197ee02015-12-05 21:21:27 -0800384 }
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800385
386 if (!supports_checkpoint) {
Kelvin Zhangfa554fe2022-04-01 14:17:10 -0700387 const auto cr = module->MarkBootSuccessful();
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800388 if (!cr.success) {
389 LOG(ERROR) << "Error marking booted successfully: " << cr.errMsg;
390 return reboot_device();
391 }
392 LOG(INFO) << "Marked slot " << current_slot << " as booted successfully.";
Tianjie Xu88bf6d22019-11-14 15:07:25 -0800393 // Clears the warm reset flag for next reboot.
394 if (!android::base::SetProperty("ota.warm_reset", "0")) {
395 LOG(WARNING) << "Failed to reset the warm reset flag";
396 }
Daniel Rosenberg15f22bd2019-01-22 19:57:28 -0800397 } else {
398 LOG(INFO) << "Deferred marking slot " << current_slot << " as booted successfully.";
399 }
Tao Bao7197ee02015-12-05 21:21:27 -0800400 }
401
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700402 LOG(INFO) << "Leaving update_verifier.";
Tao Bao7197ee02015-12-05 21:21:27 -0800403 return 0;
404}