Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 1 | /* |
| 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 Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 18 | * 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 Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 21 | * |
Tao Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 22 | * 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 Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 28 | * 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 Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 32 | * 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 Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 35 | * |
Tao Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 36 | * The current slot will be marked as having booted successfully if the verifier reaches the end |
| 37 | * after the verification. |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 38 | */ |
| 39 | |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 40 | #include "update_verifier/update_verifier.h" |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 41 | #include <android/os/IVold.h> |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 42 | |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 43 | #include <dirent.h> |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 44 | #include <errno.h> |
| 45 | #include <fcntl.h> |
| 46 | #include <stdio.h> |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 47 | #include <string.h> |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 48 | #include <unistd.h> |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 49 | |
Tianjie Xu | 8fa8f0b | 2017-04-27 11:47:35 -0700 | [diff] [blame] | 50 | #include <algorithm> |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 51 | #include <future> |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 52 | |
| 53 | #include <android-base/file.h> |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 54 | #include <android-base/logging.h> |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 55 | #include <android-base/parseint.h> |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 56 | #include <android-base/properties.h> |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 57 | #include <android-base/strings.h> |
| 58 | #include <android-base/unique_fd.h> |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 59 | #include <android/hardware/boot/1.0/IBootControl.h> |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 60 | #include <binder/BinderService.h> |
| 61 | #include <binder/Status.h> |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 62 | #include <cutils/android_reboot.h> |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 63 | |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 64 | #include "care_map.pb.h" |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 65 | |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 66 | using android::sp; |
| 67 | using android::hardware::boot::V1_0::IBootControl; |
| 68 | using android::hardware::boot::V1_0::BoolResult; |
| 69 | using android::hardware::boot::V1_0::CommandResult; |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 70 | |
Tianjie Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 71 | constexpr const char* kDefaultCareMapPrefix = "/data/ota_package/care_map"; |
| 72 | |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 73 | // Find directories in format of "/sys/block/dm-X". |
| 74 | static 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 Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 81 | UpdateVerifier::UpdateVerifier() |
| 82 | : care_map_prefix_(kDefaultCareMapPrefix), |
| 83 | property_reader_([](const std::string& id) { return android::base::GetProperty(id, ""); }) {} |
| 84 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 85 | // 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. |
| 88 | std::map<std::string, std::string> UpdateVerifier::FindDmPartitions() { |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 89 | static constexpr auto DM_PATH_PREFIX = "/sys/block/"; |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 90 | dirent** namelist; |
| 91 | 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 Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 94 | return {}; |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 95 | } |
| 96 | if (n == 0) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 97 | LOG(ERROR) << "No dm block device found."; |
| 98 | return {}; |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 101 | static constexpr auto DM_PATH_SUFFIX = "/dm/name"; |
| 102 | static constexpr auto DEV_PATH = "/dev/block/"; |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 103 | std::map<std::string, std::string> dm_block_devices; |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 104 | 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 Zeuthen | 8ed9738 | 2017-05-08 13:41:28 -0400 | [diff] [blame] | 109 | } else { |
| 110 | std::string dm_block_name = android::base::Trim(content); |
David Zeuthen | 8ed9738 | 2017-05-08 13:41:28 -0400 | [diff] [blame] | 111 | // 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"; |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 114 | } |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 115 | |
| 116 | dm_block_devices.emplace(dm_block_name, DEV_PATH + std::string(namelist[n]->d_name)); |
Tianjie Xu | b0ac872 | 2017-01-18 18:41:53 -0800 | [diff] [blame] | 117 | } |
| 118 | free(namelist[n]); |
| 119 | } |
| 120 | free(namelist); |
| 121 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 122 | return dm_block_devices; |
| 123 | } |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 124 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 125 | bool UpdateVerifier::ReadBlocks(const std::string partition_name, |
| 126 | const std::string& dm_block_device, const RangeSet& ranges) { |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 127 | // RangeSet::Split() splits the ranges into multiple groups with same number of blocks (except for |
| 128 | // the last group). |
| 129 | size_t thread_num = std::thread::hardware_concurrency() ?: 4; |
| 130 | std::vector<RangeSet> groups = ranges.Split(thread_num); |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 131 | |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 132 | std::vector<std::future<bool>> threads; |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 133 | for (const auto& group : groups) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 134 | auto thread_func = [&group, &dm_block_device, &partition_name]() { |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 135 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(dm_block_device.c_str(), O_RDONLY))); |
| 136 | if (fd.get() == -1) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 137 | PLOG(ERROR) << "Error reading " << dm_block_device << " for partition " << partition_name; |
Tianjie Xu | 8fa8f0b | 2017-04-27 11:47:35 -0700 | [diff] [blame] | 138 | return false; |
| 139 | } |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 140 | |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 141 | static constexpr size_t kBlockSize = 4096; |
| 142 | std::vector<uint8_t> buf(1024 * kBlockSize); |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 143 | |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 144 | size_t block_count = 0; |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 145 | for (const auto& [range_start, range_end] : group) { |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 146 | if (lseek64(fd.get(), static_cast<off64_t>(range_start) * kBlockSize, SEEK_SET) == -1) { |
| 147 | PLOG(ERROR) << "lseek to " << range_start << " failed"; |
| 148 | return false; |
| 149 | } |
| 150 | |
| 151 | size_t remain = (range_end - range_start) * kBlockSize; |
| 152 | while (remain > 0) { |
| 153 | size_t to_read = std::min(remain, 1024 * kBlockSize); |
| 154 | if (!android::base::ReadFully(fd.get(), buf.data(), to_read)) { |
| 155 | PLOG(ERROR) << "Failed to read blocks " << range_start << " to " << range_end; |
| 156 | return false; |
| 157 | } |
| 158 | remain -= to_read; |
| 159 | } |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 160 | block_count += (range_end - range_start); |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 161 | } |
Tao Bao | 160514b | 2017-11-04 00:08:08 -0700 | [diff] [blame] | 162 | LOG(INFO) << "Finished reading " << block_count << " blocks on " << dm_block_device; |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 163 | return true; |
| 164 | }; |
| 165 | |
| 166 | threads.emplace_back(std::async(std::launch::async, thread_func)); |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 167 | } |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 168 | |
Wei Wang | 5226f47 | 2017-08-02 10:27:31 -0700 | [diff] [blame] | 169 | bool ret = true; |
| 170 | for (auto& t : threads) { |
| 171 | ret = t.get() && ret; |
| 172 | } |
| 173 | LOG(INFO) << "Finished reading blocks on " << dm_block_device << " with " << thread_num |
| 174 | << " threads."; |
| 175 | return ret; |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 176 | } |
| 177 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 178 | bool UpdateVerifier::VerifyPartitions() { |
| 179 | auto dm_block_devices = FindDmPartitions(); |
| 180 | if (dm_block_devices.empty()) { |
| 181 | LOG(ERROR) << "No dm-enabled block device is found."; |
Tao Bao | 5a1dee0 | 2017-07-21 15:15:31 -0700 | [diff] [blame] | 182 | return false; |
| 183 | } |
| 184 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 185 | for (const auto& [partition_name, ranges] : partition_map_) { |
| 186 | if (dm_block_devices.find(partition_name) == dm_block_devices.end()) { |
| 187 | LOG(ERROR) << "Failed to find dm block device for " << partition_name; |
| 188 | return false; |
Tao Bao | 5a1dee0 | 2017-07-21 15:15:31 -0700 | [diff] [blame] | 189 | } |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 190 | |
| 191 | if (!ReadBlocks(partition_name, dm_block_devices.at(partition_name), ranges)) { |
Tao Bao | 5a1dee0 | 2017-07-21 15:15:31 -0700 | [diff] [blame] | 192 | return false; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | return true; |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 197 | } |
| 198 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 199 | bool UpdateVerifier::ParseCareMapPlainText(const std::string& content) { |
| 200 | // care_map file has up to six lines, where every two lines make a pair. Within each pair, the |
| 201 | // first line has the partition name (e.g. "system"), while the second line holds the ranges of |
| 202 | // all the blocks to verify. |
| 203 | auto lines = android::base::Split(android::base::Trim(content), "\n"); |
| 204 | if (lines.size() != 2 && lines.size() != 4 && lines.size() != 6) { |
| 205 | LOG(WARNING) << "Invalid lines in care_map: found " << lines.size() |
| 206 | << " lines, expecting 2 or 4 or 6 lines."; |
| 207 | return false; |
| 208 | } |
| 209 | |
| 210 | for (size_t i = 0; i < lines.size(); i += 2) { |
| 211 | const std::string& partition_name = lines[i]; |
| 212 | const std::string& range_str = lines[i + 1]; |
| 213 | // We're seeing an N care_map.txt. Skip the verification since it's not compatible with O |
| 214 | // update_verifier (the last few metadata blocks can't be read via device mapper). |
| 215 | if (android::base::StartsWith(partition_name, "/dev/block/")) { |
| 216 | LOG(WARNING) << "Found legacy care_map.txt; skipped."; |
| 217 | return false; |
| 218 | } |
| 219 | |
| 220 | // For block range string, first integer 'count' equals 2 * total number of valid ranges, |
| 221 | // followed by 'count' number comma separated integers. Every two integers reprensent a |
| 222 | // block range with the first number included in range but second number not included. |
| 223 | // For example '4,64536,65343,74149,74150' represents: [64536,65343) and [74149,74150). |
| 224 | RangeSet ranges = RangeSet::Parse(range_str); |
| 225 | if (!ranges) { |
| 226 | LOG(WARNING) << "Error parsing RangeSet string " << range_str; |
| 227 | return false; |
| 228 | } |
| 229 | |
| 230 | partition_map_.emplace(partition_name, ranges); |
| 231 | } |
| 232 | |
| 233 | return true; |
| 234 | } |
| 235 | |
Tianjie Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 236 | bool UpdateVerifier::ParseCareMap() { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 237 | partition_map_.clear(); |
| 238 | |
Tianjie Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 239 | std::string care_map_name = care_map_prefix_ + ".pb"; |
| 240 | if (access(care_map_name.c_str(), R_OK) == -1) { |
| 241 | LOG(WARNING) << care_map_name |
| 242 | << " doesn't exist, falling back to read the care_map in plain text format."; |
| 243 | care_map_name = care_map_prefix_ + ".txt"; |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 246 | android::base::unique_fd care_map_fd(TEMP_FAILURE_RETRY(open(care_map_name.c_str(), O_RDONLY))); |
| 247 | // If the device is flashed before the current boot, it may not have care_map.txt in |
| 248 | // /data/ota_package. To allow the device to continue booting in this situation, we should |
| 249 | // print a warning and skip the block verification. |
| 250 | if (care_map_fd.get() == -1) { |
| 251 | PLOG(WARNING) << "Failed to open " << care_map_name; |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 252 | return false; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | std::string file_content; |
| 256 | if (!android::base::ReadFdToString(care_map_fd.get(), &file_content)) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 257 | PLOG(WARNING) << "Failed to read " << care_map_name; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 258 | return false; |
| 259 | } |
| 260 | |
| 261 | if (file_content.empty()) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 262 | LOG(WARNING) << "Unexpected empty care map"; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 263 | return false; |
| 264 | } |
| 265 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 266 | if (android::base::EndsWith(care_map_name, ".txt")) { |
| 267 | return ParseCareMapPlainText(file_content); |
| 268 | } |
| 269 | |
| 270 | recovery_update_verifier::CareMap care_map; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 271 | if (!care_map.ParseFromString(file_content)) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 272 | LOG(WARNING) << "Failed to parse " << care_map_name << " in protobuf format."; |
| 273 | return false; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | for (const auto& partition : care_map.partitions()) { |
| 277 | if (partition.name().empty()) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 278 | LOG(WARNING) << "Unexpected empty partition name."; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 279 | return false; |
| 280 | } |
| 281 | if (partition.ranges().empty()) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 282 | LOG(WARNING) << "Unexpected block ranges for partition " << partition.name(); |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 283 | return false; |
| 284 | } |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 285 | RangeSet ranges = RangeSet::Parse(partition.ranges()); |
| 286 | if (!ranges) { |
| 287 | LOG(WARNING) << "Error parsing RangeSet string " << partition.ranges(); |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 288 | return false; |
| 289 | } |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 290 | |
Tianjie Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 291 | // Continues to check other partitions if there is a fingerprint mismatch. |
| 292 | if (partition.id().empty() || partition.id() == "unknown") { |
| 293 | LOG(WARNING) << "Skip reading partition " << partition.name() |
| 294 | << ": property_id is not provided to get fingerprint."; |
| 295 | continue; |
| 296 | } |
| 297 | |
| 298 | std::string fingerprint = property_reader_(partition.id()); |
| 299 | if (fingerprint != partition.fingerprint()) { |
| 300 | LOG(WARNING) << "Skip reading partition " << partition.name() << ": fingerprint " |
| 301 | << fingerprint << " doesn't match the expected value " |
| 302 | << partition.fingerprint(); |
| 303 | continue; |
| 304 | } |
| 305 | |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 306 | partition_map_.emplace(partition.name(), ranges); |
| 307 | } |
| 308 | |
| 309 | if (partition_map_.empty()) { |
| 310 | LOG(WARNING) << "No partition to verify"; |
| 311 | return false; |
Tianjie Xu | 4d9e62d | 2018-05-11 10:41:44 -0700 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | return true; |
| 315 | } |
| 316 | |
Tianjie Xu | 9eed65e | 2018-09-14 12:52:02 -0700 | [diff] [blame] | 317 | void UpdateVerifier::set_care_map_prefix(const std::string& prefix) { |
| 318 | care_map_prefix_ = prefix; |
| 319 | } |
| 320 | |
| 321 | void UpdateVerifier::set_property_reader( |
| 322 | const std::function<std::string(const std::string&)>& property_reader) { |
| 323 | property_reader_ = property_reader; |
| 324 | } |
| 325 | |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 326 | static int reboot_device() { |
| 327 | if (android_reboot(ANDROID_RB_RESTART2, 0, nullptr) == -1) { |
| 328 | LOG(ERROR) << "Failed to reboot."; |
| 329 | return -1; |
| 330 | } |
| 331 | while (true) pause(); |
| 332 | } |
| 333 | |
Tao Bao | 83b0780 | 2017-04-26 14:30:56 -0700 | [diff] [blame] | 334 | int update_verifier(int argc, char** argv) { |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 335 | for (int i = 1; i < argc; i++) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 336 | LOG(INFO) << "Started with arg " << i << ": " << argv[i]; |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 337 | } |
| 338 | |
Chris Phoenix | 0157c78 | 2017-01-20 11:34:00 -0800 | [diff] [blame] | 339 | sp<IBootControl> module = IBootControl::getService(); |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 340 | if (module == nullptr) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 341 | LOG(ERROR) << "Error getting bootctrl module."; |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 342 | return reboot_device(); |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 343 | } |
| 344 | |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 345 | uint32_t current_slot = module->getCurrentSlot(); |
| 346 | BoolResult is_successful = module->isSlotMarkedSuccessful(current_slot); |
| 347 | LOG(INFO) << "Booting slot " << current_slot << ": isSlotMarkedSuccessful=" |
| 348 | << static_cast<int32_t>(is_successful); |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 349 | |
Connor O'Brien | ad43d2d | 2016-11-21 12:47:33 -0800 | [diff] [blame] | 350 | if (is_successful == BoolResult::FALSE) { |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 351 | // The current slot has not booted successfully. |
Tao Bao | db57f0d | 2017-03-10 14:21:25 -0800 | [diff] [blame] | 352 | |
David Zeuthen | 1a0929c | 2017-08-07 18:47:27 -0400 | [diff] [blame] | 353 | bool skip_verification = false; |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 354 | std::string verity_mode = android::base::GetProperty("ro.boot.veritymode", ""); |
| 355 | if (verity_mode.empty()) { |
Tao Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 356 | // Skip the verification if ro.boot.veritymode property is not set. This could be a result |
| 357 | // that device doesn't support dm-verity, or has disabled that. |
| 358 | LOG(WARNING) << "dm-verity not enabled; marking without verification."; |
David Zeuthen | 1a0929c | 2017-08-07 18:47:27 -0400 | [diff] [blame] | 359 | skip_verification = true; |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 360 | } else if (android::base::EqualsIgnoreCase(verity_mode, "eio")) { |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 361 | // We shouldn't see verity in EIO mode if the current slot hasn't booted successfully before. |
| 362 | // Continue the verification until we fail to read some blocks. |
| 363 | LOG(WARNING) << "Found dm-verity in EIO mode."; |
David Zeuthen | 1a0929c | 2017-08-07 18:47:27 -0400 | [diff] [blame] | 364 | } else if (android::base::EqualsIgnoreCase(verity_mode, "disabled")) { |
| 365 | LOG(WARNING) << "dm-verity in disabled mode; marking without verification."; |
| 366 | skip_verification = true; |
Tao Bao | 4f8d217 | 2017-01-13 15:36:32 -0800 | [diff] [blame] | 367 | } else if (verity_mode != "enforcing") { |
Tao Bao | 1cc0351 | 2018-04-18 17:10:49 -0700 | [diff] [blame] | 368 | LOG(ERROR) << "Unexpected dm-verity mode: " << verity_mode << ", expecting enforcing."; |
Tianjie Xu | 3958a95 | 2017-03-01 15:31:25 -0800 | [diff] [blame] | 369 | return reboot_device(); |
| 370 | } |
| 371 | |
David Zeuthen | 1a0929c | 2017-08-07 18:47:27 -0400 | [diff] [blame] | 372 | if (!skip_verification) { |
Tianjie Xu | 446b64b | 2018-09-19 15:45:28 -0700 | [diff] [blame] | 373 | UpdateVerifier verifier; |
| 374 | if (!verifier.ParseCareMap()) { |
| 375 | LOG(WARNING) << "Failed to parse the care map file, skipping verification"; |
| 376 | } else if (!verifier.VerifyPartitions()) { |
David Zeuthen | 1a0929c | 2017-08-07 18:47:27 -0400 | [diff] [blame] | 377 | LOG(ERROR) << "Failed to verify all blocks in care map file."; |
| 378 | return reboot_device(); |
| 379 | } |
Tianjie Xu | d007cf2 | 2016-02-29 16:08:06 -0800 | [diff] [blame] | 380 | } |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 381 | |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 382 | bool supports_checkpoint = false; |
| 383 | auto sm = android::defaultServiceManager(); |
| 384 | android::sp<android::IBinder> binder = sm->getService(android::String16("vold")); |
| 385 | if (binder) { |
| 386 | auto vold = android::interface_cast<android::os::IVold>(binder); |
| 387 | android::binder::Status status = vold->supportsCheckpoint(&supports_checkpoint); |
| 388 | if (!status.isOk()) { |
| 389 | LOG(ERROR) << "Failed to check if checkpoints supported. Continuing"; |
| 390 | } |
| 391 | } else { |
| 392 | LOG(ERROR) << "Failed to obtain vold Binder. Continuing"; |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 393 | } |
Daniel Rosenberg | 15f22bd | 2019-01-22 19:57:28 -0800 | [diff] [blame] | 394 | |
| 395 | if (!supports_checkpoint) { |
| 396 | CommandResult cr; |
| 397 | module->markBootSuccessful([&cr](CommandResult result) { cr = result; }); |
| 398 | if (!cr.success) { |
| 399 | LOG(ERROR) << "Error marking booted successfully: " << cr.errMsg; |
| 400 | return reboot_device(); |
| 401 | } |
| 402 | LOG(INFO) << "Marked slot " << current_slot << " as booted successfully."; |
| 403 | } else { |
| 404 | LOG(INFO) << "Deferred marking slot " << current_slot << " as booted successfully."; |
| 405 | } |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 406 | } |
| 407 | |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 408 | LOG(INFO) << "Leaving update_verifier."; |
Tao Bao | 7197ee0 | 2015-12-05 21:21:27 -0800 | [diff] [blame] | 409 | return 0; |
| 410 | } |