blob: 1fab85f16d2bf6b28869dd31f87bcd4e098d2e10 [file] [log] [blame]
Alex Deymob17327c2015-09-04 10:29:00 -07001//
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 Deymo1b03f9f2015-12-09 00:38:36 -080017#include "update_engine/boot_control_android.h"
Alex Deymob17327c2015-09-04 10:29:00 -070018
Sen Jiangd944faa2018-08-22 18:46:39 -070019#include <memory>
20#include <utility>
Yifan Hongd4db07e2018-10-18 17:46:27 -070021#include <vector>
Sen Jiangd944faa2018-08-22 18:46:39 -070022
Alex Deymoaa26f622015-09-16 18:21:27 -070023#include <base/bind.h>
Alex Deymoaa26f622015-09-16 18:21:27 -070024#include <base/logging.h>
Yifan Hongd4db07e2018-10-18 17:46:27 -070025#include <base/strings/string_util.h>
Sen Jiangd944faa2018-08-22 18:46:39 -070026#include <bootloader_message/bootloader_message.h>
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070027#include <brillo/message_loops/message_loop.h>
David Andersond63cb3c2018-10-01 14:15:00 -070028#include <fs_mgr.h>
Mark Salyzyn62b42c82018-12-05 13:33:17 -080029#include <fs_mgr_overlayfs.h>
Alex Deymob17327c2015-09-04 10:29:00 -070030
Alex Deymo39910dc2015-11-09 17:04:30 -080031#include "update_engine/common/utils.h"
Yifan Hong537802d2018-08-15 13:15:42 -070032#include "update_engine/dynamic_partition_control_android.h"
Alex Deymob17327c2015-09-04 10:29:00 -070033
34using std::string;
35
Yifan Hong537802d2018-08-15 13:15:42 -070036using android::dm::DmDeviceState;
Yifan Hong537802d2018-08-15 13:15:42 -070037using android::fs_mgr::Partition;
Yifan Hong537802d2018-08-15 13:15:42 -070038using android::hardware::hidl_string;
Connor O'Briencee6ad92016-11-21 13:53:52 -080039using android::hardware::Return;
40using android::hardware::boot::V1_0::BoolResult;
41using android::hardware::boot::V1_0::CommandResult;
42using android::hardware::boot::V1_0::IBootControl;
Yifan Hong537802d2018-08-15 13:15:42 -070043using Slot = chromeos_update_engine::BootControlInterface::Slot;
Yifan Hong6b0a9842018-10-16 16:54:18 -070044using PartitionMetadata =
45 chromeos_update_engine::BootControlInterface::PartitionMetadata;
Connor O'Briencee6ad92016-11-21 13:53:52 -080046
47namespace {
Yifan Hong537802d2018-08-15 13:15:42 -070048
Connor O'Briencee6ad92016-11-21 13:53:52 -080049auto StoreResultCallback(CommandResult* dest) {
50 return [dest](const CommandResult& result) { *dest = result; };
51}
52} // namespace
Alex Deymo44348e02016-07-29 16:22:26 -070053
Alex Deymob17327c2015-09-04 10:29:00 -070054namespace chromeos_update_engine {
55
56namespace boot_control {
57
58// Factory defined in boot_control.h.
59std::unique_ptr<BootControlInterface> CreateBootControl() {
Yifan Hong537802d2018-08-15 13:15:42 -070060 auto boot_control = std::make_unique<BootControlAndroid>();
David Zeuthen753fadc2015-09-15 16:34:09 -040061 if (!boot_control->Init()) {
62 return nullptr;
63 }
Alex Vakulenkoce8c8ee2016-04-08 08:59:26 -070064 return std::move(boot_control);
Alex Deymob17327c2015-09-04 10:29:00 -070065}
66
67} // namespace boot_control
68
David Zeuthen753fadc2015-09-15 16:34:09 -040069bool BootControlAndroid::Init() {
Chris Phoenixafde8e82017-01-17 23:14:58 -080070 module_ = IBootControl::getService();
Connor O'Briencee6ad92016-11-21 13:53:52 -080071 if (module_ == nullptr) {
Steven Moreland927e00d2017-01-04 12:58:40 -080072 LOG(ERROR) << "Error getting bootctrl HIDL module.";
David Zeuthen753fadc2015-09-15 16:34:09 -040073 return false;
74 }
75
Steven Moreland927e00d2017-01-04 12:58:40 -080076 LOG(INFO) << "Loaded boot control hidl hal.";
David Zeuthen753fadc2015-09-15 16:34:09 -040077
Yifan Hong537802d2018-08-15 13:15:42 -070078 dynamic_control_ = std::make_unique<DynamicPartitionControlAndroid>();
79
David Zeuthen753fadc2015-09-15 16:34:09 -040080 return true;
81}
Alex Deymob17327c2015-09-04 10:29:00 -070082
Yifan Hong537802d2018-08-15 13:15:42 -070083void BootControlAndroid::Cleanup() {
84 dynamic_control_->Cleanup();
85}
86
Alex Deymob17327c2015-09-04 10:29:00 -070087unsigned int BootControlAndroid::GetNumSlots() const {
Connor O'Briencee6ad92016-11-21 13:53:52 -080088 return module_->getNumberSlots();
Alex Deymob17327c2015-09-04 10:29:00 -070089}
90
91BootControlInterface::Slot BootControlAndroid::GetCurrentSlot() const {
Connor O'Briencee6ad92016-11-21 13:53:52 -080092 return module_->getCurrentSlot();
Alex Deymob17327c2015-09-04 10:29:00 -070093}
94
Yifan Hong537802d2018-08-15 13:15:42 -070095bool BootControlAndroid::GetSuffix(Slot slot, string* suffix) const {
Connor O'Briencee6ad92016-11-21 13:53:52 -080096 auto store_suffix_cb = [&suffix](hidl_string cb_suffix) {
Yifan Hong537802d2018-08-15 13:15:42 -070097 *suffix = cb_suffix.c_str();
Connor O'Briencee6ad92016-11-21 13:53:52 -080098 };
99 Return<void> ret = module_->getSuffix(slot, store_suffix_cb);
100
Yifan Hong7b514b42016-12-21 13:02:00 -0800101 if (!ret.isOk()) {
Alex Deymo31d95ac2015-09-17 11:56:18 -0700102 LOG(ERROR) << "boot_control impl returned no suffix for slot "
103 << SlotName(slot);
David Zeuthen753fadc2015-09-15 16:34:09 -0400104 return false;
105 }
Yifan Hong537802d2018-08-15 13:15:42 -0700106 return true;
107}
108
Yifan Hong124a4602018-11-14 13:17:01 -0800109bool 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 Hongae04e192018-10-29 11:00:28 -0700119
Yifan Hong124a4602018-11-14 13:17:01 -0800120BootControlAndroid::DynamicPartitionDeviceStatus
121BootControlAndroid::GetDynamicPartitionDevice(
122 const base::FilePath& device_dir,
Yifan Hongae04e192018-10-29 11:00:28 -0700123 const string& partition_name_suffix,
124 Slot slot,
Yifan Hong124a4602018-11-14 13:17:01 -0800125 string* device) const {
Yifan Hong124a4602018-11-14 13:17:01 -0800126 string super_device =
127 device_dir.Append(fs_mgr_get_super_partition_name(slot)).value();
128
129 auto builder = dynamic_control_->LoadMetadataBuilder(
Yifan Hong6e706b12018-11-09 16:50:51 -0800130 super_device, slot, BootControlInterface::kInvalidSlot);
Yifan Hongae04e192018-10-29 11:00:28 -0700131
132 if (builder == nullptr) {
Yifan Hongae04e192018-10-29 11:00:28 -0700133 LOG(ERROR) << "No metadata in slot "
134 << BootControlInterface::SlotName(slot);
135 return DynamicPartitionDeviceStatus::ERROR;
136 }
137
Yifan Hong8546a712019-03-28 14:42:53 -0700138 Slot current_slot = GetCurrentSlot();
Yifan Hongae04e192018-10-29 11:00:28 -0700139 if (builder->FindPartition(partition_name_suffix) == nullptr) {
140 LOG(INFO) << partition_name_suffix
141 << " is not in super partition metadata.";
Yifan Hong124a4602018-11-14 13:17:01 -0800142
Yifan Hong124a4602018-11-14 13:17:01 -0800143 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 Hongae04e192018-10-29 11:00:28 -0700152 return DynamicPartitionDeviceStatus::TRY_STATIC;
153 }
154
Yifan Hong8546a712019-03-28 14:42:53 -0700155 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 Hongae04e192018-10-29 11:00:28 -0700169 }
Yifan Hongae04e192018-10-29 11:00:28 -0700170 }
171
Yifan Hong8546a712019-03-28 14:42:53 -0700172 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 Hongae04e192018-10-29 11:00:28 -0700176 }
Yifan Hongae04e192018-10-29 11:00:28 -0700177 return DynamicPartitionDeviceStatus::ERROR;
178}
Yifan Hongae04e192018-10-29 11:00:28 -0700179
Yifan Hong537802d2018-08-15 13:15:42 -0700180bool 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 Hongae04e192018-10-29 11:00:28 -0700187 const string partition_name_suffix = partition_name + suffix;
Yifan Hong537802d2018-08-15 13:15:42 -0700188
189 string device_dir_str;
190 if (!dynamic_control_->GetDeviceDir(&device_dir_str)) {
191 return false;
192 }
Yifan Hongae04e192018-10-29 11:00:28 -0700193 base::FilePath device_dir(device_dir_str);
David Zeuthen753fadc2015-09-15 16:34:09 -0400194
Yifan Hong1d9077f2018-12-07 12:09:37 -0800195 // 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 Hongae04e192018-10-29 11:00:28 -0700211 }
212
213 base::FilePath path = device_dir.Append(partition_name_suffix);
Yifan Hong537802d2018-08-15 13:15:42 -0700214 if (!dynamic_control_->DeviceExists(path.value())) {
David Zeuthen753fadc2015-09-15 16:34:09 -0400215 LOG(ERROR) << "Device file " << path.value() << " does not exist.";
216 return false;
217 }
218
219 *device = path.value();
220 return true;
Alex Deymob17327c2015-09-04 10:29:00 -0700221}
222
223bool BootControlAndroid::IsSlotBootable(Slot slot) const {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800224 Return<BoolResult> ret = module_->isSlotBootable(slot);
Yifan Hong7b514b42016-12-21 13:02:00 -0800225 if (!ret.isOk()) {
Alex Deymo31d95ac2015-09-17 11:56:18 -0700226 LOG(ERROR) << "Unable to determine if slot " << SlotName(slot)
Amin Hassani7cc8bb02019-01-14 16:29:47 -0800227 << " is bootable: " << ret.description();
David Zeuthen753fadc2015-09-15 16:34:09 -0400228 return false;
229 }
Connor O'Briencee6ad92016-11-21 13:53:52 -0800230 if (ret == BoolResult::INVALID_SLOT) {
231 LOG(ERROR) << "Invalid slot: " << SlotName(slot);
232 return false;
233 }
234 return ret == BoolResult::TRUE;
Alex Deymob17327c2015-09-04 10:29:00 -0700235}
236
237bool BootControlAndroid::MarkSlotUnbootable(Slot slot) {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800238 CommandResult result;
239 auto ret = module_->setSlotAsUnbootable(slot, StoreResultCallback(&result));
Yifan Hong7b514b42016-12-21 13:02:00 -0800240 if (!ret.isOk()) {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800241 LOG(ERROR) << "Unable to call MarkSlotUnbootable for slot "
Amin Hassani7cc8bb02019-01-14 16:29:47 -0800242 << SlotName(slot) << ": " << ret.description();
David Zeuthen753fadc2015-09-15 16:34:09 -0400243 return false;
244 }
Connor O'Briencee6ad92016-11-21 13:53:52 -0800245 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 Deymob17327c2015-09-04 10:29:00 -0700250}
251
Alex Deymo31d95ac2015-09-17 11:56:18 -0700252bool BootControlAndroid::SetActiveBootSlot(Slot slot) {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800253 CommandResult result;
254 auto ret = module_->setActiveBootSlot(slot, StoreResultCallback(&result));
Yifan Hong7b514b42016-12-21 13:02:00 -0800255 if (!ret.isOk()) {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800256 LOG(ERROR) << "Unable to call SetActiveBootSlot for slot " << SlotName(slot)
Yifan Hong7b514b42016-12-21 13:02:00 -0800257 << ": " << ret.description();
Connor O'Briencee6ad92016-11-21 13:53:52 -0800258 return false;
Alex Deymo29dcbf32016-10-06 13:33:20 -0700259 }
Connor O'Briencee6ad92016-11-21 13:53:52 -0800260 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 Deymo31d95ac2015-09-17 11:56:18 -0700265}
266
Alex Deymoaa26f622015-09-16 18:21:27 -0700267bool BootControlAndroid::MarkBootSuccessfulAsync(
268 base::Callback<void(bool)> callback) {
Connor O'Briencee6ad92016-11-21 13:53:52 -0800269 CommandResult result;
270 auto ret = module_->markBootSuccessful(StoreResultCallback(&result));
Yifan Hong7b514b42016-12-21 13:02:00 -0800271 if (!ret.isOk()) {
Amin Hassani7cc8bb02019-01-14 16:29:47 -0800272 LOG(ERROR) << "Unable to call MarkBootSuccessful: " << ret.description();
Connor O'Briencee6ad92016-11-21 13:53:52 -0800273 return false;
274 }
275 if (!result.success) {
276 LOG(ERROR) << "Unable to mark boot successful: " << result.errMsg.c_str();
Alex Deymoaa26f622015-09-16 18:21:27 -0700277 }
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700278 return brillo::MessageLoop::current()->PostTask(
Connor O'Briencee6ad92016-11-21 13:53:52 -0800279 FROM_HERE, base::Bind(callback, result.success)) !=
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700280 brillo::MessageLoop::kTaskIdNull;
Alex Deymoaa26f622015-09-16 18:21:27 -0700281}
282
Yifan Hong537802d2018-08-15 13:15:42 -0700283namespace {
284
Yifan Hong1d9077f2018-12-07 12:09:37 -0800285bool 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 Hong6e706b12018-11-09 16:50:51 -0800298 auto builder = dynamic_control->LoadMetadataBuilder(
Yifan Hongb97e3ab2018-11-14 13:50:39 -0800299 source_device, source_slot, target_slot);
Yifan Hongd4db07e2018-10-18 17:46:27 -0700300 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 Hong537802d2018-08-15 13:15:42 -0700305 return false;
306 }
307
Yifan Hongd4db07e2018-10-18 17:46:27 -0700308 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 Hong6e38b352018-11-19 14:12:37 -0800322 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 Hong1d9077f2018-12-07 12:09:37 -0800331 << " allocatable space for dynamic partitions "
Yifan Hong6e38b352018-11-19 14:12:37 -0800332 << allocatable_space << ".";
Yifan Hong537802d2018-08-15 13:15:42 -0700333 return false;
334 }
335
Yifan Hongd4db07e2018-10-18 17:46:27 -0700336 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 Honga7897f32018-11-15 14:28:50 -0800347 auto partition_name_suffix = partition.name + target_suffix;
Yifan Hongd4db07e2018-10-18 17:46:27 -0700348 Partition* p = builder->AddPartition(
Yifan Honga7897f32018-11-15 14:28:50 -0800349 partition_name_suffix, group_name_suffix, LP_PARTITION_ATTR_READONLY);
Yifan Hongd4db07e2018-10-18 17:46:27 -0700350 if (!p) {
Yifan Honga7897f32018-11-15 14:28:50 -0800351 LOG(ERROR) << "Cannot add partition " << partition_name_suffix
Yifan Hongd4db07e2018-10-18 17:46:27 -0700352 << " to group " << group_name_suffix;
353 return false;
354 }
355 if (!builder->ResizePartition(p, partition.size)) {
Yifan Honga7897f32018-11-15 14:28:50 -0800356 LOG(ERROR) << "Cannot resize partition " << partition_name_suffix
Yifan Hongd4db07e2018-10-18 17:46:27 -0700357 << " to size " << partition.size << ". Not enough space?";
358 return false;
359 }
Yifan Honga7897f32018-11-15 14:28:50 -0800360 LOG(INFO) << "Added partition " << partition_name_suffix << " to group "
Yifan Hongd4db07e2018-10-18 17:46:27 -0700361 << group_name_suffix << " with size " << partition.size;
362 }
Yifan Hong537802d2018-08-15 13:15:42 -0700363 }
364
Yifan Hong1d9077f2018-12-07 12:09:37 -0800365 auto target_device =
366 device_dir.Append(fs_mgr_get_super_partition_name(target_slot)).value();
Yifan Hongd4db07e2018-10-18 17:46:27 -0700367 return dynamic_control->StoreMetadata(
Yifan Hongb97e3ab2018-11-14 13:50:39 -0800368 target_device, builder.get(), target_slot);
Yifan Hong537802d2018-08-15 13:15:42 -0700369}
370
Yifan Hong1d9077f2018-12-07 12:09:37 -0800371bool UnmapTargetPartitions(DynamicPartitionControlInterface* dynamic_control,
372 const string& target_suffix,
373 const PartitionMetadata& partition_metadata) {
Yifan Hongd4db07e2018-10-18 17:46:27 -0700374 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 Hong537802d2018-08-15 13:15:42 -0700380 }
Yifan Hong537802d2018-08-15 13:15:42 -0700381 }
382 return true;
383}
384
Yifan Hong537802d2018-08-15 13:15:42 -0700385} // namespace
386
387bool BootControlAndroid::InitPartitionMetadata(
Tao Bao3406c772019-01-02 15:34:35 -0800388 Slot target_slot,
389 const PartitionMetadata& partition_metadata,
390 bool update_metadata) {
Mark Salyzyn62b42c82018-12-05 13:33:17 -0800391 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 Hong537802d2018-08-15 13:15:42 -0700398 if (!dynamic_control_->IsDynamicPartitionsEnabled()) {
399 return true;
400 }
401
Yifan Hong1d9077f2018-12-07 12:09:37 -0800402 auto source_slot = GetCurrentSlot();
403 if (target_slot == source_slot) {
Yifan Hong537802d2018-08-15 13:15:42 -0700404 LOG(ERROR) << "Cannot call InitPartitionMetadata on current slot.";
405 return false;
406 }
407
Yifan Hong1d9077f2018-12-07 12:09:37 -0800408 // 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 Bao3406c772019-01-02 15:34:35 -0800416 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 Hong1d9077f2018-12-07 12:09:37 -0800425 // 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 Hong537802d2018-08-15 13:15:42 -0700429 return false;
430 }
431
Tao Bao3406c772019-01-02 15:34:35 -0800432 return UpdatePartitionMetadata(dynamic_control_.get(),
433 source_slot,
434 target_slot,
435 target_suffix,
436 partition_metadata);
Yifan Hong537802d2018-08-15 13:15:42 -0700437}
438
Alex Deymob17327c2015-09-04 10:29:00 -0700439} // namespace chromeos_update_engine