| Alex Deymo | aea4c1c | 2015-08-19 20:24:43 -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 | // |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 16 | |
| 17 | #include "update_engine/payload_generator/payload_generation_config.h" |
| 18 | |
| Alex Deymo | a26432a | 2015-03-12 16:08:04 -0700 | [diff] [blame] | 19 | #include <base/logging.h> |
| 20 | |
| Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 21 | #include "update_engine/common/utils.h" |
| 22 | #include "update_engine/payload_consumer/delta_performer.h" |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 23 | #include "update_engine/payload_generator/delta_diff_generator.h" |
| Sen Jiang | dcbc0ae | 2016-03-18 15:33:19 -0700 | [diff] [blame] | 24 | #include "update_engine/payload_generator/delta_diff_utils.h" |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 25 | #include "update_engine/payload_generator/ext2_filesystem.h" |
| 26 | #include "update_engine/payload_generator/raw_filesystem.h" |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 27 | |
| 28 | namespace chromeos_update_engine { |
| 29 | |
| Sen Jiang | 05feee0 | 2015-11-11 15:59:49 -0800 | [diff] [blame] | 30 | bool PostInstallConfig::IsEmpty() const { |
| 31 | return run == false && path.empty() && filesystem_type.empty(); |
| 32 | } |
| 33 | |
| Alex Deymo | 35589c2 | 2015-06-07 17:33:18 +0200 | [diff] [blame] | 34 | bool PartitionConfig::ValidateExists() const { |
| 35 | TEST_AND_RETURN_FALSE(!path.empty()); |
| 36 | TEST_AND_RETURN_FALSE(utils::FileExists(path.c_str())); |
| 37 | TEST_AND_RETURN_FALSE(size > 0); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 38 | // The requested size is within the limits of the file. |
| Alex Deymo | 35589c2 | 2015-06-07 17:33:18 +0200 | [diff] [blame] | 39 | TEST_AND_RETURN_FALSE(static_cast<off_t>(size) <= |
| 40 | utils::FileSize(path.c_str())); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 41 | return true; |
| 42 | } |
| 43 | |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 44 | bool PartitionConfig::OpenFilesystem() { |
| 45 | if (path.empty()) |
| 46 | return true; |
| 47 | fs_interface.reset(); |
| Sen Jiang | dcbc0ae | 2016-03-18 15:33:19 -0700 | [diff] [blame] | 48 | if (diff_utils::IsExtFilesystem(path)) { |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 49 | fs_interface = Ext2Filesystem::CreateFromFile(path); |
| Sen Jiang | dcbc0ae | 2016-03-18 15:33:19 -0700 | [diff] [blame] | 50 | // TODO(deymo): The delta generator algorithm doesn't support a block size |
| 51 | // different than 4 KiB. Remove this check once that's fixed. b/26972455 |
| 52 | if (fs_interface) |
| 53 | TEST_AND_RETURN_FALSE(fs_interface->GetBlockSize() == kBlockSize); |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | if (!fs_interface) { |
| 57 | // Fall back to a RAW filesystem. |
| 58 | TEST_AND_RETURN_FALSE(size % kBlockSize == 0); |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 59 | fs_interface = RawFilesystem::Create( |
| Sen Jiang | 625406c | 2015-09-16 16:35:23 -0700 | [diff] [blame] | 60 | "<" + name + "-partition>", |
| Alex Deymo | b42b98d | 2015-07-06 17:42:38 -0700 | [diff] [blame] | 61 | kBlockSize, |
| 62 | size / kBlockSize); |
| 63 | } |
| 64 | return true; |
| 65 | } |
| 66 | |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 67 | bool ImageConfig::ValidateIsEmpty() const { |
| 68 | TEST_AND_RETURN_FALSE(ImageInfoIsEmpty()); |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 69 | return partitions.empty(); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | bool ImageConfig::LoadImageSize() { |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 73 | for (PartitionConfig& part : partitions) { |
| 74 | if (part.path.empty()) |
| 75 | continue; |
| 76 | part.size = utils::FileSize(part.path); |
| 77 | } |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 78 | return true; |
| 79 | } |
| 80 | |
| Sen Jiang | 05feee0 | 2015-11-11 15:59:49 -0800 | [diff] [blame] | 81 | bool ImageConfig::LoadPostInstallConfig(const brillo::KeyValueStore& store) { |
| 82 | bool found_postinstall = false; |
| 83 | for (PartitionConfig& part : partitions) { |
| 84 | bool run_postinstall; |
| 85 | if (!store.GetBoolean("RUN_POSTINSTALL_" + part.name, &run_postinstall) || |
| 86 | !run_postinstall) |
| 87 | continue; |
| 88 | found_postinstall = true; |
| 89 | part.postinstall.run = true; |
| 90 | store.GetString("POSTINSTALL_PATH_" + part.name, &part.postinstall.path); |
| 91 | store.GetString("FILESYSTEM_TYPE_" + part.name, |
| 92 | &part.postinstall.filesystem_type); |
| 93 | } |
| 94 | if (!found_postinstall) { |
| 95 | LOG(ERROR) << "No valid postinstall config found."; |
| 96 | return false; |
| 97 | } |
| 98 | return true; |
| 99 | } |
| 100 | |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 101 | bool ImageConfig::ImageInfoIsEmpty() const { |
| 102 | return image_info.board().empty() |
| 103 | && image_info.key().empty() |
| 104 | && image_info.channel().empty() |
| 105 | && image_info.version().empty() |
| 106 | && image_info.build_channel().empty() |
| 107 | && image_info.build_version().empty(); |
| 108 | } |
| 109 | |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 110 | PayloadVersion::PayloadVersion(uint64_t major_version, uint32_t minor_version) { |
| 111 | major = major_version; |
| 112 | minor = minor_version; |
| 113 | } |
| 114 | |
| 115 | bool PayloadVersion::Validate() const { |
| 116 | TEST_AND_RETURN_FALSE(major == kChromeOSMajorPayloadVersion || |
| 117 | major == kBrilloMajorPayloadVersion); |
| 118 | TEST_AND_RETURN_FALSE(minor == kFullPayloadMinorVersion || |
| 119 | minor == kInPlaceMinorPayloadVersion || |
| 120 | minor == kSourceMinorPayloadVersion || |
| 121 | minor == kOpSrcHashMinorPayloadVersion || |
| 122 | minor == kImgdiffMinorPayloadVersion); |
| 123 | return true; |
| 124 | } |
| 125 | |
| 126 | bool PayloadVersion::OperationAllowed(InstallOperation_Type operation) const { |
| 127 | switch (operation) { |
| 128 | // Full operations: |
| 129 | case InstallOperation::REPLACE: |
| 130 | case InstallOperation::REPLACE_BZ: |
| 131 | // These operations were included in the original payload format. |
| 132 | return true; |
| 133 | |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 134 | case InstallOperation::REPLACE_XZ: |
| 135 | // These operations are included in the major version used in Brillo, but |
| 136 | // can also be used with minor version 3 or newer. |
| 137 | return major == kBrilloMajorPayloadVersion || |
| 138 | minor >= kOpSrcHashMinorPayloadVersion; |
| 139 | |
| Alex Deymo | 0497d05 | 2016-03-23 09:16:59 -0700 | [diff] [blame^] | 140 | case InstallOperation::ZERO: |
| 141 | case InstallOperation::DISCARD: |
| 142 | // The implementation of these operations had a bug in earlier versions |
| 143 | // that prevents them from being used in any payload. We will enable |
| 144 | // them for delta payloads for now. |
| 145 | return minor >= kImgdiffMinorPayloadVersion; |
| 146 | |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 147 | // Delta operations: |
| 148 | case InstallOperation::MOVE: |
| 149 | case InstallOperation::BSDIFF: |
| 150 | // MOVE and BSDIFF were replaced by SOURCE_COPY and SOURCE_BSDIFF and |
| 151 | // should not be used in newer delta versions, since the idempotent checks |
| 152 | // were removed. |
| 153 | return minor == kInPlaceMinorPayloadVersion; |
| 154 | |
| 155 | case InstallOperation::SOURCE_COPY: |
| 156 | case InstallOperation::SOURCE_BSDIFF: |
| 157 | return minor >= kSourceMinorPayloadVersion; |
| 158 | |
| 159 | case InstallOperation::IMGDIFF: |
| 160 | return minor >= kImgdiffMinorPayloadVersion && imgdiff_allowed; |
| 161 | } |
| 162 | return false; |
| 163 | } |
| 164 | |
| 165 | bool PayloadVersion::IsDelta() const { |
| 166 | return minor != kFullPayloadMinorVersion; |
| 167 | } |
| 168 | |
| 169 | bool PayloadVersion::InplaceUpdate() const { |
| 170 | return minor == kInPlaceMinorPayloadVersion; |
| 171 | } |
| 172 | |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 173 | bool PayloadGenerationConfig::Validate() const { |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 174 | TEST_AND_RETURN_FALSE(version.Validate()); |
| 175 | TEST_AND_RETURN_FALSE(version.IsDelta() == is_delta); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 176 | if (is_delta) { |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 177 | for (const PartitionConfig& part : source.partitions) { |
| 178 | if (!part.path.empty()) { |
| 179 | TEST_AND_RETURN_FALSE(part.ValidateExists()); |
| 180 | TEST_AND_RETURN_FALSE(part.size % block_size == 0); |
| 181 | } |
| Sen Jiang | 05feee0 | 2015-11-11 15:59:49 -0800 | [diff] [blame] | 182 | // Source partition should not have postinstall. |
| 183 | TEST_AND_RETURN_FALSE(part.postinstall.IsEmpty()); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 184 | } |
| 185 | |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 186 | // If new_image_info is present, old_image_info must be present. |
| 187 | TEST_AND_RETURN_FALSE(source.ImageInfoIsEmpty() == |
| 188 | target.ImageInfoIsEmpty()); |
| 189 | } else { |
| 190 | // All the "source" image fields must be empty for full payloads. |
| 191 | TEST_AND_RETURN_FALSE(source.ValidateIsEmpty()); |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | // In all cases, the target image must exists. |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 195 | for (const PartitionConfig& part : target.partitions) { |
| 196 | TEST_AND_RETURN_FALSE(part.ValidateExists()); |
| 197 | TEST_AND_RETURN_FALSE(part.size % block_size == 0); |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 198 | if (version.minor == kInPlaceMinorPayloadVersion && |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 199 | part.name == kLegacyPartitionNameRoot) |
| 200 | TEST_AND_RETURN_FALSE(rootfs_partition_size >= part.size); |
| Alex Deymo | a4073ef | 2016-03-22 23:40:53 -0700 | [diff] [blame] | 201 | if (version.major == kChromeOSMajorPayloadVersion) |
| Sen Jiang | 05feee0 | 2015-11-11 15:59:49 -0800 | [diff] [blame] | 202 | TEST_AND_RETURN_FALSE(part.postinstall.IsEmpty()); |
| Sen Jiang | 981eb11 | 2015-08-25 17:03:18 -0700 | [diff] [blame] | 203 | } |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 204 | |
| Alex Deymo | 2d3b2d6 | 2015-07-17 17:34:36 -0700 | [diff] [blame] | 205 | TEST_AND_RETURN_FALSE(hard_chunk_size == -1 || |
| 206 | hard_chunk_size % block_size == 0); |
| 207 | TEST_AND_RETURN_FALSE(soft_chunk_size % block_size == 0); |
| Alex Deymo | 9b244df | 2015-03-11 21:51:18 -0700 | [diff] [blame] | 208 | |
| 209 | TEST_AND_RETURN_FALSE(rootfs_partition_size % block_size == 0); |
| Alex Deymo | 9b244df | 2015-03-11 21:51:18 -0700 | [diff] [blame] | 210 | |
| Alex Deymo | f1cbe17 | 2015-03-05 15:58:37 -0800 | [diff] [blame] | 211 | return true; |
| 212 | } |
| 213 | |
| 214 | } // namespace chromeos_update_engine |