| Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -0700 | [diff] [blame] | 1 | // | 
|  | 2 | // Copyright (C) 2013 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 | // | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 16 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 17 | #include "update_engine/payload_consumer/install_plan.h" | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 18 |  | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 19 | #include <algorithm> | 
|  | 20 | #include <utility> | 
|  | 21 |  | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 22 | #include <base/format_macros.h> | 
| Alex Deymo | 8427b4a | 2014-11-05 14:00:32 -0800 | [diff] [blame] | 23 | #include <base/logging.h> | 
| Sen Jiang | 2703ef4 | 2017-03-16 13:36:21 -0700 | [diff] [blame] | 24 | #include <base/strings/string_number_conversions.h> | 
| Jae Hoon Kim | 8da11e2 | 2019-12-23 11:26:17 -0800 | [diff] [blame] | 25 | #include <base/strings/string_util.h> | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 26 | #include <base/strings/stringprintf.h> | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 27 |  | 
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 28 | #include "update_engine/common/utils.h" | 
|  | 29 | #include "update_engine/payload_consumer/payload_constants.h" | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 30 |  | 
|  | 31 | using std::string; | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 32 | using std::vector; | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 33 |  | 
|  | 34 | namespace chromeos_update_engine { | 
|  | 35 |  | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 36 | namespace { | 
| Jae Hoon Kim | 8da11e2 | 2019-12-23 11:26:17 -0800 | [diff] [blame] | 37 | string PayloadUrlsToString( | 
|  | 38 | const decltype(InstallPlan::Payload::payload_urls)& payload_urls) { | 
|  | 39 | return "(" + base::JoinString(payload_urls, ",") + ")"; | 
|  | 40 | } | 
|  | 41 |  | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 42 | string VectorToString(const vector<std::pair<string, string>>& input, | 
|  | 43 | const string& separator) { | 
|  | 44 | vector<string> vec; | 
|  | 45 | std::transform(input.begin(), | 
|  | 46 | input.end(), | 
|  | 47 | std::back_inserter(vec), | 
|  | 48 | [](const auto& pair) { | 
|  | 49 | return base::JoinString({pair.first, pair.second}, ": "); | 
|  | 50 | }); | 
|  | 51 | return base::JoinString(vec, separator); | 
|  | 52 | } | 
|  | 53 | }  // namespace | 
|  | 54 |  | 
| Alex Deymo | 64d9878 | 2016-02-05 18:03:48 -0800 | [diff] [blame] | 55 | string InstallPayloadTypeToString(InstallPayloadType type) { | 
|  | 56 | switch (type) { | 
|  | 57 | case InstallPayloadType::kUnknown: | 
|  | 58 | return "unknown"; | 
|  | 59 | case InstallPayloadType::kFull: | 
|  | 60 | return "full"; | 
|  | 61 | case InstallPayloadType::kDelta: | 
|  | 62 | return "delta"; | 
|  | 63 | } | 
|  | 64 | return "invalid type"; | 
|  | 65 | } | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 66 |  | 
|  | 67 | bool InstallPlan::operator==(const InstallPlan& that) const { | 
|  | 68 | return ((is_resume == that.is_resume) && | 
| Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 69 | (download_url == that.download_url) && (payloads == that.payloads) && | 
| Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 70 | (source_slot == that.source_slot) && | 
| Sen Jiang | 0affc2c | 2017-02-10 15:55:05 -0800 | [diff] [blame] | 71 | (target_slot == that.target_slot) && (partitions == that.partitions)); | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 72 | } | 
|  | 73 |  | 
|  | 74 | bool InstallPlan::operator!=(const InstallPlan& that) const { | 
|  | 75 | return !((*this) == that); | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | void InstallPlan::Dump() const { | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 79 | LOG(INFO) << "InstallPlan: \n" << ToString(); | 
|  | 80 | } | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 81 |  | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 82 | string InstallPlan::ToString() const { | 
| Kyeongkab.Nam | 500ca13 | 2019-06-26 13:48:07 +0900 | [diff] [blame] | 83 | string url_str = download_url; | 
|  | 84 | if (base::StartsWith( | 
|  | 85 | url_str, "fd://", base::CompareCase::INSENSITIVE_ASCII)) { | 
|  | 86 | int fd = std::stoi(url_str.substr(strlen("fd://"))); | 
|  | 87 | url_str = utils::GetFilePath(fd); | 
|  | 88 | } | 
|  | 89 |  | 
| Amin Hassani | 2379503 | 2020-11-24 14:38:55 -0800 | [diff] [blame] | 90 | vector<string> result_str; | 
|  | 91 | result_str.emplace_back(VectorToString( | 
|  | 92 | { | 
|  | 93 | {"type", (is_resume ? "resume" : "new_update")}, | 
|  | 94 | {"version", version}, | 
|  | 95 | {"source_slot", BootControlInterface::SlotName(source_slot)}, | 
|  | 96 | {"target_slot", BootControlInterface::SlotName(target_slot)}, | 
|  | 97 | {"initial url", url_str}, | 
|  | 98 | {"hash_checks_mandatory", utils::ToString(hash_checks_mandatory)}, | 
|  | 99 | {"powerwash_required", utils::ToString(powerwash_required)}, | 
|  | 100 | {"switch_slot_on_reboot", utils::ToString(switch_slot_on_reboot)}, | 
|  | 101 | {"run_post_install", utils::ToString(run_post_install)}, | 
|  | 102 | {"is_rollback", utils::ToString(is_rollback)}, | 
|  | 103 | {"rollback_data_save_requested", | 
|  | 104 | utils::ToString(rollback_data_save_requested)}, | 
|  | 105 | {"write_verity", utils::ToString(write_verity)}, | 
|  | 106 | }, | 
|  | 107 | "\n")); | 
|  | 108 |  | 
|  | 109 | for (const auto& partition : partitions) { | 
|  | 110 | result_str.emplace_back(VectorToString( | 
|  | 111 | { | 
|  | 112 | {"Partition", partition.name}, | 
|  | 113 | {"source_size", base::NumberToString(partition.source_size)}, | 
|  | 114 | {"source_path", partition.source_path}, | 
|  | 115 | {"source_hash", | 
|  | 116 | base::HexEncode(partition.source_hash.data(), | 
|  | 117 | partition.source_hash.size())}, | 
|  | 118 | {"target_size", base::NumberToString(partition.target_size)}, | 
|  | 119 | {"target_path", partition.target_path}, | 
|  | 120 | {"target_hash", | 
|  | 121 | base::HexEncode(partition.target_hash.data(), | 
|  | 122 | partition.target_hash.size())}, | 
|  | 123 | {"run_postinstall", utils::ToString(partition.run_postinstall)}, | 
|  | 124 | {"postinstall_path", partition.postinstall_path}, | 
|  | 125 | {"filesystem_type", partition.filesystem_type}, | 
|  | 126 | }, | 
|  | 127 | "\n  ")); | 
|  | 128 | } | 
|  | 129 |  | 
|  | 130 | for (unsigned int i = 0; i < payloads.size(); ++i) { | 
|  | 131 | const auto& payload = payloads[i]; | 
|  | 132 | result_str.emplace_back(VectorToString( | 
|  | 133 | { | 
|  | 134 | {"Payload", base::NumberToString(i)}, | 
|  | 135 | {"urls", PayloadUrlsToString(payload.payload_urls)}, | 
|  | 136 | {"size", base::NumberToString(payload.size)}, | 
|  | 137 | {"metadata_size", base::NumberToString(payload.metadata_size)}, | 
|  | 138 | {"metadata_signature", payload.metadata_signature}, | 
|  | 139 | {"hash", base::HexEncode(payload.hash.data(), payload.hash.size())}, | 
|  | 140 | {"type", InstallPayloadTypeToString(payload.type)}, | 
|  | 141 | {"fingerprint", payload.fp}, | 
|  | 142 | {"app_id", payload.app_id}, | 
|  | 143 | {"already_applied", utils::ToString(payload.already_applied)}, | 
|  | 144 | }, | 
|  | 145 | "\n  ")); | 
|  | 146 | } | 
|  | 147 |  | 
|  | 148 | return base::JoinString(result_str, "\n"); | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 149 | } | 
|  | 150 |  | 
| Alex Deymo | 706a5ab | 2015-11-23 17:48:30 -0300 | [diff] [blame] | 151 | bool InstallPlan::LoadPartitionsFromSlots(BootControlInterface* boot_control) { | 
| Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 152 | bool result = true; | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 153 | for (Partition& partition : partitions) { | 
| Hridya Valsaraju | e69ca5f | 2019-02-25 22:33:56 -0800 | [diff] [blame] | 154 | if (source_slot != BootControlInterface::kInvalidSlot && | 
|  | 155 | partition.source_size > 0) { | 
| Kelvin Zhang | 91d95fa | 2020-11-05 13:52:00 -0500 | [diff] [blame] | 156 | TEST_AND_RETURN_FALSE(boot_control->GetPartitionDevice( | 
|  | 157 | partition.name, source_slot, &partition.source_path)); | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 158 | } else { | 
|  | 159 | partition.source_path.clear(); | 
|  | 160 | } | 
| Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 161 |  | 
| Yifan Hong | 537802d | 2018-08-15 13:15:42 -0700 | [diff] [blame] | 162 | if (target_slot != BootControlInterface::kInvalidSlot && | 
|  | 163 | partition.target_size > 0) { | 
| Kelvin Zhang | 91d95fa | 2020-11-05 13:52:00 -0500 | [diff] [blame] | 164 | auto device = boot_control->GetPartitionDevice( | 
|  | 165 | partition.name, target_slot, source_slot); | 
|  | 166 | TEST_AND_RETURN_FALSE(device.has_value()); | 
|  | 167 | partition.target_path = device->rw_device_path; | 
|  | 168 | partition.postinstall_mount_device = device->mountable_device_path; | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 169 | } else { | 
|  | 170 | partition.target_path.clear(); | 
|  | 171 | } | 
| Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 172 | } | 
|  | 173 | return result; | 
|  | 174 | } | 
|  | 175 |  | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 176 | bool InstallPlan::Partition::operator==( | 
|  | 177 | const InstallPlan::Partition& that) const { | 
| Amin Hassani | 008c458 | 2019-01-13 16:22:47 -0800 | [diff] [blame] | 178 | return (name == that.name && source_path == that.source_path && | 
|  | 179 | source_size == that.source_size && source_hash == that.source_hash && | 
|  | 180 | target_path == that.target_path && target_size == that.target_size && | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 181 | target_hash == that.target_hash && | 
| Alex Deymo | 390efed | 2016-02-18 11:00:40 -0800 | [diff] [blame] | 182 | run_postinstall == that.run_postinstall && | 
|  | 183 | postinstall_path == that.postinstall_path && | 
| Alex Deymo | 5b91c6b | 2016-08-04 20:33:36 -0700 | [diff] [blame] | 184 | filesystem_type == that.filesystem_type && | 
|  | 185 | postinstall_optional == that.postinstall_optional); | 
| Alex Deymo | e5e5fe9 | 2015-10-05 09:28:19 -0700 | [diff] [blame] | 186 | } | 
|  | 187 |  | 
| Jay Srinivasan | ae4697c | 2013-03-18 17:08:08 -0700 | [diff] [blame] | 188 | }  // namespace chromeos_update_engine |