blob: 6e86ac9d325bc0ae631bc0521e06821779859fe0 [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>
45#include <stdio.h>
Tao Bao7197ee02015-12-05 21:21:27 -080046#include <string.h>
Tianjie Xu3958a952017-03-01 15:31:25 -080047#include <unistd.h>
Tao Bao7197ee02015-12-05 21:21:27 -080048
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -070049#include <algorithm>
Wei Wang5226f472017-08-02 10:27:31 -070050#include <future>
Tianjie Xud007cf22016-02-29 16:08:06 -080051
52#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070053#include <android-base/logging.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080054#include <android-base/parseint.h>
Tao Bao4f8d2172017-01-13 15:36:32 -080055#include <android-base/properties.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080056#include <android-base/strings.h>
57#include <android-base/unique_fd.h>
Connor O'Brienad43d2d2016-11-21 12:47:33 -080058#include <android/hardware/boot/1.0/IBootControl.h>
Tianjie Xu3958a952017-03-01 15:31:25 -080059#include <cutils/android_reboot.h>
Connor O'Brienad43d2d2016-11-21 12:47:33 -080060
Tianjie Xu4d9e62d2018-05-11 10:41:44 -070061#include "care_map.pb.h"
Tao Bao160514b2017-11-04 00:08:08 -070062
Connor O'Brienad43d2d2016-11-21 12:47:33 -080063using android::sp;
64using android::hardware::boot::V1_0::IBootControl;
65using android::hardware::boot::V1_0::BoolResult;
66using android::hardware::boot::V1_0::CommandResult;
Tao Bao7197ee02015-12-05 21:21:27 -080067
Tianjie Xub0ac8722017-01-18 18:41:53 -080068// Find directories in format of "/sys/block/dm-X".
69static int dm_name_filter(const dirent* de) {
70 if (android::base::StartsWith(de->d_name, "dm-")) {
71 return 1;
72 }
73 return 0;
74}
75
Tianjie Xu446b64b2018-09-19 15:45:28 -070076// Iterate the content of "/sys/block/dm-X/dm/name" and find all the dm-wrapped block devices.
77// We will later read all the ("cared") blocks from "/dev/block/dm-X" to ensure the target
78// partition's integrity.
79std::map<std::string, std::string> UpdateVerifier::FindDmPartitions() {
Tao Bao83b07802017-04-26 14:30:56 -070080 static constexpr auto DM_PATH_PREFIX = "/sys/block/";
Tianjie Xub0ac8722017-01-18 18:41:53 -080081 dirent** namelist;
82 int n = scandir(DM_PATH_PREFIX, &namelist, dm_name_filter, alphasort);
83 if (n == -1) {
84 PLOG(ERROR) << "Failed to scan dir " << DM_PATH_PREFIX;
Tianjie Xu446b64b2018-09-19 15:45:28 -070085 return {};
Tianjie Xub0ac8722017-01-18 18:41:53 -080086 }
87 if (n == 0) {
Tianjie Xu446b64b2018-09-19 15:45:28 -070088 LOG(ERROR) << "No dm block device found.";
89 return {};
Tianjie Xub0ac8722017-01-18 18:41:53 -080090 }
91
Tao Bao83b07802017-04-26 14:30:56 -070092 static constexpr auto DM_PATH_SUFFIX = "/dm/name";
93 static constexpr auto DEV_PATH = "/dev/block/";
Tianjie Xu446b64b2018-09-19 15:45:28 -070094 std::map<std::string, std::string> dm_block_devices;
Tianjie Xub0ac8722017-01-18 18:41:53 -080095 while (n--) {
96 std::string path = DM_PATH_PREFIX + std::string(namelist[n]->d_name) + DM_PATH_SUFFIX;
97 std::string content;
98 if (!android::base::ReadFileToString(path, &content)) {
99 PLOG(WARNING) << "Failed to read " << path;
David Zeuthen8ed97382017-05-08 13:41:28 -0400100 } else {
101 std::string dm_block_name = android::base::Trim(content);
David Zeuthen8ed97382017-05-08 13:41:28 -0400102 // AVB is using 'vroot' for the root block device but we're expecting 'system'.
103 if (dm_block_name == "vroot") {
104 dm_block_name = "system";
Tianjie Xub0ac8722017-01-18 18:41:53 -0800105 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700106
107 dm_block_devices.emplace(dm_block_name, DEV_PATH + std::string(namelist[n]->d_name));
Tianjie Xub0ac8722017-01-18 18:41:53 -0800108 }
109 free(namelist[n]);
110 }
111 free(namelist);
112
Tianjie Xu446b64b2018-09-19 15:45:28 -0700113 return dm_block_devices;
114}
Tao Bao4f8d2172017-01-13 15:36:32 -0800115
Tianjie Xu446b64b2018-09-19 15:45:28 -0700116bool UpdateVerifier::ReadBlocks(const std::string partition_name,
117 const std::string& dm_block_device, const RangeSet& ranges) {
Tao Bao160514b2017-11-04 00:08:08 -0700118 // RangeSet::Split() splits the ranges into multiple groups with same number of blocks (except for
119 // the last group).
120 size_t thread_num = std::thread::hardware_concurrency() ?: 4;
121 std::vector<RangeSet> groups = ranges.Split(thread_num);
Tao Bao4f8d2172017-01-13 15:36:32 -0800122
Wei Wang5226f472017-08-02 10:27:31 -0700123 std::vector<std::future<bool>> threads;
Tao Bao160514b2017-11-04 00:08:08 -0700124 for (const auto& group : groups) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700125 auto thread_func = [&group, &dm_block_device, &partition_name]() {
Wei Wang5226f472017-08-02 10:27:31 -0700126 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(dm_block_device.c_str(), O_RDONLY)));
127 if (fd.get() == -1) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700128 PLOG(ERROR) << "Error reading " << dm_block_device << " for partition " << partition_name;
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -0700129 return false;
130 }
Wei Wang5226f472017-08-02 10:27:31 -0700131
Tao Bao160514b2017-11-04 00:08:08 -0700132 static constexpr size_t kBlockSize = 4096;
133 std::vector<uint8_t> buf(1024 * kBlockSize);
Wei Wang5226f472017-08-02 10:27:31 -0700134
Tao Bao160514b2017-11-04 00:08:08 -0700135 size_t block_count = 0;
Tianjie Xu446b64b2018-09-19 15:45:28 -0700136 for (const auto& [range_start, range_end] : group) {
Wei Wang5226f472017-08-02 10:27:31 -0700137 if (lseek64(fd.get(), static_cast<off64_t>(range_start) * kBlockSize, SEEK_SET) == -1) {
138 PLOG(ERROR) << "lseek to " << range_start << " failed";
139 return false;
140 }
141
142 size_t remain = (range_end - range_start) * kBlockSize;
143 while (remain > 0) {
144 size_t to_read = std::min(remain, 1024 * kBlockSize);
145 if (!android::base::ReadFully(fd.get(), buf.data(), to_read)) {
146 PLOG(ERROR) << "Failed to read blocks " << range_start << " to " << range_end;
147 return false;
148 }
149 remain -= to_read;
150 }
Tao Bao160514b2017-11-04 00:08:08 -0700151 block_count += (range_end - range_start);
Wei Wang5226f472017-08-02 10:27:31 -0700152 }
Tao Bao160514b2017-11-04 00:08:08 -0700153 LOG(INFO) << "Finished reading " << block_count << " blocks on " << dm_block_device;
Wei Wang5226f472017-08-02 10:27:31 -0700154 return true;
155 };
156
157 threads.emplace_back(std::async(std::launch::async, thread_func));
Tao Bao4f8d2172017-01-13 15:36:32 -0800158 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800159
Wei Wang5226f472017-08-02 10:27:31 -0700160 bool ret = true;
161 for (auto& t : threads) {
162 ret = t.get() && ret;
163 }
164 LOG(INFO) << "Finished reading blocks on " << dm_block_device << " with " << thread_num
165 << " threads.";
166 return ret;
Tianjie Xud007cf22016-02-29 16:08:06 -0800167}
168
Tianjie Xu446b64b2018-09-19 15:45:28 -0700169bool UpdateVerifier::VerifyPartitions() {
170 auto dm_block_devices = FindDmPartitions();
171 if (dm_block_devices.empty()) {
172 LOG(ERROR) << "No dm-enabled block device is found.";
Tao Bao5a1dee02017-07-21 15:15:31 -0700173 return false;
174 }
175
Tianjie Xu446b64b2018-09-19 15:45:28 -0700176 for (const auto& [partition_name, ranges] : partition_map_) {
177 if (dm_block_devices.find(partition_name) == dm_block_devices.end()) {
178 LOG(ERROR) << "Failed to find dm block device for " << partition_name;
179 return false;
Tao Bao5a1dee02017-07-21 15:15:31 -0700180 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700181
182 if (!ReadBlocks(partition_name, dm_block_devices.at(partition_name), ranges)) {
Tao Bao5a1dee02017-07-21 15:15:31 -0700183 return false;
184 }
185 }
186
187 return true;
Tianjie Xud007cf22016-02-29 16:08:06 -0800188}
189
Tianjie Xu446b64b2018-09-19 15:45:28 -0700190bool UpdateVerifier::ParseCareMapPlainText(const std::string& content) {
191 // care_map file has up to six lines, where every two lines make a pair. Within each pair, the
192 // first line has the partition name (e.g. "system"), while the second line holds the ranges of
193 // all the blocks to verify.
194 auto lines = android::base::Split(android::base::Trim(content), "\n");
195 if (lines.size() != 2 && lines.size() != 4 && lines.size() != 6) {
196 LOG(WARNING) << "Invalid lines in care_map: found " << lines.size()
197 << " lines, expecting 2 or 4 or 6 lines.";
198 return false;
199 }
200
201 for (size_t i = 0; i < lines.size(); i += 2) {
202 const std::string& partition_name = lines[i];
203 const std::string& range_str = lines[i + 1];
204 // We're seeing an N care_map.txt. Skip the verification since it's not compatible with O
205 // update_verifier (the last few metadata blocks can't be read via device mapper).
206 if (android::base::StartsWith(partition_name, "/dev/block/")) {
207 LOG(WARNING) << "Found legacy care_map.txt; skipped.";
208 return false;
209 }
210
211 // For block range string, first integer 'count' equals 2 * total number of valid ranges,
212 // followed by 'count' number comma separated integers. Every two integers reprensent a
213 // block range with the first number included in range but second number not included.
214 // For example '4,64536,65343,74149,74150' represents: [64536,65343) and [74149,74150).
215 RangeSet ranges = RangeSet::Parse(range_str);
216 if (!ranges) {
217 LOG(WARNING) << "Error parsing RangeSet string " << range_str;
218 return false;
219 }
220
221 partition_map_.emplace(partition_name, ranges);
222 }
223
224 return true;
225}
226
227bool UpdateVerifier::ParseCareMap(const std::string& file_name) {
228 partition_map_.clear();
229
230 std::string care_map_name = file_name;
231 if (care_map_name.empty()) {
232 std::string care_map_prefix = "/data/ota_package/care_map";
233 care_map_name = care_map_prefix + ".pb";
234 if (access(care_map_name.c_str(), R_OK) == -1) {
235 LOG(WARNING) << care_map_name
236 << " doesn't exist, falling back to read the care_map in plain text format.";
237 care_map_name = care_map_prefix + ".txt";
238 }
239 }
240
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700241 android::base::unique_fd care_map_fd(TEMP_FAILURE_RETRY(open(care_map_name.c_str(), O_RDONLY)));
242 // If the device is flashed before the current boot, it may not have care_map.txt in
243 // /data/ota_package. To allow the device to continue booting in this situation, we should
244 // print a warning and skip the block verification.
245 if (care_map_fd.get() == -1) {
246 PLOG(WARNING) << "Failed to open " << care_map_name;
Tianjie Xu446b64b2018-09-19 15:45:28 -0700247 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700248 }
249
250 std::string file_content;
251 if (!android::base::ReadFdToString(care_map_fd.get(), &file_content)) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700252 PLOG(WARNING) << "Failed to read " << care_map_name;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700253 return false;
254 }
255
256 if (file_content.empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700257 LOG(WARNING) << "Unexpected empty care map";
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700258 return false;
259 }
260
Tianjie Xu446b64b2018-09-19 15:45:28 -0700261 if (android::base::EndsWith(care_map_name, ".txt")) {
262 return ParseCareMapPlainText(file_content);
263 }
264
265 recovery_update_verifier::CareMap care_map;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700266 if (!care_map.ParseFromString(file_content)) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700267 LOG(WARNING) << "Failed to parse " << care_map_name << " in protobuf format.";
268 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700269 }
270
271 for (const auto& partition : care_map.partitions()) {
272 if (partition.name().empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700273 LOG(WARNING) << "Unexpected empty partition name.";
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700274 return false;
275 }
276 if (partition.ranges().empty()) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700277 LOG(WARNING) << "Unexpected block ranges for partition " << partition.name();
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700278 return false;
279 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700280 RangeSet ranges = RangeSet::Parse(partition.ranges());
281 if (!ranges) {
282 LOG(WARNING) << "Error parsing RangeSet string " << partition.ranges();
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700283 return false;
284 }
Tianjie Xu446b64b2018-09-19 15:45:28 -0700285
286 // TODO(xunchang) compare the fingerprint of the partition.
287 partition_map_.emplace(partition.name(), ranges);
288 }
289
290 if (partition_map_.empty()) {
291 LOG(WARNING) << "No partition to verify";
292 return false;
Tianjie Xu4d9e62d2018-05-11 10:41:44 -0700293 }
294
295 return true;
296}
297
Tianjie Xu3958a952017-03-01 15:31:25 -0800298static int reboot_device() {
299 if (android_reboot(ANDROID_RB_RESTART2, 0, nullptr) == -1) {
300 LOG(ERROR) << "Failed to reboot.";
301 return -1;
302 }
303 while (true) pause();
304}
305
Tao Bao83b07802017-04-26 14:30:56 -0700306int update_verifier(int argc, char** argv) {
Tao Bao7197ee02015-12-05 21:21:27 -0800307 for (int i = 1; i < argc; i++) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700308 LOG(INFO) << "Started with arg " << i << ": " << argv[i];
Tao Bao7197ee02015-12-05 21:21:27 -0800309 }
310
Chris Phoenix0157c782017-01-20 11:34:00 -0800311 sp<IBootControl> module = IBootControl::getService();
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800312 if (module == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700313 LOG(ERROR) << "Error getting bootctrl module.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800314 return reboot_device();
Tao Bao7197ee02015-12-05 21:21:27 -0800315 }
316
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800317 uint32_t current_slot = module->getCurrentSlot();
318 BoolResult is_successful = module->isSlotMarkedSuccessful(current_slot);
319 LOG(INFO) << "Booting slot " << current_slot << ": isSlotMarkedSuccessful="
320 << static_cast<int32_t>(is_successful);
Tao Bao7197ee02015-12-05 21:21:27 -0800321
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800322 if (is_successful == BoolResult::FALSE) {
Tao Bao7197ee02015-12-05 21:21:27 -0800323 // The current slot has not booted successfully.
Tao Baodb57f0d2017-03-10 14:21:25 -0800324
David Zeuthen1a0929c2017-08-07 18:47:27 -0400325 bool skip_verification = false;
Tao Bao4f8d2172017-01-13 15:36:32 -0800326 std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", "");
327 if (verity_mode.empty()) {
Tao Bao1cc03512018-04-18 17:10:49 -0700328 // Skip the verification if ro.boot.veritymode property is not set. This could be a result
329 // that device doesn't support dm-verity, or has disabled that.
330 LOG(WARNING) << "dm-verity not enabled; marking without verification.";
David Zeuthen1a0929c2017-08-07 18:47:27 -0400331 skip_verification = true;
Tao Bao4f8d2172017-01-13 15:36:32 -0800332 } else if (android::base::EqualsIgnoreCase(verity_mode, "eio")) {
Tianjie Xu3958a952017-03-01 15:31:25 -0800333 // We shouldn't see verity in EIO mode if the current slot hasn't booted successfully before.
334 // Continue the verification until we fail to read some blocks.
335 LOG(WARNING) << "Found dm-verity in EIO mode.";
David Zeuthen1a0929c2017-08-07 18:47:27 -0400336 } else if (android::base::EqualsIgnoreCase(verity_mode, "disabled")) {
337 LOG(WARNING) << "dm-verity in disabled mode; marking without verification.";
338 skip_verification = true;
Tao Bao4f8d2172017-01-13 15:36:32 -0800339 } else if (verity_mode != "enforcing") {
Tao Bao1cc03512018-04-18 17:10:49 -0700340 LOG(ERROR) << "Unexpected dm-verity mode: " << verity_mode << ", expecting enforcing.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800341 return reboot_device();
342 }
343
David Zeuthen1a0929c2017-08-07 18:47:27 -0400344 if (!skip_verification) {
Tianjie Xu446b64b2018-09-19 15:45:28 -0700345 UpdateVerifier verifier;
346 if (!verifier.ParseCareMap()) {
347 LOG(WARNING) << "Failed to parse the care map file, skipping verification";
348 } else if (!verifier.VerifyPartitions()) {
David Zeuthen1a0929c2017-08-07 18:47:27 -0400349 LOG(ERROR) << "Failed to verify all blocks in care map file.";
350 return reboot_device();
351 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800352 }
Tao Bao7197ee02015-12-05 21:21:27 -0800353
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800354 CommandResult cr;
355 module->markBootSuccessful([&cr](CommandResult result) { cr = result; });
356 if (!cr.success) {
357 LOG(ERROR) << "Error marking booted successfully: " << cr.errMsg;
Tianjie Xu3958a952017-03-01 15:31:25 -0800358 return reboot_device();
Tao Bao7197ee02015-12-05 21:21:27 -0800359 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700360 LOG(INFO) << "Marked slot " << current_slot << " as booted successfully.";
Tao Bao7197ee02015-12-05 21:21:27 -0800361 }
362
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700363 LOG(INFO) << "Leaving update_verifier.";
Tao Bao7197ee02015-12-05 21:21:27 -0800364 return 0;
365}