blob: 849679edfb9e977129d60b09f23730b621a76852 [file] [log] [blame]
Doug Zongkereef39442009-04-02 12:14:19 -07001#!/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"""
Tao Bao30df8b42018-04-23 15:32:53 -070018Given a target-files zipfile, produces an OTA package that installs that build.
19An incremental OTA is produced if -i is given, otherwise a full OTA is produced.
Doug Zongkereef39442009-04-02 12:14:19 -070020
Tao Bao30df8b42018-04-23 15:32:53 -070021Usage: ota_from_target_files [options] input_target_files output_ota_package
Doug Zongkereef39442009-04-02 12:14:19 -070022
Tao Bao30df8b42018-04-23 15:32:53 -070023Common options that apply to both of non-A/B and A/B OTAs
24
25 --downgrade
26 Intentionally generate an incremental OTA that updates from a newer build
Tao Baofaa8e0b2018-04-12 14:31:43 -070027 to an older one (e.g. downgrading from P preview back to O MR1).
28 "ota-downgrade=yes" will be set in the package metadata file. A data wipe
29 will always be enforced when using this flag, so "ota-wipe=yes" will also
30 be included in the metadata file. The update-binary in the source build
31 will be used in the OTA package, unless --binary flag is specified. Please
32 also check the comment for --override_timestamp below.
Tao Bao30df8b42018-04-23 15:32:53 -070033
34 -i (--incremental_from) <file>
35 Generate an incremental OTA using the given target-files zip as the
36 starting build.
37
38 -k (--package_key) <key>
39 Key to use to sign the package (default is the value of
40 default_system_dev_certificate from the input target-files's
Tao Bao59cf0c52019-06-25 10:04:24 -070041 META/misc_info.txt, or "build/make/target/product/security/testkey" if
42 that value is not specified).
Doug Zongkerafb32ea2011-09-22 10:28:04 -070043
44 For incremental OTAs, the default value is based on the source
45 target-file, not the target build.
Doug Zongkereef39442009-04-02 12:14:19 -070046
Tao Bao30df8b42018-04-23 15:32:53 -070047 --override_timestamp
48 Intentionally generate an incremental OTA that updates from a newer build
Tao Baofaa8e0b2018-04-12 14:31:43 -070049 to an older one (based on timestamp comparison), by setting the downgrade
50 flag in the package metadata. This differs from --downgrade flag, as we
51 don't enforce a data wipe with this flag. Because we know for sure this is
52 NOT an actual downgrade case, but two builds happen to be cut in a reverse
53 order (e.g. from two branches). A legit use case is that we cut a new
54 build C (after having A and B), but want to enfore an update path of A ->
55 C -> B. Specifying --downgrade may not help since that would enforce a
56 data wipe for C -> B update.
57
58 We used to set a fake timestamp in the package metadata for this flow. But
59 now we consolidate the two cases (i.e. an actual downgrade, or a downgrade
60 based on timestamp) with the same "ota-downgrade=yes" flag, with the
61 difference being whether "ota-wipe=yes" is set.
Doug Zongkereef39442009-04-02 12:14:19 -070062
Tao Bao30df8b42018-04-23 15:32:53 -070063 --wipe_user_data
64 Generate an OTA package that will wipe the user data partition when
65 installed.
66
Yifan Hong50e79542018-11-08 17:44:12 -080067 --retrofit_dynamic_partitions
68 Generates an OTA package that updates a device to support dynamic
69 partitions (default False). This flag is implied when generating
70 an incremental OTA where the base build does not support dynamic
71 partitions but the target build does. For A/B, when this flag is set,
72 --skip_postinstall is implied.
73
xunchangabfa2652019-02-19 16:27:10 -080074 --skip_compatibility_check
Yifan Hong9276cf02019-08-21 16:37:04 -070075 Skip checking compatibility of the input target files package.
xunchangabfa2652019-02-19 16:27:10 -080076
xunchang1cfe2512019-02-19 14:14:48 -080077 --output_metadata_path
78 Write a copy of the metadata to a separate file. Therefore, users can
79 read the post build fingerprint without extracting the OTA package.
80
Yifan Hong65afc072020-04-17 10:08:10 -070081 --force_non_ab
82 This flag can only be set on an A/B device that also supports non-A/B
83 updates. Implies --two_step.
84 If set, generate that non-A/B update package.
85 If not set, generates A/B package for A/B device and non-A/B package for
86 non-A/B device.
87
Hongguang Chen49ab1b902020-10-19 14:15:43 -070088 -o (--oem_settings) <main_file[,additional_files...]>
89 Comma separated list of files used to specify the expected OEM-specific
90 properties on the OEM partition of the intended device. Multiple expected
91 values can be used by providing multiple files. Only the first dict will
92 be used to compute fingerprint, while the rest will be used to assert
93 OEM-specific properties.
94
Tao Bao30df8b42018-04-23 15:32:53 -070095Non-A/B OTA specific options
96
97 -b (--binary) <file>
98 Use the given binary as the update-binary in the output package, instead
99 of the binary in the build's target_files. Use for development only.
100
101 --block
102 Generate a block-based OTA for non-A/B device. We have deprecated the
103 support for file-based OTA since O. Block-based OTA will be used by
104 default for all non-A/B devices. Keeping this flag here to not break
105 existing callers.
106
107 -e (--extra_script) <file>
108 Insert the contents of file at the end of the update script.
Tao Bao43078aa2015-04-21 14:32:35 -0700109
leozwangaa6c1a12015-08-14 10:57:58 -0700110 --full_bootloader
111 Similar to --full_radio. When generating an incremental OTA, always
112 include a full copy of bootloader image.
113
Tao Bao30df8b42018-04-23 15:32:53 -0700114 --full_radio
115 When generating an incremental OTA, always include a full copy of radio
116 image. This option is only meaningful when -i is specified, because a full
117 radio is always included in a full OTA if applicable.
Michael Runge63f01de2014-10-28 19:24:19 -0700118
Tao Bao30df8b42018-04-23 15:32:53 -0700119 --log_diff <file>
120 Generate a log file that shows the differences in the source and target
121 builds for an incremental package. This option is only meaningful when -i
122 is specified.
123
Tao Bao8608cde2016-02-25 19:49:55 -0800124 --oem_no_mount
Tao Bao30df8b42018-04-23 15:32:53 -0700125 For devices with OEM-specific properties but without an OEM partition, do
126 not mount the OEM partition in the updater-script. This should be very
127 rarely used, since it's expected to have a dedicated OEM partition for
128 OEM-specific properties. Only meaningful when -o is specified.
Tao Bao8608cde2016-02-25 19:49:55 -0800129
Tao Bao30df8b42018-04-23 15:32:53 -0700130 --stash_threshold <float>
131 Specify the threshold that will be used to compute the maximum allowed
132 stash size (defaults to 0.8).
Doug Zongkerdbfaae52009-04-21 17:12:54 -0700133
Tao Bao30df8b42018-04-23 15:32:53 -0700134 -t (--worker_threads) <int>
135 Specify the number of worker-threads that will be used when generating
136 patches for incremental updates (defaults to 3).
Tao Bao3e6161a2017-02-28 11:48:48 -0800137
Tao Bao30df8b42018-04-23 15:32:53 -0700138 --verify
139 Verify the checksums of the updated system and vendor (if any) partitions.
140 Non-A/B incremental OTAs only.
Doug Zongker1c390a22009-05-14 19:06:36 -0700141
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800142 -2 (--two_step)
Tao Bao30df8b42018-04-23 15:32:53 -0700143 Generate a 'two-step' OTA package, where recovery is updated first, so
144 that any changes made to the system partition are done using the new
145 recovery (new kernel, etc.).
146
147A/B OTA specific options
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800148
Tianjie Xu1b079832019-08-28 12:19:23 -0700149 --disable_fec_computation
150 Disable the on device FEC data computation for incremental updates.
151
Tao Baof7140c02018-01-30 17:09:24 -0800152 --include_secondary
153 Additionally include the payload for secondary slot images (default:
154 False). Only meaningful when generating A/B OTAs.
155
156 By default, an A/B OTA package doesn't contain the images for the
157 secondary slot (e.g. system_other.img). Specifying this flag allows
158 generating a separate payload that will install secondary slot images.
159
160 Such a package needs to be applied in a two-stage manner, with a reboot
161 in-between. During the first stage, the updater applies the primary
162 payload only. Upon finishing, it reboots the device into the newly updated
163 slot. It then continues to install the secondary payload to the inactive
164 slot, but without switching the active slot at the end (needs the matching
165 support in update_engine, i.e. SWITCH_SLOT_ON_REBOOT flag).
166
167 Due to the special install procedure, the secondary payload will be always
168 generated as a full payload.
169
Tao Baodea0f8b2016-06-20 17:55:06 -0700170 --payload_signer <signer>
171 Specify the signer when signing the payload and metadata for A/B OTAs.
172 By default (i.e. without this flag), it calls 'openssl pkeyutl' to sign
173 with the package private key. If the private key cannot be accessed
174 directly, a payload signer that knows how to do that should be specified.
175 The signer will be supplied with "-inkey <path_to_key>",
176 "-in <input_file>" and "-out <output_file>" parameters.
Baligh Uddin2abbbd02016-06-22 12:14:16 -0700177
178 --payload_signer_args <args>
179 Specify the arguments needed for payload signer.
Tao Bao15a146a2018-02-21 16:06:59 -0800180
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700181 --payload_signer_maximum_signature_size <signature_size>
182 The maximum signature size (in bytes) that would be generated by the given
183 payload signer. Only meaningful when custom payload signer is specified
184 via '--payload_signer'.
185 If the signer uses a RSA key, this should be the number of bytes to
186 represent the modulus. If it uses an EC key, this is the size of a
187 DER-encoded ECDSA signature.
188
xunchang376cc7c2019-04-08 23:04:58 -0700189 --payload_signer_key_size <key_size>
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700190 Deprecated. Use the '--payload_signer_maximum_signature_size' instead.
xunchang376cc7c2019-04-08 23:04:58 -0700191
Tianjied6867162020-05-10 14:30:13 -0700192 --boot_variable_file <path>
193 A file that contains the possible values of ro.boot.* properties. It's
194 used to calculate the possible runtime fingerprints when some
195 ro.product.* properties are overridden by the 'import' statement.
196 The file expects one property per line, and each line has the following
197 format: 'prop_name=value1,value2'. e.g. 'ro.boot.product.sku=std,pro'
198
Tao Bao15a146a2018-02-21 16:06:59 -0800199 --skip_postinstall
200 Skip the postinstall hooks when generating an A/B OTA package (default:
201 False). Note that this discards ALL the hooks, including non-optional
202 ones. Should only be used if caller knows it's safe to do so (e.g. all the
203 postinstall work is to dexopt apps and a data wipe will happen immediately
204 after). Only meaningful when generating A/B OTAs.
Yifan Hong38ab4d82020-06-18 15:19:56 -0700205
206 --partial "<PARTITION> [<PARTITION>[...]]"
207 Generate partial updates, overriding ab_partitions list with the given
208 list.
Hongguang Chen49ab1b902020-10-19 14:15:43 -0700209
210 --custom_image <custom_partition=custom_image>
211 Use the specified custom_image to update custom_partition when generating
212 an A/B OTA package. e.g. "--custom_image oem=oem.img --custom_image
213 cus=cus_test.img"
David Anderson45b42302021-03-11 12:58:32 -0800214
215 --disable_vabc
216 Disable Virtual A/B Compression, for builds that have compression enabled
217 by default.
Kelvin Zhang2a3e5b12021-05-04 18:20:34 -0400218
219 --vabc_downgrade
220 Don't disable Virtual A/B Compression for downgrading OTAs.
221 For VABC downgrades, we must finish merging before doing data wipe, and
222 since data wipe is required for downgrading OTA, this might cause long
223 wait time in recovery.
Doug Zongkereef39442009-04-02 12:14:19 -0700224"""
225
Tao Bao89fbb0f2017-01-10 10:47:58 -0800226from __future__ import print_function
227
Tao Bao32fcdab2018-10-12 10:30:39 -0700228import logging
Doug Zongkerfc44a512014-08-26 13:10:25 -0700229import multiprocessing
Kelvin Zhang65029a22020-11-03 10:07:51 -0500230import os
Tao Bao2dd1c482017-02-03 16:49:39 -0800231import os.path
Kelvin Zhang65029a22020-11-03 10:07:51 -0500232import re
Baligh Uddin2abbbd02016-06-22 12:14:16 -0700233import shlex
Tao Bao15a146a2018-02-21 16:06:59 -0800234import shutil
Tao Bao85f16982018-03-08 16:28:33 -0800235import struct
Kelvin Zhang65029a22020-11-03 10:07:51 -0500236import subprocess
Tao Bao481bab82017-12-21 11:23:09 -0800237import sys
Doug Zongkereef39442009-04-02 12:14:19 -0700238import zipfile
239
Kelvin Zhang766eea72021-06-03 09:36:08 -0400240import care_map_pb2
Doug Zongkereef39442009-04-02 12:14:19 -0700241import common
Kelvin Zhang2e417382020-08-20 11:33:11 -0400242import ota_utils
Kelvin Zhang22c687c2021-01-21 10:51:57 -0500243from ota_utils import (UNZIP_PATTERN, FinalizeMetadata, GetPackageMetadata,
Kelvin Zhang05ff7052021-02-10 09:13:26 -0500244 PropertyFiles, SECURITY_PATCH_LEVEL_PROP_NAME)
Kelvin Zhang0876c412020-06-23 15:06:58 -0400245import target_files_diff
Kelvin Zhangcff4d762020-07-29 16:37:51 -0400246from check_target_files_vintf import CheckVintfIfTrebleEnabled
247from non_ab_ota import GenerateNonAbOtaPackage
Kelvin Zhang0876c412020-06-23 15:06:58 -0400248
Tao Bao481bab82017-12-21 11:23:09 -0800249if sys.hexversion < 0x02070000:
250 print("Python 2.7 or newer is required.", file=sys.stderr)
251 sys.exit(1)
252
Tao Bao32fcdab2018-10-12 10:30:39 -0700253logger = logging.getLogger(__name__)
Tao Bao481bab82017-12-21 11:23:09 -0800254
Kelvin Zhang2e417382020-08-20 11:33:11 -0400255OPTIONS = ota_utils.OPTIONS
Michael Runge63f01de2014-10-28 19:24:19 -0700256OPTIONS.verify = False
Doug Zongkereef39442009-04-02 12:14:19 -0700257OPTIONS.patch_threshold = 0.95
Doug Zongkerdbfaae52009-04-21 17:12:54 -0700258OPTIONS.wipe_user_data = False
Doug Zongker1c390a22009-05-14 19:06:36 -0700259OPTIONS.extra_script = None
Doug Zongkerfc44a512014-08-26 13:10:25 -0700260OPTIONS.worker_threads = multiprocessing.cpu_count() // 2
261if OPTIONS.worker_threads == 0:
262 OPTIONS.worker_threads = 1
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800263OPTIONS.two_step = False
Tao Baof7140c02018-01-30 17:09:24 -0800264OPTIONS.include_secondary = False
Tao Bao457cbf62017-03-06 09:56:01 -0800265OPTIONS.block_based = True
Doug Zongker25568482014-03-03 10:21:27 -0800266OPTIONS.updater_binary = None
Tianjie Xu9afb2212020-05-10 21:48:15 +0000267OPTIONS.oem_dicts = None
Michael Runge6e836112014-04-15 17:40:21 -0700268OPTIONS.oem_source = None
Tao Bao8608cde2016-02-25 19:49:55 -0800269OPTIONS.oem_no_mount = False
Tao Bao43078aa2015-04-21 14:32:35 -0700270OPTIONS.full_radio = False
leozwangaa6c1a12015-08-14 10:57:58 -0700271OPTIONS.full_bootloader = False
Tao Baod47d8e12015-05-21 14:09:49 -0700272# Stash size cannot exceed cache_size * threshold.
273OPTIONS.cache_size = None
274OPTIONS.stash_threshold = 0.8
Tao Baod62c6032015-11-30 09:40:20 -0800275OPTIONS.log_diff = None
Tao Baodea0f8b2016-06-20 17:55:06 -0700276OPTIONS.payload_signer = None
Baligh Uddin2abbbd02016-06-22 12:14:16 -0700277OPTIONS.payload_signer_args = []
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700278OPTIONS.payload_signer_maximum_signature_size = None
Tao Bao5f8ff932017-03-21 22:35:00 -0700279OPTIONS.extracted_input = None
Tao Bao15a146a2018-02-21 16:06:59 -0800280OPTIONS.skip_postinstall = False
xunchangabfa2652019-02-19 16:27:10 -0800281OPTIONS.skip_compatibility_check = False
Tianjie Xu1b079832019-08-28 12:19:23 -0700282OPTIONS.disable_fec_computation = False
Kelvin Zhangcaf7bbc2020-11-20 14:09:42 -0500283OPTIONS.disable_verity_computation = False
Yifan Hong38ab4d82020-06-18 15:19:56 -0700284OPTIONS.partial = None
Hongguang Chen49ab1b902020-10-19 14:15:43 -0700285OPTIONS.custom_images = {}
Kelvin Zhangbbfa1822021-02-03 17:19:44 -0500286OPTIONS.disable_vabc = False
Kelvin Zhang80ff4662021-02-08 19:57:57 -0500287OPTIONS.spl_downgrade = False
Kelvin Zhang2a3e5b12021-05-04 18:20:34 -0400288OPTIONS.vabc_downgrade = False
Tao Bao8dcf7382015-05-21 14:09:49 -0700289
Tao Bao15a146a2018-02-21 16:06:59 -0800290POSTINSTALL_CONFIG = 'META/postinstall_config.txt'
Yifan Hong50e79542018-11-08 17:44:12 -0800291DYNAMIC_PARTITION_INFO = 'META/dynamic_partitions_info.txt'
Yifan Hongb433eba2019-03-06 12:42:53 -0800292AB_PARTITIONS = 'META/ab_partitions.txt'
Kelvin Zhangcff4d762020-07-29 16:37:51 -0400293
Tao Baof0c4aa22018-04-30 20:29:30 -0700294# Files to be unzipped for target diffing purpose.
295TARGET_DIFFING_UNZIP_PATTERN = ['BOOT', 'RECOVERY', 'SYSTEM/*', 'VENDOR/*',
Yifan Hongcfb917a2020-05-07 14:58:20 -0700296 'PRODUCT/*', 'SYSTEM_EXT/*', 'ODM/*',
Yifan Hongf496f1b2020-07-15 16:52:59 -0700297 'VENDOR_DLKM/*', 'ODM_DLKM/*']
Yifan Hongb433eba2019-03-06 12:42:53 -0800298RETROFIT_DAP_UNZIP_PATTERN = ['OTA/super_*.img', AB_PARTITIONS]
Tao Bao3e759462019-09-17 22:43:11 -0700299
300# Images to be excluded from secondary payload. We essentially only keep
301# 'system_other' and bootloader partitions.
302SECONDARY_PAYLOAD_SKIPPED_IMAGES = [
Yifan Hongc08cbf02020-09-15 19:07:39 +0000303 'boot', 'dtbo', 'modem', 'odm', 'odm_dlkm', 'product', 'radio', 'recovery',
Tianjiec3850642020-05-13 14:47:31 -0700304 'system_ext', 'vbmeta', 'vbmeta_system', 'vbmeta_vendor', 'vendor',
Yifan Hongf496f1b2020-07-15 16:52:59 -0700305 'vendor_boot']
Tao Bao6b0b2f92017-03-05 11:38:11 -0800306
Kelvin Zhang05ff7052021-02-10 09:13:26 -0500307
Tao Baofabe0832018-01-17 15:52:28 -0800308class PayloadSigner(object):
309 """A class that wraps the payload signing works.
310
311 When generating a Payload, hashes of the payload and metadata files will be
312 signed with the device key, either by calling an external payload signer or
313 by calling openssl with the package key. This class provides a unified
314 interface, so that callers can just call PayloadSigner.Sign().
315
316 If an external payload signer has been specified (OPTIONS.payload_signer), it
317 calls the signer with the provided args (OPTIONS.payload_signer_args). Note
318 that the signing key should be provided as part of the payload_signer_args.
319 Otherwise without an external signer, it uses the package key
320 (OPTIONS.package_key) and calls openssl for the signing works.
321 """
322
323 def __init__(self):
324 if OPTIONS.payload_signer is None:
325 # Prepare the payload signing key.
326 private_key = OPTIONS.package_key + OPTIONS.private_key_suffix
327 pw = OPTIONS.key_passwords[OPTIONS.package_key]
328
329 cmd = ["openssl", "pkcs8", "-in", private_key, "-inform", "DER"]
330 cmd.extend(["-passin", "pass:" + pw] if pw else ["-nocrypt"])
331 signing_key = common.MakeTempFile(prefix="key-", suffix=".key")
332 cmd.extend(["-out", signing_key])
Tao Baobec89c12018-10-15 11:53:28 -0700333 common.RunAndCheckOutput(cmd, verbose=False)
Tao Baofabe0832018-01-17 15:52:28 -0800334
335 self.signer = "openssl"
336 self.signer_args = ["pkeyutl", "-sign", "-inkey", signing_key,
337 "-pkeyopt", "digest:sha256"]
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700338 self.maximum_signature_size = self._GetMaximumSignatureSizeInBytes(
339 signing_key)
Tao Baofabe0832018-01-17 15:52:28 -0800340 else:
341 self.signer = OPTIONS.payload_signer
342 self.signer_args = OPTIONS.payload_signer_args
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700343 if OPTIONS.payload_signer_maximum_signature_size:
344 self.maximum_signature_size = int(
345 OPTIONS.payload_signer_maximum_signature_size)
xunchang376cc7c2019-04-08 23:04:58 -0700346 else:
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700347 # The legacy config uses RSA2048 keys.
348 logger.warning("The maximum signature size for payload signer is not"
349 " set, default to 256 bytes.")
350 self.maximum_signature_size = 256
xunchang376cc7c2019-04-08 23:04:58 -0700351
352 @staticmethod
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700353 def _GetMaximumSignatureSizeInBytes(signing_key):
354 out_signature_size_file = common.MakeTempFile("signature_size")
355 cmd = ["delta_generator", "--out_maximum_signature_size_file={}".format(
356 out_signature_size_file), "--private_key={}".format(signing_key)]
357 common.RunAndCheckOutput(cmd)
358 with open(out_signature_size_file) as f:
359 signature_size = f.read().rstrip()
Luca Stefani88e1a142020-03-27 14:05:12 +0100360 logger.info("%s outputs the maximum signature size: %s", cmd[0],
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700361 signature_size)
362 return int(signature_size)
Tao Baofabe0832018-01-17 15:52:28 -0800363
364 def Sign(self, in_file):
365 """Signs the given input file. Returns the output filename."""
366 out_file = common.MakeTempFile(prefix="signed-", suffix=".bin")
367 cmd = [self.signer] + self.signer_args + ['-in', in_file, '-out', out_file]
Tao Bao718faed2019-08-02 13:24:19 -0700368 common.RunAndCheckOutput(cmd)
Tao Baofabe0832018-01-17 15:52:28 -0800369 return out_file
370
371
Tao Bao40b18822018-01-30 18:19:04 -0800372class Payload(object):
373 """Manages the creation and the signing of an A/B OTA Payload."""
374
375 PAYLOAD_BIN = 'payload.bin'
376 PAYLOAD_PROPERTIES_TXT = 'payload_properties.txt'
Tao Baof7140c02018-01-30 17:09:24 -0800377 SECONDARY_PAYLOAD_BIN = 'secondary/payload.bin'
378 SECONDARY_PAYLOAD_PROPERTIES_TXT = 'secondary/payload_properties.txt'
Tao Bao40b18822018-01-30 18:19:04 -0800379
Tao Bao667ff572018-02-10 00:02:40 -0800380 def __init__(self, secondary=False):
381 """Initializes a Payload instance.
382
383 Args:
384 secondary: Whether it's generating a secondary payload (default: False).
385 """
Tao Bao40b18822018-01-30 18:19:04 -0800386 self.payload_file = None
387 self.payload_properties = None
Tao Bao667ff572018-02-10 00:02:40 -0800388 self.secondary = secondary
Tao Bao40b18822018-01-30 18:19:04 -0800389
Tao Baof0c4aa22018-04-30 20:29:30 -0700390 def _Run(self, cmd): # pylint: disable=no-self-use
Tao Bao718faed2019-08-02 13:24:19 -0700391 # Don't pipe (buffer) the output if verbose is set. Let
392 # brillo_update_payload write to stdout/stderr directly, so its progress can
393 # be monitored.
394 if OPTIONS.verbose:
395 common.RunAndCheckOutput(cmd, stdout=None, stderr=None)
396 else:
397 common.RunAndCheckOutput(cmd)
398
Tao Bao40b18822018-01-30 18:19:04 -0800399 def Generate(self, target_file, source_file=None, additional_args=None):
400 """Generates a payload from the given target-files zip(s).
401
402 Args:
403 target_file: The filename of the target build target-files zip.
404 source_file: The filename of the source build target-files zip; or None if
405 generating a full OTA.
406 additional_args: A list of additional args that should be passed to
407 brillo_update_payload script; or None.
408 """
409 if additional_args is None:
410 additional_args = []
411
412 payload_file = common.MakeTempFile(prefix="payload-", suffix=".bin")
413 cmd = ["brillo_update_payload", "generate",
414 "--payload", payload_file,
415 "--target_image", target_file]
416 if source_file is not None:
417 cmd.extend(["--source_image", source_file])
Tianjie Xu1b079832019-08-28 12:19:23 -0700418 if OPTIONS.disable_fec_computation:
419 cmd.extend(["--disable_fec_computation", "true"])
Kelvin Zhangcaf7bbc2020-11-20 14:09:42 -0500420 if OPTIONS.disable_verity_computation:
421 cmd.extend(["--disable_verity_computation", "true"])
Tao Bao40b18822018-01-30 18:19:04 -0800422 cmd.extend(additional_args)
Tao Bao718faed2019-08-02 13:24:19 -0700423 self._Run(cmd)
Tao Bao40b18822018-01-30 18:19:04 -0800424
425 self.payload_file = payload_file
426 self.payload_properties = None
427
428 def Sign(self, payload_signer):
429 """Generates and signs the hashes of the payload and metadata.
430
431 Args:
432 payload_signer: A PayloadSigner() instance that serves the signing work.
433
434 Raises:
435 AssertionError: On any failure when calling brillo_update_payload script.
436 """
437 assert isinstance(payload_signer, PayloadSigner)
438
439 # 1. Generate hashes of the payload and metadata files.
440 payload_sig_file = common.MakeTempFile(prefix="sig-", suffix=".bin")
441 metadata_sig_file = common.MakeTempFile(prefix="sig-", suffix=".bin")
442 cmd = ["brillo_update_payload", "hash",
443 "--unsigned_payload", self.payload_file,
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700444 "--signature_size", str(payload_signer.maximum_signature_size),
Tao Bao40b18822018-01-30 18:19:04 -0800445 "--metadata_hash_file", metadata_sig_file,
446 "--payload_hash_file", payload_sig_file]
Tao Bao718faed2019-08-02 13:24:19 -0700447 self._Run(cmd)
Tao Bao40b18822018-01-30 18:19:04 -0800448
449 # 2. Sign the hashes.
450 signed_payload_sig_file = payload_signer.Sign(payload_sig_file)
451 signed_metadata_sig_file = payload_signer.Sign(metadata_sig_file)
452
453 # 3. Insert the signatures back into the payload file.
454 signed_payload_file = common.MakeTempFile(prefix="signed-payload-",
455 suffix=".bin")
456 cmd = ["brillo_update_payload", "sign",
457 "--unsigned_payload", self.payload_file,
458 "--payload", signed_payload_file,
Tianjie Xu21e6deb2019-10-07 18:01:00 -0700459 "--signature_size", str(payload_signer.maximum_signature_size),
Tao Bao40b18822018-01-30 18:19:04 -0800460 "--metadata_signature_file", signed_metadata_sig_file,
461 "--payload_signature_file", signed_payload_sig_file]
Tao Bao718faed2019-08-02 13:24:19 -0700462 self._Run(cmd)
Tao Bao40b18822018-01-30 18:19:04 -0800463
464 # 4. Dump the signed payload properties.
465 properties_file = common.MakeTempFile(prefix="payload-properties-",
466 suffix=".txt")
467 cmd = ["brillo_update_payload", "properties",
468 "--payload", signed_payload_file,
469 "--properties_file", properties_file]
Tao Bao718faed2019-08-02 13:24:19 -0700470 self._Run(cmd)
Tao Bao40b18822018-01-30 18:19:04 -0800471
Tao Bao667ff572018-02-10 00:02:40 -0800472 if self.secondary:
473 with open(properties_file, "a") as f:
474 f.write("SWITCH_SLOT_ON_REBOOT=0\n")
475
Tao Bao40b18822018-01-30 18:19:04 -0800476 if OPTIONS.wipe_user_data:
477 with open(properties_file, "a") as f:
478 f.write("POWERWASH=1\n")
479
480 self.payload_file = signed_payload_file
481 self.payload_properties = properties_file
482
Tao Bao667ff572018-02-10 00:02:40 -0800483 def WriteToZip(self, output_zip):
Tao Bao40b18822018-01-30 18:19:04 -0800484 """Writes the payload to the given zip.
485
486 Args:
487 output_zip: The output ZipFile instance.
488 """
489 assert self.payload_file is not None
490 assert self.payload_properties is not None
491
Tao Bao667ff572018-02-10 00:02:40 -0800492 if self.secondary:
Tao Baof7140c02018-01-30 17:09:24 -0800493 payload_arcname = Payload.SECONDARY_PAYLOAD_BIN
494 payload_properties_arcname = Payload.SECONDARY_PAYLOAD_PROPERTIES_TXT
495 else:
496 payload_arcname = Payload.PAYLOAD_BIN
497 payload_properties_arcname = Payload.PAYLOAD_PROPERTIES_TXT
498
Tao Bao40b18822018-01-30 18:19:04 -0800499 # Add the signed payload file and properties into the zip. In order to
500 # support streaming, we pack them as ZIP_STORED. So these entries can be
501 # read directly with the offset and length pairs.
Tao Baof7140c02018-01-30 17:09:24 -0800502 common.ZipWrite(output_zip, self.payload_file, arcname=payload_arcname,
Tao Bao40b18822018-01-30 18:19:04 -0800503 compress_type=zipfile.ZIP_STORED)
504 common.ZipWrite(output_zip, self.payload_properties,
Tao Baof7140c02018-01-30 17:09:24 -0800505 arcname=payload_properties_arcname,
Tao Bao40b18822018-01-30 18:19:04 -0800506 compress_type=zipfile.ZIP_STORED)
507
508
Tao Bao481bab82017-12-21 11:23:09 -0800509def _LoadOemDicts(oem_source):
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800510 """Returns the list of loaded OEM properties dict."""
Tao Bao481bab82017-12-21 11:23:09 -0800511 if not oem_source:
512 return None
513
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800514 oem_dicts = []
Tao Bao481bab82017-12-21 11:23:09 -0800515 for oem_file in oem_source:
516 with open(oem_file) as fp:
517 oem_dicts.append(common.LoadDictionaryFromLines(fp.readlines()))
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800518 return oem_dicts
Doug Zongkereef39442009-04-02 12:14:19 -0700519
Doug Zongkereef39442009-04-02 12:14:19 -0700520
Tao Baod3fc38a2018-03-08 16:09:01 -0800521class StreamingPropertyFiles(PropertyFiles):
522 """A subclass for computing the property-files for streaming A/B OTAs."""
523
524 def __init__(self):
525 super(StreamingPropertyFiles, self).__init__()
526 self.name = 'ota-streaming-property-files'
527 self.required = (
528 # payload.bin and payload_properties.txt must exist.
529 'payload.bin',
530 'payload_properties.txt',
531 )
532 self.optional = (
Tianjied868c122021-06-07 16:11:47 -0700533 # apex_info.pb isn't directly used in the update flow
534 'apex_info.pb',
Tianjie Xu4c05f4a2018-09-14 16:24:41 -0700535 # care_map is available only if dm-verity is enabled.
536 'care_map.pb',
Tao Baod3fc38a2018-03-08 16:09:01 -0800537 'care_map.txt',
538 # compatibility.zip is available only if target supports Treble.
539 'compatibility.zip',
540 )
541
542
Tao Bao85f16982018-03-08 16:28:33 -0800543class AbOtaPropertyFiles(StreamingPropertyFiles):
544 """The property-files for A/B OTA that includes payload_metadata.bin info.
545
546 Since P, we expose one more token (aka property-file), in addition to the ones
547 for streaming A/B OTA, for a virtual entry of 'payload_metadata.bin'.
548 'payload_metadata.bin' is the header part of a payload ('payload.bin'), which
549 doesn't exist as a separate ZIP entry, but can be used to verify if the
550 payload can be applied on the given device.
551
552 For backward compatibility, we keep both of the 'ota-streaming-property-files'
553 and the newly added 'ota-property-files' in P. The new token will only be
554 available in 'ota-property-files'.
555 """
556
557 def __init__(self):
558 super(AbOtaPropertyFiles, self).__init__()
559 self.name = 'ota-property-files'
560
561 def _GetPrecomputed(self, input_zip):
562 offset, size = self._GetPayloadMetadataOffsetAndSize(input_zip)
563 return ['payload_metadata.bin:{}:{}'.format(offset, size)]
564
565 @staticmethod
566 def _GetPayloadMetadataOffsetAndSize(input_zip):
567 """Computes the offset and size of the payload metadata for a given package.
568
569 (From system/update_engine/update_metadata.proto)
570 A delta update file contains all the deltas needed to update a system from
571 one specific version to another specific version. The update format is
572 represented by this struct pseudocode:
573
574 struct delta_update_file {
575 char magic[4] = "CrAU";
576 uint64 file_format_version;
577 uint64 manifest_size; // Size of protobuf DeltaArchiveManifest
578
579 // Only present if format_version > 1:
580 uint32 metadata_signature_size;
581
582 // The Bzip2 compressed DeltaArchiveManifest
583 char manifest[metadata_signature_size];
584
585 // The signature of the metadata (from the beginning of the payload up to
586 // this location, not including the signature itself). This is a
587 // serialized Signatures message.
588 char medatada_signature_message[metadata_signature_size];
589
590 // Data blobs for files, no specific format. The specific offset
591 // and length of each data blob is recorded in the DeltaArchiveManifest.
592 struct {
593 char data[];
594 } blobs[];
595
596 // These two are not signed:
597 uint64 payload_signatures_message_size;
598 char payload_signatures_message[];
599 };
600
601 'payload-metadata.bin' contains all the bytes from the beginning of the
602 payload, till the end of 'medatada_signature_message'.
603 """
604 payload_info = input_zip.getinfo('payload.bin')
Shashikant Baviskar338856f2018-04-12 12:11:22 +0900605 payload_offset = payload_info.header_offset
606 payload_offset += zipfile.sizeFileHeader
607 payload_offset += len(payload_info.extra) + len(payload_info.filename)
Tao Bao85f16982018-03-08 16:28:33 -0800608 payload_size = payload_info.file_size
609
Tao Bao59cf0c52019-06-25 10:04:24 -0700610 with input_zip.open('payload.bin') as payload_fp:
Tao Bao85f16982018-03-08 16:28:33 -0800611 header_bin = payload_fp.read(24)
612
613 # network byte order (big-endian)
614 header = struct.unpack("!IQQL", header_bin)
615
616 # 'CrAU'
617 magic = header[0]
618 assert magic == 0x43724155, "Invalid magic: {:x}".format(magic)
619
620 manifest_size = header[2]
621 metadata_signature_size = header[3]
622 metadata_total = 24 + manifest_size + metadata_signature_size
623 assert metadata_total < payload_size
624
625 return (payload_offset, metadata_total)
626
627
Yifan Hong38ab4d82020-06-18 15:19:56 -0700628def UpdatesInfoForSpecialUpdates(content, partitions_filter,
629 delete_keys=None):
630 """ Updates info file for secondary payload generation, partial update, etc.
631
632 Scan each line in the info file, and remove the unwanted partitions from
633 the dynamic partition list in the related properties. e.g.
634 "super_google_dynamic_partitions_partition_list=system vendor product"
635 will become "super_google_dynamic_partitions_partition_list=system".
636
637 Args:
638 content: The content of the input info file. e.g. misc_info.txt.
639 partitions_filter: A function to filter the desired partitions from a given
640 list
641 delete_keys: A list of keys to delete in the info file
642
643 Returns:
644 A string of the updated info content.
645 """
646
647 output_list = []
648 # The suffix in partition_list variables that follows the name of the
649 # partition group.
650 list_suffix = 'partition_list'
651 for line in content.splitlines():
652 if line.startswith('#') or '=' not in line:
653 output_list.append(line)
654 continue
655 key, value = line.strip().split('=', 1)
656
657 if delete_keys and key in delete_keys:
658 pass
659 elif key.endswith(list_suffix):
660 partitions = value.split()
661 # TODO for partial update, partitions in the same group must be all
662 # updated or all omitted
663 partitions = filter(partitions_filter, partitions)
664 output_list.append('{}={}'.format(key, ' '.join(partitions)))
665 else:
666 output_list.append(line)
667 return '\n'.join(output_list)
668
669
Tao Bao15a146a2018-02-21 16:06:59 -0800670def GetTargetFilesZipForSecondaryImages(input_file, skip_postinstall=False):
Tao Baof7140c02018-01-30 17:09:24 -0800671 """Returns a target-files.zip file for generating secondary payload.
672
673 Although the original target-files.zip already contains secondary slot
674 images (i.e. IMAGES/system_other.img), we need to rename the files to the
675 ones without _other suffix. Note that we cannot instead modify the names in
676 META/ab_partitions.txt, because there are no matching partitions on device.
677
678 For the partitions that don't have secondary images, the ones for primary
679 slot will be used. This is to ensure that we always have valid boot, vbmeta,
680 bootloader images in the inactive slot.
681
682 Args:
683 input_file: The input target-files.zip file.
Tao Bao15a146a2018-02-21 16:06:59 -0800684 skip_postinstall: Whether to skip copying the postinstall config file.
Tao Baof7140c02018-01-30 17:09:24 -0800685
686 Returns:
687 The filename of the target-files.zip for generating secondary payload.
688 """
Tianjie Xu1c808002019-09-11 00:29:26 -0700689
690 def GetInfoForSecondaryImages(info_file):
Yifan Hong38ab4d82020-06-18 15:19:56 -0700691 """Updates info file for secondary payload generation."""
Tianjie Xu1c808002019-09-11 00:29:26 -0700692 with open(info_file) as f:
Yifan Hong38ab4d82020-06-18 15:19:56 -0700693 content = f.read()
694 # Remove virtual_ab flag from secondary payload so that OTA client
695 # don't use snapshots for secondary update
696 delete_keys = ['virtual_ab', "virtual_ab_retrofit"]
697 return UpdatesInfoForSpecialUpdates(
698 content, lambda p: p not in SECONDARY_PAYLOAD_SKIPPED_IMAGES,
699 delete_keys)
Tianjie Xu1c808002019-09-11 00:29:26 -0700700
Tao Baof7140c02018-01-30 17:09:24 -0800701 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
702 target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True)
703
Kelvin Zhang928c2342020-09-22 16:15:57 -0400704 with zipfile.ZipFile(input_file, 'r', allowZip64=True) as input_zip:
Tao Baodba59ee2018-01-09 13:21:02 -0800705 infolist = input_zip.infolist()
Tao Bao12489802018-07-12 14:47:38 -0700706
Tao Bao0ff15de2019-03-20 11:26:06 -0700707 input_tmp = common.UnzipTemp(input_file, UNZIP_PATTERN)
Tao Baodba59ee2018-01-09 13:21:02 -0800708 for info in infolist:
Tao Baof7140c02018-01-30 17:09:24 -0800709 unzipped_file = os.path.join(input_tmp, *info.filename.split('/'))
710 if info.filename == 'IMAGES/system_other.img':
711 common.ZipWrite(target_zip, unzipped_file, arcname='IMAGES/system.img')
712
713 # Primary images and friends need to be skipped explicitly.
714 elif info.filename in ('IMAGES/system.img',
715 'IMAGES/system.map'):
716 pass
Tao Bao3e759462019-09-17 22:43:11 -0700717
718 # Copy images that are not in SECONDARY_PAYLOAD_SKIPPED_IMAGES.
719 elif info.filename.startswith(('IMAGES/', 'RADIO/')):
720 image_name = os.path.basename(info.filename)
721 if image_name not in ['{}.img'.format(partition) for partition in
722 SECONDARY_PAYLOAD_SKIPPED_IMAGES]:
723 common.ZipWrite(target_zip, unzipped_file, arcname=info.filename)
Tao Baof7140c02018-01-30 17:09:24 -0800724
Tao Bao15a146a2018-02-21 16:06:59 -0800725 # Skip copying the postinstall config if requested.
726 elif skip_postinstall and info.filename == POSTINSTALL_CONFIG:
727 pass
728
Tianjie Xu1c808002019-09-11 00:29:26 -0700729 elif info.filename.startswith('META/'):
730 # Remove the unnecessary partitions for secondary images from the
731 # ab_partitions file.
732 if info.filename == AB_PARTITIONS:
733 with open(unzipped_file) as f:
734 partition_list = f.read().splitlines()
735 partition_list = [partition for partition in partition_list if partition
Tao Bao3e759462019-09-17 22:43:11 -0700736 and partition not in SECONDARY_PAYLOAD_SKIPPED_IMAGES]
Kelvin Zhang0876c412020-06-23 15:06:58 -0400737 common.ZipWriteStr(target_zip, info.filename,
738 '\n'.join(partition_list))
Tianjie Xu1c808002019-09-11 00:29:26 -0700739 # Remove the unnecessary partitions from the dynamic partitions list.
740 elif (info.filename == 'META/misc_info.txt' or
741 info.filename == DYNAMIC_PARTITION_INFO):
742 modified_info = GetInfoForSecondaryImages(unzipped_file)
743 common.ZipWriteStr(target_zip, info.filename, modified_info)
744 else:
745 common.ZipWrite(target_zip, unzipped_file, arcname=info.filename)
Tao Baof7140c02018-01-30 17:09:24 -0800746
Tao Baof7140c02018-01-30 17:09:24 -0800747 common.ZipClose(target_zip)
748
749 return target_file
750
751
Tao Bao15a146a2018-02-21 16:06:59 -0800752def GetTargetFilesZipWithoutPostinstallConfig(input_file):
753 """Returns a target-files.zip that's not containing postinstall_config.txt.
754
755 This allows brillo_update_payload script to skip writing all the postinstall
756 hooks in the generated payload. The input target-files.zip file will be
757 duplicated, with 'META/postinstall_config.txt' skipped. If input_file doesn't
758 contain the postinstall_config.txt entry, the input file will be returned.
759
760 Args:
761 input_file: The input target-files.zip filename.
762
763 Returns:
764 The filename of target-files.zip that doesn't contain postinstall config.
765 """
766 # We should only make a copy if postinstall_config entry exists.
Kelvin Zhang928c2342020-09-22 16:15:57 -0400767 with zipfile.ZipFile(input_file, 'r', allowZip64=True) as input_zip:
Tao Bao15a146a2018-02-21 16:06:59 -0800768 if POSTINSTALL_CONFIG not in input_zip.namelist():
769 return input_file
770
771 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
772 shutil.copyfile(input_file, target_file)
773 common.ZipDelete(target_file, POSTINSTALL_CONFIG)
774 return target_file
775
Kelvin Zhang06400172021-03-05 15:42:03 -0500776
Kelvin Zhanga59bb272020-10-30 12:52:25 -0400777def ParseInfoDict(target_file_path):
778 with zipfile.ZipFile(target_file_path, 'r', allowZip64=True) as zfp:
779 return common.LoadInfoDict(zfp)
Tao Bao15a146a2018-02-21 16:06:59 -0800780
Kelvin Zhang06400172021-03-05 15:42:03 -0500781
Yifan Hong38ab4d82020-06-18 15:19:56 -0700782def GetTargetFilesZipForPartialUpdates(input_file, ab_partitions):
783 """Returns a target-files.zip for partial ota update package generation.
784
785 This function modifies ab_partitions list with the desired partitions before
786 calling the brillo_update_payload script. It also cleans up the reference to
787 the excluded partitions in the info file, e.g misc_info.txt.
788
789 Args:
790 input_file: The input target-files.zip filename.
791 ab_partitions: A list of partitions to include in the partial update
792
793 Returns:
794 The filename of target-files.zip used for partial ota update.
795 """
796
797 def AddImageForPartition(partition_name):
798 """Add the archive name for a given partition to the copy list."""
799 for prefix in ['IMAGES', 'RADIO']:
800 image_path = '{}/{}.img'.format(prefix, partition_name)
801 if image_path in namelist:
802 copy_entries.append(image_path)
803 map_path = '{}/{}.map'.format(prefix, partition_name)
804 if map_path in namelist:
805 copy_entries.append(map_path)
806 return
807
808 raise ValueError("Cannot find {} in input zipfile".format(partition_name))
809
810 with zipfile.ZipFile(input_file, allowZip64=True) as input_zip:
Kelvin Zhanga59bb272020-10-30 12:52:25 -0400811 original_ab_partitions = input_zip.read(
812 AB_PARTITIONS).decode().splitlines()
Yifan Hong38ab4d82020-06-18 15:19:56 -0700813 namelist = input_zip.namelist()
814
815 unrecognized_partitions = [partition for partition in ab_partitions if
816 partition not in original_ab_partitions]
817 if unrecognized_partitions:
818 raise ValueError("Unrecognized partitions when generating partial updates",
819 unrecognized_partitions)
820
821 logger.info("Generating partial updates for %s", ab_partitions)
822
823 copy_entries = ['META/update_engine_config.txt']
824 for partition_name in ab_partitions:
825 AddImageForPartition(partition_name)
826
827 # Use zip2zip to avoid extracting the zipfile.
828 partial_target_file = common.MakeTempFile(suffix='.zip')
829 cmd = ['zip2zip', '-i', input_file, '-o', partial_target_file]
830 cmd.extend(['{}:{}'.format(name, name) for name in copy_entries])
831 common.RunAndCheckOutput(cmd)
832
833 partial_target_zip = zipfile.ZipFile(partial_target_file, 'a',
834 allowZip64=True)
835 with zipfile.ZipFile(input_file, allowZip64=True) as input_zip:
836 common.ZipWriteStr(partial_target_zip, 'META/ab_partitions.txt',
837 '\n'.join(ab_partitions))
Kelvin Zhang766eea72021-06-03 09:36:08 -0400838 CARE_MAP_ENTRY = "META/care_map.pb"
839 if CARE_MAP_ENTRY in input_zip.namelist():
840 caremap = care_map_pb2.CareMap()
841 caremap.ParseFromString(input_zip.read(CARE_MAP_ENTRY))
842 filtered = [
843 part for part in caremap.partitions if part.name in ab_partitions]
844 del caremap.partitions[:]
845 caremap.partitions.extend(filtered)
846 common.ZipWriteStr(partial_target_zip, CARE_MAP_ENTRY,
847 caremap.SerializeToString())
848
Yifan Hong38ab4d82020-06-18 15:19:56 -0700849 for info_file in ['META/misc_info.txt', DYNAMIC_PARTITION_INFO]:
850 if info_file not in input_zip.namelist():
851 logger.warning('Cannot find %s in input zipfile', info_file)
852 continue
853 content = input_zip.read(info_file).decode()
854 modified_info = UpdatesInfoForSpecialUpdates(
855 content, lambda p: p in ab_partitions)
856 common.ZipWriteStr(partial_target_zip, info_file, modified_info)
857
Kelvin Zhang766eea72021-06-03 09:36:08 -0400858 # TODO(xunchang) handle META/postinstall_config.txt'
859
Yifan Hong38ab4d82020-06-18 15:19:56 -0700860 common.ZipClose(partial_target_zip)
861
862 return partial_target_file
863
864
Yifan Hong50e79542018-11-08 17:44:12 -0800865def GetTargetFilesZipForRetrofitDynamicPartitions(input_file,
Yifan Hongb433eba2019-03-06 12:42:53 -0800866 super_block_devices,
867 dynamic_partition_list):
Yifan Hong50e79542018-11-08 17:44:12 -0800868 """Returns a target-files.zip for retrofitting dynamic partitions.
869
870 This allows brillo_update_payload to generate an OTA based on the exact
871 bits on the block devices. Postinstall is disabled.
872
873 Args:
874 input_file: The input target-files.zip filename.
875 super_block_devices: The list of super block devices
Yifan Hongb433eba2019-03-06 12:42:53 -0800876 dynamic_partition_list: The list of dynamic partitions
Yifan Hong50e79542018-11-08 17:44:12 -0800877
878 Returns:
879 The filename of target-files.zip with *.img replaced with super_*.img for
880 each block device in super_block_devices.
881 """
882 assert super_block_devices, "No super_block_devices are specified."
883
884 replace = {'OTA/super_{}.img'.format(dev): 'IMAGES/{}.img'.format(dev)
Tao Bao03fecb62018-11-28 10:59:23 -0800885 for dev in super_block_devices}
Yifan Hong50e79542018-11-08 17:44:12 -0800886
887 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
888 shutil.copyfile(input_file, target_file)
889
Kelvin Zhang928c2342020-09-22 16:15:57 -0400890 with zipfile.ZipFile(input_file, allowZip64=True) as input_zip:
Yifan Hong50e79542018-11-08 17:44:12 -0800891 namelist = input_zip.namelist()
892
Yifan Hongb433eba2019-03-06 12:42:53 -0800893 input_tmp = common.UnzipTemp(input_file, RETROFIT_DAP_UNZIP_PATTERN)
894
895 # Remove partitions from META/ab_partitions.txt that is in
896 # dynamic_partition_list but not in super_block_devices so that
897 # brillo_update_payload won't generate update for those logical partitions.
898 ab_partitions_file = os.path.join(input_tmp, *AB_PARTITIONS.split('/'))
899 with open(ab_partitions_file) as f:
900 ab_partitions_lines = f.readlines()
901 ab_partitions = [line.strip() for line in ab_partitions_lines]
902 # Assert that all super_block_devices are in ab_partitions
903 super_device_not_updated = [partition for partition in super_block_devices
904 if partition not in ab_partitions]
905 assert not super_device_not_updated, \
906 "{} is in super_block_devices but not in {}".format(
907 super_device_not_updated, AB_PARTITIONS)
908 # ab_partitions -= (dynamic_partition_list - super_block_devices)
Kelvin Zhang0876c412020-06-23 15:06:58 -0400909 new_ab_partitions = common.MakeTempFile(
910 prefix="ab_partitions", suffix=".txt")
Yifan Hongb433eba2019-03-06 12:42:53 -0800911 with open(new_ab_partitions, 'w') as f:
912 for partition in ab_partitions:
913 if (partition in dynamic_partition_list and
Kelvin Zhang06400172021-03-05 15:42:03 -0500914 partition not in super_block_devices):
Tao Bao59cf0c52019-06-25 10:04:24 -0700915 logger.info("Dropping %s from ab_partitions.txt", partition)
916 continue
Yifan Hongb433eba2019-03-06 12:42:53 -0800917 f.write(partition + "\n")
918 to_delete = [AB_PARTITIONS]
919
Yifan Hong50e79542018-11-08 17:44:12 -0800920 # Always skip postinstall for a retrofit update.
Yifan Hongb433eba2019-03-06 12:42:53 -0800921 to_delete += [POSTINSTALL_CONFIG]
Yifan Hong50e79542018-11-08 17:44:12 -0800922
923 # Delete dynamic_partitions_info.txt so that brillo_update_payload thinks this
924 # is a regular update on devices without dynamic partitions support.
925 to_delete += [DYNAMIC_PARTITION_INFO]
926
Tao Bao03fecb62018-11-28 10:59:23 -0800927 # Remove the existing partition images as well as the map files.
Tao Bao59cf0c52019-06-25 10:04:24 -0700928 to_delete += list(replace.values())
Tao Bao03fecb62018-11-28 10:59:23 -0800929 to_delete += ['IMAGES/{}.map'.format(dev) for dev in super_block_devices]
Yifan Hong50e79542018-11-08 17:44:12 -0800930
931 common.ZipDelete(target_file, to_delete)
932
Yifan Hong50e79542018-11-08 17:44:12 -0800933 target_zip = zipfile.ZipFile(target_file, 'a', allowZip64=True)
934
935 # Write super_{foo}.img as {foo}.img.
936 for src, dst in replace.items():
937 assert src in namelist, \
Tao Bao59cf0c52019-06-25 10:04:24 -0700938 'Missing {} in {}; {} cannot be written'.format(src, input_file, dst)
Yifan Hong50e79542018-11-08 17:44:12 -0800939 unzipped_file = os.path.join(input_tmp, *src.split('/'))
940 common.ZipWrite(target_zip, unzipped_file, arcname=dst)
941
Yifan Hongb433eba2019-03-06 12:42:53 -0800942 # Write new ab_partitions.txt file
943 common.ZipWrite(target_zip, new_ab_partitions, arcname=AB_PARTITIONS)
944
Yifan Hong50e79542018-11-08 17:44:12 -0800945 common.ZipClose(target_zip)
946
947 return target_file
948
Kelvin Zhanga59bb272020-10-30 12:52:25 -0400949
Hongguang Chen49ab1b902020-10-19 14:15:43 -0700950def GetTargetFilesZipForCustomImagesUpdates(input_file, custom_images):
951 """Returns a target-files.zip for custom partitions update.
952
953 This function modifies ab_partitions list with the desired custom partitions
954 and puts the custom images into the target target-files.zip.
955
956 Args:
957 input_file: The input target-files.zip filename.
958 custom_images: A map of custom partitions and custom images.
959
960 Returns:
961 The filename of a target-files.zip which has renamed the custom images in
962 the IMAGS/ to their partition names.
963 """
964 # Use zip2zip to avoid extracting the zipfile.
965 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
966 cmd = ['zip2zip', '-i', input_file, '-o', target_file]
967
968 with zipfile.ZipFile(input_file, allowZip64=True) as input_zip:
969 namelist = input_zip.namelist()
970
971 # Write {custom_image}.img as {custom_partition}.img.
972 for custom_partition, custom_image in custom_images.items():
973 default_custom_image = '{}.img'.format(custom_partition)
974 if default_custom_image != custom_image:
975 logger.info("Update custom partition '%s' with '%s'",
976 custom_partition, custom_image)
977 # Default custom image need to be deleted first.
978 namelist.remove('IMAGES/{}'.format(default_custom_image))
979 # IMAGES/{custom_image}.img:IMAGES/{custom_partition}.img.
980 cmd.extend(['IMAGES/{}:IMAGES/{}'.format(custom_image,
981 default_custom_image)])
982
983 cmd.extend(['{}:{}'.format(name, name) for name in namelist])
984 common.RunAndCheckOutput(cmd)
985
986 return target_file
Yifan Hong50e79542018-11-08 17:44:12 -0800987
Kelvin Zhang06400172021-03-05 15:42:03 -0500988
Kelvin Zhanga59bb272020-10-30 12:52:25 -0400989def GeneratePartitionTimestampFlags(partition_state):
990 partition_timestamps = [
991 part.partition_name + ":" + part.version
992 for part in partition_state]
993 return ["--partition_timestamps", ",".join(partition_timestamps)]
994
Kelvin Zhang06400172021-03-05 15:42:03 -0500995
Kelvin Zhang22c687c2021-01-21 10:51:57 -0500996def GeneratePartitionTimestampFlagsDowngrade(
Kelvin Zhang06400172021-03-05 15:42:03 -0500997 pre_partition_state, post_partition_state):
Kelvin Zhang80195722020-11-04 14:38:34 -0500998 assert pre_partition_state is not None
999 partition_timestamps = {}
1000 for part in pre_partition_state:
1001 partition_timestamps[part.partition_name] = part.version
1002 for part in post_partition_state:
1003 partition_timestamps[part.partition_name] = \
Kelvin Zhang06400172021-03-05 15:42:03 -05001004 max(part.version, partition_timestamps[part.partition_name])
Kelvin Zhang80195722020-11-04 14:38:34 -05001005 return [
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001006 "--partition_timestamps",
Kelvin Zhang06400172021-03-05 15:42:03 -05001007 ",".join([key + ":" + val for (key, val)
1008 in partition_timestamps.items()])
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001009 ]
Kelvin Zhang80195722020-11-04 14:38:34 -05001010
Kelvin Zhang06400172021-03-05 15:42:03 -05001011
Kelvin Zhang65029a22020-11-03 10:07:51 -05001012def IsSparseImage(filepath):
1013 with open(filepath, 'rb') as fp:
1014 # Magic for android sparse image format
1015 # https://source.android.com/devices/bootloader/images
1016 return fp.read(4) == b'\x3A\xFF\x26\xED'
1017
Kelvin Zhang06400172021-03-05 15:42:03 -05001018
Kelvin Zhang65029a22020-11-03 10:07:51 -05001019def SupportsMainlineGkiUpdates(target_file):
1020 """Return True if the build supports MainlineGKIUpdates.
1021
1022 This function scans the product.img file in IMAGES/ directory for
1023 pattern |*/apex/com.android.gki.*.apex|. If there are files
1024 matching this pattern, conclude that build supports mainline
1025 GKI and return True
1026
1027 Args:
1028 target_file: Path to a target_file.zip, or an extracted directory
1029 Return:
1030 True if thisb uild supports Mainline GKI Updates.
1031 """
1032 if target_file is None:
1033 return False
1034 if os.path.isfile(target_file):
1035 target_file = common.UnzipTemp(target_file, ["IMAGES/product.img"])
1036 if not os.path.isdir(target_file):
1037 assert os.path.isdir(target_file), \
1038 "{} must be a path to zip archive or dir containing extracted"\
1039 " target_files".format(target_file)
1040 image_file = os.path.join(target_file, "IMAGES", "product.img")
1041
1042 if not os.path.isfile(image_file):
1043 return False
1044
1045 if IsSparseImage(image_file):
1046 # Unsparse the image
1047 tmp_img = common.MakeTempFile(suffix=".img")
1048 subprocess.check_output(["simg2img", image_file, tmp_img])
1049 image_file = tmp_img
1050
1051 cmd = ["debugfs_static", "-R", "ls -p /apex", image_file]
1052 output = subprocess.check_output(cmd).decode()
1053
1054 pattern = re.compile(r"com\.android\.gki\..*\.apex")
1055 return pattern.search(output) is not None
1056
Kelvin Zhang06400172021-03-05 15:42:03 -05001057
Tao Baof0c4aa22018-04-30 20:29:30 -07001058def GenerateAbOtaPackage(target_file, output_file, source_file=None):
Tao Baofe5b69a2018-03-02 09:47:43 -08001059 """Generates an Android OTA package that has A/B update payload."""
Tao Baodea0f8b2016-06-20 17:55:06 -07001060 # Stage the output zip package for package signing.
Tao Bao491d7e22018-02-21 13:17:22 -08001061 if not OPTIONS.no_signing:
1062 staging_file = common.MakeTempFile(suffix='.zip')
1063 else:
1064 staging_file = output_file
Tao Baoa652c002018-03-01 19:31:38 -08001065 output_zip = zipfile.ZipFile(staging_file, "w",
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001066 compression=zipfile.ZIP_DEFLATED,
1067 allowZip64=True)
Tao Baoc098e9e2016-01-07 13:03:56 -08001068
Tao Bao481bab82017-12-21 11:23:09 -08001069 if source_file is not None:
Kelvin Zhang39aea442020-08-17 11:04:25 -04001070 assert "ab_partitions" in OPTIONS.source_info_dict, \
1071 "META/ab_partitions.txt is required for ab_update."
1072 assert "ab_partitions" in OPTIONS.target_info_dict, \
1073 "META/ab_partitions.txt is required for ab_update."
Tao Bao1c320f82019-10-04 23:25:12 -07001074 target_info = common.BuildInfo(OPTIONS.target_info_dict, OPTIONS.oem_dicts)
1075 source_info = common.BuildInfo(OPTIONS.source_info_dict, OPTIONS.oem_dicts)
Kelvin Zhang563750f2021-04-28 12:46:17 -04001076 # If source supports VABC, delta_generator/update_engine will attempt to
1077 # use VABC. This dangerous, as the target build won't have snapuserd to
1078 # serve I/O request when device boots. Therefore, disable VABC if source
1079 # build doesn't supports it.
1080 if not source_info.is_vabc or not target_info.is_vabc:
1081 OPTIONS.disable_vabc = True
Kelvin Zhang563750f2021-04-28 12:46:17 -04001082
Tao Bao481bab82017-12-21 11:23:09 -08001083 else:
Kelvin Zhang39aea442020-08-17 11:04:25 -04001084 assert "ab_partitions" in OPTIONS.info_dict, \
1085 "META/ab_partitions.txt is required for ab_update."
Tao Bao1c320f82019-10-04 23:25:12 -07001086 target_info = common.BuildInfo(OPTIONS.info_dict, OPTIONS.oem_dicts)
Tao Bao481bab82017-12-21 11:23:09 -08001087 source_info = None
Tao Baoc098e9e2016-01-07 13:03:56 -08001088
Yifan Hong38ab4d82020-06-18 15:19:56 -07001089 additional_args = []
1090
Hongguang Chen49ab1b902020-10-19 14:15:43 -07001091 # Prepare custom images.
1092 if OPTIONS.custom_images:
1093 target_file = GetTargetFilesZipForCustomImagesUpdates(
1094 target_file, OPTIONS.custom_images)
1095
Yifan Hong50e79542018-11-08 17:44:12 -08001096 if OPTIONS.retrofit_dynamic_partitions:
1097 target_file = GetTargetFilesZipForRetrofitDynamicPartitions(
Yifan Hongb433eba2019-03-06 12:42:53 -08001098 target_file, target_info.get("super_block_devices").strip().split(),
1099 target_info.get("dynamic_partition_list").strip().split())
Yifan Hong38ab4d82020-06-18 15:19:56 -07001100 elif OPTIONS.partial:
1101 target_file = GetTargetFilesZipForPartialUpdates(target_file,
1102 OPTIONS.partial)
1103 additional_args += ["--is_partial_update", "true"]
Yifan Hong50e79542018-11-08 17:44:12 -08001104 elif OPTIONS.skip_postinstall:
Tao Bao15a146a2018-02-21 16:06:59 -08001105 target_file = GetTargetFilesZipWithoutPostinstallConfig(target_file)
Kelvin Zhang39aea442020-08-17 11:04:25 -04001106 # Target_file may have been modified, reparse ab_partitions
1107 with zipfile.ZipFile(target_file, allowZip64=True) as zfp:
1108 target_info.info_dict['ab_partitions'] = zfp.read(
Kelvin Zhang31233e52020-11-03 13:42:46 -05001109 AB_PARTITIONS).decode().strip().split("\n")
Tao Bao15a146a2018-02-21 16:06:59 -08001110
Kelvin Zhang39aea442020-08-17 11:04:25 -04001111 # Metadata to comply with Android OTA package format.
1112 metadata = GetPackageMetadata(target_info, source_info)
Tao Bao40b18822018-01-30 18:19:04 -08001113 # Generate payload.
1114 payload = Payload()
1115
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001116 partition_timestamps_flags = []
Tao Bao40b18822018-01-30 18:19:04 -08001117 # Enforce a max timestamp this payload can be applied on top of.
Tao Baoff1b86e2017-10-03 14:17:57 -07001118 if OPTIONS.downgrade:
Tao Bao2a12ed72018-01-22 11:35:00 -08001119 max_timestamp = source_info.GetBuildProp("ro.build.date.utc")
Kelvin Zhang80195722020-11-04 14:38:34 -05001120 partition_timestamps_flags = GeneratePartitionTimestampFlagsDowngrade(
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001121 metadata.precondition.partition_state,
1122 metadata.postcondition.partition_state
1123 )
Tao Baoff1b86e2017-10-03 14:17:57 -07001124 else:
Tianjiea2076132020-08-19 17:25:32 -07001125 max_timestamp = str(metadata.postcondition.timestamp)
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001126 partition_timestamps_flags = GeneratePartitionTimestampFlags(
1127 metadata.postcondition.partition_state)
Tao Baoc098e9e2016-01-07 13:03:56 -08001128
Kelvin Zhangbbfa1822021-02-03 17:19:44 -05001129 if OPTIONS.disable_vabc:
1130 additional_args += ["--disable_vabc", "true"]
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001131 additional_args += ["--max_timestamp", max_timestamp]
1132
Kelvin Zhang65029a22020-11-03 10:07:51 -05001133 if SupportsMainlineGkiUpdates(source_file):
Kelvin Zhang06400172021-03-05 15:42:03 -05001134 logger.warning(
1135 "Detected build with mainline GKI, include full boot image.")
Kelvin Zhang65029a22020-11-03 10:07:51 -05001136 additional_args.extend(["--full_boot", "true"])
1137
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001138 payload.Generate(
1139 target_file,
1140 source_file,
1141 additional_args + partition_timestamps_flags
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001142 )
Tao Baoc098e9e2016-01-07 13:03:56 -08001143
Tao Bao40b18822018-01-30 18:19:04 -08001144 # Sign the payload.
Tao Baof7140c02018-01-30 17:09:24 -08001145 payload_signer = PayloadSigner()
1146 payload.Sign(payload_signer)
Tao Baoc098e9e2016-01-07 13:03:56 -08001147
Tao Bao40b18822018-01-30 18:19:04 -08001148 # Write the payload into output zip.
1149 payload.WriteToZip(output_zip)
Tao Baoc098e9e2016-01-07 13:03:56 -08001150
Tao Baof7140c02018-01-30 17:09:24 -08001151 # Generate and include the secondary payload that installs secondary images
1152 # (e.g. system_other.img).
1153 if OPTIONS.include_secondary:
1154 # We always include a full payload for the secondary slot, even when
1155 # building an incremental OTA. See the comments for "--include_secondary".
Tao Bao15a146a2018-02-21 16:06:59 -08001156 secondary_target_file = GetTargetFilesZipForSecondaryImages(
1157 target_file, OPTIONS.skip_postinstall)
Tao Bao667ff572018-02-10 00:02:40 -08001158 secondary_payload = Payload(secondary=True)
Tao Baodb1fe412018-02-09 23:15:05 -08001159 secondary_payload.Generate(secondary_target_file,
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001160 additional_args=["--max_timestamp",
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001161 max_timestamp])
Tao Baof7140c02018-01-30 17:09:24 -08001162 secondary_payload.Sign(payload_signer)
Tao Bao667ff572018-02-10 00:02:40 -08001163 secondary_payload.WriteToZip(output_zip)
Tao Baof7140c02018-01-30 17:09:24 -08001164
Tianjie Xucfa86222016-03-07 16:31:19 -08001165 # If dm-verity is supported for the device, copy contents of care_map
1166 # into A/B OTA package.
Kelvin Zhang928c2342020-09-22 16:15:57 -04001167 target_zip = zipfile.ZipFile(target_file, "r", allowZip64=True)
Tao Bao481bab82017-12-21 11:23:09 -08001168 if (target_info.get("verity") == "true" or
Kelvin Zhang06400172021-03-05 15:42:03 -05001169 target_info.get("avb_enable") == "true"):
Tianjie Xu4c05f4a2018-09-14 16:24:41 -07001170 care_map_list = [x for x in ["care_map.pb", "care_map.txt"] if
1171 "META/" + x in target_zip.namelist()]
1172
1173 # Adds care_map if either the protobuf format or the plain text one exists.
1174 if care_map_list:
1175 care_map_name = care_map_list[0]
1176 care_map_data = target_zip.read("META/" + care_map_name)
1177 # In order to support streaming, care_map needs to be packed as
Tao Bao40b18822018-01-30 18:19:04 -08001178 # ZIP_STORED.
Tianjie Xu4c05f4a2018-09-14 16:24:41 -07001179 common.ZipWriteStr(output_zip, care_map_name, care_map_data,
Tao Bao481bab82017-12-21 11:23:09 -08001180 compress_type=zipfile.ZIP_STORED)
Tianjie Xucfa86222016-03-07 16:31:19 -08001181 else:
Tao Bao32fcdab2018-10-12 10:30:39 -07001182 logger.warning("Cannot find care map file in target_file package")
Tao Bao21803d32017-04-19 10:16:09 -07001183
Tianjiea5fca032021-06-01 22:06:28 -07001184 # Add the source apex version for incremental ota updates, and write the
1185 # result apex info to the ota package.
1186 ota_apex_info = ota_utils.ConstructOtaApexInfo(target_zip, source_file)
1187 if ota_apex_info is not None:
1188 common.ZipWriteStr(output_zip, "apex_info.pb", ota_apex_info,
1189 compress_type=zipfile.ZIP_STORED)
Kelvin Zhang7bd09912021-01-21 10:33:13 -05001190
Tao Bao21803d32017-04-19 10:16:09 -07001191 common.ZipClose(target_zip)
Tianjie Xucfa86222016-03-07 16:31:19 -08001192
Yifan Hong9276cf02019-08-21 16:37:04 -07001193 CheckVintfIfTrebleEnabled(target_file, target_info)
1194
Tao Baofe5b69a2018-03-02 09:47:43 -08001195 # We haven't written the metadata entry yet, which will be handled in
1196 # FinalizeMetadata().
Tao Baoc96316c2017-01-24 22:10:49 -08001197 common.ZipClose(output_zip)
1198
Tao Bao85f16982018-03-08 16:28:33 -08001199 # AbOtaPropertyFiles intends to replace StreamingPropertyFiles, as it covers
1200 # all the info of the latter. However, system updaters and OTA servers need to
1201 # take time to switch to the new flag. We keep both of the flags for
1202 # P-timeframe, and will remove StreamingPropertyFiles in later release.
Tao Baod3fc38a2018-03-08 16:09:01 -08001203 needed_property_files = (
Tao Bao85f16982018-03-08 16:28:33 -08001204 AbOtaPropertyFiles(),
Tao Baod3fc38a2018-03-08 16:09:01 -08001205 StreamingPropertyFiles(),
1206 )
1207 FinalizeMetadata(metadata, staging_file, output_file, needed_property_files)
Tao Baoc96316c2017-01-24 22:10:49 -08001208
Tao Baoc098e9e2016-01-07 13:03:56 -08001209
Doug Zongkereef39442009-04-02 12:14:19 -07001210def main(argv):
1211
1212 def option_handler(o, a):
Tao Bao4b76a0e2017-10-31 12:13:33 -07001213 if o in ("-k", "--package_key"):
Doug Zongkereef39442009-04-02 12:14:19 -07001214 OPTIONS.package_key = a
Doug Zongkereef39442009-04-02 12:14:19 -07001215 elif o in ("-i", "--incremental_from"):
1216 OPTIONS.incremental_source = a
Tao Bao43078aa2015-04-21 14:32:35 -07001217 elif o == "--full_radio":
1218 OPTIONS.full_radio = True
leozwangaa6c1a12015-08-14 10:57:58 -07001219 elif o == "--full_bootloader":
1220 OPTIONS.full_bootloader = True
Tao Bao337633f2017-12-06 15:20:19 -08001221 elif o == "--wipe_user_data":
Doug Zongkerdbfaae52009-04-21 17:12:54 -07001222 OPTIONS.wipe_user_data = True
Tao Bao5d182562016-02-23 11:38:39 -08001223 elif o == "--downgrade":
1224 OPTIONS.downgrade = True
1225 OPTIONS.wipe_user_data = True
Tao Bao3e6161a2017-02-28 11:48:48 -08001226 elif o == "--override_timestamp":
Tao Baofaa8e0b2018-04-12 14:31:43 -07001227 OPTIONS.downgrade = True
Michael Runge6e836112014-04-15 17:40:21 -07001228 elif o in ("-o", "--oem_settings"):
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -08001229 OPTIONS.oem_source = a.split(',')
Tao Bao8608cde2016-02-25 19:49:55 -08001230 elif o == "--oem_no_mount":
1231 OPTIONS.oem_no_mount = True
Doug Zongker1c390a22009-05-14 19:06:36 -07001232 elif o in ("-e", "--extra_script"):
1233 OPTIONS.extra_script = a
Martin Blumenstingl374e1142014-05-31 20:42:55 +02001234 elif o in ("-t", "--worker_threads"):
1235 if a.isdigit():
1236 OPTIONS.worker_threads = int(a)
1237 else:
1238 raise ValueError("Cannot parse value %r for option %r - only "
1239 "integers are allowed." % (a, o))
Doug Zongker9b23f2c2013-11-25 14:44:12 -08001240 elif o in ("-2", "--two_step"):
1241 OPTIONS.two_step = True
Tao Baof7140c02018-01-30 17:09:24 -08001242 elif o == "--include_secondary":
1243 OPTIONS.include_secondary = True
Doug Zongker26e66192014-02-20 13:22:07 -08001244 elif o == "--no_signing":
Takeshi Kanemotoe153b342013-11-14 17:20:50 +09001245 OPTIONS.no_signing = True
Dan Albert8b72aef2015-03-23 19:13:21 -07001246 elif o == "--verify":
Michael Runge63f01de2014-10-28 19:24:19 -07001247 OPTIONS.verify = True
Doug Zongker26e66192014-02-20 13:22:07 -08001248 elif o == "--block":
1249 OPTIONS.block_based = True
Doug Zongker25568482014-03-03 10:21:27 -08001250 elif o in ("-b", "--binary"):
1251 OPTIONS.updater_binary = a
Tao Bao8dcf7382015-05-21 14:09:49 -07001252 elif o == "--stash_threshold":
1253 try:
1254 OPTIONS.stash_threshold = float(a)
1255 except ValueError:
1256 raise ValueError("Cannot parse value %r for option %r - expecting "
1257 "a float" % (a, o))
Tao Baod62c6032015-11-30 09:40:20 -08001258 elif o == "--log_diff":
1259 OPTIONS.log_diff = a
Tao Baodea0f8b2016-06-20 17:55:06 -07001260 elif o == "--payload_signer":
1261 OPTIONS.payload_signer = a
Baligh Uddin2abbbd02016-06-22 12:14:16 -07001262 elif o == "--payload_signer_args":
1263 OPTIONS.payload_signer_args = shlex.split(a)
Tianjie Xu21e6deb2019-10-07 18:01:00 -07001264 elif o == "--payload_signer_maximum_signature_size":
1265 OPTIONS.payload_signer_maximum_signature_size = a
xunchang376cc7c2019-04-08 23:04:58 -07001266 elif o == "--payload_signer_key_size":
Tianjie Xu21e6deb2019-10-07 18:01:00 -07001267 # TODO(Xunchang) remove this option after cleaning up the callers.
1268 logger.warning("The option '--payload_signer_key_size' is deprecated."
1269 " Use '--payload_signer_maximum_signature_size' instead.")
1270 OPTIONS.payload_signer_maximum_signature_size = a
Dan Willemsencea5cd22017-03-21 14:44:27 -07001271 elif o == "--extracted_input_target_files":
1272 OPTIONS.extracted_input = a
Tao Bao15a146a2018-02-21 16:06:59 -08001273 elif o == "--skip_postinstall":
1274 OPTIONS.skip_postinstall = True
Yifan Hong50e79542018-11-08 17:44:12 -08001275 elif o == "--retrofit_dynamic_partitions":
1276 OPTIONS.retrofit_dynamic_partitions = True
xunchangabfa2652019-02-19 16:27:10 -08001277 elif o == "--skip_compatibility_check":
1278 OPTIONS.skip_compatibility_check = True
xunchang1cfe2512019-02-19 14:14:48 -08001279 elif o == "--output_metadata_path":
1280 OPTIONS.output_metadata_path = a
Tianjie Xu1b079832019-08-28 12:19:23 -07001281 elif o == "--disable_fec_computation":
1282 OPTIONS.disable_fec_computation = True
Kelvin Zhangcaf7bbc2020-11-20 14:09:42 -05001283 elif o == "--disable_verity_computation":
1284 OPTIONS.disable_verity_computation = True
Yifan Hong65afc072020-04-17 10:08:10 -07001285 elif o == "--force_non_ab":
1286 OPTIONS.force_non_ab = True
Tianjied6867162020-05-10 14:30:13 -07001287 elif o == "--boot_variable_file":
1288 OPTIONS.boot_variable_file = a
Yifan Hong38ab4d82020-06-18 15:19:56 -07001289 elif o == "--partial":
1290 partitions = a.split()
1291 if not partitions:
1292 raise ValueError("Cannot parse partitions in {}".format(a))
1293 OPTIONS.partial = partitions
Hongguang Chen49ab1b902020-10-19 14:15:43 -07001294 elif o == "--custom_image":
1295 custom_partition, custom_image = a.split("=")
1296 OPTIONS.custom_images[custom_partition] = custom_image
Kelvin Zhangbbfa1822021-02-03 17:19:44 -05001297 elif o == "--disable_vabc":
1298 OPTIONS.disable_vabc = True
Kelvin Zhang80ff4662021-02-08 19:57:57 -05001299 elif o == "--spl_downgrade":
1300 OPTIONS.spl_downgrade = True
Kelvin Zhang06400172021-03-05 15:42:03 -05001301 OPTIONS.wipe_user_data = True
Kelvin Zhang2a3e5b12021-05-04 18:20:34 -04001302 elif o == "--vabc_downgrade":
1303 OPTIONS.vabc_downgrade = True
Doug Zongkereef39442009-04-02 12:14:19 -07001304 else:
1305 return False
Doug Zongkerdbfaae52009-04-21 17:12:54 -07001306 return True
Doug Zongkereef39442009-04-02 12:14:19 -07001307
1308 args = common.ParseOptions(argv, __doc__,
Tao Bao337633f2017-12-06 15:20:19 -08001309 extra_opts="b:k:i:d:e:t:2o:",
Dan Albert8b72aef2015-03-23 19:13:21 -07001310 extra_long_opts=[
Dan Albert8b72aef2015-03-23 19:13:21 -07001311 "package_key=",
1312 "incremental_from=",
Tao Bao43078aa2015-04-21 14:32:35 -07001313 "full_radio",
leozwangaa6c1a12015-08-14 10:57:58 -07001314 "full_bootloader",
Dan Albert8b72aef2015-03-23 19:13:21 -07001315 "wipe_user_data",
Tao Bao5d182562016-02-23 11:38:39 -08001316 "downgrade",
Tao Bao3e6161a2017-02-28 11:48:48 -08001317 "override_timestamp",
Dan Albert8b72aef2015-03-23 19:13:21 -07001318 "extra_script=",
1319 "worker_threads=",
Dan Albert8b72aef2015-03-23 19:13:21 -07001320 "two_step",
Tao Baof7140c02018-01-30 17:09:24 -08001321 "include_secondary",
Dan Albert8b72aef2015-03-23 19:13:21 -07001322 "no_signing",
1323 "block",
1324 "binary=",
1325 "oem_settings=",
Tao Bao8608cde2016-02-25 19:49:55 -08001326 "oem_no_mount",
Dan Albert8b72aef2015-03-23 19:13:21 -07001327 "verify",
Tao Bao8dcf7382015-05-21 14:09:49 -07001328 "stash_threshold=",
Tao Baod62c6032015-11-30 09:40:20 -08001329 "log_diff=",
Tao Baodea0f8b2016-06-20 17:55:06 -07001330 "payload_signer=",
Baligh Uddin2abbbd02016-06-22 12:14:16 -07001331 "payload_signer_args=",
Tianjie Xu21e6deb2019-10-07 18:01:00 -07001332 "payload_signer_maximum_signature_size=",
xunchang376cc7c2019-04-08 23:04:58 -07001333 "payload_signer_key_size=",
Dan Willemsencea5cd22017-03-21 14:44:27 -07001334 "extracted_input_target_files=",
Tao Bao15a146a2018-02-21 16:06:59 -08001335 "skip_postinstall",
Yifan Hong50e79542018-11-08 17:44:12 -08001336 "retrofit_dynamic_partitions",
xunchangabfa2652019-02-19 16:27:10 -08001337 "skip_compatibility_check",
xunchang1cfe2512019-02-19 14:14:48 -08001338 "output_metadata_path=",
Tianjie Xu1b079832019-08-28 12:19:23 -07001339 "disable_fec_computation",
Kelvin Zhangcaf7bbc2020-11-20 14:09:42 -05001340 "disable_verity_computation",
Yifan Hong65afc072020-04-17 10:08:10 -07001341 "force_non_ab",
Tianjied6867162020-05-10 14:30:13 -07001342 "boot_variable_file=",
Yifan Hong38ab4d82020-06-18 15:19:56 -07001343 "partial=",
Hongguang Chen49ab1b902020-10-19 14:15:43 -07001344 "custom_image=",
Kelvin Zhangbbfa1822021-02-03 17:19:44 -05001345 "disable_vabc",
Kelvin Zhang2a3e5b12021-05-04 18:20:34 -04001346 "spl_downgrade",
1347 "vabc_downgrade",
Dan Albert8b72aef2015-03-23 19:13:21 -07001348 ], extra_option_handler=option_handler)
Doug Zongkereef39442009-04-02 12:14:19 -07001349
1350 if len(args) != 2:
1351 common.Usage(__doc__)
1352 sys.exit(1)
1353
Tao Bao32fcdab2018-10-12 10:30:39 -07001354 common.InitLogging()
1355
Tao Bao2db13852018-01-08 22:28:57 -08001356 # Load the build info dicts from the zip directly or the extracted input
1357 # directory. We don't need to unzip the entire target-files zips, because they
1358 # won't be needed for A/B OTAs (brillo_update_payload does that on its own).
1359 # When loading the info dicts, we don't need to provide the second parameter
1360 # to common.LoadInfoDict(). Specifying the second parameter allows replacing
1361 # some properties with their actual paths, such as 'selinux_fc',
1362 # 'ramdisk_dir', which won't be used during OTA generation.
Dan Willemsencea5cd22017-03-21 14:44:27 -07001363 if OPTIONS.extracted_input is not None:
Tao Bao2db13852018-01-08 22:28:57 -08001364 OPTIONS.info_dict = common.LoadInfoDict(OPTIONS.extracted_input)
Dan Willemsencea5cd22017-03-21 14:44:27 -07001365 else:
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001366 OPTIONS.info_dict = ParseInfoDict(args[0])
Kelvin Zhang80195722020-11-04 14:38:34 -05001367
Kelvin Zhang2a3e5b12021-05-04 18:20:34 -04001368 if OPTIONS.wipe_user_data:
1369 if not OPTIONS.vabc_downgrade:
1370 logger.info("Detected downgrade/datawipe OTA."
1371 "When wiping userdata, VABC OTA makes the user "
1372 "wait in recovery mode for merge to finish. Disable VABC by "
1373 "default. If you really want to do VABC downgrade, pass "
1374 "--vabc_downgrade")
1375 OPTIONS.disable_vabc = True
Kelvin Zhang80195722020-11-04 14:38:34 -05001376 # We should only allow downgrading incrementals (as opposed to full).
1377 # Otherwise the device may go back from arbitrary build with this full
1378 # OTA package.
1379 if OPTIONS.incremental_source is None:
1380 raise ValueError("Cannot generate downgradable full OTAs")
1381
Yifan Hong38ab4d82020-06-18 15:19:56 -07001382 # TODO(xunchang) for retrofit and partial updates, maybe we should rebuild the
1383 # target-file and reload the info_dict. So the info will be consistent with
1384 # the modified target-file.
1385
Tao Bao32fcdab2018-10-12 10:30:39 -07001386 logger.info("--- target info ---")
1387 common.DumpInfoDict(OPTIONS.info_dict)
Tao Bao2db13852018-01-08 22:28:57 -08001388
1389 # Load the source build dict if applicable.
1390 if OPTIONS.incremental_source is not None:
1391 OPTIONS.target_info_dict = OPTIONS.info_dict
Kelvin Zhanga59bb272020-10-30 12:52:25 -04001392 OPTIONS.source_info_dict = ParseInfoDict(OPTIONS.incremental_source)
Tao Bao2db13852018-01-08 22:28:57 -08001393
Tao Bao32fcdab2018-10-12 10:30:39 -07001394 logger.info("--- source info ---")
1395 common.DumpInfoDict(OPTIONS.source_info_dict)
Tao Bao2db13852018-01-08 22:28:57 -08001396
Kelvin Zhang83ea7832020-11-11 13:07:10 -05001397 if OPTIONS.partial:
1398 OPTIONS.info_dict['ab_partitions'] = \
Kelvin Zhang06400172021-03-05 15:42:03 -05001399 list(
1400 set(OPTIONS.info_dict['ab_partitions']) & set(OPTIONS.partial)
1401 )
Kelvin Zhang83ea7832020-11-11 13:07:10 -05001402 if OPTIONS.source_info_dict:
1403 OPTIONS.source_info_dict['ab_partitions'] = \
Kelvin Zhang06400172021-03-05 15:42:03 -05001404 list(
1405 set(OPTIONS.source_info_dict['ab_partitions']) &
1406 set(OPTIONS.partial)
1407 )
Kelvin Zhang83ea7832020-11-11 13:07:10 -05001408
Tao Bao2db13852018-01-08 22:28:57 -08001409 # Load OEM dicts if provided.
Tao Bao481bab82017-12-21 11:23:09 -08001410 OPTIONS.oem_dicts = _LoadOemDicts(OPTIONS.oem_source)
1411
Yifan Hong50e79542018-11-08 17:44:12 -08001412 # Assume retrofitting dynamic partitions when base build does not set
Yifan Hong50611032018-11-20 14:27:38 -08001413 # use_dynamic_partitions but target build does.
Yifan Hong50e79542018-11-08 17:44:12 -08001414 if (OPTIONS.source_info_dict and
Yifan Hong50611032018-11-20 14:27:38 -08001415 OPTIONS.source_info_dict.get("use_dynamic_partitions") != "true" and
Kelvin Zhang06400172021-03-05 15:42:03 -05001416 OPTIONS.target_info_dict.get("use_dynamic_partitions") == "true"):
Yifan Hong50e79542018-11-08 17:44:12 -08001417 if OPTIONS.target_info_dict.get("dynamic_partition_retrofit") != "true":
1418 raise common.ExternalError(
1419 "Expect to generate incremental OTA for retrofitting dynamic "
1420 "partitions, but dynamic_partition_retrofit is not set in target "
1421 "build.")
1422 logger.info("Implicitly generating retrofit incremental OTA.")
1423 OPTIONS.retrofit_dynamic_partitions = True
1424
1425 # Skip postinstall for retrofitting dynamic partitions.
1426 if OPTIONS.retrofit_dynamic_partitions:
1427 OPTIONS.skip_postinstall = True
1428
Tao Baoc098e9e2016-01-07 13:03:56 -08001429 ab_update = OPTIONS.info_dict.get("ab_update") == "true"
Yifan Hong65afc072020-04-17 10:08:10 -07001430 allow_non_ab = OPTIONS.info_dict.get("allow_non_ab") == "true"
1431 if OPTIONS.force_non_ab:
Kelvin Zhang22c687c2021-01-21 10:51:57 -05001432 assert allow_non_ab,\
Kelvin Zhang06400172021-03-05 15:42:03 -05001433 "--force_non_ab only allowed on devices that supports non-A/B"
Yifan Hong65afc072020-04-17 10:08:10 -07001434 assert ab_update, "--force_non_ab only allowed on A/B devices"
1435
1436 generate_ab = not OPTIONS.force_non_ab and ab_update
Tao Baoc098e9e2016-01-07 13:03:56 -08001437
Christian Oderf63e2cd2017-05-01 22:30:15 +02001438 # Use the default key to sign the package if not specified with package_key.
1439 # package_keys are needed on ab_updates, so always define them if an
Yifan Hong65afc072020-04-17 10:08:10 -07001440 # A/B update is getting created.
1441 if not OPTIONS.no_signing or generate_ab:
Christian Oderf63e2cd2017-05-01 22:30:15 +02001442 if OPTIONS.package_key is None:
1443 OPTIONS.package_key = OPTIONS.info_dict.get(
1444 "default_system_dev_certificate",
Dan Willemsen0ab1be62019-04-09 21:35:37 -07001445 "build/make/target/product/security/testkey")
Christian Oderf63e2cd2017-05-01 22:30:15 +02001446 # Get signing keys
1447 OPTIONS.key_passwords = common.GetKeyPasswords([OPTIONS.package_key])
Kelvin Zhangeb586ef2021-02-08 20:11:49 -05001448 private_key_path = OPTIONS.package_key + OPTIONS.private_key_suffix
1449 if not os.path.exists(private_key_path):
1450 raise common.ExternalError(
Kelvin Zhang06400172021-03-05 15:42:03 -05001451 "Private key {} doesn't exist. Make sure you passed the"
1452 " correct key path through -k option".format(
1453 private_key_path)
1454 )
Christian Oderf63e2cd2017-05-01 22:30:15 +02001455
Kelvin Zhang80ff4662021-02-08 19:57:57 -05001456 if OPTIONS.source_info_dict:
1457 source_build_prop = OPTIONS.source_info_dict["build.prop"]
1458 target_build_prop = OPTIONS.target_info_dict["build.prop"]
1459 source_spl = source_build_prop.GetProp(SECURITY_PATCH_LEVEL_PROP_NAME)
1460 target_spl = target_build_prop.GetProp(SECURITY_PATCH_LEVEL_PROP_NAME)
Kelvin Zhang05ff7052021-02-10 09:13:26 -05001461 is_spl_downgrade = target_spl < source_spl
Kelvin Zhang06400172021-03-05 15:42:03 -05001462 if is_spl_downgrade and not OPTIONS.spl_downgrade and not OPTIONS.downgrade:
Kelvin Zhang80ff4662021-02-08 19:57:57 -05001463 raise common.ExternalError(
Kelvin Zhang06400172021-03-05 15:42:03 -05001464 "Target security patch level {} is older than source SPL {} applying "
1465 "such OTA will likely cause device fail to boot. Pass --spl_downgrade "
1466 "to override this check. This script expects security patch level to "
1467 "be in format yyyy-mm-dd (e.x. 2021-02-05). It's possible to use "
1468 "separators other than -, so as long as it's used consistenly across "
1469 "all SPL dates".format(target_spl, source_spl))
Kelvin Zhang05ff7052021-02-10 09:13:26 -05001470 elif not is_spl_downgrade and OPTIONS.spl_downgrade:
1471 raise ValueError("--spl_downgrade specified but no actual SPL downgrade"
1472 " detected. Please only pass in this flag if you want a"
1473 " SPL downgrade. Target SPL: {} Source SPL: {}"
1474 .format(target_spl, source_spl))
Yifan Hong65afc072020-04-17 10:08:10 -07001475 if generate_ab:
Tao Baof0c4aa22018-04-30 20:29:30 -07001476 GenerateAbOtaPackage(
Tao Baoc098e9e2016-01-07 13:03:56 -08001477 target_file=args[0],
1478 output_file=args[1],
1479 source_file=OPTIONS.incremental_source)
1480
Dan Willemsencea5cd22017-03-21 14:44:27 -07001481 else:
Tao Baof0c4aa22018-04-30 20:29:30 -07001482 GenerateNonAbOtaPackage(
1483 target_file=args[0],
1484 output_file=args[1],
1485 source_file=OPTIONS.incremental_source)
Doug Zongkerfdd8e692009-08-03 17:27:48 -07001486
Tao Baof0c4aa22018-04-30 20:29:30 -07001487 # Post OTA generation works.
1488 if OPTIONS.incremental_source is not None and OPTIONS.log_diff:
1489 logger.info("Generating diff logs...")
1490 logger.info("Unzipping target-files for diffing...")
1491 target_dir = common.UnzipTemp(args[0], TARGET_DIFFING_UNZIP_PATTERN)
1492 source_dir = common.UnzipTemp(
1493 OPTIONS.incremental_source, TARGET_DIFFING_UNZIP_PATTERN)
Doug Zongkereb0a78a2014-01-27 10:01:06 -08001494
Tao Baof0c4aa22018-04-30 20:29:30 -07001495 with open(OPTIONS.log_diff, 'w') as out_file:
Tao Baof0c4aa22018-04-30 20:29:30 -07001496 target_files_diff.recursiveDiff(
1497 '', source_dir, target_dir, out_file)
Doug Zongker62d4f182014-08-04 16:06:43 -07001498
Tao Bao32fcdab2018-10-12 10:30:39 -07001499 logger.info("done.")
Doug Zongkereef39442009-04-02 12:14:19 -07001500
1501
1502if __name__ == '__main__':
1503 try:
Ying Wang7e6d4e42010-12-13 16:25:36 -08001504 common.CloseInheritedPipes()
Doug Zongkereef39442009-04-02 12:14:19 -07001505 main(sys.argv[1:])
Tao Bao32fcdab2018-10-12 10:30:39 -07001506 except common.ExternalError:
1507 logger.exception("\n ERROR:\n")
Doug Zongkereef39442009-04-02 12:14:19 -07001508 sys.exit(1)
Doug Zongkerfc44a512014-08-26 13:10:25 -07001509 finally:
1510 common.Cleanup()