Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [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 | |
Alex Deymo | 1b03f9f | 2015-12-09 00:38:36 -0800 | [diff] [blame] | 17 | #include "update_engine/boot_control_android.h" |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 18 | |
Sen Jiang | d944faa | 2018-08-22 18:46:39 -0700 | [diff] [blame] | 19 | #include <memory> |
| 20 | #include <utility> |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 21 | #include <vector> |
Sen Jiang | d944faa | 2018-08-22 18:46:39 -0700 | [diff] [blame] | 22 | |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 23 | #include <base/bind.h> |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 24 | #include <base/logging.h> |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 25 | #include <base/strings/string_util.h> |
Sen Jiang | d944faa | 2018-08-22 18:46:39 -0700 | [diff] [blame] | 26 | #include <bootloader_message/bootloader_message.h> |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 27 | #include <brillo/message_loops/message_loop.h> |
David Anderson | d63cb3c | 2018-10-01 14:15:00 -0700 | [diff] [blame] | 28 | #include <fs_mgr.h> |
Mark Salyzyn | 62b42c8 | 2018-12-05 13:33:17 -0800 | [diff] [blame] | 29 | #include <fs_mgr_overlayfs.h> |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 30 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 31 | #include "update_engine/common/utils.h" |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 32 | #include "update_engine/dynamic_partition_control_android.h" |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 33 | |
| 34 | using std::string; |
| 35 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 36 | using android::dm::DmDeviceState; |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 37 | using android::fs_mgr::Partition; |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 38 | using android::hardware::hidl_string; |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 39 | using android::hardware::Return; |
| 40 | using android::hardware::boot::V1_0::BoolResult; |
| 41 | using android::hardware::boot::V1_0::CommandResult; |
| 42 | using android::hardware::boot::V1_0::IBootControl; |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 43 | using Slot = chromeos_update_engine::BootControlInterface::Slot; |
Yifan Hong | 6b0a984 | 2018-10-16 16:54:18 -0700 | [diff] [blame] | 44 | using PartitionMetadata = |
| 45 | chromeos_update_engine::BootControlInterface::PartitionMetadata; |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 46 | |
| 47 | namespace { |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 48 | |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 49 | auto StoreResultCallback(CommandResult* dest) { |
| 50 | return [dest](const CommandResult& result) { *dest = result; }; |
| 51 | } |
| 52 | } // namespace |
Alex Deymo | 44348e0 | 2016-07-29 16:22:26 -0700 | [diff] [blame] | 53 | |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 54 | namespace chromeos_update_engine { |
| 55 | |
| 56 | namespace boot_control { |
| 57 | |
| 58 | // Factory defined in boot_control.h. |
| 59 | std::unique_ptr<BootControlInterface> CreateBootControl() { |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 60 | auto boot_control = std::make_unique<BootControlAndroid>(); |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 61 | if (!boot_control->Init()) { |
| 62 | return nullptr; |
| 63 | } |
Alex Vakulenko | ce8c8ee | 2016-04-08 08:59:26 -0700 | [diff] [blame] | 64 | return std::move(boot_control); |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | } // namespace boot_control |
| 68 | |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 69 | bool BootControlAndroid::Init() { |
Chris Phoenix | afde8e8 | 2017-01-17 23:14:58 -0800 | [diff] [blame] | 70 | module_ = IBootControl::getService(); |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 71 | if (module_ == nullptr) { |
Steven Moreland | 927e00d | 2017-01-04 12:58:40 -0800 | [diff] [blame] | 72 | LOG(ERROR) << "Error getting bootctrl HIDL module."; |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 73 | return false; |
| 74 | } |
| 75 | |
Steven Moreland | 927e00d | 2017-01-04 12:58:40 -0800 | [diff] [blame] | 76 | LOG(INFO) << "Loaded boot control hidl hal."; |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 77 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 78 | dynamic_control_ = std::make_unique<DynamicPartitionControlAndroid>(); |
| 79 | |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 80 | return true; |
| 81 | } |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 82 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 83 | void BootControlAndroid::Cleanup() { |
| 84 | dynamic_control_->Cleanup(); |
| 85 | } |
| 86 | |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 87 | unsigned int BootControlAndroid::GetNumSlots() const { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 88 | return module_->getNumberSlots(); |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | BootControlInterface::Slot BootControlAndroid::GetCurrentSlot() const { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 92 | return module_->getCurrentSlot(); |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 95 | bool BootControlAndroid::GetSuffix(Slot slot, string* suffix) const { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 96 | auto store_suffix_cb = [&suffix](hidl_string cb_suffix) { |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 97 | *suffix = cb_suffix.c_str(); |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 98 | }; |
| 99 | Return<void> ret = module_->getSuffix(slot, store_suffix_cb); |
| 100 | |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 101 | if (!ret.isOk()) { |
Alex Deymo | 31d95ac | 2015-09-17 11:56:18 -0700 | [diff] [blame] | 102 | LOG(ERROR) << "boot_control impl returned no suffix for slot " |
| 103 | << SlotName(slot); |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 104 | return false; |
| 105 | } |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 106 | return true; |
| 107 | } |
| 108 | |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 109 | bool BootControlAndroid::IsSuperBlockDevice( |
| 110 | const base::FilePath& device_dir, |
| 111 | Slot slot, |
| 112 | const string& partition_name_suffix) const { |
| 113 | string source_device = |
| 114 | device_dir.Append(fs_mgr_get_super_partition_name(slot)).value(); |
| 115 | auto source_metadata = dynamic_control_->LoadMetadataBuilder( |
| 116 | source_device, slot, BootControlInterface::kInvalidSlot); |
| 117 | return source_metadata->HasBlockDevice(partition_name_suffix); |
| 118 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 119 | |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 120 | BootControlAndroid::DynamicPartitionDeviceStatus |
| 121 | BootControlAndroid::GetDynamicPartitionDevice( |
| 122 | const base::FilePath& device_dir, |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 123 | const string& partition_name_suffix, |
| 124 | Slot slot, |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 125 | string* device) const { |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 126 | string super_device = |
| 127 | device_dir.Append(fs_mgr_get_super_partition_name(slot)).value(); |
| 128 | |
| 129 | auto builder = dynamic_control_->LoadMetadataBuilder( |
Yifan Hong | 6e706b1 | 2018-11-09 16:50:51 -0800 | [diff] [blame] | 130 | super_device, slot, BootControlInterface::kInvalidSlot); |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 131 | |
| 132 | if (builder == nullptr) { |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 133 | LOG(ERROR) << "No metadata in slot " |
| 134 | << BootControlInterface::SlotName(slot); |
| 135 | return DynamicPartitionDeviceStatus::ERROR; |
| 136 | } |
| 137 | |
Yifan Hong | 8546a71 | 2019-03-28 14:42:53 -0700 | [diff] [blame] | 138 | Slot current_slot = GetCurrentSlot(); |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 139 | if (builder->FindPartition(partition_name_suffix) == nullptr) { |
| 140 | LOG(INFO) << partition_name_suffix |
| 141 | << " is not in super partition metadata."; |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 142 | |
Yifan Hong | 124a460 | 2018-11-14 13:17:01 -0800 | [diff] [blame] | 143 | if (IsSuperBlockDevice(device_dir, current_slot, partition_name_suffix)) { |
| 144 | LOG(ERROR) << "The static partition " << partition_name_suffix |
| 145 | << " is a block device for current metadata (" |
| 146 | << fs_mgr_get_super_partition_name(current_slot) << ", slot " |
| 147 | << BootControlInterface::SlotName(current_slot) |
| 148 | << "). It cannot be used as a logical partition."; |
| 149 | return DynamicPartitionDeviceStatus::ERROR; |
| 150 | } |
| 151 | |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 152 | return DynamicPartitionDeviceStatus::TRY_STATIC; |
| 153 | } |
| 154 | |
Yifan Hong | 8546a71 | 2019-03-28 14:42:53 -0700 | [diff] [blame] | 155 | if (slot == current_slot) { |
| 156 | if (dynamic_control_->GetState(partition_name_suffix) != |
| 157 | DmDeviceState::ACTIVE) { |
| 158 | LOG(WARNING) << partition_name_suffix << " is at current slot but it is " |
| 159 | << "not mapped. Now try to map it."; |
| 160 | } else { |
| 161 | if (dynamic_control_->GetDmDevicePathByName(partition_name_suffix, |
| 162 | device)) { |
| 163 | LOG(INFO) << partition_name_suffix |
| 164 | << " is mapped on device mapper: " << *device; |
| 165 | return DynamicPartitionDeviceStatus::SUCCESS; |
| 166 | } |
| 167 | LOG(ERROR) << partition_name_suffix << "is mapped but path is unknown."; |
| 168 | return DynamicPartitionDeviceStatus::ERROR; |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 169 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 170 | } |
| 171 | |
Yifan Hong | 8546a71 | 2019-03-28 14:42:53 -0700 | [diff] [blame] | 172 | bool force_writable = slot != current_slot; |
| 173 | if (dynamic_control_->MapPartitionOnDeviceMapper( |
| 174 | super_device, partition_name_suffix, slot, force_writable, device)) { |
| 175 | return DynamicPartitionDeviceStatus::SUCCESS; |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 176 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 177 | return DynamicPartitionDeviceStatus::ERROR; |
| 178 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 179 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 180 | bool BootControlAndroid::GetPartitionDevice(const string& partition_name, |
| 181 | Slot slot, |
| 182 | string* device) const { |
| 183 | string suffix; |
| 184 | if (!GetSuffix(slot, &suffix)) { |
| 185 | return false; |
| 186 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 187 | const string partition_name_suffix = partition_name + suffix; |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 188 | |
| 189 | string device_dir_str; |
| 190 | if (!dynamic_control_->GetDeviceDir(&device_dir_str)) { |
| 191 | return false; |
| 192 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 193 | base::FilePath device_dir(device_dir_str); |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 194 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 195 | // When looking up target partition devices, treat them as static if the |
| 196 | // current payload doesn't encode them as dynamic partitions. This may happen |
| 197 | // when applying a retrofit update on top of a dynamic-partitions-enabled |
| 198 | // build. |
| 199 | if (dynamic_control_->IsDynamicPartitionsEnabled() && |
| 200 | (slot == GetCurrentSlot() || is_target_dynamic_)) { |
| 201 | switch (GetDynamicPartitionDevice( |
| 202 | device_dir, partition_name_suffix, slot, device)) { |
| 203 | case DynamicPartitionDeviceStatus::SUCCESS: |
| 204 | return true; |
| 205 | case DynamicPartitionDeviceStatus::TRY_STATIC: |
| 206 | break; |
| 207 | case DynamicPartitionDeviceStatus::ERROR: // fallthrough |
| 208 | default: |
| 209 | return false; |
| 210 | } |
Yifan Hong | ae04e19 | 2018-10-29 11:00:28 -0700 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | base::FilePath path = device_dir.Append(partition_name_suffix); |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 214 | if (!dynamic_control_->DeviceExists(path.value())) { |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 215 | LOG(ERROR) << "Device file " << path.value() << " does not exist."; |
| 216 | return false; |
| 217 | } |
| 218 | |
| 219 | *device = path.value(); |
| 220 | return true; |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | bool BootControlAndroid::IsSlotBootable(Slot slot) const { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 224 | Return<BoolResult> ret = module_->isSlotBootable(slot); |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 225 | if (!ret.isOk()) { |
Alex Deymo | 31d95ac | 2015-09-17 11:56:18 -0700 | [diff] [blame] | 226 | LOG(ERROR) << "Unable to determine if slot " << SlotName(slot) |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame] | 227 | << " is bootable: " << ret.description(); |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 228 | return false; |
| 229 | } |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 230 | if (ret == BoolResult::INVALID_SLOT) { |
| 231 | LOG(ERROR) << "Invalid slot: " << SlotName(slot); |
| 232 | return false; |
| 233 | } |
| 234 | return ret == BoolResult::TRUE; |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | bool BootControlAndroid::MarkSlotUnbootable(Slot slot) { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 238 | CommandResult result; |
| 239 | auto ret = module_->setSlotAsUnbootable(slot, StoreResultCallback(&result)); |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 240 | if (!ret.isOk()) { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 241 | LOG(ERROR) << "Unable to call MarkSlotUnbootable for slot " |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame] | 242 | << SlotName(slot) << ": " << ret.description(); |
David Zeuthen | 753fadc | 2015-09-15 16:34:09 -0400 | [diff] [blame] | 243 | return false; |
| 244 | } |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 245 | if (!result.success) { |
| 246 | LOG(ERROR) << "Unable to mark slot " << SlotName(slot) |
| 247 | << " as unbootable: " << result.errMsg.c_str(); |
| 248 | } |
| 249 | return result.success; |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 250 | } |
| 251 | |
Alex Deymo | 31d95ac | 2015-09-17 11:56:18 -0700 | [diff] [blame] | 252 | bool BootControlAndroid::SetActiveBootSlot(Slot slot) { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 253 | CommandResult result; |
| 254 | auto ret = module_->setActiveBootSlot(slot, StoreResultCallback(&result)); |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 255 | if (!ret.isOk()) { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 256 | LOG(ERROR) << "Unable to call SetActiveBootSlot for slot " << SlotName(slot) |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 257 | << ": " << ret.description(); |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 258 | return false; |
Alex Deymo | 29dcbf3 | 2016-10-06 13:33:20 -0700 | [diff] [blame] | 259 | } |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 260 | if (!result.success) { |
| 261 | LOG(ERROR) << "Unable to set the active slot to slot " << SlotName(slot) |
| 262 | << ": " << result.errMsg.c_str(); |
| 263 | } |
| 264 | return result.success; |
Alex Deymo | 31d95ac | 2015-09-17 11:56:18 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 267 | bool BootControlAndroid::MarkBootSuccessfulAsync( |
| 268 | base::Callback<void(bool)> callback) { |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 269 | CommandResult result; |
| 270 | auto ret = module_->markBootSuccessful(StoreResultCallback(&result)); |
Yifan Hong | 7b514b4 | 2016-12-21 13:02:00 -0800 | [diff] [blame] | 271 | if (!ret.isOk()) { |
Amin Hassani | 7cc8bb0 | 2019-01-14 16:29:47 -0800 | [diff] [blame] | 272 | LOG(ERROR) << "Unable to call MarkBootSuccessful: " << ret.description(); |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 273 | return false; |
| 274 | } |
| 275 | if (!result.success) { |
| 276 | LOG(ERROR) << "Unable to mark boot successful: " << result.errMsg.c_str(); |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 277 | } |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 278 | return brillo::MessageLoop::current()->PostTask( |
Connor O'Brien | cee6ad9 | 2016-11-21 13:53:52 -0800 | [diff] [blame] | 279 | FROM_HERE, base::Bind(callback, result.success)) != |
Alex Vakulenko | 3f39d5c | 2015-10-13 09:27:13 -0700 | [diff] [blame] | 280 | brillo::MessageLoop::kTaskIdNull; |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 281 | } |
| 282 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 283 | namespace { |
| 284 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 285 | bool UpdatePartitionMetadata(DynamicPartitionControlInterface* dynamic_control, |
| 286 | Slot source_slot, |
| 287 | Slot target_slot, |
| 288 | const string& target_suffix, |
| 289 | const PartitionMetadata& partition_metadata) { |
| 290 | string device_dir_str; |
| 291 | if (!dynamic_control->GetDeviceDir(&device_dir_str)) { |
| 292 | return false; |
| 293 | } |
| 294 | base::FilePath device_dir(device_dir_str); |
| 295 | auto source_device = |
| 296 | device_dir.Append(fs_mgr_get_super_partition_name(source_slot)).value(); |
| 297 | |
Yifan Hong | 6e706b1 | 2018-11-09 16:50:51 -0800 | [diff] [blame] | 298 | auto builder = dynamic_control->LoadMetadataBuilder( |
Yifan Hong | b97e3ab | 2018-11-14 13:50:39 -0800 | [diff] [blame] | 299 | source_device, source_slot, target_slot); |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 300 | if (builder == nullptr) { |
| 301 | // TODO(elsk): allow reconstructing metadata from partition_metadata |
| 302 | // in recovery sideload. |
| 303 | LOG(ERROR) << "No metadata at " |
| 304 | << BootControlInterface::SlotName(source_slot); |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 305 | return false; |
| 306 | } |
| 307 | |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 308 | std::vector<string> groups = builder->ListGroups(); |
| 309 | for (const auto& group_name : groups) { |
| 310 | if (base::EndsWith( |
| 311 | group_name, target_suffix, base::CompareCase::SENSITIVE)) { |
| 312 | LOG(INFO) << "Removing group " << group_name; |
| 313 | builder->RemoveGroupAndPartitions(group_name); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | uint64_t total_size = 0; |
| 318 | for (const auto& group : partition_metadata.groups) { |
| 319 | total_size += group.size; |
| 320 | } |
| 321 | |
Yifan Hong | 6e38b35 | 2018-11-19 14:12:37 -0800 | [diff] [blame] | 322 | string expr; |
| 323 | uint64_t allocatable_space = builder->AllocatableSpace(); |
| 324 | if (!dynamic_control->IsDynamicPartitionsRetrofit()) { |
| 325 | allocatable_space /= 2; |
| 326 | expr = "half of "; |
| 327 | } |
| 328 | if (total_size > allocatable_space) { |
| 329 | LOG(ERROR) << "The maximum size of all groups with suffix " << target_suffix |
| 330 | << " (" << total_size << ") has exceeded " << expr |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 331 | << " allocatable space for dynamic partitions " |
Yifan Hong | 6e38b35 | 2018-11-19 14:12:37 -0800 | [diff] [blame] | 332 | << allocatable_space << "."; |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 333 | return false; |
| 334 | } |
| 335 | |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 336 | for (const auto& group : partition_metadata.groups) { |
| 337 | auto group_name_suffix = group.name + target_suffix; |
| 338 | if (!builder->AddGroup(group_name_suffix, group.size)) { |
| 339 | LOG(ERROR) << "Cannot add group " << group_name_suffix << " with size " |
| 340 | << group.size; |
| 341 | return false; |
| 342 | } |
| 343 | LOG(INFO) << "Added group " << group_name_suffix << " with size " |
| 344 | << group.size; |
| 345 | |
| 346 | for (const auto& partition : group.partitions) { |
Yifan Hong | a7897f3 | 2018-11-15 14:28:50 -0800 | [diff] [blame] | 347 | auto partition_name_suffix = partition.name + target_suffix; |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 348 | Partition* p = builder->AddPartition( |
Yifan Hong | a7897f3 | 2018-11-15 14:28:50 -0800 | [diff] [blame] | 349 | partition_name_suffix, group_name_suffix, LP_PARTITION_ATTR_READONLY); |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 350 | if (!p) { |
Yifan Hong | a7897f3 | 2018-11-15 14:28:50 -0800 | [diff] [blame] | 351 | LOG(ERROR) << "Cannot add partition " << partition_name_suffix |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 352 | << " to group " << group_name_suffix; |
| 353 | return false; |
| 354 | } |
| 355 | if (!builder->ResizePartition(p, partition.size)) { |
Yifan Hong | a7897f3 | 2018-11-15 14:28:50 -0800 | [diff] [blame] | 356 | LOG(ERROR) << "Cannot resize partition " << partition_name_suffix |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 357 | << " to size " << partition.size << ". Not enough space?"; |
| 358 | return false; |
| 359 | } |
Yifan Hong | a7897f3 | 2018-11-15 14:28:50 -0800 | [diff] [blame] | 360 | LOG(INFO) << "Added partition " << partition_name_suffix << " to group " |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 361 | << group_name_suffix << " with size " << partition.size; |
| 362 | } |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 363 | } |
| 364 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 365 | auto target_device = |
| 366 | device_dir.Append(fs_mgr_get_super_partition_name(target_slot)).value(); |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 367 | return dynamic_control->StoreMetadata( |
Yifan Hong | b97e3ab | 2018-11-14 13:50:39 -0800 | [diff] [blame] | 368 | target_device, builder.get(), target_slot); |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 369 | } |
| 370 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 371 | bool UnmapTargetPartitions(DynamicPartitionControlInterface* dynamic_control, |
| 372 | const string& target_suffix, |
| 373 | const PartitionMetadata& partition_metadata) { |
Yifan Hong | d4db07e | 2018-10-18 17:46:27 -0700 | [diff] [blame] | 374 | for (const auto& group : partition_metadata.groups) { |
| 375 | for (const auto& partition : group.partitions) { |
| 376 | if (!dynamic_control->UnmapPartitionOnDeviceMapper( |
| 377 | partition.name + target_suffix, true /* wait */)) { |
| 378 | return false; |
| 379 | } |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 380 | } |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 381 | } |
| 382 | return true; |
| 383 | } |
| 384 | |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 385 | } // namespace |
| 386 | |
| 387 | bool BootControlAndroid::InitPartitionMetadata( |
Tao Bao | 3406c77 | 2019-01-02 15:34:35 -0800 | [diff] [blame] | 388 | Slot target_slot, |
| 389 | const PartitionMetadata& partition_metadata, |
| 390 | bool update_metadata) { |
Mark Salyzyn | 62b42c8 | 2018-12-05 13:33:17 -0800 | [diff] [blame] | 391 | if (fs_mgr_overlayfs_is_setup()) { |
| 392 | // Non DAP devices can use overlayfs as well. |
| 393 | LOG(WARNING) |
| 394 | << "overlayfs overrides are active and can interfere with our " |
| 395 | "resources.\n" |
| 396 | << "run adb enable-verity to deactivate if required and try again."; |
| 397 | } |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 398 | if (!dynamic_control_->IsDynamicPartitionsEnabled()) { |
| 399 | return true; |
| 400 | } |
| 401 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 402 | auto source_slot = GetCurrentSlot(); |
| 403 | if (target_slot == source_slot) { |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 404 | LOG(ERROR) << "Cannot call InitPartitionMetadata on current slot."; |
| 405 | return false; |
| 406 | } |
| 407 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 408 | // Although the current build supports dynamic partitions, the given payload |
| 409 | // doesn't use it for target partitions. This could happen when applying a |
| 410 | // retrofit update. Skip updating the partition metadata for the target slot. |
| 411 | is_target_dynamic_ = !partition_metadata.groups.empty(); |
| 412 | if (!is_target_dynamic_) { |
| 413 | return true; |
| 414 | } |
| 415 | |
Tao Bao | 3406c77 | 2019-01-02 15:34:35 -0800 | [diff] [blame] | 416 | if (!update_metadata) { |
| 417 | return true; |
| 418 | } |
| 419 | |
| 420 | string target_suffix; |
| 421 | if (!GetSuffix(target_slot, &target_suffix)) { |
| 422 | return false; |
| 423 | } |
| 424 | |
Yifan Hong | 1d9077f | 2018-12-07 12:09:37 -0800 | [diff] [blame] | 425 | // Unmap all the target dynamic partitions because they would become |
| 426 | // inconsistent with the new metadata. |
| 427 | if (!UnmapTargetPartitions( |
| 428 | dynamic_control_.get(), target_suffix, partition_metadata)) { |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 429 | return false; |
| 430 | } |
| 431 | |
Tao Bao | 3406c77 | 2019-01-02 15:34:35 -0800 | [diff] [blame] | 432 | return UpdatePartitionMetadata(dynamic_control_.get(), |
| 433 | source_slot, |
| 434 | target_slot, |
| 435 | target_suffix, |
| 436 | partition_metadata); |
Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 437 | } |
| 438 | |
Alex Deymo | b17327c | 2015-09-04 10:29:00 -0700 | [diff] [blame] | 439 | } // namespace chromeos_update_engine |