Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright (C) 2008 The Android Open Source Project |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | """ |
| 18 | Given a target-files zipfile, produces an OTA package that installs |
| 19 | that build. An incremental OTA is produced if -i is given, otherwise |
| 20 | a full OTA is produced. |
| 21 | |
| 22 | Usage: ota_from_target_files [flags] input_target_files output_ota_package |
| 23 | |
Doug Zongker | afb32ea | 2011-09-22 10:28:04 -0700 | [diff] [blame] | 24 | -k (--package_key) <key> Key to use to sign the package (default is |
| 25 | the value of default_system_dev_certificate from the input |
| 26 | target-files's META/misc_info.txt, or |
| 27 | "build/target/product/security/testkey" if that value is not |
| 28 | specified). |
| 29 | |
| 30 | For incremental OTAs, the default value is based on the source |
| 31 | target-file, not the target build. |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 32 | |
| 33 | -i (--incremental_from) <file> |
| 34 | Generate an incremental OTA using the given target-files zip as |
| 35 | the starting build. |
| 36 | |
Tao Bao | 43078aa | 2015-04-21 14:32:35 -0700 | [diff] [blame] | 37 | --full_radio |
| 38 | When generating an incremental OTA, always include a full copy of |
| 39 | radio image. This option is only meaningful when -i is specified, |
| 40 | because a full radio is always included in a full OTA if applicable. |
| 41 | |
leozwang | aa6c1a1 | 2015-08-14 10:57:58 -0700 | [diff] [blame] | 42 | --full_bootloader |
| 43 | Similar to --full_radio. When generating an incremental OTA, always |
| 44 | include a full copy of bootloader image. |
| 45 | |
Tao Bao | edb35b8 | 2017-10-30 16:07:13 -0700 | [diff] [blame] | 46 | --verify |
| 47 | Remount and verify the checksums of the files written to the system and |
| 48 | vendor (if used) partitions. Non-A/B incremental OTAs only. |
Michael Runge | 63f01de | 2014-10-28 19:24:19 -0700 | [diff] [blame] | 49 | |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 50 | -o (--oem_settings) <main_file[,additional_files...]> |
| 51 | Comma seperated list of files used to specify the expected OEM-specific |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 52 | properties on the OEM partition of the intended device. Multiple expected |
| 53 | values can be used by providing multiple files. Only the first dict will |
| 54 | be used to compute fingerprint, while the rest will be used to assert |
| 55 | OEM-specific properties. |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 56 | |
Tao Bao | 8608cde | 2016-02-25 19:49:55 -0800 | [diff] [blame] | 57 | --oem_no_mount |
| 58 | For devices with OEM-specific properties but without an OEM partition, |
| 59 | do not mount the OEM partition in the updater-script. This should be |
| 60 | very rarely used, since it's expected to have a dedicated OEM partition |
| 61 | for OEM-specific properties. Only meaningful when -o is specified. |
| 62 | |
Tao Bao | 337633f | 2017-12-06 15:20:19 -0800 | [diff] [blame] | 63 | --wipe_user_data |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 64 | Generate an OTA package that will wipe the user data partition |
| 65 | when installed. |
| 66 | |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 67 | --downgrade |
| 68 | Intentionally generate an incremental OTA that updates from a newer |
| 69 | build to an older one (based on timestamp comparison). "post-timestamp" |
| 70 | will be replaced by "ota-downgrade=yes" in the metadata file. A data |
| 71 | wipe will always be enforced, so "ota-wipe=yes" will also be included in |
Tao Bao | 4996cf0 | 2016-03-08 17:53:39 -0800 | [diff] [blame] | 72 | the metadata file. The update-binary in the source build will be used in |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 73 | the OTA package, unless --binary flag is specified. Please also check the |
| 74 | doc for --override_timestamp below. |
| 75 | |
| 76 | --override_timestamp |
| 77 | Intentionally generate an incremental OTA that updates from a newer |
| 78 | build to an older one (based on timestamp comparison), by overriding the |
| 79 | timestamp in package metadata. This differs from --downgrade flag: we |
| 80 | know for sure this is NOT an actual downgrade case, but two builds are |
| 81 | cut in a reverse order. A legit use case is that we cut a new build C |
| 82 | (after having A and B), but want to enfore an update path of A -> C -> B. |
| 83 | Specifying --downgrade may not help since that would enforce a data wipe |
| 84 | for C -> B update. The value of "post-timestamp" will be set to the newer |
| 85 | timestamp plus one, so that the package can be pushed and applied. |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 86 | |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 87 | -e (--extra_script) <file> |
| 88 | Insert the contents of file at the end of the update script. |
| 89 | |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 90 | -2 (--two_step) |
| 91 | Generate a 'two-step' OTA package, where recovery is updated |
| 92 | first, so that any changes made to the system partition are done |
| 93 | using the new recovery (new kernel, etc.). |
| 94 | |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 95 | --include_secondary |
| 96 | Additionally include the payload for secondary slot images (default: |
| 97 | False). Only meaningful when generating A/B OTAs. |
| 98 | |
| 99 | By default, an A/B OTA package doesn't contain the images for the |
| 100 | secondary slot (e.g. system_other.img). Specifying this flag allows |
| 101 | generating a separate payload that will install secondary slot images. |
| 102 | |
| 103 | Such a package needs to be applied in a two-stage manner, with a reboot |
| 104 | in-between. During the first stage, the updater applies the primary |
| 105 | payload only. Upon finishing, it reboots the device into the newly updated |
| 106 | slot. It then continues to install the secondary payload to the inactive |
| 107 | slot, but without switching the active slot at the end (needs the matching |
| 108 | support in update_engine, i.e. SWITCH_SLOT_ON_REBOOT flag). |
| 109 | |
| 110 | Due to the special install procedure, the secondary payload will be always |
| 111 | generated as a full payload. |
| 112 | |
Doug Zongker | 26e6619 | 2014-02-20 13:22:07 -0800 | [diff] [blame] | 113 | --block |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 114 | Generate a block-based OTA for non-A/B device. We have deprecated the |
| 115 | support for file-based OTA since O. Block-based OTA will be used by |
| 116 | default for all non-A/B devices. Keeping this flag here to not break |
| 117 | existing callers. |
Doug Zongker | 26e6619 | 2014-02-20 13:22:07 -0800 | [diff] [blame] | 118 | |
Doug Zongker | 2556848 | 2014-03-03 10:21:27 -0800 | [diff] [blame] | 119 | -b (--binary) <file> |
| 120 | Use the given binary as the update-binary in the output package, |
| 121 | instead of the binary in the build's target_files. Use for |
| 122 | development only. |
| 123 | |
Martin Blumenstingl | 374e114 | 2014-05-31 20:42:55 +0200 | [diff] [blame] | 124 | -t (--worker_threads) <int> |
| 125 | Specifies the number of worker-threads that will be used when |
| 126 | generating patches for incremental updates (defaults to 3). |
| 127 | |
Tao Bao | 8dcf738 | 2015-05-21 14:09:49 -0700 | [diff] [blame] | 128 | --stash_threshold <float> |
| 129 | Specifies the threshold that will be used to compute the maximum |
| 130 | allowed stash size (defaults to 0.8). |
Tao Bao | 9bc6bb2 | 2015-11-09 16:58:28 -0800 | [diff] [blame] | 131 | |
Tao Bao | d62c603 | 2015-11-30 09:40:20 -0800 | [diff] [blame] | 132 | --log_diff <file> |
| 133 | Generate a log file that shows the differences in the source and target |
| 134 | builds for an incremental package. This option is only meaningful when |
| 135 | -i is specified. |
Tao Bao | dea0f8b | 2016-06-20 17:55:06 -0700 | [diff] [blame] | 136 | |
| 137 | --payload_signer <signer> |
| 138 | Specify the signer when signing the payload and metadata for A/B OTAs. |
| 139 | By default (i.e. without this flag), it calls 'openssl pkeyutl' to sign |
| 140 | with the package private key. If the private key cannot be accessed |
| 141 | directly, a payload signer that knows how to do that should be specified. |
| 142 | The signer will be supplied with "-inkey <path_to_key>", |
| 143 | "-in <input_file>" and "-out <output_file>" parameters. |
Baligh Uddin | 2abbbd0 | 2016-06-22 12:14:16 -0700 | [diff] [blame] | 144 | |
| 145 | --payload_signer_args <args> |
| 146 | Specify the arguments needed for payload signer. |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 147 | |
| 148 | --skip_postinstall |
| 149 | Skip the postinstall hooks when generating an A/B OTA package (default: |
| 150 | False). Note that this discards ALL the hooks, including non-optional |
| 151 | ones. Should only be used if caller knows it's safe to do so (e.g. all the |
| 152 | postinstall work is to dexopt apps and a data wipe will happen immediately |
| 153 | after). Only meaningful when generating A/B OTAs. |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 154 | """ |
| 155 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 156 | from __future__ import print_function |
| 157 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 158 | import multiprocessing |
Tao Bao | 2dd1c48 | 2017-02-03 16:49:39 -0800 | [diff] [blame] | 159 | import os.path |
Baligh Uddin | 2abbbd0 | 2016-06-22 12:14:16 -0700 | [diff] [blame] | 160 | import shlex |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 161 | import shutil |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 162 | import struct |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 163 | import subprocess |
| 164 | import sys |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 165 | import tempfile |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 166 | import zipfile |
| 167 | |
| 168 | import common |
Doug Zongker | c494d7c | 2009-06-18 08:43:44 -0700 | [diff] [blame] | 169 | import edify_generator |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 170 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 171 | if sys.hexversion < 0x02070000: |
| 172 | print("Python 2.7 or newer is required.", file=sys.stderr) |
| 173 | sys.exit(1) |
| 174 | |
| 175 | |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 176 | OPTIONS = common.OPTIONS |
Doug Zongker | afb32ea | 2011-09-22 10:28:04 -0700 | [diff] [blame] | 177 | OPTIONS.package_key = None |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 178 | OPTIONS.incremental_source = None |
Michael Runge | 63f01de | 2014-10-28 19:24:19 -0700 | [diff] [blame] | 179 | OPTIONS.verify = False |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 180 | OPTIONS.patch_threshold = 0.95 |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 181 | OPTIONS.wipe_user_data = False |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 182 | OPTIONS.downgrade = False |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 183 | OPTIONS.timestamp = False |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 184 | OPTIONS.extra_script = None |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 185 | OPTIONS.worker_threads = multiprocessing.cpu_count() // 2 |
| 186 | if OPTIONS.worker_threads == 0: |
| 187 | OPTIONS.worker_threads = 1 |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 188 | OPTIONS.two_step = False |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 189 | OPTIONS.include_secondary = False |
Takeshi Kanemoto | e153b34 | 2013-11-14 17:20:50 +0900 | [diff] [blame] | 190 | OPTIONS.no_signing = False |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 191 | OPTIONS.block_based = True |
Doug Zongker | 2556848 | 2014-03-03 10:21:27 -0800 | [diff] [blame] | 192 | OPTIONS.updater_binary = None |
Michael Runge | 6e83611 | 2014-04-15 17:40:21 -0700 | [diff] [blame] | 193 | OPTIONS.oem_source = None |
Tao Bao | 8608cde | 2016-02-25 19:49:55 -0800 | [diff] [blame] | 194 | OPTIONS.oem_no_mount = False |
Tao Bao | 43078aa | 2015-04-21 14:32:35 -0700 | [diff] [blame] | 195 | OPTIONS.full_radio = False |
leozwang | aa6c1a1 | 2015-08-14 10:57:58 -0700 | [diff] [blame] | 196 | OPTIONS.full_bootloader = False |
Tao Bao | d47d8e1 | 2015-05-21 14:09:49 -0700 | [diff] [blame] | 197 | # Stash size cannot exceed cache_size * threshold. |
| 198 | OPTIONS.cache_size = None |
| 199 | OPTIONS.stash_threshold = 0.8 |
Tao Bao | d62c603 | 2015-11-30 09:40:20 -0800 | [diff] [blame] | 200 | OPTIONS.log_diff = None |
Tao Bao | dea0f8b | 2016-06-20 17:55:06 -0700 | [diff] [blame] | 201 | OPTIONS.payload_signer = None |
Baligh Uddin | 2abbbd0 | 2016-06-22 12:14:16 -0700 | [diff] [blame] | 202 | OPTIONS.payload_signer_args = [] |
Tao Bao | 5f8ff93 | 2017-03-21 22:35:00 -0700 | [diff] [blame] | 203 | OPTIONS.extracted_input = None |
Christian Oder | f63e2cd | 2017-05-01 22:30:15 +0200 | [diff] [blame] | 204 | OPTIONS.key_passwords = [] |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 205 | OPTIONS.skip_postinstall = False |
| 206 | |
Tao Bao | 8dcf738 | 2015-05-21 14:09:49 -0700 | [diff] [blame] | 207 | |
Tao Bao | 2dd1c48 | 2017-02-03 16:49:39 -0800 | [diff] [blame] | 208 | METADATA_NAME = 'META-INF/com/android/metadata' |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 209 | POSTINSTALL_CONFIG = 'META/postinstall_config.txt' |
Tao Bao | 6b0b2f9 | 2017-03-05 11:38:11 -0800 | [diff] [blame] | 210 | UNZIP_PATTERN = ['IMAGES/*', 'META/*'] |
| 211 | |
Tao Bao | 2dd1c48 | 2017-02-03 16:49:39 -0800 | [diff] [blame] | 212 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 213 | class BuildInfo(object): |
| 214 | """A class that holds the information for a given build. |
| 215 | |
| 216 | This class wraps up the property querying for a given source or target build. |
| 217 | It abstracts away the logic of handling OEM-specific properties, and caches |
| 218 | the commonly used properties such as fingerprint. |
| 219 | |
| 220 | There are two types of info dicts: a) build-time info dict, which is generated |
| 221 | at build time (i.e. included in a target_files zip); b) OEM info dict that is |
| 222 | specified at package generation time (via command line argument |
| 223 | '--oem_settings'). If a build doesn't use OEM-specific properties (i.e. not |
| 224 | having "oem_fingerprint_properties" in build-time info dict), all the queries |
| 225 | would be answered based on build-time info dict only. Otherwise if using |
| 226 | OEM-specific properties, some of them will be calculated from two info dicts. |
| 227 | |
| 228 | Users can query properties similarly as using a dict() (e.g. info['fstab']), |
| 229 | or to query build properties via GetBuildProp() or GetVendorBuildProp(). |
| 230 | |
| 231 | Attributes: |
| 232 | info_dict: The build-time info dict. |
| 233 | is_ab: Whether it's a build that uses A/B OTA. |
| 234 | oem_dicts: A list of OEM dicts. |
| 235 | oem_props: A list of OEM properties that should be read from OEM dicts; None |
| 236 | if the build doesn't use any OEM-specific property. |
| 237 | fingerprint: The fingerprint of the build, which would be calculated based |
| 238 | on OEM properties if applicable. |
| 239 | device: The device name, which could come from OEM dicts if applicable. |
| 240 | """ |
| 241 | |
| 242 | def __init__(self, info_dict, oem_dicts): |
| 243 | """Initializes a BuildInfo instance with the given dicts. |
| 244 | |
| 245 | Arguments: |
| 246 | info_dict: The build-time info dict. |
| 247 | oem_dicts: A list of OEM dicts (which is parsed from --oem_settings). Note |
| 248 | that it always uses the first dict to calculate the fingerprint or the |
| 249 | device name. The rest would be used for asserting OEM properties only |
| 250 | (e.g. one package can be installed on one of these devices). |
| 251 | """ |
| 252 | self.info_dict = info_dict |
| 253 | self.oem_dicts = oem_dicts |
| 254 | |
| 255 | self._is_ab = info_dict.get("ab_update") == "true" |
| 256 | self._oem_props = info_dict.get("oem_fingerprint_properties") |
| 257 | |
| 258 | if self._oem_props: |
| 259 | assert oem_dicts, "OEM source required for this build" |
| 260 | |
| 261 | # These two should be computed only after setting self._oem_props. |
| 262 | self._device = self.GetOemProperty("ro.product.device") |
| 263 | self._fingerprint = self.CalculateFingerprint() |
| 264 | |
| 265 | @property |
| 266 | def is_ab(self): |
| 267 | return self._is_ab |
| 268 | |
| 269 | @property |
| 270 | def device(self): |
| 271 | return self._device |
| 272 | |
| 273 | @property |
| 274 | def fingerprint(self): |
| 275 | return self._fingerprint |
| 276 | |
| 277 | @property |
| 278 | def oem_props(self): |
| 279 | return self._oem_props |
| 280 | |
| 281 | def __getitem__(self, key): |
| 282 | return self.info_dict[key] |
| 283 | |
| 284 | def get(self, key, default=None): |
| 285 | return self.info_dict.get(key, default) |
| 286 | |
| 287 | def GetBuildProp(self, prop): |
| 288 | """Returns the inquired build property.""" |
| 289 | try: |
| 290 | return self.info_dict.get("build.prop", {})[prop] |
| 291 | except KeyError: |
| 292 | raise common.ExternalError("couldn't find %s in build.prop" % (prop,)) |
| 293 | |
| 294 | def GetVendorBuildProp(self, prop): |
| 295 | """Returns the inquired vendor build property.""" |
| 296 | try: |
| 297 | return self.info_dict.get("vendor.build.prop", {})[prop] |
| 298 | except KeyError: |
| 299 | raise common.ExternalError( |
| 300 | "couldn't find %s in vendor.build.prop" % (prop,)) |
| 301 | |
| 302 | def GetOemProperty(self, key): |
| 303 | if self.oem_props is not None and key in self.oem_props: |
| 304 | return self.oem_dicts[0][key] |
| 305 | return self.GetBuildProp(key) |
| 306 | |
| 307 | def CalculateFingerprint(self): |
| 308 | if self.oem_props is None: |
| 309 | return self.GetBuildProp("ro.build.fingerprint") |
| 310 | return "%s/%s/%s:%s" % ( |
| 311 | self.GetOemProperty("ro.product.brand"), |
| 312 | self.GetOemProperty("ro.product.name"), |
| 313 | self.GetOemProperty("ro.product.device"), |
| 314 | self.GetBuildProp("ro.build.thumbprint")) |
| 315 | |
| 316 | def WriteMountOemScript(self, script): |
| 317 | assert self.oem_props is not None |
| 318 | recovery_mount_options = self.info_dict.get("recovery_mount_options") |
| 319 | script.Mount("/oem", recovery_mount_options) |
| 320 | |
| 321 | def WriteDeviceAssertions(self, script, oem_no_mount): |
| 322 | # Read the property directly if not using OEM properties. |
| 323 | if not self.oem_props: |
| 324 | script.AssertDevice(self.device) |
| 325 | return |
| 326 | |
| 327 | # Otherwise assert OEM properties. |
| 328 | if not self.oem_dicts: |
| 329 | raise common.ExternalError( |
| 330 | "No OEM file provided to answer expected assertions") |
| 331 | |
| 332 | for prop in self.oem_props.split(): |
| 333 | values = [] |
| 334 | for oem_dict in self.oem_dicts: |
| 335 | if prop in oem_dict: |
| 336 | values.append(oem_dict[prop]) |
| 337 | if not values: |
| 338 | raise common.ExternalError( |
| 339 | "The OEM file is missing the property %s" % (prop,)) |
| 340 | script.AssertOemProperty(prop, values, oem_no_mount) |
| 341 | |
| 342 | |
Tao Bao | fabe083 | 2018-01-17 15:52:28 -0800 | [diff] [blame] | 343 | class PayloadSigner(object): |
| 344 | """A class that wraps the payload signing works. |
| 345 | |
| 346 | When generating a Payload, hashes of the payload and metadata files will be |
| 347 | signed with the device key, either by calling an external payload signer or |
| 348 | by calling openssl with the package key. This class provides a unified |
| 349 | interface, so that callers can just call PayloadSigner.Sign(). |
| 350 | |
| 351 | If an external payload signer has been specified (OPTIONS.payload_signer), it |
| 352 | calls the signer with the provided args (OPTIONS.payload_signer_args). Note |
| 353 | that the signing key should be provided as part of the payload_signer_args. |
| 354 | Otherwise without an external signer, it uses the package key |
| 355 | (OPTIONS.package_key) and calls openssl for the signing works. |
| 356 | """ |
| 357 | |
| 358 | def __init__(self): |
| 359 | if OPTIONS.payload_signer is None: |
| 360 | # Prepare the payload signing key. |
| 361 | private_key = OPTIONS.package_key + OPTIONS.private_key_suffix |
| 362 | pw = OPTIONS.key_passwords[OPTIONS.package_key] |
| 363 | |
| 364 | cmd = ["openssl", "pkcs8", "-in", private_key, "-inform", "DER"] |
| 365 | cmd.extend(["-passin", "pass:" + pw] if pw else ["-nocrypt"]) |
| 366 | signing_key = common.MakeTempFile(prefix="key-", suffix=".key") |
| 367 | cmd.extend(["-out", signing_key]) |
| 368 | |
| 369 | get_signing_key = common.Run(cmd, verbose=False, stdout=subprocess.PIPE, |
| 370 | stderr=subprocess.STDOUT) |
| 371 | stdoutdata, _ = get_signing_key.communicate() |
| 372 | assert get_signing_key.returncode == 0, \ |
| 373 | "Failed to get signing key: {}".format(stdoutdata) |
| 374 | |
| 375 | self.signer = "openssl" |
| 376 | self.signer_args = ["pkeyutl", "-sign", "-inkey", signing_key, |
| 377 | "-pkeyopt", "digest:sha256"] |
| 378 | else: |
| 379 | self.signer = OPTIONS.payload_signer |
| 380 | self.signer_args = OPTIONS.payload_signer_args |
| 381 | |
| 382 | def Sign(self, in_file): |
| 383 | """Signs the given input file. Returns the output filename.""" |
| 384 | out_file = common.MakeTempFile(prefix="signed-", suffix=".bin") |
| 385 | cmd = [self.signer] + self.signer_args + ['-in', in_file, '-out', out_file] |
| 386 | signing = common.Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) |
| 387 | stdoutdata, _ = signing.communicate() |
| 388 | assert signing.returncode == 0, \ |
| 389 | "Failed to sign the input file: {}".format(stdoutdata) |
| 390 | return out_file |
| 391 | |
| 392 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 393 | class Payload(object): |
| 394 | """Manages the creation and the signing of an A/B OTA Payload.""" |
| 395 | |
| 396 | PAYLOAD_BIN = 'payload.bin' |
| 397 | PAYLOAD_PROPERTIES_TXT = 'payload_properties.txt' |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 398 | SECONDARY_PAYLOAD_BIN = 'secondary/payload.bin' |
| 399 | SECONDARY_PAYLOAD_PROPERTIES_TXT = 'secondary/payload_properties.txt' |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 400 | |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 401 | def __init__(self, secondary=False): |
| 402 | """Initializes a Payload instance. |
| 403 | |
| 404 | Args: |
| 405 | secondary: Whether it's generating a secondary payload (default: False). |
| 406 | """ |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 407 | # The place where the output from the subprocess should go. |
| 408 | self._log_file = sys.stdout if OPTIONS.verbose else subprocess.PIPE |
| 409 | self.payload_file = None |
| 410 | self.payload_properties = None |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 411 | self.secondary = secondary |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 412 | |
| 413 | def Generate(self, target_file, source_file=None, additional_args=None): |
| 414 | """Generates a payload from the given target-files zip(s). |
| 415 | |
| 416 | Args: |
| 417 | target_file: The filename of the target build target-files zip. |
| 418 | source_file: The filename of the source build target-files zip; or None if |
| 419 | generating a full OTA. |
| 420 | additional_args: A list of additional args that should be passed to |
| 421 | brillo_update_payload script; or None. |
| 422 | """ |
| 423 | if additional_args is None: |
| 424 | additional_args = [] |
| 425 | |
| 426 | payload_file = common.MakeTempFile(prefix="payload-", suffix=".bin") |
| 427 | cmd = ["brillo_update_payload", "generate", |
| 428 | "--payload", payload_file, |
| 429 | "--target_image", target_file] |
| 430 | if source_file is not None: |
| 431 | cmd.extend(["--source_image", source_file]) |
| 432 | cmd.extend(additional_args) |
| 433 | p = common.Run(cmd, stdout=self._log_file, stderr=subprocess.STDOUT) |
| 434 | stdoutdata, _ = p.communicate() |
| 435 | assert p.returncode == 0, \ |
| 436 | "brillo_update_payload generate failed: {}".format(stdoutdata) |
| 437 | |
| 438 | self.payload_file = payload_file |
| 439 | self.payload_properties = None |
| 440 | |
| 441 | def Sign(self, payload_signer): |
| 442 | """Generates and signs the hashes of the payload and metadata. |
| 443 | |
| 444 | Args: |
| 445 | payload_signer: A PayloadSigner() instance that serves the signing work. |
| 446 | |
| 447 | Raises: |
| 448 | AssertionError: On any failure when calling brillo_update_payload script. |
| 449 | """ |
| 450 | assert isinstance(payload_signer, PayloadSigner) |
| 451 | |
| 452 | # 1. Generate hashes of the payload and metadata files. |
| 453 | payload_sig_file = common.MakeTempFile(prefix="sig-", suffix=".bin") |
| 454 | metadata_sig_file = common.MakeTempFile(prefix="sig-", suffix=".bin") |
| 455 | cmd = ["brillo_update_payload", "hash", |
| 456 | "--unsigned_payload", self.payload_file, |
| 457 | "--signature_size", "256", |
| 458 | "--metadata_hash_file", metadata_sig_file, |
| 459 | "--payload_hash_file", payload_sig_file] |
| 460 | p1 = common.Run(cmd, stdout=self._log_file, stderr=subprocess.STDOUT) |
| 461 | p1.communicate() |
| 462 | assert p1.returncode == 0, "brillo_update_payload hash failed" |
| 463 | |
| 464 | # 2. Sign the hashes. |
| 465 | signed_payload_sig_file = payload_signer.Sign(payload_sig_file) |
| 466 | signed_metadata_sig_file = payload_signer.Sign(metadata_sig_file) |
| 467 | |
| 468 | # 3. Insert the signatures back into the payload file. |
| 469 | signed_payload_file = common.MakeTempFile(prefix="signed-payload-", |
| 470 | suffix=".bin") |
| 471 | cmd = ["brillo_update_payload", "sign", |
| 472 | "--unsigned_payload", self.payload_file, |
| 473 | "--payload", signed_payload_file, |
| 474 | "--signature_size", "256", |
| 475 | "--metadata_signature_file", signed_metadata_sig_file, |
| 476 | "--payload_signature_file", signed_payload_sig_file] |
| 477 | p1 = common.Run(cmd, stdout=self._log_file, stderr=subprocess.STDOUT) |
| 478 | p1.communicate() |
| 479 | assert p1.returncode == 0, "brillo_update_payload sign failed" |
| 480 | |
| 481 | # 4. Dump the signed payload properties. |
| 482 | properties_file = common.MakeTempFile(prefix="payload-properties-", |
| 483 | suffix=".txt") |
| 484 | cmd = ["brillo_update_payload", "properties", |
| 485 | "--payload", signed_payload_file, |
| 486 | "--properties_file", properties_file] |
| 487 | p1 = common.Run(cmd, stdout=self._log_file, stderr=subprocess.STDOUT) |
| 488 | p1.communicate() |
| 489 | assert p1.returncode == 0, "brillo_update_payload properties failed" |
| 490 | |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 491 | if self.secondary: |
| 492 | with open(properties_file, "a") as f: |
| 493 | f.write("SWITCH_SLOT_ON_REBOOT=0\n") |
| 494 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 495 | if OPTIONS.wipe_user_data: |
| 496 | with open(properties_file, "a") as f: |
| 497 | f.write("POWERWASH=1\n") |
| 498 | |
| 499 | self.payload_file = signed_payload_file |
| 500 | self.payload_properties = properties_file |
| 501 | |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 502 | def WriteToZip(self, output_zip): |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 503 | """Writes the payload to the given zip. |
| 504 | |
| 505 | Args: |
| 506 | output_zip: The output ZipFile instance. |
| 507 | """ |
| 508 | assert self.payload_file is not None |
| 509 | assert self.payload_properties is not None |
| 510 | |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 511 | if self.secondary: |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 512 | payload_arcname = Payload.SECONDARY_PAYLOAD_BIN |
| 513 | payload_properties_arcname = Payload.SECONDARY_PAYLOAD_PROPERTIES_TXT |
| 514 | else: |
| 515 | payload_arcname = Payload.PAYLOAD_BIN |
| 516 | payload_properties_arcname = Payload.PAYLOAD_PROPERTIES_TXT |
| 517 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 518 | # Add the signed payload file and properties into the zip. In order to |
| 519 | # support streaming, we pack them as ZIP_STORED. So these entries can be |
| 520 | # read directly with the offset and length pairs. |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 521 | common.ZipWrite(output_zip, self.payload_file, arcname=payload_arcname, |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 522 | compress_type=zipfile.ZIP_STORED) |
| 523 | common.ZipWrite(output_zip, self.payload_properties, |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 524 | arcname=payload_properties_arcname, |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 525 | compress_type=zipfile.ZIP_STORED) |
| 526 | |
| 527 | |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 528 | def SignOutput(temp_zip_name, output_zip_name): |
Christian Oder | f63e2cd | 2017-05-01 22:30:15 +0200 | [diff] [blame] | 529 | pw = OPTIONS.key_passwords[OPTIONS.package_key] |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 530 | |
Doug Zongker | 951495f | 2009-08-14 12:44:19 -0700 | [diff] [blame] | 531 | common.SignFile(temp_zip_name, output_zip_name, OPTIONS.package_key, pw, |
| 532 | whole_file=True) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 533 | |
| 534 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 535 | def _LoadOemDicts(oem_source): |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 536 | """Returns the list of loaded OEM properties dict.""" |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 537 | if not oem_source: |
| 538 | return None |
| 539 | |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 540 | oem_dicts = [] |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 541 | for oem_file in oem_source: |
| 542 | with open(oem_file) as fp: |
| 543 | oem_dicts.append(common.LoadDictionaryFromLines(fp.readlines())) |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 544 | return oem_dicts |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 545 | |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 546 | |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 547 | def _WriteRecoveryImageToBoot(script, output_zip): |
| 548 | """Find and write recovery image to /boot in two-step OTA. |
| 549 | |
| 550 | In two-step OTAs, we write recovery image to /boot as the first step so that |
| 551 | we can reboot to there and install a new recovery image to /recovery. |
| 552 | A special "recovery-two-step.img" will be preferred, which encodes the correct |
| 553 | path of "/boot". Otherwise the device may show "device is corrupt" message |
| 554 | when booting into /boot. |
| 555 | |
| 556 | Fall back to using the regular recovery.img if the two-step recovery image |
| 557 | doesn't exist. Note that rebuilding the special image at this point may be |
| 558 | infeasible, because we don't have the desired boot signer and keys when |
| 559 | calling ota_from_target_files.py. |
| 560 | """ |
| 561 | |
| 562 | recovery_two_step_img_name = "recovery-two-step.img" |
| 563 | recovery_two_step_img_path = os.path.join( |
| 564 | OPTIONS.input_tmp, "IMAGES", recovery_two_step_img_name) |
| 565 | if os.path.exists(recovery_two_step_img_path): |
| 566 | recovery_two_step_img = common.GetBootableImage( |
| 567 | recovery_two_step_img_name, recovery_two_step_img_name, |
| 568 | OPTIONS.input_tmp, "RECOVERY") |
| 569 | common.ZipWriteStr( |
| 570 | output_zip, recovery_two_step_img_name, recovery_two_step_img.data) |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 571 | print("two-step package: using %s in stage 1/3" % ( |
| 572 | recovery_two_step_img_name,)) |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 573 | script.WriteRawImage("/boot", recovery_two_step_img_name) |
| 574 | else: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 575 | print("two-step package: using recovery.img in stage 1/3") |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 576 | # The "recovery.img" entry has been written into package earlier. |
| 577 | script.WriteRawImage("/boot", "recovery.img") |
| 578 | |
| 579 | |
Doug Zongker | c925382 | 2014-02-04 12:17:58 -0800 | [diff] [blame] | 580 | def HasRecoveryPatch(target_files_zip): |
Tao Bao | f2cffbd | 2015-07-22 12:33:18 -0700 | [diff] [blame] | 581 | namelist = [name for name in target_files_zip.namelist()] |
| 582 | return ("SYSTEM/recovery-from-boot.p" in namelist or |
| 583 | "SYSTEM/etc/recovery.img" in namelist) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 584 | |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 585 | |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 586 | def HasVendorPartition(target_files_zip): |
| 587 | try: |
| 588 | target_files_zip.getinfo("VENDOR/") |
| 589 | return True |
| 590 | except KeyError: |
| 591 | return False |
| 592 | |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 593 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 594 | def HasTrebleEnabled(target_files_zip, target_info): |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 595 | return (HasVendorPartition(target_files_zip) and |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 596 | target_info.GetBuildProp("ro.treble.enabled") == "true") |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 597 | |
| 598 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 599 | def WriteFingerprintAssertion(script, target_info, source_info): |
| 600 | source_oem_props = source_info.oem_props |
| 601 | target_oem_props = target_info.oem_props |
Michael Runge | 6e83611 | 2014-04-15 17:40:21 -0700 | [diff] [blame] | 602 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 603 | if source_oem_props is None and target_oem_props is None: |
| 604 | script.AssertSomeFingerprint( |
| 605 | source_info.fingerprint, target_info.fingerprint) |
| 606 | elif source_oem_props is not None and target_oem_props is not None: |
| 607 | script.AssertSomeThumbprint( |
| 608 | target_info.GetBuildProp("ro.build.thumbprint"), |
| 609 | source_info.GetBuildProp("ro.build.thumbprint")) |
| 610 | elif source_oem_props is None and target_oem_props is not None: |
| 611 | script.AssertFingerprintOrThumbprint( |
| 612 | source_info.fingerprint, |
| 613 | target_info.GetBuildProp("ro.build.thumbprint")) |
| 614 | else: |
| 615 | script.AssertFingerprintOrThumbprint( |
| 616 | target_info.fingerprint, |
| 617 | source_info.GetBuildProp("ro.build.thumbprint")) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 618 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 619 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 620 | def AddCompatibilityArchiveIfTrebleEnabled(target_zip, output_zip, target_info, |
| 621 | source_info=None): |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 622 | """Adds compatibility info into the output zip if it's Treble-enabled target. |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 623 | |
| 624 | Metadata used for on-device compatibility verification is retrieved from |
| 625 | target_zip then added to compatibility.zip which is added to the output_zip |
| 626 | archive. |
| 627 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 628 | Compatibility archive should only be included for devices that have enabled |
| 629 | Treble support. |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 630 | |
| 631 | Args: |
| 632 | target_zip: Zip file containing the source files to be included for OTA. |
| 633 | output_zip: Zip file that will be sent for OTA. |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 634 | target_info: The BuildInfo instance that holds the target build info. |
| 635 | source_info: The BuildInfo instance that holds the source build info, if |
| 636 | generating an incremental OTA; None otherwise. |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 637 | """ |
| 638 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 639 | def AddCompatibilityArchive(system_updated, vendor_updated): |
| 640 | """Adds compatibility info based on system/vendor update status. |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 641 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 642 | Args: |
| 643 | system_updated: If True, the system image will be updated and therefore |
| 644 | its metadata should be included. |
| 645 | vendor_updated: If True, the vendor image will be updated and therefore |
| 646 | its metadata should be included. |
| 647 | """ |
| 648 | # Determine what metadata we need. Files are names relative to META/. |
| 649 | compatibility_files = [] |
| 650 | vendor_metadata = ("vendor_manifest.xml", "vendor_matrix.xml") |
| 651 | system_metadata = ("system_manifest.xml", "system_matrix.xml") |
| 652 | if vendor_updated: |
| 653 | compatibility_files += vendor_metadata |
| 654 | if system_updated: |
| 655 | compatibility_files += system_metadata |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 656 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 657 | # Create new archive. |
| 658 | compatibility_archive = tempfile.NamedTemporaryFile() |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 659 | compatibility_archive_zip = zipfile.ZipFile( |
| 660 | compatibility_archive, "w", compression=zipfile.ZIP_DEFLATED) |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 661 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 662 | # Add metadata. |
| 663 | for file_name in compatibility_files: |
| 664 | target_file_name = "META/" + file_name |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 665 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 666 | if target_file_name in target_zip.namelist(): |
| 667 | data = target_zip.read(target_file_name) |
| 668 | common.ZipWriteStr(compatibility_archive_zip, file_name, data) |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 669 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 670 | # Ensure files are written before we copy into output_zip. |
| 671 | compatibility_archive_zip.close() |
| 672 | |
| 673 | # Only add the archive if we have any compatibility info. |
| 674 | if compatibility_archive_zip.namelist(): |
| 675 | common.ZipWrite(output_zip, compatibility_archive.name, |
| 676 | arcname="compatibility.zip", |
| 677 | compress_type=zipfile.ZIP_STORED) |
| 678 | |
| 679 | # Will only proceed if the target has enabled the Treble support (as well as |
| 680 | # having a /vendor partition). |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 681 | if not HasTrebleEnabled(target_zip, target_info): |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 682 | return |
| 683 | |
| 684 | # We don't support OEM thumbprint in Treble world (which calculates |
| 685 | # fingerprints in a different way as shown in CalculateFingerprint()). |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 686 | assert not target_info.oem_props |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 687 | |
| 688 | # Full OTA carries the info for system/vendor both. |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 689 | if source_info is None: |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 690 | AddCompatibilityArchive(True, True) |
| 691 | return |
| 692 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 693 | assert not source_info.oem_props |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 694 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 695 | source_fp = source_info.fingerprint |
| 696 | target_fp = target_info.fingerprint |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 697 | system_updated = source_fp != target_fp |
| 698 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 699 | source_fp_vendor = source_info.GetVendorBuildProp( |
| 700 | "ro.vendor.build.fingerprint") |
| 701 | target_fp_vendor = target_info.GetVendorBuildProp( |
| 702 | "ro.vendor.build.fingerprint") |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 703 | vendor_updated = source_fp_vendor != target_fp_vendor |
| 704 | |
| 705 | AddCompatibilityArchive(system_updated, vendor_updated) |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 706 | |
| 707 | |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 708 | def WriteFullOTAPackage(input_zip, output_file): |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 709 | target_info = BuildInfo(OPTIONS.info_dict, OPTIONS.oem_dicts) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 710 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 711 | # We don't know what version it will be installed on top of. We expect the API |
| 712 | # just won't change very often. Similarly for fstab, it might have changed in |
| 713 | # the target build. |
| 714 | target_api_version = target_info["recovery_api_version"] |
| 715 | script = edify_generator.EdifyGenerator(target_api_version, target_info) |
Michael Runge | 6e83611 | 2014-04-15 17:40:21 -0700 | [diff] [blame] | 716 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 717 | if target_info.oem_props and not OPTIONS.oem_no_mount: |
| 718 | target_info.WriteMountOemScript(script) |
| 719 | |
Tao Bao | df3a48b | 2018-01-10 16:30:43 -0800 | [diff] [blame] | 720 | metadata = GetPackageMetadata(target_info) |
Doug Zongker | 2ea2106 | 2010-04-28 16:05:21 -0700 | [diff] [blame] | 721 | |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 722 | if not OPTIONS.no_signing: |
| 723 | staging_file = common.MakeTempFile(suffix='.zip') |
| 724 | else: |
| 725 | staging_file = output_file |
| 726 | |
| 727 | output_zip = zipfile.ZipFile( |
| 728 | staging_file, "w", compression=zipfile.ZIP_DEFLATED) |
| 729 | |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 730 | device_specific = common.DeviceSpecificParams( |
| 731 | input_zip=input_zip, |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 732 | input_version=target_api_version, |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 733 | output_zip=output_zip, |
| 734 | script=script, |
Doug Zongker | 2ea2106 | 2010-04-28 16:05:21 -0700 | [diff] [blame] | 735 | input_tmp=OPTIONS.input_tmp, |
Doug Zongker | 96a57e7 | 2010-09-26 14:57:41 -0700 | [diff] [blame] | 736 | metadata=metadata, |
| 737 | info_dict=OPTIONS.info_dict) |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 738 | |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 739 | assert HasRecoveryPatch(input_zip) |
Doug Zongker | c925382 | 2014-02-04 12:17:58 -0800 | [diff] [blame] | 740 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 741 | # Assertions (e.g. downgrade check, device properties check). |
| 742 | ts = target_info.GetBuildProp("ro.build.date.utc") |
| 743 | ts_text = target_info.GetBuildProp("ro.build.date") |
Elliott Hughes | d8a52f9 | 2016-06-20 14:35:47 -0700 | [diff] [blame] | 744 | script.AssertOlderBuild(ts, ts_text) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 745 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 746 | target_info.WriteDeviceAssertions(script, OPTIONS.oem_no_mount) |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 747 | device_specific.FullOTA_Assertions() |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 748 | |
| 749 | # Two-step package strategy (in chronological order, which is *not* |
| 750 | # the order in which the generated script has things): |
| 751 | # |
| 752 | # if stage is not "2/3" or "3/3": |
| 753 | # write recovery image to boot partition |
| 754 | # set stage to "2/3" |
| 755 | # reboot to boot partition and restart recovery |
| 756 | # else if stage is "2/3": |
| 757 | # write recovery image to recovery partition |
| 758 | # set stage to "3/3" |
| 759 | # reboot to recovery partition and restart recovery |
| 760 | # else: |
| 761 | # (stage must be "3/3") |
| 762 | # set stage to "" |
| 763 | # do normal full package installation: |
| 764 | # wipe and install system, boot image, etc. |
| 765 | # set up system to update recovery partition on first boot |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 766 | # complete script normally |
| 767 | # (allow recovery to mark itself finished and reboot) |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 768 | |
| 769 | recovery_img = common.GetBootableImage("recovery.img", "recovery.img", |
| 770 | OPTIONS.input_tmp, "RECOVERY") |
| 771 | if OPTIONS.two_step: |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 772 | if not target_info.get("multistage_support"): |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 773 | assert False, "two-step packages not supported by this build" |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 774 | fs = target_info["fstab"]["/misc"] |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 775 | assert fs.fs_type.upper() == "EMMC", \ |
| 776 | "two-step packages only supported on devices with EMMC /misc partitions" |
| 777 | bcb_dev = {"bcb_dev": fs.device} |
| 778 | common.ZipWriteStr(output_zip, "recovery.img", recovery_img.data) |
| 779 | script.AppendExtra(""" |
Michael Runge | fb8886d | 2014-10-23 13:51:04 -0700 | [diff] [blame] | 780 | if get_stage("%(bcb_dev)s") == "2/3" then |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 781 | """ % bcb_dev) |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 782 | |
| 783 | # Stage 2/3: Write recovery image to /recovery (currently running /boot). |
| 784 | script.Comment("Stage 2/3") |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 785 | script.WriteRawImage("/recovery", "recovery.img") |
| 786 | script.AppendExtra(""" |
| 787 | set_stage("%(bcb_dev)s", "3/3"); |
| 788 | reboot_now("%(bcb_dev)s", "recovery"); |
Michael Runge | fb8886d | 2014-10-23 13:51:04 -0700 | [diff] [blame] | 789 | else if get_stage("%(bcb_dev)s") == "3/3" then |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 790 | """ % bcb_dev) |
| 791 | |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 792 | # Stage 3/3: Make changes. |
| 793 | script.Comment("Stage 3/3") |
| 794 | |
Tao Bao | 6c55a8a | 2015-04-08 15:30:27 -0700 | [diff] [blame] | 795 | # Dump fingerprints |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 796 | script.Print("Target: {}".format(target_info.fingerprint)) |
Tao Bao | 6c55a8a | 2015-04-08 15:30:27 -0700 | [diff] [blame] | 797 | |
Doug Zongker | e5ff590 | 2012-01-17 10:55:37 -0800 | [diff] [blame] | 798 | device_specific.FullOTA_InstallBegin() |
Doug Zongker | 171f1cd | 2009-06-15 22:36:37 -0700 | [diff] [blame] | 799 | |
Doug Zongker | 01ce19c | 2014-02-04 13:48:15 -0800 | [diff] [blame] | 800 | system_progress = 0.75 |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 801 | |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 802 | if OPTIONS.wipe_user_data: |
Doug Zongker | 01ce19c | 2014-02-04 13:48:15 -0800 | [diff] [blame] | 803 | system_progress -= 0.1 |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 804 | if HasVendorPartition(input_zip): |
| 805 | system_progress -= 0.1 |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 806 | |
Doug Zongker | 4b9596f | 2014-06-09 14:15:45 -0700 | [diff] [blame] | 807 | script.ShowProgress(system_progress, 0) |
Jesse Zhao | 75bcea0 | 2015-01-06 10:59:53 -0800 | [diff] [blame] | 808 | |
Tao Bao | e709b09 | 2018-02-07 12:40:00 -0800 | [diff] [blame] | 809 | # See the notes in WriteBlockIncrementalOTAPackage(). |
| 810 | allow_shared_blocks = target_info.get('ext4_share_dup_blocks') == "true" |
| 811 | |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 812 | # Full OTA is done as an "incremental" against an empty source image. This |
| 813 | # has the effect of writing new data from the package to the entire |
| 814 | # partition, but lets us reuse the updater code that writes incrementals to |
| 815 | # do it. |
Tao Bao | e709b09 | 2018-02-07 12:40:00 -0800 | [diff] [blame] | 816 | system_tgt = common.GetSparseImage("system", OPTIONS.input_tmp, input_zip, |
| 817 | allow_shared_blocks) |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 818 | system_tgt.ResetFileMap() |
| 819 | system_diff = common.BlockDifference("system", system_tgt, src=None) |
| 820 | system_diff.WriteScript(script, output_zip) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 821 | |
Tao Bao | 7a5bf8a | 2015-07-21 18:01:20 -0700 | [diff] [blame] | 822 | boot_img = common.GetBootableImage( |
| 823 | "boot.img", "boot.img", OPTIONS.input_tmp, "BOOT") |
Doug Zongker | c925382 | 2014-02-04 12:17:58 -0800 | [diff] [blame] | 824 | |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 825 | if HasVendorPartition(input_zip): |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 826 | script.ShowProgress(0.1, 0) |
| 827 | |
Tao Bao | e709b09 | 2018-02-07 12:40:00 -0800 | [diff] [blame] | 828 | vendor_tgt = common.GetSparseImage("vendor", OPTIONS.input_tmp, input_zip, |
| 829 | allow_shared_blocks) |
Tao Bao | 457cbf6 | 2017-03-06 09:56:01 -0800 | [diff] [blame] | 830 | vendor_tgt.ResetFileMap() |
| 831 | vendor_diff = common.BlockDifference("vendor", vendor_tgt) |
| 832 | vendor_diff.WriteScript(script, output_zip) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 833 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 834 | AddCompatibilityArchiveIfTrebleEnabled(input_zip, output_zip, target_info) |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 835 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 836 | common.CheckSize(boot_img.data, "boot.img", target_info) |
Doug Zongker | 73ef825 | 2009-07-23 15:12:53 -0700 | [diff] [blame] | 837 | common.ZipWriteStr(output_zip, "boot.img", boot_img.data) |
Doug Zongker | c494d7c | 2009-06-18 08:43:44 -0700 | [diff] [blame] | 838 | |
Doug Zongker | 01ce19c | 2014-02-04 13:48:15 -0800 | [diff] [blame] | 839 | script.ShowProgress(0.05, 5) |
Doug Zongker | 9ce0fb6 | 2010-09-20 18:04:41 -0700 | [diff] [blame] | 840 | script.WriteRawImage("/boot", "boot.img") |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 841 | |
Doug Zongker | 01ce19c | 2014-02-04 13:48:15 -0800 | [diff] [blame] | 842 | script.ShowProgress(0.2, 10) |
Doug Zongker | 05d3dea | 2009-06-22 11:32:31 -0700 | [diff] [blame] | 843 | device_specific.FullOTA_InstallEnd() |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 844 | |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 845 | if OPTIONS.extra_script is not None: |
Doug Zongker | c494d7c | 2009-06-18 08:43:44 -0700 | [diff] [blame] | 846 | script.AppendExtra(OPTIONS.extra_script) |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 847 | |
Doug Zongker | 1483360 | 2010-02-02 13:12:04 -0800 | [diff] [blame] | 848 | script.UnmountAll() |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 849 | |
Doug Zongker | 922206e | 2014-03-04 13:16:24 -0800 | [diff] [blame] | 850 | if OPTIONS.wipe_user_data: |
| 851 | script.ShowProgress(0.1, 10) |
| 852 | script.FormatPartition("/data") |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 853 | |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 854 | if OPTIONS.two_step: |
| 855 | script.AppendExtra(""" |
| 856 | set_stage("%(bcb_dev)s", ""); |
| 857 | """ % bcb_dev) |
| 858 | script.AppendExtra("else\n") |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 859 | |
| 860 | # Stage 1/3: Nothing to verify for full OTA. Write recovery image to /boot. |
| 861 | script.Comment("Stage 1/3") |
| 862 | _WriteRecoveryImageToBoot(script, output_zip) |
| 863 | |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 864 | script.AppendExtra(""" |
| 865 | set_stage("%(bcb_dev)s", "2/3"); |
| 866 | reboot_now("%(bcb_dev)s", ""); |
| 867 | endif; |
| 868 | endif; |
| 869 | """ % bcb_dev) |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 870 | |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 871 | script.SetProgress(1) |
| 872 | script.AddToZip(input_zip, output_zip, input_path=OPTIONS.updater_binary) |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 873 | metadata["ota-required-cache"] = str(script.required_cache) |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 874 | |
| 875 | # We haven't written the metadata entry, which will be done in |
| 876 | # FinalizeMetadata. |
| 877 | common.ZipClose(output_zip) |
| 878 | |
| 879 | needed_property_files = ( |
| 880 | NonAbOtaPropertyFiles(), |
| 881 | ) |
| 882 | FinalizeMetadata(metadata, staging_file, output_file, needed_property_files) |
Doug Zongker | 2ea2106 | 2010-04-28 16:05:21 -0700 | [diff] [blame] | 883 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 884 | |
Doug Zongker | 2ea2106 | 2010-04-28 16:05:21 -0700 | [diff] [blame] | 885 | def WriteMetadata(metadata, output_zip): |
Tao Bao | 2dd1c48 | 2017-02-03 16:49:39 -0800 | [diff] [blame] | 886 | value = "".join(["%s=%s\n" % kv for kv in sorted(metadata.iteritems())]) |
| 887 | common.ZipWriteStr(output_zip, METADATA_NAME, value, |
| 888 | compress_type=zipfile.ZIP_STORED) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 889 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 890 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 891 | def HandleDowngradeMetadata(metadata, target_info, source_info): |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 892 | # Only incremental OTAs are allowed to reach here. |
| 893 | assert OPTIONS.incremental_source is not None |
| 894 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 895 | post_timestamp = target_info.GetBuildProp("ro.build.date.utc") |
| 896 | pre_timestamp = source_info.GetBuildProp("ro.build.date.utc") |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 897 | is_downgrade = long(post_timestamp) < long(pre_timestamp) |
| 898 | |
| 899 | if OPTIONS.downgrade: |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 900 | if not is_downgrade: |
| 901 | raise RuntimeError("--downgrade specified but no downgrade detected: " |
| 902 | "pre: %s, post: %s" % (pre_timestamp, post_timestamp)) |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 903 | metadata["ota-downgrade"] = "yes" |
| 904 | elif OPTIONS.timestamp: |
| 905 | if not is_downgrade: |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 906 | raise RuntimeError("--override_timestamp specified but no timestamp hack " |
| 907 | "needed: pre: %s, post: %s" % (pre_timestamp, |
| 908 | post_timestamp)) |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 909 | metadata["post-timestamp"] = str(long(pre_timestamp) + 1) |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 910 | else: |
| 911 | if is_downgrade: |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 912 | raise RuntimeError("Downgrade detected based on timestamp check: " |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 913 | "pre: %s, post: %s. Need to specify " |
| 914 | "--override_timestamp OR --downgrade to allow " |
| 915 | "building the incremental." % (pre_timestamp, |
| 916 | post_timestamp)) |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 917 | metadata["post-timestamp"] = post_timestamp |
| 918 | |
| 919 | |
Tao Bao | df3a48b | 2018-01-10 16:30:43 -0800 | [diff] [blame] | 920 | def GetPackageMetadata(target_info, source_info=None): |
| 921 | """Generates and returns the metadata dict. |
| 922 | |
| 923 | It generates a dict() that contains the info to be written into an OTA |
| 924 | package (META-INF/com/android/metadata). It also handles the detection of |
| 925 | downgrade / timestamp override / data wipe based on the global options. |
| 926 | |
| 927 | Args: |
| 928 | target_info: The BuildInfo instance that holds the target build info. |
| 929 | source_info: The BuildInfo instance that holds the source build info, or |
| 930 | None if generating full OTA. |
| 931 | |
| 932 | Returns: |
| 933 | A dict to be written into package metadata entry. |
| 934 | """ |
| 935 | assert isinstance(target_info, BuildInfo) |
| 936 | assert source_info is None or isinstance(source_info, BuildInfo) |
| 937 | |
| 938 | metadata = { |
| 939 | 'post-build' : target_info.fingerprint, |
| 940 | 'post-build-incremental' : target_info.GetBuildProp( |
| 941 | 'ro.build.version.incremental'), |
Tao Bao | 35dc255 | 2018-02-01 13:18:00 -0800 | [diff] [blame] | 942 | 'post-sdk-level' : target_info.GetBuildProp( |
| 943 | 'ro.build.version.sdk'), |
| 944 | 'post-security-patch-level' : target_info.GetBuildProp( |
| 945 | 'ro.build.version.security_patch'), |
Tao Bao | df3a48b | 2018-01-10 16:30:43 -0800 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | if target_info.is_ab: |
| 949 | metadata['ota-type'] = 'AB' |
| 950 | metadata['ota-required-cache'] = '0' |
| 951 | else: |
| 952 | metadata['ota-type'] = 'BLOCK' |
| 953 | |
| 954 | if OPTIONS.wipe_user_data: |
| 955 | metadata['ota-wipe'] = 'yes' |
| 956 | |
| 957 | is_incremental = source_info is not None |
| 958 | if is_incremental: |
| 959 | metadata['pre-build'] = source_info.fingerprint |
| 960 | metadata['pre-build-incremental'] = source_info.GetBuildProp( |
| 961 | 'ro.build.version.incremental') |
| 962 | metadata['pre-device'] = source_info.device |
| 963 | else: |
| 964 | metadata['pre-device'] = target_info.device |
| 965 | |
| 966 | # Detect downgrades, or fill in the post-timestamp. |
| 967 | if is_incremental: |
| 968 | HandleDowngradeMetadata(metadata, target_info, source_info) |
| 969 | else: |
| 970 | metadata['post-timestamp'] = target_info.GetBuildProp('ro.build.date.utc') |
| 971 | |
| 972 | return metadata |
| 973 | |
| 974 | |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 975 | class PropertyFiles(object): |
| 976 | """A class that computes the property-files string for an OTA package. |
| 977 | |
| 978 | A property-files string is a comma-separated string that contains the |
| 979 | offset/size info for an OTA package. The entries, which must be ZIP_STORED, |
| 980 | can be fetched directly with the package URL along with the offset/size info. |
| 981 | These strings can be used for streaming A/B OTAs, or allowing an updater to |
| 982 | download package metadata entry directly, without paying the cost of |
| 983 | downloading entire package. |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 984 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 985 | Computing the final property-files string requires two passes. Because doing |
| 986 | the whole package signing (with signapk.jar) will possibly reorder the ZIP |
| 987 | entries, which may in turn invalidate earlier computed ZIP entry offset/size |
| 988 | values. |
| 989 | |
| 990 | This class provides functions to be called for each pass. The general flow is |
| 991 | as follows. |
| 992 | |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 993 | property_files = PropertyFiles() |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 994 | # The first pass, which writes placeholders before doing initial signing. |
| 995 | property_files.Compute() |
| 996 | SignOutput() |
| 997 | |
| 998 | # The second pass, by replacing the placeholders with actual data. |
| 999 | property_files.Finalize() |
| 1000 | SignOutput() |
| 1001 | |
| 1002 | And the caller can additionally verify the final result. |
| 1003 | |
| 1004 | property_files.Verify() |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1005 | """ |
| 1006 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1007 | def __init__(self): |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1008 | self.name = None |
| 1009 | self.required = () |
| 1010 | self.optional = () |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1011 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1012 | def Compute(self, input_zip): |
| 1013 | """Computes and returns a property-files string with placeholders. |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1014 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1015 | We reserve extra space for the offset and size of the metadata entry itself, |
| 1016 | although we don't know the final values until the package gets signed. |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1017 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1018 | Args: |
| 1019 | input_zip: The input ZIP file. |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1020 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1021 | Returns: |
| 1022 | A string with placeholders for the metadata offset/size info, e.g. |
| 1023 | "payload.bin:679:343,payload_properties.txt:378:45,metadata: ". |
| 1024 | """ |
| 1025 | return self._GetPropertyFilesString(input_zip, reserve_space=True) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1026 | |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1027 | def Finalize(self, input_zip, reserved_length): |
| 1028 | """Finalizes a property-files string with actual METADATA offset/size info. |
| 1029 | |
| 1030 | The input ZIP file has been signed, with the ZIP entries in the desired |
| 1031 | place (signapk.jar will possibly reorder the ZIP entries). Now we compute |
| 1032 | the ZIP entry offsets and construct the property-files string with actual |
| 1033 | data. Note that during this process, we must pad the property-files string |
| 1034 | to the reserved length, so that the METADATA entry size remains the same. |
| 1035 | Otherwise the entries' offsets and sizes may change again. |
| 1036 | |
| 1037 | Args: |
| 1038 | input_zip: The input ZIP file. |
| 1039 | reserved_length: The reserved length of the property-files string during |
| 1040 | the call to Compute(). The final string must be no more than this |
| 1041 | size. |
| 1042 | |
| 1043 | Returns: |
| 1044 | A property-files string including the metadata offset/size info, e.g. |
| 1045 | "payload.bin:679:343,payload_properties.txt:378:45,metadata:69:379 ". |
| 1046 | |
| 1047 | Raises: |
| 1048 | AssertionError: If the reserved length is insufficient to hold the final |
| 1049 | string. |
| 1050 | """ |
| 1051 | result = self._GetPropertyFilesString(input_zip, reserve_space=False) |
| 1052 | assert len(result) <= reserved_length, \ |
| 1053 | 'Insufficient reserved space: reserved={}, actual={}'.format( |
| 1054 | reserved_length, len(result)) |
| 1055 | result += ' ' * (reserved_length - len(result)) |
| 1056 | return result |
| 1057 | |
| 1058 | def Verify(self, input_zip, expected): |
| 1059 | """Verifies the input ZIP file contains the expected property-files string. |
| 1060 | |
| 1061 | Args: |
| 1062 | input_zip: The input ZIP file. |
| 1063 | expected: The property-files string that's computed from Finalize(). |
| 1064 | |
| 1065 | Raises: |
| 1066 | AssertionError: On finding a mismatch. |
| 1067 | """ |
| 1068 | actual = self._GetPropertyFilesString(input_zip) |
| 1069 | assert actual == expected, \ |
| 1070 | "Mismatching streaming metadata: {} vs {}.".format(actual, expected) |
| 1071 | |
| 1072 | def _GetPropertyFilesString(self, zip_file, reserve_space=False): |
| 1073 | """Constructs the property-files string per request.""" |
| 1074 | |
| 1075 | def ComputeEntryOffsetSize(name): |
| 1076 | """Computes the zip entry offset and size.""" |
| 1077 | info = zip_file.getinfo(name) |
| 1078 | offset = info.header_offset + len(info.FileHeader()) |
| 1079 | size = info.file_size |
| 1080 | return '%s:%d:%d' % (os.path.basename(name), offset, size) |
| 1081 | |
| 1082 | tokens = [] |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 1083 | tokens.extend(self._GetPrecomputed(zip_file)) |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1084 | for entry in self.required: |
| 1085 | tokens.append(ComputeEntryOffsetSize(entry)) |
| 1086 | for entry in self.optional: |
| 1087 | if entry in zip_file.namelist(): |
| 1088 | tokens.append(ComputeEntryOffsetSize(entry)) |
| 1089 | |
| 1090 | # 'META-INF/com/android/metadata' is required. We don't know its actual |
| 1091 | # offset and length (as well as the values for other entries). So we reserve |
| 1092 | # 10-byte as a placeholder, which is to cover the space for metadata entry |
| 1093 | # ('xx:xxx', since it's ZIP_STORED which should appear at the beginning of |
| 1094 | # the zip), as well as the possible value changes in other entries. |
| 1095 | if reserve_space: |
| 1096 | tokens.append('metadata:' + ' ' * 10) |
| 1097 | else: |
| 1098 | tokens.append(ComputeEntryOffsetSize(METADATA_NAME)) |
| 1099 | |
| 1100 | return ','.join(tokens) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1101 | |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 1102 | def _GetPrecomputed(self, input_zip): |
| 1103 | """Computes the additional tokens to be included into the property-files. |
| 1104 | |
| 1105 | This applies to tokens without actual ZIP entries, such as |
| 1106 | payload_metadadata.bin. We want to expose the offset/size to updaters, so |
| 1107 | that they can download the payload metadata directly with the info. |
| 1108 | |
| 1109 | Args: |
| 1110 | input_zip: The input zip file. |
| 1111 | |
| 1112 | Returns: |
| 1113 | A list of strings (tokens) to be added to the property-files string. |
| 1114 | """ |
| 1115 | # pylint: disable=no-self-use |
| 1116 | # pylint: disable=unused-argument |
| 1117 | return [] |
| 1118 | |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1119 | |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1120 | class StreamingPropertyFiles(PropertyFiles): |
| 1121 | """A subclass for computing the property-files for streaming A/B OTAs.""" |
| 1122 | |
| 1123 | def __init__(self): |
| 1124 | super(StreamingPropertyFiles, self).__init__() |
| 1125 | self.name = 'ota-streaming-property-files' |
| 1126 | self.required = ( |
| 1127 | # payload.bin and payload_properties.txt must exist. |
| 1128 | 'payload.bin', |
| 1129 | 'payload_properties.txt', |
| 1130 | ) |
| 1131 | self.optional = ( |
| 1132 | # care_map.txt is available only if dm-verity is enabled. |
| 1133 | 'care_map.txt', |
| 1134 | # compatibility.zip is available only if target supports Treble. |
| 1135 | 'compatibility.zip', |
| 1136 | ) |
| 1137 | |
| 1138 | |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 1139 | class AbOtaPropertyFiles(StreamingPropertyFiles): |
| 1140 | """The property-files for A/B OTA that includes payload_metadata.bin info. |
| 1141 | |
| 1142 | Since P, we expose one more token (aka property-file), in addition to the ones |
| 1143 | for streaming A/B OTA, for a virtual entry of 'payload_metadata.bin'. |
| 1144 | 'payload_metadata.bin' is the header part of a payload ('payload.bin'), which |
| 1145 | doesn't exist as a separate ZIP entry, but can be used to verify if the |
| 1146 | payload can be applied on the given device. |
| 1147 | |
| 1148 | For backward compatibility, we keep both of the 'ota-streaming-property-files' |
| 1149 | and the newly added 'ota-property-files' in P. The new token will only be |
| 1150 | available in 'ota-property-files'. |
| 1151 | """ |
| 1152 | |
| 1153 | def __init__(self): |
| 1154 | super(AbOtaPropertyFiles, self).__init__() |
| 1155 | self.name = 'ota-property-files' |
| 1156 | |
| 1157 | def _GetPrecomputed(self, input_zip): |
| 1158 | offset, size = self._GetPayloadMetadataOffsetAndSize(input_zip) |
| 1159 | return ['payload_metadata.bin:{}:{}'.format(offset, size)] |
| 1160 | |
| 1161 | @staticmethod |
| 1162 | def _GetPayloadMetadataOffsetAndSize(input_zip): |
| 1163 | """Computes the offset and size of the payload metadata for a given package. |
| 1164 | |
| 1165 | (From system/update_engine/update_metadata.proto) |
| 1166 | A delta update file contains all the deltas needed to update a system from |
| 1167 | one specific version to another specific version. The update format is |
| 1168 | represented by this struct pseudocode: |
| 1169 | |
| 1170 | struct delta_update_file { |
| 1171 | char magic[4] = "CrAU"; |
| 1172 | uint64 file_format_version; |
| 1173 | uint64 manifest_size; // Size of protobuf DeltaArchiveManifest |
| 1174 | |
| 1175 | // Only present if format_version > 1: |
| 1176 | uint32 metadata_signature_size; |
| 1177 | |
| 1178 | // The Bzip2 compressed DeltaArchiveManifest |
| 1179 | char manifest[metadata_signature_size]; |
| 1180 | |
| 1181 | // The signature of the metadata (from the beginning of the payload up to |
| 1182 | // this location, not including the signature itself). This is a |
| 1183 | // serialized Signatures message. |
| 1184 | char medatada_signature_message[metadata_signature_size]; |
| 1185 | |
| 1186 | // Data blobs for files, no specific format. The specific offset |
| 1187 | // and length of each data blob is recorded in the DeltaArchiveManifest. |
| 1188 | struct { |
| 1189 | char data[]; |
| 1190 | } blobs[]; |
| 1191 | |
| 1192 | // These two are not signed: |
| 1193 | uint64 payload_signatures_message_size; |
| 1194 | char payload_signatures_message[]; |
| 1195 | }; |
| 1196 | |
| 1197 | 'payload-metadata.bin' contains all the bytes from the beginning of the |
| 1198 | payload, till the end of 'medatada_signature_message'. |
| 1199 | """ |
| 1200 | payload_info = input_zip.getinfo('payload.bin') |
| 1201 | payload_offset = payload_info.header_offset + len(payload_info.FileHeader()) |
| 1202 | payload_size = payload_info.file_size |
| 1203 | |
| 1204 | with input_zip.open('payload.bin', 'r') as payload_fp: |
| 1205 | header_bin = payload_fp.read(24) |
| 1206 | |
| 1207 | # network byte order (big-endian) |
| 1208 | header = struct.unpack("!IQQL", header_bin) |
| 1209 | |
| 1210 | # 'CrAU' |
| 1211 | magic = header[0] |
| 1212 | assert magic == 0x43724155, "Invalid magic: {:x}".format(magic) |
| 1213 | |
| 1214 | manifest_size = header[2] |
| 1215 | metadata_signature_size = header[3] |
| 1216 | metadata_total = 24 + manifest_size + metadata_signature_size |
| 1217 | assert metadata_total < payload_size |
| 1218 | |
| 1219 | return (payload_offset, metadata_total) |
| 1220 | |
| 1221 | |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1222 | class NonAbOtaPropertyFiles(PropertyFiles): |
| 1223 | """The property-files for non-A/B OTA. |
| 1224 | |
| 1225 | For non-A/B OTA, the property-files string contains the info for METADATA |
| 1226 | entry, with which a system updater can be fetched the package metadata prior |
| 1227 | to downloading the entire package. |
| 1228 | """ |
| 1229 | |
| 1230 | def __init__(self): |
| 1231 | super(NonAbOtaPropertyFiles, self).__init__() |
| 1232 | self.name = 'ota-property-files' |
| 1233 | |
| 1234 | |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1235 | def FinalizeMetadata(metadata, input_file, output_file, needed_property_files): |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1236 | """Finalizes the metadata and signs an A/B OTA package. |
| 1237 | |
| 1238 | In order to stream an A/B OTA package, we need 'ota-streaming-property-files' |
| 1239 | that contains the offsets and sizes for the ZIP entries. An example |
| 1240 | property-files string is as follows. |
| 1241 | |
| 1242 | "payload.bin:679:343,payload_properties.txt:378:45,metadata:69:379" |
| 1243 | |
| 1244 | OTA server can pass down this string, in addition to the package URL, to the |
| 1245 | system update client. System update client can then fetch individual ZIP |
| 1246 | entries (ZIP_STORED) directly at the given offset of the URL. |
| 1247 | |
| 1248 | Args: |
| 1249 | metadata: The metadata dict for the package. |
| 1250 | input_file: The input ZIP filename that doesn't contain the package METADATA |
| 1251 | entry yet. |
| 1252 | output_file: The final output ZIP filename. |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1253 | needed_property_files: The list of PropertyFiles' to be generated. |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1254 | """ |
| 1255 | output_zip = zipfile.ZipFile( |
| 1256 | input_file, 'a', compression=zipfile.ZIP_DEFLATED) |
| 1257 | |
| 1258 | # Write the current metadata entry with placeholders. |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1259 | for property_files in needed_property_files: |
| 1260 | metadata[property_files.name] = property_files.Compute(output_zip) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1261 | WriteMetadata(metadata, output_zip) |
| 1262 | common.ZipClose(output_zip) |
| 1263 | |
| 1264 | # SignOutput(), which in turn calls signapk.jar, will possibly reorder the |
| 1265 | # ZIP entries, as well as padding the entry headers. We do a preliminary |
| 1266 | # signing (with an incomplete metadata entry) to allow that to happen. Then |
| 1267 | # compute the ZIP entry offsets, write back the final metadata and do the |
| 1268 | # final signing. |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1269 | if OPTIONS.no_signing: |
| 1270 | prelim_signing = input_file |
| 1271 | else: |
| 1272 | prelim_signing = common.MakeTempFile(suffix='.zip') |
| 1273 | SignOutput(input_file, prelim_signing) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1274 | |
| 1275 | # Open the signed zip. Compute the final metadata that's needed for streaming. |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1276 | with zipfile.ZipFile(prelim_signing, 'r') as prelim_signing_zip: |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1277 | for property_files in needed_property_files: |
| 1278 | metadata[property_files.name] = property_files.Finalize( |
| 1279 | prelim_signing_zip, len(metadata[property_files.name])) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1280 | |
| 1281 | # Replace the METADATA entry. |
| 1282 | common.ZipDelete(prelim_signing, METADATA_NAME) |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1283 | output_zip = zipfile.ZipFile( |
| 1284 | prelim_signing, 'a', compression=zipfile.ZIP_DEFLATED) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1285 | WriteMetadata(metadata, output_zip) |
| 1286 | common.ZipClose(output_zip) |
| 1287 | |
| 1288 | # Re-sign the package after updating the metadata entry. |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1289 | if OPTIONS.no_signing: |
| 1290 | output_file = prelim_signing |
| 1291 | else: |
| 1292 | SignOutput(prelim_signing, output_file) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1293 | |
| 1294 | # Reopen the final signed zip to double check the streaming metadata. |
Tao Bao | cc8e266 | 2018-03-01 19:30:00 -0800 | [diff] [blame] | 1295 | with zipfile.ZipFile(output_file, 'r') as output_zip: |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1296 | for property_files in needed_property_files: |
| 1297 | property_files.Verify(output_zip, metadata[property_files.name].strip()) |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1298 | |
| 1299 | |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1300 | def WriteBlockIncrementalOTAPackage(target_zip, source_zip, output_file): |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1301 | target_info = BuildInfo(OPTIONS.target_info_dict, OPTIONS.oem_dicts) |
| 1302 | source_info = BuildInfo(OPTIONS.source_info_dict, OPTIONS.oem_dicts) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1303 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1304 | target_api_version = target_info["recovery_api_version"] |
| 1305 | source_api_version = source_info["recovery_api_version"] |
| 1306 | if source_api_version == 0: |
Tao Bao | 3e30d97 | 2016-03-15 13:20:19 -0700 | [diff] [blame] | 1307 | print("WARNING: generating edify script for a source that " |
| 1308 | "can't install it.") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1309 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1310 | script = edify_generator.EdifyGenerator( |
| 1311 | source_api_version, target_info, fstab=source_info["fstab"]) |
| 1312 | |
| 1313 | if target_info.oem_props or source_info.oem_props: |
| 1314 | if not OPTIONS.oem_no_mount: |
| 1315 | source_info.WriteMountOemScript(script) |
Tao Bao | 3806c23 | 2015-07-05 21:08:33 -0700 | [diff] [blame] | 1316 | |
Tao Bao | df3a48b | 2018-01-10 16:30:43 -0800 | [diff] [blame] | 1317 | metadata = GetPackageMetadata(target_info, source_info) |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 1318 | |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1319 | if not OPTIONS.no_signing: |
| 1320 | staging_file = common.MakeTempFile(suffix='.zip') |
| 1321 | else: |
| 1322 | staging_file = output_file |
| 1323 | |
| 1324 | output_zip = zipfile.ZipFile( |
| 1325 | staging_file, "w", compression=zipfile.ZIP_DEFLATED) |
| 1326 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1327 | device_specific = common.DeviceSpecificParams( |
| 1328 | source_zip=source_zip, |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1329 | source_version=source_api_version, |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1330 | target_zip=target_zip, |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1331 | target_version=target_api_version, |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1332 | output_zip=output_zip, |
| 1333 | script=script, |
| 1334 | metadata=metadata, |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1335 | info_dict=source_info) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1336 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1337 | source_boot = common.GetBootableImage( |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1338 | "/tmp/boot.img", "boot.img", OPTIONS.source_tmp, "BOOT", source_info) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1339 | target_boot = common.GetBootableImage( |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1340 | "/tmp/boot.img", "boot.img", OPTIONS.target_tmp, "BOOT", target_info) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1341 | updating_boot = (not OPTIONS.two_step and |
| 1342 | (source_boot.data != target_boot.data)) |
| 1343 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1344 | target_recovery = common.GetBootableImage( |
| 1345 | "/tmp/recovery.img", "recovery.img", OPTIONS.target_tmp, "RECOVERY") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1346 | |
Tao Bao | e709b09 | 2018-02-07 12:40:00 -0800 | [diff] [blame] | 1347 | # When target uses 'BOARD_EXT4_SHARE_DUP_BLOCKS := true', images may contain |
| 1348 | # shared blocks (i.e. some blocks will show up in multiple files' block |
| 1349 | # list). We can only allocate such shared blocks to the first "owner", and |
| 1350 | # disable imgdiff for all later occurrences. |
| 1351 | allow_shared_blocks = (source_info.get('ext4_share_dup_blocks') == "true" or |
| 1352 | target_info.get('ext4_share_dup_blocks') == "true") |
| 1353 | system_src = common.GetSparseImage("system", OPTIONS.source_tmp, source_zip, |
| 1354 | allow_shared_blocks) |
| 1355 | system_tgt = common.GetSparseImage("system", OPTIONS.target_tmp, target_zip, |
| 1356 | allow_shared_blocks) |
Tao Bao | dd2a589 | 2015-03-12 12:32:37 -0700 | [diff] [blame] | 1357 | |
Tao Bao | 0582cb6 | 2017-12-21 11:47:01 -0800 | [diff] [blame] | 1358 | blockimgdiff_version = max( |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1359 | int(i) for i in target_info.get("blockimgdiff_versions", "1").split(",")) |
Tao Bao | 0582cb6 | 2017-12-21 11:47:01 -0800 | [diff] [blame] | 1360 | assert blockimgdiff_version >= 3 |
Tao Bao | dd2a589 | 2015-03-12 12:32:37 -0700 | [diff] [blame] | 1361 | |
Tao Bao | f8acad1 | 2016-07-07 09:09:58 -0700 | [diff] [blame] | 1362 | # Check the first block of the source system partition for remount R/W only |
| 1363 | # if the filesystem is ext4. |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1364 | system_src_partition = source_info["fstab"]["/system"] |
Tao Bao | f8acad1 | 2016-07-07 09:09:58 -0700 | [diff] [blame] | 1365 | check_first_block = system_src_partition.fs_type == "ext4" |
Tao Bao | 293fd13 | 2016-06-11 12:19:23 -0700 | [diff] [blame] | 1366 | # Disable using imgdiff for squashfs. 'imgdiff -z' expects input files to be |
| 1367 | # in zip formats. However with squashfs, a) all files are compressed in LZ4; |
| 1368 | # b) the blocks listed in block map may not contain all the bytes for a given |
| 1369 | # file (because they're rounded to be 4K-aligned). |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1370 | system_tgt_partition = target_info["fstab"]["/system"] |
Tao Bao | f8acad1 | 2016-07-07 09:09:58 -0700 | [diff] [blame] | 1371 | disable_imgdiff = (system_src_partition.fs_type == "squashfs" or |
| 1372 | system_tgt_partition.fs_type == "squashfs") |
Doug Zongker | b34fcce | 2014-09-11 09:34:56 -0700 | [diff] [blame] | 1373 | system_diff = common.BlockDifference("system", system_tgt, system_src, |
Tianjie Xu | fc3422a | 2015-12-15 11:53:59 -0800 | [diff] [blame] | 1374 | check_first_block, |
Tao Bao | 293fd13 | 2016-06-11 12:19:23 -0700 | [diff] [blame] | 1375 | version=blockimgdiff_version, |
| 1376 | disable_imgdiff=disable_imgdiff) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 1377 | |
Doug Zongker | c8b4e84 | 2014-06-16 15:16:31 -0700 | [diff] [blame] | 1378 | if HasVendorPartition(target_zip): |
| 1379 | if not HasVendorPartition(source_zip): |
| 1380 | raise RuntimeError("can't generate incremental that adds /vendor") |
Tao Bao | e709b09 | 2018-02-07 12:40:00 -0800 | [diff] [blame] | 1381 | vendor_src = common.GetSparseImage("vendor", OPTIONS.source_tmp, source_zip, |
| 1382 | allow_shared_blocks) |
| 1383 | vendor_tgt = common.GetSparseImage("vendor", OPTIONS.target_tmp, target_zip, |
| 1384 | allow_shared_blocks) |
Tianjie Xu | fc3422a | 2015-12-15 11:53:59 -0800 | [diff] [blame] | 1385 | |
| 1386 | # Check first block of vendor partition for remount R/W only if |
| 1387 | # disk type is ext4 |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1388 | vendor_partition = source_info["fstab"]["/vendor"] |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 1389 | check_first_block = vendor_partition.fs_type == "ext4" |
Tao Bao | 293fd13 | 2016-06-11 12:19:23 -0700 | [diff] [blame] | 1390 | disable_imgdiff = vendor_partition.fs_type == "squashfs" |
Doug Zongker | b34fcce | 2014-09-11 09:34:56 -0700 | [diff] [blame] | 1391 | vendor_diff = common.BlockDifference("vendor", vendor_tgt, vendor_src, |
Tianjie Xu | fc3422a | 2015-12-15 11:53:59 -0800 | [diff] [blame] | 1392 | check_first_block, |
Tao Bao | 293fd13 | 2016-06-11 12:19:23 -0700 | [diff] [blame] | 1393 | version=blockimgdiff_version, |
| 1394 | disable_imgdiff=disable_imgdiff) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 1395 | else: |
| 1396 | vendor_diff = None |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1397 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 1398 | AddCompatibilityArchiveIfTrebleEnabled( |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1399 | target_zip, output_zip, target_info, source_info) |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 1400 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1401 | # Assertions (e.g. device properties check). |
| 1402 | target_info.WriteDeviceAssertions(script, OPTIONS.oem_no_mount) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1403 | device_specific.IncrementalOTA_Assertions() |
| 1404 | |
| 1405 | # Two-step incremental package strategy (in chronological order, |
| 1406 | # which is *not* the order in which the generated script has |
| 1407 | # things): |
| 1408 | # |
| 1409 | # if stage is not "2/3" or "3/3": |
| 1410 | # do verification on current system |
| 1411 | # write recovery image to boot partition |
| 1412 | # set stage to "2/3" |
| 1413 | # reboot to boot partition and restart recovery |
| 1414 | # else if stage is "2/3": |
| 1415 | # write recovery image to recovery partition |
| 1416 | # set stage to "3/3" |
| 1417 | # reboot to recovery partition and restart recovery |
| 1418 | # else: |
| 1419 | # (stage must be "3/3") |
| 1420 | # perform update: |
| 1421 | # patch system files, etc. |
| 1422 | # force full install of new boot image |
| 1423 | # set up system to update recovery partition on first boot |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1424 | # complete script normally |
| 1425 | # (allow recovery to mark itself finished and reboot) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1426 | |
| 1427 | if OPTIONS.two_step: |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1428 | if not source_info.get("multistage_support"): |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1429 | assert False, "two-step packages not supported by this build" |
Tao Bao | 24604cc | 2018-02-01 16:25:44 -0800 | [diff] [blame] | 1430 | fs = source_info["fstab"]["/misc"] |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1431 | assert fs.fs_type.upper() == "EMMC", \ |
| 1432 | "two-step packages only supported on devices with EMMC /misc partitions" |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1433 | bcb_dev = {"bcb_dev" : fs.device} |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1434 | common.ZipWriteStr(output_zip, "recovery.img", target_recovery.data) |
| 1435 | script.AppendExtra(""" |
Michael Runge | fb8886d | 2014-10-23 13:51:04 -0700 | [diff] [blame] | 1436 | if get_stage("%(bcb_dev)s") == "2/3" then |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1437 | """ % bcb_dev) |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 1438 | |
| 1439 | # Stage 2/3: Write recovery image to /recovery (currently running /boot). |
| 1440 | script.Comment("Stage 2/3") |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1441 | script.AppendExtra("sleep(20);\n") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1442 | script.WriteRawImage("/recovery", "recovery.img") |
| 1443 | script.AppendExtra(""" |
| 1444 | set_stage("%(bcb_dev)s", "3/3"); |
| 1445 | reboot_now("%(bcb_dev)s", "recovery"); |
Michael Runge | fb8886d | 2014-10-23 13:51:04 -0700 | [diff] [blame] | 1446 | else if get_stage("%(bcb_dev)s") != "3/3" then |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1447 | """ % bcb_dev) |
| 1448 | |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 1449 | # Stage 1/3: (a) Verify the current system. |
| 1450 | script.Comment("Stage 1/3") |
| 1451 | |
Tao Bao | 6c55a8a | 2015-04-08 15:30:27 -0700 | [diff] [blame] | 1452 | # Dump fingerprints |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1453 | script.Print("Source: {}".format(source_info.fingerprint)) |
| 1454 | script.Print("Target: {}".format(target_info.fingerprint)) |
Tao Bao | 6c55a8a | 2015-04-08 15:30:27 -0700 | [diff] [blame] | 1455 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1456 | script.Print("Verifying current system...") |
| 1457 | |
| 1458 | device_specific.IncrementalOTA_VerifyBegin() |
| 1459 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1460 | WriteFingerprintAssertion(script, target_info, source_info) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1461 | |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 1462 | # Check the required cache size (i.e. stashed blocks). |
| 1463 | size = [] |
| 1464 | if system_diff: |
| 1465 | size.append(system_diff.required_cache) |
| 1466 | if vendor_diff: |
| 1467 | size.append(vendor_diff.required_cache) |
| 1468 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1469 | if updating_boot: |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1470 | boot_type, boot_device = common.GetTypeAndDevice("/boot", source_info) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1471 | d = common.Difference(target_boot, source_boot) |
| 1472 | _, _, d = d.ComputePatch() |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1473 | if d is None: |
| 1474 | include_full_boot = True |
| 1475 | common.ZipWriteStr(output_zip, "boot.img", target_boot.data) |
| 1476 | else: |
| 1477 | include_full_boot = False |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1478 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1479 | print("boot target: %d source: %d diff: %d" % ( |
| 1480 | target_boot.size, source_boot.size, len(d))) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1481 | |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1482 | common.ZipWriteStr(output_zip, "patch/boot.img.p", d) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1483 | |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1484 | script.PatchCheck("%s:%s:%d:%s:%d:%s" % |
| 1485 | (boot_type, boot_device, |
| 1486 | source_boot.size, source_boot.sha1, |
| 1487 | target_boot.size, target_boot.sha1)) |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 1488 | size.append(target_boot.size) |
| 1489 | |
| 1490 | if size: |
| 1491 | script.CacheFreeSpaceCheck(max(size)) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1492 | |
| 1493 | device_specific.IncrementalOTA_VerifyEnd() |
| 1494 | |
| 1495 | if OPTIONS.two_step: |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 1496 | # Stage 1/3: (b) Write recovery image to /boot. |
| 1497 | _WriteRecoveryImageToBoot(script, output_zip) |
| 1498 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1499 | script.AppendExtra(""" |
| 1500 | set_stage("%(bcb_dev)s", "2/3"); |
| 1501 | reboot_now("%(bcb_dev)s", ""); |
| 1502 | else |
| 1503 | """ % bcb_dev) |
| 1504 | |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 1505 | # Stage 3/3: Make changes. |
| 1506 | script.Comment("Stage 3/3") |
| 1507 | |
Jesse Zhao | 75bcea0 | 2015-01-06 10:59:53 -0800 | [diff] [blame] | 1508 | # Verify the existing partitions. |
Tao Bao | d522bdc | 2016-04-12 15:53:16 -0700 | [diff] [blame] | 1509 | system_diff.WriteVerifyScript(script, touched_blocks_only=True) |
Jesse Zhao | 75bcea0 | 2015-01-06 10:59:53 -0800 | [diff] [blame] | 1510 | if vendor_diff: |
Tao Bao | d522bdc | 2016-04-12 15:53:16 -0700 | [diff] [blame] | 1511 | vendor_diff.WriteVerifyScript(script, touched_blocks_only=True) |
Jesse Zhao | 75bcea0 | 2015-01-06 10:59:53 -0800 | [diff] [blame] | 1512 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1513 | script.Comment("---- start making changes here ----") |
| 1514 | |
| 1515 | device_specific.IncrementalOTA_InstallBegin() |
| 1516 | |
Doug Zongker | ab7ca1d | 2014-08-26 10:40:28 -0700 | [diff] [blame] | 1517 | system_diff.WriteScript(script, output_zip, |
| 1518 | progress=0.8 if vendor_diff else 0.9) |
Tao Bao | 68658c0 | 2015-06-01 13:40:49 -0700 | [diff] [blame] | 1519 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 1520 | if vendor_diff: |
Doug Zongker | ab7ca1d | 2014-08-26 10:40:28 -0700 | [diff] [blame] | 1521 | vendor_diff.WriteScript(script, output_zip, progress=0.1) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1522 | |
| 1523 | if OPTIONS.two_step: |
| 1524 | common.ZipWriteStr(output_zip, "boot.img", target_boot.data) |
| 1525 | script.WriteRawImage("/boot", "boot.img") |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1526 | print("writing full boot image (forced by two-step mode)") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1527 | |
| 1528 | if not OPTIONS.two_step: |
| 1529 | if updating_boot: |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1530 | if include_full_boot: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1531 | print("boot image changed; including full.") |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1532 | script.Print("Installing boot image...") |
| 1533 | script.WriteRawImage("/boot", "boot.img") |
| 1534 | else: |
| 1535 | # Produce the boot image by applying a patch to the current |
| 1536 | # contents of the boot partition, and write it back to the |
| 1537 | # partition. |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1538 | print("boot image changed; including patch.") |
Doug Zongker | f834008 | 2014-08-05 10:39:37 -0700 | [diff] [blame] | 1539 | script.Print("Patching boot image...") |
| 1540 | script.ShowProgress(0.1, 10) |
| 1541 | script.ApplyPatch("%s:%s:%d:%s:%d:%s" |
| 1542 | % (boot_type, boot_device, |
| 1543 | source_boot.size, source_boot.sha1, |
| 1544 | target_boot.size, target_boot.sha1), |
| 1545 | "-", |
| 1546 | target_boot.size, target_boot.sha1, |
| 1547 | source_boot.sha1, "patch/boot.img.p") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1548 | else: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1549 | print("boot image unchanged; skipping.") |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1550 | |
| 1551 | # Do device-specific installation (eg, write radio image). |
| 1552 | device_specific.IncrementalOTA_InstallEnd() |
| 1553 | |
| 1554 | if OPTIONS.extra_script is not None: |
| 1555 | script.AppendExtra(OPTIONS.extra_script) |
| 1556 | |
Doug Zongker | 922206e | 2014-03-04 13:16:24 -0800 | [diff] [blame] | 1557 | if OPTIONS.wipe_user_data: |
| 1558 | script.Print("Erasing user data...") |
| 1559 | script.FormatPartition("/data") |
| 1560 | |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1561 | if OPTIONS.two_step: |
| 1562 | script.AppendExtra(""" |
| 1563 | set_stage("%(bcb_dev)s", ""); |
| 1564 | endif; |
| 1565 | endif; |
| 1566 | """ % bcb_dev) |
| 1567 | |
| 1568 | script.SetProgress(1) |
Tao Bao | 4996cf0 | 2016-03-08 17:53:39 -0800 | [diff] [blame] | 1569 | # For downgrade OTAs, we prefer to use the update-binary in the source |
| 1570 | # build that is actually newer than the one in the target build. |
| 1571 | if OPTIONS.downgrade: |
| 1572 | script.AddToZip(source_zip, output_zip, input_path=OPTIONS.updater_binary) |
| 1573 | else: |
| 1574 | script.AddToZip(target_zip, output_zip, input_path=OPTIONS.updater_binary) |
Tao Bao | d8d14be | 2016-02-04 14:26:02 -0800 | [diff] [blame] | 1575 | metadata["ota-required-cache"] = str(script.required_cache) |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1576 | |
| 1577 | # We haven't written the metadata entry yet, which will be handled in |
| 1578 | # FinalizeMetadata(). |
| 1579 | common.ZipClose(output_zip) |
| 1580 | |
| 1581 | # Sign the generated zip package unless no_signing is specified. |
| 1582 | needed_property_files = ( |
| 1583 | NonAbOtaPropertyFiles(), |
| 1584 | ) |
| 1585 | FinalizeMetadata(metadata, staging_file, output_file, needed_property_files) |
Geremy Condra | 36bd365 | 2014-02-06 19:45:10 -0800 | [diff] [blame] | 1586 | |
Doug Zongker | 32b527d | 2014-03-04 10:03:02 -0800 | [diff] [blame] | 1587 | |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1588 | def GetTargetFilesZipForSecondaryImages(input_file, skip_postinstall=False): |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1589 | """Returns a target-files.zip file for generating secondary payload. |
| 1590 | |
| 1591 | Although the original target-files.zip already contains secondary slot |
| 1592 | images (i.e. IMAGES/system_other.img), we need to rename the files to the |
| 1593 | ones without _other suffix. Note that we cannot instead modify the names in |
| 1594 | META/ab_partitions.txt, because there are no matching partitions on device. |
| 1595 | |
| 1596 | For the partitions that don't have secondary images, the ones for primary |
| 1597 | slot will be used. This is to ensure that we always have valid boot, vbmeta, |
| 1598 | bootloader images in the inactive slot. |
| 1599 | |
| 1600 | Args: |
| 1601 | input_file: The input target-files.zip file. |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1602 | skip_postinstall: Whether to skip copying the postinstall config file. |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1603 | |
| 1604 | Returns: |
| 1605 | The filename of the target-files.zip for generating secondary payload. |
| 1606 | """ |
| 1607 | target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") |
| 1608 | target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True) |
| 1609 | |
Tao Bao | dba59ee | 2018-01-09 13:21:02 -0800 | [diff] [blame] | 1610 | input_tmp = common.UnzipTemp(input_file, UNZIP_PATTERN) |
| 1611 | with zipfile.ZipFile(input_file, 'r') as input_zip: |
| 1612 | infolist = input_zip.infolist() |
| 1613 | |
| 1614 | for info in infolist: |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1615 | unzipped_file = os.path.join(input_tmp, *info.filename.split('/')) |
| 1616 | if info.filename == 'IMAGES/system_other.img': |
| 1617 | common.ZipWrite(target_zip, unzipped_file, arcname='IMAGES/system.img') |
| 1618 | |
| 1619 | # Primary images and friends need to be skipped explicitly. |
| 1620 | elif info.filename in ('IMAGES/system.img', |
| 1621 | 'IMAGES/system.map'): |
| 1622 | pass |
| 1623 | |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1624 | # Skip copying the postinstall config if requested. |
| 1625 | elif skip_postinstall and info.filename == POSTINSTALL_CONFIG: |
| 1626 | pass |
| 1627 | |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1628 | elif info.filename.startswith(('META/', 'IMAGES/')): |
| 1629 | common.ZipWrite(target_zip, unzipped_file, arcname=info.filename) |
| 1630 | |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1631 | common.ZipClose(target_zip) |
| 1632 | |
| 1633 | return target_file |
| 1634 | |
| 1635 | |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1636 | def GetTargetFilesZipWithoutPostinstallConfig(input_file): |
| 1637 | """Returns a target-files.zip that's not containing postinstall_config.txt. |
| 1638 | |
| 1639 | This allows brillo_update_payload script to skip writing all the postinstall |
| 1640 | hooks in the generated payload. The input target-files.zip file will be |
| 1641 | duplicated, with 'META/postinstall_config.txt' skipped. If input_file doesn't |
| 1642 | contain the postinstall_config.txt entry, the input file will be returned. |
| 1643 | |
| 1644 | Args: |
| 1645 | input_file: The input target-files.zip filename. |
| 1646 | |
| 1647 | Returns: |
| 1648 | The filename of target-files.zip that doesn't contain postinstall config. |
| 1649 | """ |
| 1650 | # We should only make a copy if postinstall_config entry exists. |
| 1651 | with zipfile.ZipFile(input_file, 'r') as input_zip: |
| 1652 | if POSTINSTALL_CONFIG not in input_zip.namelist(): |
| 1653 | return input_file |
| 1654 | |
| 1655 | target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip") |
| 1656 | shutil.copyfile(input_file, target_file) |
| 1657 | common.ZipDelete(target_file, POSTINSTALL_CONFIG) |
| 1658 | return target_file |
| 1659 | |
| 1660 | |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1661 | def WriteABOTAPackageWithBrilloScript(target_file, output_file, |
| 1662 | source_file=None): |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1663 | """Generates an Android OTA package that has A/B update payload.""" |
Tao Bao | dea0f8b | 2016-06-20 17:55:06 -0700 | [diff] [blame] | 1664 | # Stage the output zip package for package signing. |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1665 | if not OPTIONS.no_signing: |
| 1666 | staging_file = common.MakeTempFile(suffix='.zip') |
| 1667 | else: |
| 1668 | staging_file = output_file |
Tao Bao | a652c00 | 2018-03-01 19:31:38 -0800 | [diff] [blame] | 1669 | output_zip = zipfile.ZipFile(staging_file, "w", |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1670 | compression=zipfile.ZIP_DEFLATED) |
| 1671 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1672 | if source_file is not None: |
| 1673 | target_info = BuildInfo(OPTIONS.target_info_dict, OPTIONS.oem_dicts) |
| 1674 | source_info = BuildInfo(OPTIONS.source_info_dict, OPTIONS.oem_dicts) |
| 1675 | else: |
| 1676 | target_info = BuildInfo(OPTIONS.info_dict, OPTIONS.oem_dicts) |
| 1677 | source_info = None |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1678 | |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1679 | # Metadata to comply with Android OTA package format. |
Tao Bao | df3a48b | 2018-01-10 16:30:43 -0800 | [diff] [blame] | 1680 | metadata = GetPackageMetadata(target_info, source_info) |
Tao Bao | b31892e | 2017-02-07 11:21:17 -0800 | [diff] [blame] | 1681 | |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1682 | if OPTIONS.skip_postinstall: |
| 1683 | target_file = GetTargetFilesZipWithoutPostinstallConfig(target_file) |
| 1684 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1685 | # Generate payload. |
| 1686 | payload = Payload() |
| 1687 | |
| 1688 | # Enforce a max timestamp this payload can be applied on top of. |
Tao Bao | ff1b86e | 2017-10-03 14:17:57 -0700 | [diff] [blame] | 1689 | if OPTIONS.downgrade: |
Tao Bao | 2a12ed7 | 2018-01-22 11:35:00 -0800 | [diff] [blame] | 1690 | max_timestamp = source_info.GetBuildProp("ro.build.date.utc") |
Tao Bao | ff1b86e | 2017-10-03 14:17:57 -0700 | [diff] [blame] | 1691 | else: |
| 1692 | max_timestamp = metadata["post-timestamp"] |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1693 | additional_args = ["--max_timestamp", max_timestamp] |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1694 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1695 | payload.Generate(target_file, source_file, additional_args) |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1696 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1697 | # Sign the payload. |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1698 | payload_signer = PayloadSigner() |
| 1699 | payload.Sign(payload_signer) |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1700 | |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1701 | # Write the payload into output zip. |
| 1702 | payload.WriteToZip(output_zip) |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1703 | |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1704 | # Generate and include the secondary payload that installs secondary images |
| 1705 | # (e.g. system_other.img). |
| 1706 | if OPTIONS.include_secondary: |
| 1707 | # We always include a full payload for the secondary slot, even when |
| 1708 | # building an incremental OTA. See the comments for "--include_secondary". |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1709 | secondary_target_file = GetTargetFilesZipForSecondaryImages( |
| 1710 | target_file, OPTIONS.skip_postinstall) |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 1711 | secondary_payload = Payload(secondary=True) |
Tao Bao | db1fe41 | 2018-02-09 23:15:05 -0800 | [diff] [blame] | 1712 | secondary_payload.Generate(secondary_target_file, |
| 1713 | additional_args=additional_args) |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1714 | secondary_payload.Sign(payload_signer) |
Tao Bao | 667ff57 | 2018-02-10 00:02:40 -0800 | [diff] [blame] | 1715 | secondary_payload.WriteToZip(output_zip) |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1716 | |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 1717 | # If dm-verity is supported for the device, copy contents of care_map |
| 1718 | # into A/B OTA package. |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 1719 | target_zip = zipfile.ZipFile(target_file, "r") |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1720 | if (target_info.get("verity") == "true" or |
| 1721 | target_info.get("avb_enable") == "true"): |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 1722 | care_map_path = "META/care_map.txt" |
| 1723 | namelist = target_zip.namelist() |
| 1724 | if care_map_path in namelist: |
| 1725 | care_map_data = target_zip.read(care_map_path) |
Tao Bao | 40b1882 | 2018-01-30 18:19:04 -0800 | [diff] [blame] | 1726 | # In order to support streaming, care_map.txt needs to be packed as |
| 1727 | # ZIP_STORED. |
Tao Bao | c96316c | 2017-01-24 22:10:49 -0800 | [diff] [blame] | 1728 | common.ZipWriteStr(output_zip, "care_map.txt", care_map_data, |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1729 | compress_type=zipfile.ZIP_STORED) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 1730 | else: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1731 | print("Warning: cannot find care map file in target_file package") |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 1732 | |
Tao Bao | bcd1d16 | 2017-08-26 13:10:26 -0700 | [diff] [blame] | 1733 | AddCompatibilityArchiveIfTrebleEnabled( |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1734 | target_zip, output_zip, target_info, source_info) |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 1735 | |
Tao Bao | 21803d3 | 2017-04-19 10:16:09 -0700 | [diff] [blame] | 1736 | common.ZipClose(target_zip) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 1737 | |
Tao Bao | fe5b69a | 2018-03-02 09:47:43 -0800 | [diff] [blame] | 1738 | # We haven't written the metadata entry yet, which will be handled in |
| 1739 | # FinalizeMetadata(). |
Tao Bao | c96316c | 2017-01-24 22:10:49 -0800 | [diff] [blame] | 1740 | common.ZipClose(output_zip) |
| 1741 | |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 1742 | # AbOtaPropertyFiles intends to replace StreamingPropertyFiles, as it covers |
| 1743 | # all the info of the latter. However, system updaters and OTA servers need to |
| 1744 | # take time to switch to the new flag. We keep both of the flags for |
| 1745 | # P-timeframe, and will remove StreamingPropertyFiles in later release. |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1746 | needed_property_files = ( |
Tao Bao | 85f1698 | 2018-03-08 16:28:33 -0800 | [diff] [blame] | 1747 | AbOtaPropertyFiles(), |
Tao Bao | d3fc38a | 2018-03-08 16:09:01 -0800 | [diff] [blame] | 1748 | StreamingPropertyFiles(), |
| 1749 | ) |
| 1750 | FinalizeMetadata(metadata, staging_file, output_file, needed_property_files) |
Tao Bao | c96316c | 2017-01-24 22:10:49 -0800 | [diff] [blame] | 1751 | |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1752 | |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1753 | def main(argv): |
| 1754 | |
| 1755 | def option_handler(o, a): |
Tao Bao | 4b76a0e | 2017-10-31 12:13:33 -0700 | [diff] [blame] | 1756 | if o in ("-k", "--package_key"): |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1757 | OPTIONS.package_key = a |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1758 | elif o in ("-i", "--incremental_from"): |
| 1759 | OPTIONS.incremental_source = a |
Tao Bao | 43078aa | 2015-04-21 14:32:35 -0700 | [diff] [blame] | 1760 | elif o == "--full_radio": |
| 1761 | OPTIONS.full_radio = True |
leozwang | aa6c1a1 | 2015-08-14 10:57:58 -0700 | [diff] [blame] | 1762 | elif o == "--full_bootloader": |
| 1763 | OPTIONS.full_bootloader = True |
Tao Bao | 337633f | 2017-12-06 15:20:19 -0800 | [diff] [blame] | 1764 | elif o == "--wipe_user_data": |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 1765 | OPTIONS.wipe_user_data = True |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 1766 | elif o == "--downgrade": |
| 1767 | OPTIONS.downgrade = True |
| 1768 | OPTIONS.wipe_user_data = True |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 1769 | elif o == "--override_timestamp": |
| 1770 | OPTIONS.timestamp = True |
Michael Runge | 6e83611 | 2014-04-15 17:40:21 -0700 | [diff] [blame] | 1771 | elif o in ("-o", "--oem_settings"): |
Alain Vongsouvanh | 7f804ba | 2017-02-16 13:06:55 -0800 | [diff] [blame] | 1772 | OPTIONS.oem_source = a.split(',') |
Tao Bao | 8608cde | 2016-02-25 19:49:55 -0800 | [diff] [blame] | 1773 | elif o == "--oem_no_mount": |
| 1774 | OPTIONS.oem_no_mount = True |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 1775 | elif o in ("-e", "--extra_script"): |
| 1776 | OPTIONS.extra_script = a |
Martin Blumenstingl | 374e114 | 2014-05-31 20:42:55 +0200 | [diff] [blame] | 1777 | elif o in ("-t", "--worker_threads"): |
| 1778 | if a.isdigit(): |
| 1779 | OPTIONS.worker_threads = int(a) |
| 1780 | else: |
| 1781 | raise ValueError("Cannot parse value %r for option %r - only " |
| 1782 | "integers are allowed." % (a, o)) |
Doug Zongker | 9b23f2c | 2013-11-25 14:44:12 -0800 | [diff] [blame] | 1783 | elif o in ("-2", "--two_step"): |
| 1784 | OPTIONS.two_step = True |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1785 | elif o == "--include_secondary": |
| 1786 | OPTIONS.include_secondary = True |
Doug Zongker | 26e6619 | 2014-02-20 13:22:07 -0800 | [diff] [blame] | 1787 | elif o == "--no_signing": |
Takeshi Kanemoto | e153b34 | 2013-11-14 17:20:50 +0900 | [diff] [blame] | 1788 | OPTIONS.no_signing = True |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1789 | elif o == "--verify": |
Michael Runge | 63f01de | 2014-10-28 19:24:19 -0700 | [diff] [blame] | 1790 | OPTIONS.verify = True |
Doug Zongker | 26e6619 | 2014-02-20 13:22:07 -0800 | [diff] [blame] | 1791 | elif o == "--block": |
| 1792 | OPTIONS.block_based = True |
Doug Zongker | 2556848 | 2014-03-03 10:21:27 -0800 | [diff] [blame] | 1793 | elif o in ("-b", "--binary"): |
| 1794 | OPTIONS.updater_binary = a |
Tao Bao | 8dcf738 | 2015-05-21 14:09:49 -0700 | [diff] [blame] | 1795 | elif o == "--stash_threshold": |
| 1796 | try: |
| 1797 | OPTIONS.stash_threshold = float(a) |
| 1798 | except ValueError: |
| 1799 | raise ValueError("Cannot parse value %r for option %r - expecting " |
| 1800 | "a float" % (a, o)) |
Tao Bao | d62c603 | 2015-11-30 09:40:20 -0800 | [diff] [blame] | 1801 | elif o == "--log_diff": |
| 1802 | OPTIONS.log_diff = a |
Tao Bao | dea0f8b | 2016-06-20 17:55:06 -0700 | [diff] [blame] | 1803 | elif o == "--payload_signer": |
| 1804 | OPTIONS.payload_signer = a |
Baligh Uddin | 2abbbd0 | 2016-06-22 12:14:16 -0700 | [diff] [blame] | 1805 | elif o == "--payload_signer_args": |
| 1806 | OPTIONS.payload_signer_args = shlex.split(a) |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1807 | elif o == "--extracted_input_target_files": |
| 1808 | OPTIONS.extracted_input = a |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1809 | elif o == "--skip_postinstall": |
| 1810 | OPTIONS.skip_postinstall = True |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1811 | else: |
| 1812 | return False |
Doug Zongker | dbfaae5 | 2009-04-21 17:12:54 -0700 | [diff] [blame] | 1813 | return True |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1814 | |
| 1815 | args = common.ParseOptions(argv, __doc__, |
Tao Bao | 337633f | 2017-12-06 15:20:19 -0800 | [diff] [blame] | 1816 | extra_opts="b:k:i:d:e:t:2o:", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1817 | extra_long_opts=[ |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1818 | "package_key=", |
| 1819 | "incremental_from=", |
Tao Bao | 43078aa | 2015-04-21 14:32:35 -0700 | [diff] [blame] | 1820 | "full_radio", |
leozwang | aa6c1a1 | 2015-08-14 10:57:58 -0700 | [diff] [blame] | 1821 | "full_bootloader", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1822 | "wipe_user_data", |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 1823 | "downgrade", |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 1824 | "override_timestamp", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1825 | "extra_script=", |
| 1826 | "worker_threads=", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1827 | "two_step", |
Tao Bao | f7140c0 | 2018-01-30 17:09:24 -0800 | [diff] [blame] | 1828 | "include_secondary", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1829 | "no_signing", |
| 1830 | "block", |
| 1831 | "binary=", |
| 1832 | "oem_settings=", |
Tao Bao | 8608cde | 2016-02-25 19:49:55 -0800 | [diff] [blame] | 1833 | "oem_no_mount", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1834 | "verify", |
Tao Bao | 8dcf738 | 2015-05-21 14:09:49 -0700 | [diff] [blame] | 1835 | "stash_threshold=", |
Tao Bao | d62c603 | 2015-11-30 09:40:20 -0800 | [diff] [blame] | 1836 | "log_diff=", |
Tao Bao | dea0f8b | 2016-06-20 17:55:06 -0700 | [diff] [blame] | 1837 | "payload_signer=", |
Baligh Uddin | 2abbbd0 | 2016-06-22 12:14:16 -0700 | [diff] [blame] | 1838 | "payload_signer_args=", |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1839 | "extracted_input_target_files=", |
Tao Bao | 15a146a | 2018-02-21 16:06:59 -0800 | [diff] [blame] | 1840 | "skip_postinstall", |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1841 | ], extra_option_handler=option_handler) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1842 | |
| 1843 | if len(args) != 2: |
| 1844 | common.Usage(__doc__) |
| 1845 | sys.exit(1) |
| 1846 | |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 1847 | if OPTIONS.downgrade: |
| 1848 | # Sanity check to enforce a data wipe. |
| 1849 | if not OPTIONS.wipe_user_data: |
| 1850 | raise ValueError("Cannot downgrade without a data wipe") |
| 1851 | |
| 1852 | # We should only allow downgrading incrementals (as opposed to full). |
| 1853 | # Otherwise the device may go back from arbitrary build with this full |
| 1854 | # OTA package. |
| 1855 | if OPTIONS.incremental_source is None: |
Elliott Hughes | d8a52f9 | 2016-06-20 14:35:47 -0700 | [diff] [blame] | 1856 | raise ValueError("Cannot generate downgradable full OTAs") |
Tao Bao | 5d18256 | 2016-02-23 11:38:39 -0800 | [diff] [blame] | 1857 | |
Tao Bao | 3e6161a | 2017-02-28 11:48:48 -0800 | [diff] [blame] | 1858 | assert not (OPTIONS.downgrade and OPTIONS.timestamp), \ |
| 1859 | "Cannot have --downgrade AND --override_timestamp both" |
| 1860 | |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1861 | # Load the build info dicts from the zip directly or the extracted input |
| 1862 | # directory. We don't need to unzip the entire target-files zips, because they |
| 1863 | # won't be needed for A/B OTAs (brillo_update_payload does that on its own). |
| 1864 | # When loading the info dicts, we don't need to provide the second parameter |
| 1865 | # to common.LoadInfoDict(). Specifying the second parameter allows replacing |
| 1866 | # some properties with their actual paths, such as 'selinux_fc', |
| 1867 | # 'ramdisk_dir', which won't be used during OTA generation. |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1868 | if OPTIONS.extracted_input is not None: |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1869 | OPTIONS.info_dict = common.LoadInfoDict(OPTIONS.extracted_input) |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1870 | else: |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1871 | with zipfile.ZipFile(args[0], 'r') as input_zip: |
| 1872 | OPTIONS.info_dict = common.LoadInfoDict(input_zip) |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1873 | |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1874 | if OPTIONS.verbose: |
| 1875 | print("--- target info ---") |
| 1876 | common.DumpInfoDict(OPTIONS.info_dict) |
| 1877 | |
| 1878 | # Load the source build dict if applicable. |
| 1879 | if OPTIONS.incremental_source is not None: |
| 1880 | OPTIONS.target_info_dict = OPTIONS.info_dict |
| 1881 | with zipfile.ZipFile(OPTIONS.incremental_source, 'r') as source_zip: |
| 1882 | OPTIONS.source_info_dict = common.LoadInfoDict(source_zip) |
| 1883 | |
| 1884 | if OPTIONS.verbose: |
| 1885 | print("--- source info ---") |
| 1886 | common.DumpInfoDict(OPTIONS.source_info_dict) |
| 1887 | |
| 1888 | # Load OEM dicts if provided. |
Tao Bao | 481bab8 | 2017-12-21 11:23:09 -0800 | [diff] [blame] | 1889 | OPTIONS.oem_dicts = _LoadOemDicts(OPTIONS.oem_source) |
| 1890 | |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1891 | ab_update = OPTIONS.info_dict.get("ab_update") == "true" |
| 1892 | |
Christian Oder | f63e2cd | 2017-05-01 22:30:15 +0200 | [diff] [blame] | 1893 | # Use the default key to sign the package if not specified with package_key. |
| 1894 | # package_keys are needed on ab_updates, so always define them if an |
| 1895 | # ab_update is getting created. |
| 1896 | if not OPTIONS.no_signing or ab_update: |
| 1897 | if OPTIONS.package_key is None: |
| 1898 | OPTIONS.package_key = OPTIONS.info_dict.get( |
| 1899 | "default_system_dev_certificate", |
| 1900 | "build/target/product/security/testkey") |
| 1901 | # Get signing keys |
| 1902 | OPTIONS.key_passwords = common.GetKeyPasswords([OPTIONS.package_key]) |
| 1903 | |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1904 | if ab_update: |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1905 | WriteABOTAPackageWithBrilloScript( |
| 1906 | target_file=args[0], |
| 1907 | output_file=args[1], |
| 1908 | source_file=OPTIONS.incremental_source) |
| 1909 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1910 | print("done.") |
Tao Bao | c098e9e | 2016-01-07 13:03:56 -0800 | [diff] [blame] | 1911 | return |
| 1912 | |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1913 | # Sanity check the loaded info dicts first. |
| 1914 | if OPTIONS.info_dict.get("no_recovery") == "true": |
| 1915 | raise common.ExternalError( |
| 1916 | "--- target build has specified no recovery ---") |
| 1917 | |
| 1918 | # Non-A/B OTAs rely on /cache partition to store temporary files. |
| 1919 | cache_size = OPTIONS.info_dict.get("cache_size") |
| 1920 | if cache_size is None: |
| 1921 | print("--- can't determine the cache partition size ---") |
| 1922 | OPTIONS.cache_size = cache_size |
| 1923 | |
Doug Zongker | 1c390a2 | 2009-05-14 19:06:36 -0700 | [diff] [blame] | 1924 | if OPTIONS.extra_script is not None: |
| 1925 | OPTIONS.extra_script = open(OPTIONS.extra_script).read() |
| 1926 | |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1927 | if OPTIONS.extracted_input is not None: |
| 1928 | OPTIONS.input_tmp = OPTIONS.extracted_input |
Dan Willemsen | cea5cd2 | 2017-03-21 14:44:27 -0700 | [diff] [blame] | 1929 | else: |
| 1930 | print("unzipping target target-files...") |
Tao Bao | dba59ee | 2018-01-09 13:21:02 -0800 | [diff] [blame] | 1931 | OPTIONS.input_tmp = common.UnzipTemp(args[0], UNZIP_PATTERN) |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1932 | OPTIONS.target_tmp = OPTIONS.input_tmp |
Doug Zongker | fdd8e69 | 2009-08-03 17:27:48 -0700 | [diff] [blame] | 1933 | |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1934 | # If the caller explicitly specified the device-specific extensions path via |
| 1935 | # -s / --device_specific, use that. Otherwise, use META/releasetools.py if it |
| 1936 | # is present in the target target_files. Otherwise, take the path of the file |
| 1937 | # from 'tool_extensions' in the info dict and look for that in the local |
| 1938 | # filesystem, relative to the current directory. |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1939 | if OPTIONS.device_specific is None: |
Doug Zongker | eb0a78a | 2014-01-27 10:01:06 -0800 | [diff] [blame] | 1940 | from_input = os.path.join(OPTIONS.input_tmp, "META", "releasetools.py") |
| 1941 | if os.path.exists(from_input): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1942 | print("(using device-specific extensions from target_files)") |
Doug Zongker | eb0a78a | 2014-01-27 10:01:06 -0800 | [diff] [blame] | 1943 | OPTIONS.device_specific = from_input |
| 1944 | else: |
Tao Bao | 2db1385 | 2018-01-08 22:28:57 -0800 | [diff] [blame] | 1945 | OPTIONS.device_specific = OPTIONS.info_dict.get("tool_extensions") |
Doug Zongker | eb0a78a | 2014-01-27 10:01:06 -0800 | [diff] [blame] | 1946 | |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1947 | if OPTIONS.device_specific is not None: |
Doug Zongker | eb0a78a | 2014-01-27 10:01:06 -0800 | [diff] [blame] | 1948 | OPTIONS.device_specific = os.path.abspath(OPTIONS.device_specific) |
Doug Zongker | 3797473 | 2010-09-16 17:44:38 -0700 | [diff] [blame] | 1949 | |
Tao Bao | 767e3ac | 2015-11-10 12:19:19 -0800 | [diff] [blame] | 1950 | # Generate a full OTA. |
Tao Bao | 0c6a414 | 2017-12-15 10:11:19 -0800 | [diff] [blame] | 1951 | if OPTIONS.incremental_source is None: |
Tao Bao | dba59ee | 2018-01-09 13:21:02 -0800 | [diff] [blame] | 1952 | with zipfile.ZipFile(args[0], 'r') as input_zip: |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1953 | WriteFullOTAPackage( |
| 1954 | input_zip, |
| 1955 | output_file=args[1]) |
Tao Bao | 767e3ac | 2015-11-10 12:19:19 -0800 | [diff] [blame] | 1956 | |
Tao Bao | 32b80dc | 2018-01-08 22:50:47 -0800 | [diff] [blame] | 1957 | # Generate an incremental OTA. |
Tao Bao | 767e3ac | 2015-11-10 12:19:19 -0800 | [diff] [blame] | 1958 | else: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1959 | print("unzipping source target-files...") |
Tao Bao | dba59ee | 2018-01-09 13:21:02 -0800 | [diff] [blame] | 1960 | OPTIONS.source_tmp = common.UnzipTemp( |
| 1961 | OPTIONS.incremental_source, UNZIP_PATTERN) |
| 1962 | with zipfile.ZipFile(args[0], 'r') as input_zip, \ |
| 1963 | zipfile.ZipFile(OPTIONS.incremental_source, 'r') as source_zip: |
Tao Bao | 491d7e2 | 2018-02-21 13:17:22 -0800 | [diff] [blame^] | 1964 | WriteBlockIncrementalOTAPackage( |
| 1965 | input_zip, |
| 1966 | source_zip, |
| 1967 | output_file=args[1]) |
Tao Bao | 32b80dc | 2018-01-08 22:50:47 -0800 | [diff] [blame] | 1968 | |
| 1969 | if OPTIONS.log_diff: |
| 1970 | with open(OPTIONS.log_diff, 'w') as out_file: |
Tao Bao | d62c603 | 2015-11-30 09:40:20 -0800 | [diff] [blame] | 1971 | import target_files_diff |
Tao Bao | 32b80dc | 2018-01-08 22:50:47 -0800 | [diff] [blame] | 1972 | target_files_diff.recursiveDiff( |
| 1973 | '', OPTIONS.source_tmp, OPTIONS.input_tmp, out_file) |
Doug Zongker | 62d4f18 | 2014-08-04 16:06:43 -0700 | [diff] [blame] | 1974 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1975 | print("done.") |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1976 | |
| 1977 | |
| 1978 | if __name__ == '__main__': |
| 1979 | try: |
Ying Wang | 7e6d4e4 | 2010-12-13 16:25:36 -0800 | [diff] [blame] | 1980 | common.CloseInheritedPipes() |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1981 | main(sys.argv[1:]) |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 1982 | except common.ExternalError as e: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 1983 | print("\n ERROR: %s\n" % (e,)) |
Doug Zongker | eef3944 | 2009-04-02 12:14:19 -0700 | [diff] [blame] | 1984 | sys.exit(1) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 1985 | finally: |
| 1986 | common.Cleanup() |