blob: ba7b7aec40841db5c478d2c9de139ebaab8af1d9 [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/*
18 * This program verifies the integrity of the partitions after an A/B OTA
19 * update. It gets invoked by init, and will only perform the verification if
20 * it's the first boot post an A/B OTA update.
21 *
Tianjie Xu3958a952017-03-01 15:31:25 -080022 * Update_verifier relies on dm-verity to capture any corruption on the partitions
23 * being verified. And its behavior varies depending on the dm-verity mode.
24 * Upon detection of failures:
25 * enforcing mode: dm-verity reboots the device
26 * eio mode: dm-verity fails the read and update_verifier reboots the device
27 * other mode: not supported and update_verifier reboots the device
28 *
29 * After a predefined number of failing boot attempts, the bootloader should
Tianjie Xud007cf22016-02-29 16:08:06 -080030 * mark the slot as unbootable and stops trying. Other dm-verity modes (
31 * for example, veritymode=EIO) are not accepted and simply lead to a
32 * verification failure.
Tao Bao7197ee02015-12-05 21:21:27 -080033 *
34 * The current slot will be marked as having booted successfully if the
35 * verifier reaches the end after the verification.
Tao Bao7197ee02015-12-05 21:21:27 -080036 */
37
Tao Bao83b07802017-04-26 14:30:56 -070038#include "update_verifier/update_verifier.h"
39
Tianjie Xub0ac8722017-01-18 18:41:53 -080040#include <dirent.h>
Tianjie Xud007cf22016-02-29 16:08:06 -080041#include <errno.h>
42#include <fcntl.h>
43#include <stdio.h>
Tao Bao7197ee02015-12-05 21:21:27 -080044#include <string.h>
Tianjie Xu3958a952017-03-01 15:31:25 -080045#include <unistd.h>
Tao Bao7197ee02015-12-05 21:21:27 -080046
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -070047#include <algorithm>
Wei Wangbd9664b2017-08-02 10:27:31 -070048#include <future>
Tianjie Xud007cf22016-02-29 16:08:06 -080049#include <string>
50#include <vector>
51
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
61using android::sp;
62using android::hardware::boot::V1_0::IBootControl;
63using android::hardware::boot::V1_0::BoolResult;
64using android::hardware::boot::V1_0::CommandResult;
Tao Bao7197ee02015-12-05 21:21:27 -080065
Tianjie Xub0ac8722017-01-18 18:41:53 -080066// Find directories in format of "/sys/block/dm-X".
67static int dm_name_filter(const dirent* de) {
68 if (android::base::StartsWith(de->d_name, "dm-")) {
69 return 1;
70 }
71 return 0;
72}
73
Tianjie Xu3958a952017-03-01 15:31:25 -080074static bool read_blocks(const std::string& partition, const std::string& range_str) {
Tianjie Xu5a176c02017-03-31 16:36:12 -070075 if (partition != "system" && partition != "vendor") {
76 LOG(ERROR) << "partition name must be system or vendor: " << partition;
77 return false;
78 }
Tianjie Xub0ac8722017-01-18 18:41:53 -080079 // Iterate the content of "/sys/block/dm-X/dm/name". If it matches "system"
80 // (or "vendor"), then dm-X is a dm-wrapped system/vendor partition.
81 // Afterwards, update_verifier will read every block on the care_map_file of
82 // "/dev/block/dm-X" to ensure the partition's integrity.
Tao Bao83b07802017-04-26 14:30:56 -070083 static constexpr auto DM_PATH_PREFIX = "/sys/block/";
Tianjie Xub0ac8722017-01-18 18:41:53 -080084 dirent** namelist;
85 int n = scandir(DM_PATH_PREFIX, &namelist, dm_name_filter, alphasort);
86 if (n == -1) {
87 PLOG(ERROR) << "Failed to scan dir " << DM_PATH_PREFIX;
88 return false;
89 }
90 if (n == 0) {
91 LOG(ERROR) << "dm block device not found for " << partition;
92 return false;
93 }
94
Tao Bao83b07802017-04-26 14:30:56 -070095 static constexpr auto DM_PATH_SUFFIX = "/dm/name";
96 static constexpr auto DEV_PATH = "/dev/block/";
Tianjie Xub0ac8722017-01-18 18:41:53 -080097 std::string dm_block_device;
98 while (n--) {
99 std::string path = DM_PATH_PREFIX + std::string(namelist[n]->d_name) + DM_PATH_SUFFIX;
100 std::string content;
101 if (!android::base::ReadFileToString(path, &content)) {
102 PLOG(WARNING) << "Failed to read " << path;
David Zeuthen8ed97382017-05-08 13:41:28 -0400103 } else {
104 std::string dm_block_name = android::base::Trim(content);
105#ifdef BOARD_AVB_ENABLE
106 // AVB is using 'vroot' for the root block device but we're expecting 'system'.
107 if (dm_block_name == "vroot") {
108 dm_block_name = "system";
Tianjie Xub0ac8722017-01-18 18:41:53 -0800109 }
David Zeuthen8ed97382017-05-08 13:41:28 -0400110#endif
111 if (dm_block_name == partition) {
112 dm_block_device = DEV_PATH + std::string(namelist[n]->d_name);
113 while (n--) {
114 free(namelist[n]);
115 }
116 break;
117 }
Tianjie Xub0ac8722017-01-18 18:41:53 -0800118 }
119 free(namelist[n]);
120 }
121 free(namelist);
122
123 if (dm_block_device.empty()) {
124 LOG(ERROR) << "Failed to find dm block device for " << partition;
125 return false;
126 }
Tao Bao4f8d2172017-01-13 15:36:32 -0800127
128 // For block range string, first integer 'count' equals 2 * total number of valid ranges,
129 // followed by 'count' number comma separated integers. Every two integers reprensent a
130 // block range with the first number included in range but second number not included.
131 // For example '4,64536,65343,74149,74150' represents: [64536,65343) and [74149,74150).
132 std::vector<std::string> ranges = android::base::Split(range_str, ",");
133 size_t range_count;
134 bool status = android::base::ParseUint(ranges[0], &range_count);
135 if (!status || (range_count == 0) || (range_count % 2 != 0) ||
136 (range_count != ranges.size() - 1)) {
137 LOG(ERROR) << "Error in parsing range string.";
138 return false;
139 }
Tao Baoba308672017-10-27 23:39:45 -0700140 range_count /= 2;
Tao Bao4f8d2172017-01-13 15:36:32 -0800141
Wei Wangbd9664b2017-08-02 10:27:31 -0700142 std::vector<std::future<bool>> threads;
143 size_t thread_num = std::thread::hardware_concurrency() ?: 4;
Tao Baoba308672017-10-27 23:39:45 -0700144 thread_num = std::min(thread_num, range_count);
145 size_t group_range_count = (range_count + thread_num - 1) / thread_num;
Tianjie Xud007cf22016-02-29 16:08:06 -0800146
Wei Wangbd9664b2017-08-02 10:27:31 -0700147 for (size_t t = 0; t < thread_num; t++) {
148 auto thread_func = [t, group_range_count, &dm_block_device, &ranges, &partition]() {
149 size_t blk_count = 0;
150 static constexpr size_t kBlockSize = 4096;
151 std::vector<uint8_t> buf(1024 * kBlockSize);
152 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(dm_block_device.c_str(), O_RDONLY)));
153 if (fd.get() == -1) {
154 PLOG(ERROR) << "Error reading " << dm_block_device << " for partition " << partition;
Tianjie Xu8fa8f0b2017-04-27 11:47:35 -0700155 return false;
156 }
Wei Wangbd9664b2017-08-02 10:27:31 -0700157
Tao Baoba308672017-10-27 23:39:45 -0700158 for (size_t i = group_range_count * 2 * t + 1;
159 i < std::min(group_range_count * 2 * (t + 1) + 1, ranges.size()); i += 2) {
Wei Wangbd9664b2017-08-02 10:27:31 -0700160 unsigned int range_start, range_end;
161 bool parse_status = android::base::ParseUint(ranges[i], &range_start);
162 parse_status = parse_status && android::base::ParseUint(ranges[i + 1], &range_end);
163 if (!parse_status || range_start >= range_end) {
164 LOG(ERROR) << "Invalid range pair " << ranges[i] << ", " << ranges[i + 1];
165 return false;
166 }
167
168 if (lseek64(fd.get(), static_cast<off64_t>(range_start) * kBlockSize, SEEK_SET) == -1) {
169 PLOG(ERROR) << "lseek to " << range_start << " failed";
170 return false;
171 }
172
173 size_t remain = (range_end - range_start) * kBlockSize;
174 while (remain > 0) {
175 size_t to_read = std::min(remain, 1024 * kBlockSize);
176 if (!android::base::ReadFully(fd.get(), buf.data(), to_read)) {
177 PLOG(ERROR) << "Failed to read blocks " << range_start << " to " << range_end;
178 return false;
179 }
180 remain -= to_read;
181 }
182 blk_count += (range_end - range_start);
183 }
184 LOG(INFO) << "Finished reading " << blk_count << " blocks on " << dm_block_device;
185 return true;
186 };
187
188 threads.emplace_back(std::async(std::launch::async, thread_func));
Tao Bao4f8d2172017-01-13 15:36:32 -0800189 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800190
Wei Wangbd9664b2017-08-02 10:27:31 -0700191 bool ret = true;
192 for (auto& t : threads) {
193 ret = t.get() && ret;
194 }
195 LOG(INFO) << "Finished reading blocks on " << dm_block_device << " with " << thread_num
196 << " threads.";
197 return ret;
Tianjie Xud007cf22016-02-29 16:08:06 -0800198}
199
Tao Bao5fb9f532017-07-21 15:15:31 -0700200// Returns true to indicate a passing verification (or the error should be ignored); Otherwise
201// returns false on fatal errors, where we should reject the current boot and trigger a fallback.
202// Note that update_verifier should be backward compatible to not reject care_map.txt from old
203// releases, which could otherwise fail to boot into the new release. For example, we've changed
204// the care_map format between N and O. An O update_verifier would fail to work with N
205// care_map.txt. This could be a result of sideloading an O OTA while the device having a pending N
206// update.
Tao Bao83b07802017-04-26 14:30:56 -0700207bool verify_image(const std::string& care_map_name) {
Tao Bao5fb9f532017-07-21 15:15:31 -0700208 android::base::unique_fd care_map_fd(TEMP_FAILURE_RETRY(open(care_map_name.c_str(), O_RDONLY)));
209 // If the device is flashed before the current boot, it may not have care_map.txt
210 // in /data/ota_package. To allow the device to continue booting in this situation,
211 // we should print a warning and skip the block verification.
212 if (care_map_fd.get() == -1) {
213 PLOG(WARNING) << "Failed to open " << care_map_name;
Tianjie Xud007cf22016-02-29 16:08:06 -0800214 return true;
Tao Bao5fb9f532017-07-21 15:15:31 -0700215 }
216 // Care map file has four lines (two lines if vendor partition is not present):
217 // First line has the block partition name (system/vendor).
218 // Second line holds all ranges of blocks to verify.
219 // The next two lines have the same format but for vendor partition.
220 std::string file_content;
221 if (!android::base::ReadFdToString(care_map_fd.get(), &file_content)) {
222 LOG(ERROR) << "Error reading care map contents to string.";
223 return false;
224 }
225
226 std::vector<std::string> lines;
227 lines = android::base::Split(android::base::Trim(file_content), "\n");
228 if (lines.size() != 2 && lines.size() != 4) {
229 LOG(ERROR) << "Invalid lines in care_map: found " << lines.size()
230 << " lines, expecting 2 or 4 lines.";
231 return false;
232 }
233
234 for (size_t i = 0; i < lines.size(); i += 2) {
235 // We're seeing an N care_map.txt. Skip the verification since it's not compatible with O
236 // update_verifier (the last few metadata blocks can't be read via device mapper).
237 if (android::base::StartsWith(lines[i], "/dev/block/")) {
238 LOG(WARNING) << "Found legacy care_map.txt; skipped.";
239 return true;
240 }
241 if (!read_blocks(lines[i], lines[i+1])) {
242 return false;
243 }
244 }
245
246 return true;
Tianjie Xud007cf22016-02-29 16:08:06 -0800247}
248
Tianjie Xu3958a952017-03-01 15:31:25 -0800249static int reboot_device() {
250 if (android_reboot(ANDROID_RB_RESTART2, 0, nullptr) == -1) {
251 LOG(ERROR) << "Failed to reboot.";
252 return -1;
253 }
254 while (true) pause();
255}
256
Tao Bao83b07802017-04-26 14:30:56 -0700257int update_verifier(int argc, char** argv) {
Tao Bao7197ee02015-12-05 21:21:27 -0800258 for (int i = 1; i < argc; i++) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700259 LOG(INFO) << "Started with arg " << i << ": " << argv[i];
Tao Bao7197ee02015-12-05 21:21:27 -0800260 }
261
Chris Phoenix0157c782017-01-20 11:34:00 -0800262 sp<IBootControl> module = IBootControl::getService();
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800263 if (module == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700264 LOG(ERROR) << "Error getting bootctrl module.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800265 return reboot_device();
Tao Bao7197ee02015-12-05 21:21:27 -0800266 }
267
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800268 uint32_t current_slot = module->getCurrentSlot();
269 BoolResult is_successful = module->isSlotMarkedSuccessful(current_slot);
270 LOG(INFO) << "Booting slot " << current_slot << ": isSlotMarkedSuccessful="
271 << static_cast<int32_t>(is_successful);
Tao Bao7197ee02015-12-05 21:21:27 -0800272
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800273 if (is_successful == BoolResult::FALSE) {
Tao Bao7197ee02015-12-05 21:21:27 -0800274 // The current slot has not booted successfully.
Tao Baodb57f0d2017-03-10 14:21:25 -0800275
David Zeuthen8ed97382017-05-08 13:41:28 -0400276#if defined(PRODUCT_SUPPORTS_VERITY) || defined(BOARD_AVB_ENABLE)
David Zeuthen3222dc02017-08-07 18:47:27 -0400277 bool skip_verification = false;
Tao Bao4f8d2172017-01-13 15:36:32 -0800278 std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", "");
279 if (verity_mode.empty()) {
David Zeuthen3222dc02017-08-07 18:47:27 -0400280 // With AVB it's possible to disable verification entirely and
281 // in this case ro.boot.veritymode is empty.
282#if defined(BOARD_AVB_ENABLE)
283 LOG(WARNING) << "verification has been disabled; marking without verification.";
284 skip_verification = true;
285#else
Tianjie Xud007cf22016-02-29 16:08:06 -0800286 LOG(ERROR) << "Failed to get dm-verity mode.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800287 return reboot_device();
David Zeuthen3222dc02017-08-07 18:47:27 -0400288#endif
Tao Bao4f8d2172017-01-13 15:36:32 -0800289 } else if (android::base::EqualsIgnoreCase(verity_mode, "eio")) {
Tianjie Xu3958a952017-03-01 15:31:25 -0800290 // We shouldn't see verity in EIO mode if the current slot hasn't booted successfully before.
291 // Continue the verification until we fail to read some blocks.
292 LOG(WARNING) << "Found dm-verity in EIO mode.";
David Zeuthen3222dc02017-08-07 18:47:27 -0400293 } else if (android::base::EqualsIgnoreCase(verity_mode, "disabled")) {
294 LOG(WARNING) << "dm-verity in disabled mode; marking without verification.";
295 skip_verification = true;
Tao Bao4f8d2172017-01-13 15:36:32 -0800296 } else if (verity_mode != "enforcing") {
Tianjie Xud007cf22016-02-29 16:08:06 -0800297 LOG(ERROR) << "Unexpected dm-verity mode : " << verity_mode << ", expecting enforcing.";
Tianjie Xu3958a952017-03-01 15:31:25 -0800298 return reboot_device();
299 }
300
David Zeuthen3222dc02017-08-07 18:47:27 -0400301 if (!skip_verification) {
302 static constexpr auto CARE_MAP_FILE = "/data/ota_package/care_map.txt";
303 if (!verify_image(CARE_MAP_FILE)) {
304 LOG(ERROR) << "Failed to verify all blocks in care map file.";
305 return reboot_device();
306 }
Tianjie Xud007cf22016-02-29 16:08:06 -0800307 }
Tao Baodb57f0d2017-03-10 14:21:25 -0800308#else
309 LOG(WARNING) << "dm-verity not enabled; marking without verification.";
310#endif
Tao Bao7197ee02015-12-05 21:21:27 -0800311
Connor O'Brienad43d2d2016-11-21 12:47:33 -0800312 CommandResult cr;
313 module->markBootSuccessful([&cr](CommandResult result) { cr = result; });
314 if (!cr.success) {
315 LOG(ERROR) << "Error marking booted successfully: " << cr.errMsg;
Tianjie Xu3958a952017-03-01 15:31:25 -0800316 return reboot_device();
Tao Bao7197ee02015-12-05 21:21:27 -0800317 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700318 LOG(INFO) << "Marked slot " << current_slot << " as booted successfully.";
Tao Bao7197ee02015-12-05 21:21:27 -0800319 }
320
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700321 LOG(INFO) << "Leaving update_verifier.";
Tao Bao7197ee02015-12-05 21:21:27 -0800322 return 0;
323}