blob: 17e63d1d2ce3aa11dcfd63127ca88ed421979fbc [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"""
18Given a target-files zipfile, produces an OTA package that installs
19that build. An incremental OTA is produced if -i is given, otherwise
20a full OTA is produced.
21
22Usage: ota_from_target_files [flags] input_target_files output_ota_package
23
Doug Zongkerafb32ea2011-09-22 10:28:04 -070024 -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 Zongkereef39442009-04-02 12:14:19 -070032
33 -i (--incremental_from) <file>
34 Generate an incremental OTA using the given target-files zip as
35 the starting build.
36
Tao Bao43078aa2015-04-21 14:32:35 -070037 --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
leozwangaa6c1a12015-08-14 10:57:58 -070042 --full_bootloader
43 Similar to --full_radio. When generating an incremental OTA, always
44 include a full copy of bootloader image.
45
Tao Baoedb35b82017-10-30 16:07:13 -070046 --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 Runge63f01de2014-10-28 19:24:19 -070049
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -080050 -o (--oem_settings) <main_file[,additional_files...]>
51 Comma seperated list of files used to specify the expected OEM-specific
Tao Bao481bab82017-12-21 11:23:09 -080052 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 Vongsouvanh7f804ba2017-02-16 13:06:55 -080056
Tao Bao8608cde2016-02-25 19:49:55 -080057 --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 Bao337633f2017-12-06 15:20:19 -080063 --wipe_user_data
Doug Zongkerdbfaae52009-04-21 17:12:54 -070064 Generate an OTA package that will wipe the user data partition
65 when installed.
66
Tao Bao5d182562016-02-23 11:38:39 -080067 --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 Bao4996cf02016-03-08 17:53:39 -080072 the metadata file. The update-binary in the source build will be used in
Tao Bao3e6161a2017-02-28 11:48:48 -080073 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 Bao5d182562016-02-23 11:38:39 -080086
Doug Zongker1c390a22009-05-14 19:06:36 -070087 -e (--extra_script) <file>
88 Insert the contents of file at the end of the update script.
89
Doug Zongker9b23f2c2013-11-25 14:44:12 -080090 -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 Baof7140c02018-01-30 17:09:24 -080095 --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 Zongker26e66192014-02-20 13:22:07 -0800113 --block
Tao Bao457cbf62017-03-06 09:56:01 -0800114 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 Zongker26e66192014-02-20 13:22:07 -0800118
Doug Zongker25568482014-03-03 10:21:27 -0800119 -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 Blumenstingl374e1142014-05-31 20:42:55 +0200124 -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 Bao8dcf7382015-05-21 14:09:49 -0700128 --stash_threshold <float>
129 Specifies the threshold that will be used to compute the maximum
130 allowed stash size (defaults to 0.8).
Tao Bao9bc6bb22015-11-09 16:58:28 -0800131
Tao Baod62c6032015-11-30 09:40:20 -0800132 --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 Baodea0f8b2016-06-20 17:55:06 -0700136
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 Uddin2abbbd02016-06-22 12:14:16 -0700144
145 --payload_signer_args <args>
146 Specify the arguments needed for payload signer.
Tao Bao15a146a2018-02-21 16:06:59 -0800147
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 Zongkereef39442009-04-02 12:14:19 -0700154"""
155
Tao Bao89fbb0f2017-01-10 10:47:58 -0800156from __future__ import print_function
157
Doug Zongkerfc44a512014-08-26 13:10:25 -0700158import multiprocessing
Tao Bao2dd1c482017-02-03 16:49:39 -0800159import os.path
Baligh Uddin2abbbd02016-06-22 12:14:16 -0700160import shlex
Tao Bao15a146a2018-02-21 16:06:59 -0800161import shutil
Tao Bao85f16982018-03-08 16:28:33 -0800162import struct
Tao Bao481bab82017-12-21 11:23:09 -0800163import subprocess
164import sys
Doug Zongkereef39442009-04-02 12:14:19 -0700165import tempfile
Doug Zongkereef39442009-04-02 12:14:19 -0700166import zipfile
167
168import common
Doug Zongkerc494d7c2009-06-18 08:43:44 -0700169import edify_generator
Doug Zongkereef39442009-04-02 12:14:19 -0700170
Tao Bao481bab82017-12-21 11:23:09 -0800171if sys.hexversion < 0x02070000:
172 print("Python 2.7 or newer is required.", file=sys.stderr)
173 sys.exit(1)
174
175
Doug Zongkereef39442009-04-02 12:14:19 -0700176OPTIONS = common.OPTIONS
Doug Zongkerafb32ea2011-09-22 10:28:04 -0700177OPTIONS.package_key = None
Doug Zongkereef39442009-04-02 12:14:19 -0700178OPTIONS.incremental_source = None
Michael Runge63f01de2014-10-28 19:24:19 -0700179OPTIONS.verify = False
Doug Zongkereef39442009-04-02 12:14:19 -0700180OPTIONS.patch_threshold = 0.95
Doug Zongkerdbfaae52009-04-21 17:12:54 -0700181OPTIONS.wipe_user_data = False
Tao Bao5d182562016-02-23 11:38:39 -0800182OPTIONS.downgrade = False
Tao Bao3e6161a2017-02-28 11:48:48 -0800183OPTIONS.timestamp = False
Doug Zongker1c390a22009-05-14 19:06:36 -0700184OPTIONS.extra_script = None
Doug Zongkerfc44a512014-08-26 13:10:25 -0700185OPTIONS.worker_threads = multiprocessing.cpu_count() // 2
186if OPTIONS.worker_threads == 0:
187 OPTIONS.worker_threads = 1
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800188OPTIONS.two_step = False
Tao Baof7140c02018-01-30 17:09:24 -0800189OPTIONS.include_secondary = False
Takeshi Kanemotoe153b342013-11-14 17:20:50 +0900190OPTIONS.no_signing = False
Tao Bao457cbf62017-03-06 09:56:01 -0800191OPTIONS.block_based = True
Doug Zongker25568482014-03-03 10:21:27 -0800192OPTIONS.updater_binary = None
Michael Runge6e836112014-04-15 17:40:21 -0700193OPTIONS.oem_source = None
Tao Bao8608cde2016-02-25 19:49:55 -0800194OPTIONS.oem_no_mount = False
Tao Bao43078aa2015-04-21 14:32:35 -0700195OPTIONS.full_radio = False
leozwangaa6c1a12015-08-14 10:57:58 -0700196OPTIONS.full_bootloader = False
Tao Baod47d8e12015-05-21 14:09:49 -0700197# Stash size cannot exceed cache_size * threshold.
198OPTIONS.cache_size = None
199OPTIONS.stash_threshold = 0.8
Tao Baod62c6032015-11-30 09:40:20 -0800200OPTIONS.log_diff = None
Tao Baodea0f8b2016-06-20 17:55:06 -0700201OPTIONS.payload_signer = None
Baligh Uddin2abbbd02016-06-22 12:14:16 -0700202OPTIONS.payload_signer_args = []
Tao Bao5f8ff932017-03-21 22:35:00 -0700203OPTIONS.extracted_input = None
Christian Oderf63e2cd2017-05-01 22:30:15 +0200204OPTIONS.key_passwords = []
Tao Bao15a146a2018-02-21 16:06:59 -0800205OPTIONS.skip_postinstall = False
206
Tao Bao8dcf7382015-05-21 14:09:49 -0700207
Tao Bao2dd1c482017-02-03 16:49:39 -0800208METADATA_NAME = 'META-INF/com/android/metadata'
Tao Bao15a146a2018-02-21 16:06:59 -0800209POSTINSTALL_CONFIG = 'META/postinstall_config.txt'
Tao Bao6b0b2f92017-03-05 11:38:11 -0800210UNZIP_PATTERN = ['IMAGES/*', 'META/*']
211
Tao Bao2dd1c482017-02-03 16:49:39 -0800212
Tao Bao481bab82017-12-21 11:23:09 -0800213class 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 Baofabe0832018-01-17 15:52:28 -0800343class 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 Bao40b18822018-01-30 18:19:04 -0800393class 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 Baof7140c02018-01-30 17:09:24 -0800398 SECONDARY_PAYLOAD_BIN = 'secondary/payload.bin'
399 SECONDARY_PAYLOAD_PROPERTIES_TXT = 'secondary/payload_properties.txt'
Tao Bao40b18822018-01-30 18:19:04 -0800400
Tao Bao667ff572018-02-10 00:02:40 -0800401 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 Bao40b18822018-01-30 18:19:04 -0800407 # 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 Bao667ff572018-02-10 00:02:40 -0800411 self.secondary = secondary
Tao Bao40b18822018-01-30 18:19:04 -0800412
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 Bao667ff572018-02-10 00:02:40 -0800491 if self.secondary:
492 with open(properties_file, "a") as f:
493 f.write("SWITCH_SLOT_ON_REBOOT=0\n")
494
Tao Bao40b18822018-01-30 18:19:04 -0800495 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 Bao667ff572018-02-10 00:02:40 -0800502 def WriteToZip(self, output_zip):
Tao Bao40b18822018-01-30 18:19:04 -0800503 """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 Bao667ff572018-02-10 00:02:40 -0800511 if self.secondary:
Tao Baof7140c02018-01-30 17:09:24 -0800512 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 Bao40b18822018-01-30 18:19:04 -0800518 # 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 Baof7140c02018-01-30 17:09:24 -0800521 common.ZipWrite(output_zip, self.payload_file, arcname=payload_arcname,
Tao Bao40b18822018-01-30 18:19:04 -0800522 compress_type=zipfile.ZIP_STORED)
523 common.ZipWrite(output_zip, self.payload_properties,
Tao Baof7140c02018-01-30 17:09:24 -0800524 arcname=payload_properties_arcname,
Tao Bao40b18822018-01-30 18:19:04 -0800525 compress_type=zipfile.ZIP_STORED)
526
527
Doug Zongkereef39442009-04-02 12:14:19 -0700528def SignOutput(temp_zip_name, output_zip_name):
Christian Oderf63e2cd2017-05-01 22:30:15 +0200529 pw = OPTIONS.key_passwords[OPTIONS.package_key]
Doug Zongkereef39442009-04-02 12:14:19 -0700530
Doug Zongker951495f2009-08-14 12:44:19 -0700531 common.SignFile(temp_zip_name, output_zip_name, OPTIONS.package_key, pw,
532 whole_file=True)
Doug Zongkereef39442009-04-02 12:14:19 -0700533
534
Tao Bao481bab82017-12-21 11:23:09 -0800535def _LoadOemDicts(oem_source):
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800536 """Returns the list of loaded OEM properties dict."""
Tao Bao481bab82017-12-21 11:23:09 -0800537 if not oem_source:
538 return None
539
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800540 oem_dicts = []
Tao Bao481bab82017-12-21 11:23:09 -0800541 for oem_file in oem_source:
542 with open(oem_file) as fp:
543 oem_dicts.append(common.LoadDictionaryFromLines(fp.readlines()))
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -0800544 return oem_dicts
Doug Zongkereef39442009-04-02 12:14:19 -0700545
Doug Zongkereef39442009-04-02 12:14:19 -0700546
Tao Baod42e97e2016-11-30 12:11:57 -0800547def _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 Bao89fbb0f2017-01-10 10:47:58 -0800571 print("two-step package: using %s in stage 1/3" % (
572 recovery_two_step_img_name,))
Tao Baod42e97e2016-11-30 12:11:57 -0800573 script.WriteRawImage("/boot", recovery_two_step_img_name)
574 else:
Tao Bao89fbb0f2017-01-10 10:47:58 -0800575 print("two-step package: using recovery.img in stage 1/3")
Tao Baod42e97e2016-11-30 12:11:57 -0800576 # The "recovery.img" entry has been written into package earlier.
577 script.WriteRawImage("/boot", "recovery.img")
578
579
Doug Zongkerc9253822014-02-04 12:17:58 -0800580def HasRecoveryPatch(target_files_zip):
Tao Baof2cffbd2015-07-22 12:33:18 -0700581 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 Zongker73ef8252009-07-23 15:12:53 -0700584
Tao Bao457cbf62017-03-06 09:56:01 -0800585
Doug Zongkerc8b4e842014-06-16 15:16:31 -0700586def HasVendorPartition(target_files_zip):
587 try:
588 target_files_zip.getinfo("VENDOR/")
589 return True
590 except KeyError:
591 return False
592
Tao Bao457cbf62017-03-06 09:56:01 -0800593
Tao Bao481bab82017-12-21 11:23:09 -0800594def HasTrebleEnabled(target_files_zip, target_info):
Tao Baobcd1d162017-08-26 13:10:26 -0700595 return (HasVendorPartition(target_files_zip) and
Tao Bao481bab82017-12-21 11:23:09 -0800596 target_info.GetBuildProp("ro.treble.enabled") == "true")
Tao Baobcd1d162017-08-26 13:10:26 -0700597
598
Tao Bao481bab82017-12-21 11:23:09 -0800599def WriteFingerprintAssertion(script, target_info, source_info):
600 source_oem_props = source_info.oem_props
601 target_oem_props = target_info.oem_props
Michael Runge6e836112014-04-15 17:40:21 -0700602
Tao Bao481bab82017-12-21 11:23:09 -0800603 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 Zongker73ef8252009-07-23 15:12:53 -0700618
Doug Zongkerfc44a512014-08-26 13:10:25 -0700619
Tao Bao481bab82017-12-21 11:23:09 -0800620def AddCompatibilityArchiveIfTrebleEnabled(target_zip, output_zip, target_info,
621 source_info=None):
Tao Baobcd1d162017-08-26 13:10:26 -0700622 """Adds compatibility info into the output zip if it's Treble-enabled target.
Tao Bao21803d32017-04-19 10:16:09 -0700623
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 Baobcd1d162017-08-26 13:10:26 -0700628 Compatibility archive should only be included for devices that have enabled
629 Treble support.
Tao Bao21803d32017-04-19 10:16:09 -0700630
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 Bao481bab82017-12-21 11:23:09 -0800634 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 Bao21803d32017-04-19 10:16:09 -0700637 """
638
Tao Baobcd1d162017-08-26 13:10:26 -0700639 def AddCompatibilityArchive(system_updated, vendor_updated):
640 """Adds compatibility info based on system/vendor update status.
Tao Bao21803d32017-04-19 10:16:09 -0700641
Tao Baobcd1d162017-08-26 13:10:26 -0700642 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 Bao21803d32017-04-19 10:16:09 -0700656
Tao Baobcd1d162017-08-26 13:10:26 -0700657 # Create new archive.
658 compatibility_archive = tempfile.NamedTemporaryFile()
Tao Bao481bab82017-12-21 11:23:09 -0800659 compatibility_archive_zip = zipfile.ZipFile(
660 compatibility_archive, "w", compression=zipfile.ZIP_DEFLATED)
Tao Bao21803d32017-04-19 10:16:09 -0700661
Tao Baobcd1d162017-08-26 13:10:26 -0700662 # Add metadata.
663 for file_name in compatibility_files:
664 target_file_name = "META/" + file_name
Tao Bao21803d32017-04-19 10:16:09 -0700665
Tao Baobcd1d162017-08-26 13:10:26 -0700666 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 Bao21803d32017-04-19 10:16:09 -0700669
Tao Baobcd1d162017-08-26 13:10:26 -0700670 # 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 Bao481bab82017-12-21 11:23:09 -0800681 if not HasTrebleEnabled(target_zip, target_info):
Tao Baobcd1d162017-08-26 13:10:26 -0700682 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 Bao481bab82017-12-21 11:23:09 -0800686 assert not target_info.oem_props
Tao Baobcd1d162017-08-26 13:10:26 -0700687
688 # Full OTA carries the info for system/vendor both.
Tao Bao481bab82017-12-21 11:23:09 -0800689 if source_info is None:
Tao Baobcd1d162017-08-26 13:10:26 -0700690 AddCompatibilityArchive(True, True)
691 return
692
Tao Bao481bab82017-12-21 11:23:09 -0800693 assert not source_info.oem_props
Tao Baobcd1d162017-08-26 13:10:26 -0700694
Tao Bao481bab82017-12-21 11:23:09 -0800695 source_fp = source_info.fingerprint
696 target_fp = target_info.fingerprint
Tao Baobcd1d162017-08-26 13:10:26 -0700697 system_updated = source_fp != target_fp
698
Tao Bao481bab82017-12-21 11:23:09 -0800699 source_fp_vendor = source_info.GetVendorBuildProp(
700 "ro.vendor.build.fingerprint")
701 target_fp_vendor = target_info.GetVendorBuildProp(
702 "ro.vendor.build.fingerprint")
Tao Baobcd1d162017-08-26 13:10:26 -0700703 vendor_updated = source_fp_vendor != target_fp_vendor
704
705 AddCompatibilityArchive(system_updated, vendor_updated)
Tao Bao21803d32017-04-19 10:16:09 -0700706
707
Doug Zongkerc77a9ad2010-09-16 11:28:43 -0700708def WriteFullOTAPackage(input_zip, output_zip):
Tao Bao481bab82017-12-21 11:23:09 -0800709 target_info = BuildInfo(OPTIONS.info_dict, OPTIONS.oem_dicts)
Doug Zongkereef39442009-04-02 12:14:19 -0700710
Tao Bao481bab82017-12-21 11:23:09 -0800711 # 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 Runge6e836112014-04-15 17:40:21 -0700716
Tao Bao481bab82017-12-21 11:23:09 -0800717 if target_info.oem_props and not OPTIONS.oem_no_mount:
718 target_info.WriteMountOemScript(script)
719
Tao Baodf3a48b2018-01-10 16:30:43 -0800720 metadata = GetPackageMetadata(target_info)
Doug Zongker2ea21062010-04-28 16:05:21 -0700721
Doug Zongker05d3dea2009-06-22 11:32:31 -0700722 device_specific = common.DeviceSpecificParams(
723 input_zip=input_zip,
Tao Bao481bab82017-12-21 11:23:09 -0800724 input_version=target_api_version,
Doug Zongker05d3dea2009-06-22 11:32:31 -0700725 output_zip=output_zip,
726 script=script,
Doug Zongker2ea21062010-04-28 16:05:21 -0700727 input_tmp=OPTIONS.input_tmp,
Doug Zongker96a57e72010-09-26 14:57:41 -0700728 metadata=metadata,
729 info_dict=OPTIONS.info_dict)
Doug Zongker05d3dea2009-06-22 11:32:31 -0700730
Tao Bao457cbf62017-03-06 09:56:01 -0800731 assert HasRecoveryPatch(input_zip)
Doug Zongkerc9253822014-02-04 12:17:58 -0800732
Tao Bao481bab82017-12-21 11:23:09 -0800733 # Assertions (e.g. downgrade check, device properties check).
734 ts = target_info.GetBuildProp("ro.build.date.utc")
735 ts_text = target_info.GetBuildProp("ro.build.date")
Elliott Hughesd8a52f92016-06-20 14:35:47 -0700736 script.AssertOlderBuild(ts, ts_text)
Doug Zongkereef39442009-04-02 12:14:19 -0700737
Tao Bao481bab82017-12-21 11:23:09 -0800738 target_info.WriteDeviceAssertions(script, OPTIONS.oem_no_mount)
Doug Zongker05d3dea2009-06-22 11:32:31 -0700739 device_specific.FullOTA_Assertions()
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800740
741 # Two-step package strategy (in chronological order, which is *not*
742 # the order in which the generated script has things):
743 #
744 # if stage is not "2/3" or "3/3":
745 # write recovery image to boot partition
746 # set stage to "2/3"
747 # reboot to boot partition and restart recovery
748 # else if stage is "2/3":
749 # write recovery image to recovery partition
750 # set stage to "3/3"
751 # reboot to recovery partition and restart recovery
752 # else:
753 # (stage must be "3/3")
754 # set stage to ""
755 # do normal full package installation:
756 # wipe and install system, boot image, etc.
757 # set up system to update recovery partition on first boot
Dan Albert8b72aef2015-03-23 19:13:21 -0700758 # complete script normally
759 # (allow recovery to mark itself finished and reboot)
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800760
761 recovery_img = common.GetBootableImage("recovery.img", "recovery.img",
762 OPTIONS.input_tmp, "RECOVERY")
763 if OPTIONS.two_step:
Tao Bao481bab82017-12-21 11:23:09 -0800764 if not target_info.get("multistage_support"):
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800765 assert False, "two-step packages not supported by this build"
Tao Bao481bab82017-12-21 11:23:09 -0800766 fs = target_info["fstab"]["/misc"]
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800767 assert fs.fs_type.upper() == "EMMC", \
768 "two-step packages only supported on devices with EMMC /misc partitions"
769 bcb_dev = {"bcb_dev": fs.device}
770 common.ZipWriteStr(output_zip, "recovery.img", recovery_img.data)
771 script.AppendExtra("""
Michael Rungefb8886d2014-10-23 13:51:04 -0700772if get_stage("%(bcb_dev)s") == "2/3" then
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800773""" % bcb_dev)
Tao Baod42e97e2016-11-30 12:11:57 -0800774
775 # Stage 2/3: Write recovery image to /recovery (currently running /boot).
776 script.Comment("Stage 2/3")
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800777 script.WriteRawImage("/recovery", "recovery.img")
778 script.AppendExtra("""
779set_stage("%(bcb_dev)s", "3/3");
780reboot_now("%(bcb_dev)s", "recovery");
Michael Rungefb8886d2014-10-23 13:51:04 -0700781else if get_stage("%(bcb_dev)s") == "3/3" then
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800782""" % bcb_dev)
783
Tao Baod42e97e2016-11-30 12:11:57 -0800784 # Stage 3/3: Make changes.
785 script.Comment("Stage 3/3")
786
Tao Bao6c55a8a2015-04-08 15:30:27 -0700787 # Dump fingerprints
Tao Bao481bab82017-12-21 11:23:09 -0800788 script.Print("Target: {}".format(target_info.fingerprint))
Tao Bao6c55a8a2015-04-08 15:30:27 -0700789
Doug Zongkere5ff5902012-01-17 10:55:37 -0800790 device_specific.FullOTA_InstallBegin()
Doug Zongker171f1cd2009-06-15 22:36:37 -0700791
Doug Zongker01ce19c2014-02-04 13:48:15 -0800792 system_progress = 0.75
Doug Zongkereef39442009-04-02 12:14:19 -0700793
Doug Zongkerdbfaae52009-04-21 17:12:54 -0700794 if OPTIONS.wipe_user_data:
Doug Zongker01ce19c2014-02-04 13:48:15 -0800795 system_progress -= 0.1
Doug Zongkerc8b4e842014-06-16 15:16:31 -0700796 if HasVendorPartition(input_zip):
797 system_progress -= 0.1
Doug Zongkerdbfaae52009-04-21 17:12:54 -0700798
Doug Zongker4b9596f2014-06-09 14:15:45 -0700799 script.ShowProgress(system_progress, 0)
Jesse Zhao75bcea02015-01-06 10:59:53 -0800800
Tao Baoe709b092018-02-07 12:40:00 -0800801 # See the notes in WriteBlockIncrementalOTAPackage().
802 allow_shared_blocks = target_info.get('ext4_share_dup_blocks') == "true"
803
Tao Bao457cbf62017-03-06 09:56:01 -0800804 # Full OTA is done as an "incremental" against an empty source image. This
805 # has the effect of writing new data from the package to the entire
806 # partition, but lets us reuse the updater code that writes incrementals to
807 # do it.
Tao Baoe709b092018-02-07 12:40:00 -0800808 system_tgt = common.GetSparseImage("system", OPTIONS.input_tmp, input_zip,
809 allow_shared_blocks)
Tao Bao457cbf62017-03-06 09:56:01 -0800810 system_tgt.ResetFileMap()
811 system_diff = common.BlockDifference("system", system_tgt, src=None)
812 system_diff.WriteScript(script, output_zip)
Doug Zongkereef39442009-04-02 12:14:19 -0700813
Tao Bao7a5bf8a2015-07-21 18:01:20 -0700814 boot_img = common.GetBootableImage(
815 "boot.img", "boot.img", OPTIONS.input_tmp, "BOOT")
Doug Zongkerc9253822014-02-04 12:17:58 -0800816
Doug Zongkerc8b4e842014-06-16 15:16:31 -0700817 if HasVendorPartition(input_zip):
Doug Zongkerc8b4e842014-06-16 15:16:31 -0700818 script.ShowProgress(0.1, 0)
819
Tao Baoe709b092018-02-07 12:40:00 -0800820 vendor_tgt = common.GetSparseImage("vendor", OPTIONS.input_tmp, input_zip,
821 allow_shared_blocks)
Tao Bao457cbf62017-03-06 09:56:01 -0800822 vendor_tgt.ResetFileMap()
823 vendor_diff = common.BlockDifference("vendor", vendor_tgt)
824 vendor_diff.WriteScript(script, output_zip)
Doug Zongker73ef8252009-07-23 15:12:53 -0700825
Tao Bao481bab82017-12-21 11:23:09 -0800826 AddCompatibilityArchiveIfTrebleEnabled(input_zip, output_zip, target_info)
Tao Baobcd1d162017-08-26 13:10:26 -0700827
Tao Bao481bab82017-12-21 11:23:09 -0800828 common.CheckSize(boot_img.data, "boot.img", target_info)
Doug Zongker73ef8252009-07-23 15:12:53 -0700829 common.ZipWriteStr(output_zip, "boot.img", boot_img.data)
Doug Zongkerc494d7c2009-06-18 08:43:44 -0700830
Doug Zongker01ce19c2014-02-04 13:48:15 -0800831 script.ShowProgress(0.05, 5)
Doug Zongker9ce0fb62010-09-20 18:04:41 -0700832 script.WriteRawImage("/boot", "boot.img")
Doug Zongker05d3dea2009-06-22 11:32:31 -0700833
Doug Zongker01ce19c2014-02-04 13:48:15 -0800834 script.ShowProgress(0.2, 10)
Doug Zongker05d3dea2009-06-22 11:32:31 -0700835 device_specific.FullOTA_InstallEnd()
Doug Zongkereef39442009-04-02 12:14:19 -0700836
Doug Zongker1c390a22009-05-14 19:06:36 -0700837 if OPTIONS.extra_script is not None:
Doug Zongkerc494d7c2009-06-18 08:43:44 -0700838 script.AppendExtra(OPTIONS.extra_script)
Doug Zongker1c390a22009-05-14 19:06:36 -0700839
Doug Zongker14833602010-02-02 13:12:04 -0800840 script.UnmountAll()
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800841
Doug Zongker922206e2014-03-04 13:16:24 -0800842 if OPTIONS.wipe_user_data:
843 script.ShowProgress(0.1, 10)
844 script.FormatPartition("/data")
Doug Zongkerc8b4e842014-06-16 15:16:31 -0700845
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800846 if OPTIONS.two_step:
847 script.AppendExtra("""
848set_stage("%(bcb_dev)s", "");
849""" % bcb_dev)
850 script.AppendExtra("else\n")
Tao Baod42e97e2016-11-30 12:11:57 -0800851
852 # Stage 1/3: Nothing to verify for full OTA. Write recovery image to /boot.
853 script.Comment("Stage 1/3")
854 _WriteRecoveryImageToBoot(script, output_zip)
855
Doug Zongker9b23f2c2013-11-25 14:44:12 -0800856 script.AppendExtra("""
857set_stage("%(bcb_dev)s", "2/3");
858reboot_now("%(bcb_dev)s", "");
859endif;
860endif;
861""" % bcb_dev)
Tao Baod8d14be2016-02-04 14:26:02 -0800862
Tao Bao5d182562016-02-23 11:38:39 -0800863 script.SetProgress(1)
864 script.AddToZip(input_zip, output_zip, input_path=OPTIONS.updater_binary)
Tao Baod8d14be2016-02-04 14:26:02 -0800865 metadata["ota-required-cache"] = str(script.required_cache)
Doug Zongker2ea21062010-04-28 16:05:21 -0700866 WriteMetadata(metadata, output_zip)
867
Doug Zongkerfc44a512014-08-26 13:10:25 -0700868
Doug Zongker2ea21062010-04-28 16:05:21 -0700869def WriteMetadata(metadata, output_zip):
Tao Bao2dd1c482017-02-03 16:49:39 -0800870 value = "".join(["%s=%s\n" % kv for kv in sorted(metadata.iteritems())])
871 common.ZipWriteStr(output_zip, METADATA_NAME, value,
872 compress_type=zipfile.ZIP_STORED)
Doug Zongkereef39442009-04-02 12:14:19 -0700873
Doug Zongkerfc44a512014-08-26 13:10:25 -0700874
Tao Bao481bab82017-12-21 11:23:09 -0800875def HandleDowngradeMetadata(metadata, target_info, source_info):
Tao Baob31892e2017-02-07 11:21:17 -0800876 # Only incremental OTAs are allowed to reach here.
877 assert OPTIONS.incremental_source is not None
878
Tao Bao481bab82017-12-21 11:23:09 -0800879 post_timestamp = target_info.GetBuildProp("ro.build.date.utc")
880 pre_timestamp = source_info.GetBuildProp("ro.build.date.utc")
Tao Baob31892e2017-02-07 11:21:17 -0800881 is_downgrade = long(post_timestamp) < long(pre_timestamp)
882
883 if OPTIONS.downgrade:
Tao Baob31892e2017-02-07 11:21:17 -0800884 if not is_downgrade:
885 raise RuntimeError("--downgrade specified but no downgrade detected: "
886 "pre: %s, post: %s" % (pre_timestamp, post_timestamp))
Tao Bao3e6161a2017-02-28 11:48:48 -0800887 metadata["ota-downgrade"] = "yes"
888 elif OPTIONS.timestamp:
889 if not is_downgrade:
Tao Bao481bab82017-12-21 11:23:09 -0800890 raise RuntimeError("--override_timestamp specified but no timestamp hack "
891 "needed: pre: %s, post: %s" % (pre_timestamp,
892 post_timestamp))
Tao Bao3e6161a2017-02-28 11:48:48 -0800893 metadata["post-timestamp"] = str(long(pre_timestamp) + 1)
Tao Baob31892e2017-02-07 11:21:17 -0800894 else:
895 if is_downgrade:
Tao Bao3e6161a2017-02-28 11:48:48 -0800896 raise RuntimeError("Downgrade detected based on timestamp check: "
Tao Bao481bab82017-12-21 11:23:09 -0800897 "pre: %s, post: %s. Need to specify "
898 "--override_timestamp OR --downgrade to allow "
899 "building the incremental." % (pre_timestamp,
900 post_timestamp))
Tao Baob31892e2017-02-07 11:21:17 -0800901 metadata["post-timestamp"] = post_timestamp
902
903
Tao Baodf3a48b2018-01-10 16:30:43 -0800904def GetPackageMetadata(target_info, source_info=None):
905 """Generates and returns the metadata dict.
906
907 It generates a dict() that contains the info to be written into an OTA
908 package (META-INF/com/android/metadata). It also handles the detection of
909 downgrade / timestamp override / data wipe based on the global options.
910
911 Args:
912 target_info: The BuildInfo instance that holds the target build info.
913 source_info: The BuildInfo instance that holds the source build info, or
914 None if generating full OTA.
915
916 Returns:
917 A dict to be written into package metadata entry.
918 """
919 assert isinstance(target_info, BuildInfo)
920 assert source_info is None or isinstance(source_info, BuildInfo)
921
922 metadata = {
923 'post-build' : target_info.fingerprint,
924 'post-build-incremental' : target_info.GetBuildProp(
925 'ro.build.version.incremental'),
Tao Bao35dc2552018-02-01 13:18:00 -0800926 'post-sdk-level' : target_info.GetBuildProp(
927 'ro.build.version.sdk'),
928 'post-security-patch-level' : target_info.GetBuildProp(
929 'ro.build.version.security_patch'),
Tao Baodf3a48b2018-01-10 16:30:43 -0800930 }
931
932 if target_info.is_ab:
933 metadata['ota-type'] = 'AB'
934 metadata['ota-required-cache'] = '0'
935 else:
936 metadata['ota-type'] = 'BLOCK'
937
938 if OPTIONS.wipe_user_data:
939 metadata['ota-wipe'] = 'yes'
940
941 is_incremental = source_info is not None
942 if is_incremental:
943 metadata['pre-build'] = source_info.fingerprint
944 metadata['pre-build-incremental'] = source_info.GetBuildProp(
945 'ro.build.version.incremental')
946 metadata['pre-device'] = source_info.device
947 else:
948 metadata['pre-device'] = target_info.device
949
950 # Detect downgrades, or fill in the post-timestamp.
951 if is_incremental:
952 HandleDowngradeMetadata(metadata, target_info, source_info)
953 else:
954 metadata['post-timestamp'] = target_info.GetBuildProp('ro.build.date.utc')
955
956 return metadata
957
958
Tao Baod3fc38a2018-03-08 16:09:01 -0800959class PropertyFiles(object):
960 """A class that computes the property-files string for an OTA package.
961
962 A property-files string is a comma-separated string that contains the
963 offset/size info for an OTA package. The entries, which must be ZIP_STORED,
964 can be fetched directly with the package URL along with the offset/size info.
965 These strings can be used for streaming A/B OTAs, or allowing an updater to
966 download package metadata entry directly, without paying the cost of
967 downloading entire package.
Tao Baofe5b69a2018-03-02 09:47:43 -0800968
Tao Baocc8e2662018-03-01 19:30:00 -0800969 Computing the final property-files string requires two passes. Because doing
970 the whole package signing (with signapk.jar) will possibly reorder the ZIP
971 entries, which may in turn invalidate earlier computed ZIP entry offset/size
972 values.
973
974 This class provides functions to be called for each pass. The general flow is
975 as follows.
976
Tao Baod3fc38a2018-03-08 16:09:01 -0800977 property_files = PropertyFiles()
Tao Baocc8e2662018-03-01 19:30:00 -0800978 # The first pass, which writes placeholders before doing initial signing.
979 property_files.Compute()
980 SignOutput()
981
982 # The second pass, by replacing the placeholders with actual data.
983 property_files.Finalize()
984 SignOutput()
985
986 And the caller can additionally verify the final result.
987
988 property_files.Verify()
Tao Baofe5b69a2018-03-02 09:47:43 -0800989 """
990
Tao Baocc8e2662018-03-01 19:30:00 -0800991 def __init__(self):
Tao Baod3fc38a2018-03-08 16:09:01 -0800992 self.name = None
993 self.required = ()
994 self.optional = ()
Tao Baofe5b69a2018-03-02 09:47:43 -0800995
Tao Baocc8e2662018-03-01 19:30:00 -0800996 def Compute(self, input_zip):
997 """Computes and returns a property-files string with placeholders.
Tao Baofe5b69a2018-03-02 09:47:43 -0800998
Tao Baocc8e2662018-03-01 19:30:00 -0800999 We reserve extra space for the offset and size of the metadata entry itself,
1000 although we don't know the final values until the package gets signed.
Tao Baofe5b69a2018-03-02 09:47:43 -08001001
Tao Baocc8e2662018-03-01 19:30:00 -08001002 Args:
1003 input_zip: The input ZIP file.
Tao Baofe5b69a2018-03-02 09:47:43 -08001004
Tao Baocc8e2662018-03-01 19:30:00 -08001005 Returns:
1006 A string with placeholders for the metadata offset/size info, e.g.
1007 "payload.bin:679:343,payload_properties.txt:378:45,metadata: ".
1008 """
1009 return self._GetPropertyFilesString(input_zip, reserve_space=True)
Tao Baofe5b69a2018-03-02 09:47:43 -08001010
Tao Baocc8e2662018-03-01 19:30:00 -08001011 def Finalize(self, input_zip, reserved_length):
1012 """Finalizes a property-files string with actual METADATA offset/size info.
1013
1014 The input ZIP file has been signed, with the ZIP entries in the desired
1015 place (signapk.jar will possibly reorder the ZIP entries). Now we compute
1016 the ZIP entry offsets and construct the property-files string with actual
1017 data. Note that during this process, we must pad the property-files string
1018 to the reserved length, so that the METADATA entry size remains the same.
1019 Otherwise the entries' offsets and sizes may change again.
1020
1021 Args:
1022 input_zip: The input ZIP file.
1023 reserved_length: The reserved length of the property-files string during
1024 the call to Compute(). The final string must be no more than this
1025 size.
1026
1027 Returns:
1028 A property-files string including the metadata offset/size info, e.g.
1029 "payload.bin:679:343,payload_properties.txt:378:45,metadata:69:379 ".
1030
1031 Raises:
1032 AssertionError: If the reserved length is insufficient to hold the final
1033 string.
1034 """
1035 result = self._GetPropertyFilesString(input_zip, reserve_space=False)
1036 assert len(result) <= reserved_length, \
1037 'Insufficient reserved space: reserved={}, actual={}'.format(
1038 reserved_length, len(result))
1039 result += ' ' * (reserved_length - len(result))
1040 return result
1041
1042 def Verify(self, input_zip, expected):
1043 """Verifies the input ZIP file contains the expected property-files string.
1044
1045 Args:
1046 input_zip: The input ZIP file.
1047 expected: The property-files string that's computed from Finalize().
1048
1049 Raises:
1050 AssertionError: On finding a mismatch.
1051 """
1052 actual = self._GetPropertyFilesString(input_zip)
1053 assert actual == expected, \
1054 "Mismatching streaming metadata: {} vs {}.".format(actual, expected)
1055
1056 def _GetPropertyFilesString(self, zip_file, reserve_space=False):
1057 """Constructs the property-files string per request."""
1058
1059 def ComputeEntryOffsetSize(name):
1060 """Computes the zip entry offset and size."""
1061 info = zip_file.getinfo(name)
1062 offset = info.header_offset + len(info.FileHeader())
1063 size = info.file_size
1064 return '%s:%d:%d' % (os.path.basename(name), offset, size)
1065
1066 tokens = []
Tao Bao85f16982018-03-08 16:28:33 -08001067 tokens.extend(self._GetPrecomputed(zip_file))
Tao Baocc8e2662018-03-01 19:30:00 -08001068 for entry in self.required:
1069 tokens.append(ComputeEntryOffsetSize(entry))
1070 for entry in self.optional:
1071 if entry in zip_file.namelist():
1072 tokens.append(ComputeEntryOffsetSize(entry))
1073
1074 # 'META-INF/com/android/metadata' is required. We don't know its actual
1075 # offset and length (as well as the values for other entries). So we reserve
1076 # 10-byte as a placeholder, which is to cover the space for metadata entry
1077 # ('xx:xxx', since it's ZIP_STORED which should appear at the beginning of
1078 # the zip), as well as the possible value changes in other entries.
1079 if reserve_space:
1080 tokens.append('metadata:' + ' ' * 10)
1081 else:
1082 tokens.append(ComputeEntryOffsetSize(METADATA_NAME))
1083
1084 return ','.join(tokens)
Tao Baofe5b69a2018-03-02 09:47:43 -08001085
Tao Bao85f16982018-03-08 16:28:33 -08001086 def _GetPrecomputed(self, input_zip):
1087 """Computes the additional tokens to be included into the property-files.
1088
1089 This applies to tokens without actual ZIP entries, such as
1090 payload_metadadata.bin. We want to expose the offset/size to updaters, so
1091 that they can download the payload metadata directly with the info.
1092
1093 Args:
1094 input_zip: The input zip file.
1095
1096 Returns:
1097 A list of strings (tokens) to be added to the property-files string.
1098 """
1099 # pylint: disable=no-self-use
1100 # pylint: disable=unused-argument
1101 return []
1102
Tao Baofe5b69a2018-03-02 09:47:43 -08001103
Tao Baod3fc38a2018-03-08 16:09:01 -08001104class StreamingPropertyFiles(PropertyFiles):
1105 """A subclass for computing the property-files for streaming A/B OTAs."""
1106
1107 def __init__(self):
1108 super(StreamingPropertyFiles, self).__init__()
1109 self.name = 'ota-streaming-property-files'
1110 self.required = (
1111 # payload.bin and payload_properties.txt must exist.
1112 'payload.bin',
1113 'payload_properties.txt',
1114 )
1115 self.optional = (
1116 # care_map.txt is available only if dm-verity is enabled.
1117 'care_map.txt',
1118 # compatibility.zip is available only if target supports Treble.
1119 'compatibility.zip',
1120 )
1121
1122
Tao Bao85f16982018-03-08 16:28:33 -08001123class AbOtaPropertyFiles(StreamingPropertyFiles):
1124 """The property-files for A/B OTA that includes payload_metadata.bin info.
1125
1126 Since P, we expose one more token (aka property-file), in addition to the ones
1127 for streaming A/B OTA, for a virtual entry of 'payload_metadata.bin'.
1128 'payload_metadata.bin' is the header part of a payload ('payload.bin'), which
1129 doesn't exist as a separate ZIP entry, but can be used to verify if the
1130 payload can be applied on the given device.
1131
1132 For backward compatibility, we keep both of the 'ota-streaming-property-files'
1133 and the newly added 'ota-property-files' in P. The new token will only be
1134 available in 'ota-property-files'.
1135 """
1136
1137 def __init__(self):
1138 super(AbOtaPropertyFiles, self).__init__()
1139 self.name = 'ota-property-files'
1140
1141 def _GetPrecomputed(self, input_zip):
1142 offset, size = self._GetPayloadMetadataOffsetAndSize(input_zip)
1143 return ['payload_metadata.bin:{}:{}'.format(offset, size)]
1144
1145 @staticmethod
1146 def _GetPayloadMetadataOffsetAndSize(input_zip):
1147 """Computes the offset and size of the payload metadata for a given package.
1148
1149 (From system/update_engine/update_metadata.proto)
1150 A delta update file contains all the deltas needed to update a system from
1151 one specific version to another specific version. The update format is
1152 represented by this struct pseudocode:
1153
1154 struct delta_update_file {
1155 char magic[4] = "CrAU";
1156 uint64 file_format_version;
1157 uint64 manifest_size; // Size of protobuf DeltaArchiveManifest
1158
1159 // Only present if format_version > 1:
1160 uint32 metadata_signature_size;
1161
1162 // The Bzip2 compressed DeltaArchiveManifest
1163 char manifest[metadata_signature_size];
1164
1165 // The signature of the metadata (from the beginning of the payload up to
1166 // this location, not including the signature itself). This is a
1167 // serialized Signatures message.
1168 char medatada_signature_message[metadata_signature_size];
1169
1170 // Data blobs for files, no specific format. The specific offset
1171 // and length of each data blob is recorded in the DeltaArchiveManifest.
1172 struct {
1173 char data[];
1174 } blobs[];
1175
1176 // These two are not signed:
1177 uint64 payload_signatures_message_size;
1178 char payload_signatures_message[];
1179 };
1180
1181 'payload-metadata.bin' contains all the bytes from the beginning of the
1182 payload, till the end of 'medatada_signature_message'.
1183 """
1184 payload_info = input_zip.getinfo('payload.bin')
1185 payload_offset = payload_info.header_offset + len(payload_info.FileHeader())
1186 payload_size = payload_info.file_size
1187
1188 with input_zip.open('payload.bin', 'r') as payload_fp:
1189 header_bin = payload_fp.read(24)
1190
1191 # network byte order (big-endian)
1192 header = struct.unpack("!IQQL", header_bin)
1193
1194 # 'CrAU'
1195 magic = header[0]
1196 assert magic == 0x43724155, "Invalid magic: {:x}".format(magic)
1197
1198 manifest_size = header[2]
1199 metadata_signature_size = header[3]
1200 metadata_total = 24 + manifest_size + metadata_signature_size
1201 assert metadata_total < payload_size
1202
1203 return (payload_offset, metadata_total)
1204
1205
Tao Baod3fc38a2018-03-08 16:09:01 -08001206def FinalizeMetadata(metadata, input_file, output_file, needed_property_files):
Tao Baofe5b69a2018-03-02 09:47:43 -08001207 """Finalizes the metadata and signs an A/B OTA package.
1208
1209 In order to stream an A/B OTA package, we need 'ota-streaming-property-files'
1210 that contains the offsets and sizes for the ZIP entries. An example
1211 property-files string is as follows.
1212
1213 "payload.bin:679:343,payload_properties.txt:378:45,metadata:69:379"
1214
1215 OTA server can pass down this string, in addition to the package URL, to the
1216 system update client. System update client can then fetch individual ZIP
1217 entries (ZIP_STORED) directly at the given offset of the URL.
1218
1219 Args:
1220 metadata: The metadata dict for the package.
1221 input_file: The input ZIP filename that doesn't contain the package METADATA
1222 entry yet.
1223 output_file: The final output ZIP filename.
Tao Baod3fc38a2018-03-08 16:09:01 -08001224 needed_property_files: The list of PropertyFiles' to be generated.
Tao Baofe5b69a2018-03-02 09:47:43 -08001225 """
1226 output_zip = zipfile.ZipFile(
1227 input_file, 'a', compression=zipfile.ZIP_DEFLATED)
1228
1229 # Write the current metadata entry with placeholders.
Tao Baod3fc38a2018-03-08 16:09:01 -08001230 for property_files in needed_property_files:
1231 metadata[property_files.name] = property_files.Compute(output_zip)
Tao Baofe5b69a2018-03-02 09:47:43 -08001232 WriteMetadata(metadata, output_zip)
1233 common.ZipClose(output_zip)
1234
1235 # SignOutput(), which in turn calls signapk.jar, will possibly reorder the
1236 # ZIP entries, as well as padding the entry headers. We do a preliminary
1237 # signing (with an incomplete metadata entry) to allow that to happen. Then
1238 # compute the ZIP entry offsets, write back the final metadata and do the
1239 # final signing.
1240 prelim_signing = common.MakeTempFile(suffix='.zip')
1241 SignOutput(input_file, prelim_signing)
1242
1243 # Open the signed zip. Compute the final metadata that's needed for streaming.
Tao Baocc8e2662018-03-01 19:30:00 -08001244 with zipfile.ZipFile(prelim_signing, 'r') as prelim_signing_zip:
Tao Baod3fc38a2018-03-08 16:09:01 -08001245 for property_files in needed_property_files:
1246 metadata[property_files.name] = property_files.Finalize(
1247 prelim_signing_zip, len(metadata[property_files.name]))
Tao Baofe5b69a2018-03-02 09:47:43 -08001248
1249 # Replace the METADATA entry.
1250 common.ZipDelete(prelim_signing, METADATA_NAME)
Tao Baod3fc38a2018-03-08 16:09:01 -08001251 output_zip = zipfile.ZipFile(
1252 prelim_signing, 'a', compression=zipfile.ZIP_DEFLATED)
Tao Baofe5b69a2018-03-02 09:47:43 -08001253 WriteMetadata(metadata, output_zip)
1254 common.ZipClose(output_zip)
1255
1256 # Re-sign the package after updating the metadata entry.
1257 SignOutput(prelim_signing, output_file)
1258
1259 # Reopen the final signed zip to double check the streaming metadata.
Tao Baocc8e2662018-03-01 19:30:00 -08001260 with zipfile.ZipFile(output_file, 'r') as output_zip:
Tao Baod3fc38a2018-03-08 16:09:01 -08001261 for property_files in needed_property_files:
1262 property_files.Verify(output_zip, metadata[property_files.name].strip())
Tao Baofe5b69a2018-03-02 09:47:43 -08001263
1264
Geremy Condra36bd3652014-02-06 19:45:10 -08001265def WriteBlockIncrementalOTAPackage(target_zip, source_zip, output_zip):
Tao Bao481bab82017-12-21 11:23:09 -08001266 target_info = BuildInfo(OPTIONS.target_info_dict, OPTIONS.oem_dicts)
1267 source_info = BuildInfo(OPTIONS.source_info_dict, OPTIONS.oem_dicts)
Geremy Condra36bd3652014-02-06 19:45:10 -08001268
Tao Bao481bab82017-12-21 11:23:09 -08001269 target_api_version = target_info["recovery_api_version"]
1270 source_api_version = source_info["recovery_api_version"]
1271 if source_api_version == 0:
Tao Bao3e30d972016-03-15 13:20:19 -07001272 print("WARNING: generating edify script for a source that "
1273 "can't install it.")
Geremy Condra36bd3652014-02-06 19:45:10 -08001274
Tao Bao481bab82017-12-21 11:23:09 -08001275 script = edify_generator.EdifyGenerator(
1276 source_api_version, target_info, fstab=source_info["fstab"])
1277
1278 if target_info.oem_props or source_info.oem_props:
1279 if not OPTIONS.oem_no_mount:
1280 source_info.WriteMountOemScript(script)
Tao Bao3806c232015-07-05 21:08:33 -07001281
Tao Baodf3a48b2018-01-10 16:30:43 -08001282 metadata = GetPackageMetadata(target_info, source_info)
Tao Bao5d182562016-02-23 11:38:39 -08001283
Geremy Condra36bd3652014-02-06 19:45:10 -08001284 device_specific = common.DeviceSpecificParams(
1285 source_zip=source_zip,
Tao Bao481bab82017-12-21 11:23:09 -08001286 source_version=source_api_version,
Geremy Condra36bd3652014-02-06 19:45:10 -08001287 target_zip=target_zip,
Tao Bao481bab82017-12-21 11:23:09 -08001288 target_version=target_api_version,
Geremy Condra36bd3652014-02-06 19:45:10 -08001289 output_zip=output_zip,
1290 script=script,
1291 metadata=metadata,
Tao Bao481bab82017-12-21 11:23:09 -08001292 info_dict=source_info)
Geremy Condra36bd3652014-02-06 19:45:10 -08001293
Geremy Condra36bd3652014-02-06 19:45:10 -08001294 source_boot = common.GetBootableImage(
Tao Bao481bab82017-12-21 11:23:09 -08001295 "/tmp/boot.img", "boot.img", OPTIONS.source_tmp, "BOOT", source_info)
Geremy Condra36bd3652014-02-06 19:45:10 -08001296 target_boot = common.GetBootableImage(
Tao Bao481bab82017-12-21 11:23:09 -08001297 "/tmp/boot.img", "boot.img", OPTIONS.target_tmp, "BOOT", target_info)
Geremy Condra36bd3652014-02-06 19:45:10 -08001298 updating_boot = (not OPTIONS.two_step and
1299 (source_boot.data != target_boot.data))
1300
Geremy Condra36bd3652014-02-06 19:45:10 -08001301 target_recovery = common.GetBootableImage(
1302 "/tmp/recovery.img", "recovery.img", OPTIONS.target_tmp, "RECOVERY")
Geremy Condra36bd3652014-02-06 19:45:10 -08001303
Tao Baoe709b092018-02-07 12:40:00 -08001304 # When target uses 'BOARD_EXT4_SHARE_DUP_BLOCKS := true', images may contain
1305 # shared blocks (i.e. some blocks will show up in multiple files' block
1306 # list). We can only allocate such shared blocks to the first "owner", and
1307 # disable imgdiff for all later occurrences.
1308 allow_shared_blocks = (source_info.get('ext4_share_dup_blocks') == "true" or
1309 target_info.get('ext4_share_dup_blocks') == "true")
1310 system_src = common.GetSparseImage("system", OPTIONS.source_tmp, source_zip,
1311 allow_shared_blocks)
1312 system_tgt = common.GetSparseImage("system", OPTIONS.target_tmp, target_zip,
1313 allow_shared_blocks)
Tao Baodd2a5892015-03-12 12:32:37 -07001314
Tao Bao0582cb62017-12-21 11:47:01 -08001315 blockimgdiff_version = max(
Tao Bao481bab82017-12-21 11:23:09 -08001316 int(i) for i in target_info.get("blockimgdiff_versions", "1").split(","))
Tao Bao0582cb62017-12-21 11:47:01 -08001317 assert blockimgdiff_version >= 3
Tao Baodd2a5892015-03-12 12:32:37 -07001318
Tao Baof8acad12016-07-07 09:09:58 -07001319 # Check the first block of the source system partition for remount R/W only
1320 # if the filesystem is ext4.
Tao Bao481bab82017-12-21 11:23:09 -08001321 system_src_partition = source_info["fstab"]["/system"]
Tao Baof8acad12016-07-07 09:09:58 -07001322 check_first_block = system_src_partition.fs_type == "ext4"
Tao Bao293fd132016-06-11 12:19:23 -07001323 # Disable using imgdiff for squashfs. 'imgdiff -z' expects input files to be
1324 # in zip formats. However with squashfs, a) all files are compressed in LZ4;
1325 # b) the blocks listed in block map may not contain all the bytes for a given
1326 # file (because they're rounded to be 4K-aligned).
Tao Bao481bab82017-12-21 11:23:09 -08001327 system_tgt_partition = target_info["fstab"]["/system"]
Tao Baof8acad12016-07-07 09:09:58 -07001328 disable_imgdiff = (system_src_partition.fs_type == "squashfs" or
1329 system_tgt_partition.fs_type == "squashfs")
Doug Zongkerb34fcce2014-09-11 09:34:56 -07001330 system_diff = common.BlockDifference("system", system_tgt, system_src,
Tianjie Xufc3422a2015-12-15 11:53:59 -08001331 check_first_block,
Tao Bao293fd132016-06-11 12:19:23 -07001332 version=blockimgdiff_version,
1333 disable_imgdiff=disable_imgdiff)
Doug Zongkerfc44a512014-08-26 13:10:25 -07001334
Doug Zongkerc8b4e842014-06-16 15:16:31 -07001335 if HasVendorPartition(target_zip):
1336 if not HasVendorPartition(source_zip):
1337 raise RuntimeError("can't generate incremental that adds /vendor")
Tao Baoe709b092018-02-07 12:40:00 -08001338 vendor_src = common.GetSparseImage("vendor", OPTIONS.source_tmp, source_zip,
1339 allow_shared_blocks)
1340 vendor_tgt = common.GetSparseImage("vendor", OPTIONS.target_tmp, target_zip,
1341 allow_shared_blocks)
Tianjie Xufc3422a2015-12-15 11:53:59 -08001342
1343 # Check first block of vendor partition for remount R/W only if
1344 # disk type is ext4
Tao Bao481bab82017-12-21 11:23:09 -08001345 vendor_partition = source_info["fstab"]["/vendor"]
Tao Baod8d14be2016-02-04 14:26:02 -08001346 check_first_block = vendor_partition.fs_type == "ext4"
Tao Bao293fd132016-06-11 12:19:23 -07001347 disable_imgdiff = vendor_partition.fs_type == "squashfs"
Doug Zongkerb34fcce2014-09-11 09:34:56 -07001348 vendor_diff = common.BlockDifference("vendor", vendor_tgt, vendor_src,
Tianjie Xufc3422a2015-12-15 11:53:59 -08001349 check_first_block,
Tao Bao293fd132016-06-11 12:19:23 -07001350 version=blockimgdiff_version,
1351 disable_imgdiff=disable_imgdiff)
Doug Zongkerfc44a512014-08-26 13:10:25 -07001352 else:
1353 vendor_diff = None
Geremy Condra36bd3652014-02-06 19:45:10 -08001354
Tao Baobcd1d162017-08-26 13:10:26 -07001355 AddCompatibilityArchiveIfTrebleEnabled(
Tao Bao481bab82017-12-21 11:23:09 -08001356 target_zip, output_zip, target_info, source_info)
Tao Baobcd1d162017-08-26 13:10:26 -07001357
Tao Bao481bab82017-12-21 11:23:09 -08001358 # Assertions (e.g. device properties check).
1359 target_info.WriteDeviceAssertions(script, OPTIONS.oem_no_mount)
Geremy Condra36bd3652014-02-06 19:45:10 -08001360 device_specific.IncrementalOTA_Assertions()
1361
1362 # Two-step incremental package strategy (in chronological order,
1363 # which is *not* the order in which the generated script has
1364 # things):
1365 #
1366 # if stage is not "2/3" or "3/3":
1367 # do verification on current system
1368 # write recovery image to boot partition
1369 # set stage to "2/3"
1370 # reboot to boot partition and restart recovery
1371 # else if stage is "2/3":
1372 # write recovery image to recovery partition
1373 # set stage to "3/3"
1374 # reboot to recovery partition and restart recovery
1375 # else:
1376 # (stage must be "3/3")
1377 # perform update:
1378 # patch system files, etc.
1379 # force full install of new boot image
1380 # set up system to update recovery partition on first boot
Dan Albert8b72aef2015-03-23 19:13:21 -07001381 # complete script normally
1382 # (allow recovery to mark itself finished and reboot)
Geremy Condra36bd3652014-02-06 19:45:10 -08001383
1384 if OPTIONS.two_step:
Tao Bao481bab82017-12-21 11:23:09 -08001385 if not source_info.get("multistage_support"):
Geremy Condra36bd3652014-02-06 19:45:10 -08001386 assert False, "two-step packages not supported by this build"
Tao Bao24604cc2018-02-01 16:25:44 -08001387 fs = source_info["fstab"]["/misc"]
Geremy Condra36bd3652014-02-06 19:45:10 -08001388 assert fs.fs_type.upper() == "EMMC", \
1389 "two-step packages only supported on devices with EMMC /misc partitions"
Tao Bao481bab82017-12-21 11:23:09 -08001390 bcb_dev = {"bcb_dev" : fs.device}
Geremy Condra36bd3652014-02-06 19:45:10 -08001391 common.ZipWriteStr(output_zip, "recovery.img", target_recovery.data)
1392 script.AppendExtra("""
Michael Rungefb8886d2014-10-23 13:51:04 -07001393if get_stage("%(bcb_dev)s") == "2/3" then
Geremy Condra36bd3652014-02-06 19:45:10 -08001394""" % bcb_dev)
Tao Baod42e97e2016-11-30 12:11:57 -08001395
1396 # Stage 2/3: Write recovery image to /recovery (currently running /boot).
1397 script.Comment("Stage 2/3")
Dan Albert8b72aef2015-03-23 19:13:21 -07001398 script.AppendExtra("sleep(20);\n")
Geremy Condra36bd3652014-02-06 19:45:10 -08001399 script.WriteRawImage("/recovery", "recovery.img")
1400 script.AppendExtra("""
1401set_stage("%(bcb_dev)s", "3/3");
1402reboot_now("%(bcb_dev)s", "recovery");
Michael Rungefb8886d2014-10-23 13:51:04 -07001403else if get_stage("%(bcb_dev)s") != "3/3" then
Geremy Condra36bd3652014-02-06 19:45:10 -08001404""" % bcb_dev)
1405
Tao Baod42e97e2016-11-30 12:11:57 -08001406 # Stage 1/3: (a) Verify the current system.
1407 script.Comment("Stage 1/3")
1408
Tao Bao6c55a8a2015-04-08 15:30:27 -07001409 # Dump fingerprints
Tao Bao481bab82017-12-21 11:23:09 -08001410 script.Print("Source: {}".format(source_info.fingerprint))
1411 script.Print("Target: {}".format(target_info.fingerprint))
Tao Bao6c55a8a2015-04-08 15:30:27 -07001412
Geremy Condra36bd3652014-02-06 19:45:10 -08001413 script.Print("Verifying current system...")
1414
1415 device_specific.IncrementalOTA_VerifyBegin()
1416
Tao Bao481bab82017-12-21 11:23:09 -08001417 WriteFingerprintAssertion(script, target_info, source_info)
Geremy Condra36bd3652014-02-06 19:45:10 -08001418
Tao Baod8d14be2016-02-04 14:26:02 -08001419 # Check the required cache size (i.e. stashed blocks).
1420 size = []
1421 if system_diff:
1422 size.append(system_diff.required_cache)
1423 if vendor_diff:
1424 size.append(vendor_diff.required_cache)
1425
Geremy Condra36bd3652014-02-06 19:45:10 -08001426 if updating_boot:
Tao Bao481bab82017-12-21 11:23:09 -08001427 boot_type, boot_device = common.GetTypeAndDevice("/boot", source_info)
Geremy Condra36bd3652014-02-06 19:45:10 -08001428 d = common.Difference(target_boot, source_boot)
1429 _, _, d = d.ComputePatch()
Doug Zongkerf8340082014-08-05 10:39:37 -07001430 if d is None:
1431 include_full_boot = True
1432 common.ZipWriteStr(output_zip, "boot.img", target_boot.data)
1433 else:
1434 include_full_boot = False
Geremy Condra36bd3652014-02-06 19:45:10 -08001435
Tao Bao89fbb0f2017-01-10 10:47:58 -08001436 print("boot target: %d source: %d diff: %d" % (
1437 target_boot.size, source_boot.size, len(d)))
Geremy Condra36bd3652014-02-06 19:45:10 -08001438
Doug Zongkerf8340082014-08-05 10:39:37 -07001439 common.ZipWriteStr(output_zip, "patch/boot.img.p", d)
Geremy Condra36bd3652014-02-06 19:45:10 -08001440
Doug Zongkerf8340082014-08-05 10:39:37 -07001441 script.PatchCheck("%s:%s:%d:%s:%d:%s" %
1442 (boot_type, boot_device,
1443 source_boot.size, source_boot.sha1,
1444 target_boot.size, target_boot.sha1))
Tao Baod8d14be2016-02-04 14:26:02 -08001445 size.append(target_boot.size)
1446
1447 if size:
1448 script.CacheFreeSpaceCheck(max(size))
Geremy Condra36bd3652014-02-06 19:45:10 -08001449
1450 device_specific.IncrementalOTA_VerifyEnd()
1451
1452 if OPTIONS.two_step:
Tao Baod42e97e2016-11-30 12:11:57 -08001453 # Stage 1/3: (b) Write recovery image to /boot.
1454 _WriteRecoveryImageToBoot(script, output_zip)
1455
Geremy Condra36bd3652014-02-06 19:45:10 -08001456 script.AppendExtra("""
1457set_stage("%(bcb_dev)s", "2/3");
1458reboot_now("%(bcb_dev)s", "");
1459else
1460""" % bcb_dev)
1461
Tao Baod42e97e2016-11-30 12:11:57 -08001462 # Stage 3/3: Make changes.
1463 script.Comment("Stage 3/3")
1464
Jesse Zhao75bcea02015-01-06 10:59:53 -08001465 # Verify the existing partitions.
Tao Baod522bdc2016-04-12 15:53:16 -07001466 system_diff.WriteVerifyScript(script, touched_blocks_only=True)
Jesse Zhao75bcea02015-01-06 10:59:53 -08001467 if vendor_diff:
Tao Baod522bdc2016-04-12 15:53:16 -07001468 vendor_diff.WriteVerifyScript(script, touched_blocks_only=True)
Jesse Zhao75bcea02015-01-06 10:59:53 -08001469
Geremy Condra36bd3652014-02-06 19:45:10 -08001470 script.Comment("---- start making changes here ----")
1471
1472 device_specific.IncrementalOTA_InstallBegin()
1473
Doug Zongkerab7ca1d2014-08-26 10:40:28 -07001474 system_diff.WriteScript(script, output_zip,
1475 progress=0.8 if vendor_diff else 0.9)
Tao Bao68658c02015-06-01 13:40:49 -07001476
Doug Zongkerfc44a512014-08-26 13:10:25 -07001477 if vendor_diff:
Doug Zongkerab7ca1d2014-08-26 10:40:28 -07001478 vendor_diff.WriteScript(script, output_zip, progress=0.1)
Geremy Condra36bd3652014-02-06 19:45:10 -08001479
1480 if OPTIONS.two_step:
1481 common.ZipWriteStr(output_zip, "boot.img", target_boot.data)
1482 script.WriteRawImage("/boot", "boot.img")
Tao Bao89fbb0f2017-01-10 10:47:58 -08001483 print("writing full boot image (forced by two-step mode)")
Geremy Condra36bd3652014-02-06 19:45:10 -08001484
1485 if not OPTIONS.two_step:
1486 if updating_boot:
Doug Zongkerf8340082014-08-05 10:39:37 -07001487 if include_full_boot:
Tao Bao89fbb0f2017-01-10 10:47:58 -08001488 print("boot image changed; including full.")
Doug Zongkerf8340082014-08-05 10:39:37 -07001489 script.Print("Installing boot image...")
1490 script.WriteRawImage("/boot", "boot.img")
1491 else:
1492 # Produce the boot image by applying a patch to the current
1493 # contents of the boot partition, and write it back to the
1494 # partition.
Tao Bao89fbb0f2017-01-10 10:47:58 -08001495 print("boot image changed; including patch.")
Doug Zongkerf8340082014-08-05 10:39:37 -07001496 script.Print("Patching boot image...")
1497 script.ShowProgress(0.1, 10)
1498 script.ApplyPatch("%s:%s:%d:%s:%d:%s"
1499 % (boot_type, boot_device,
1500 source_boot.size, source_boot.sha1,
1501 target_boot.size, target_boot.sha1),
1502 "-",
1503 target_boot.size, target_boot.sha1,
1504 source_boot.sha1, "patch/boot.img.p")
Geremy Condra36bd3652014-02-06 19:45:10 -08001505 else:
Tao Bao89fbb0f2017-01-10 10:47:58 -08001506 print("boot image unchanged; skipping.")
Geremy Condra36bd3652014-02-06 19:45:10 -08001507
1508 # Do device-specific installation (eg, write radio image).
1509 device_specific.IncrementalOTA_InstallEnd()
1510
1511 if OPTIONS.extra_script is not None:
1512 script.AppendExtra(OPTIONS.extra_script)
1513
Doug Zongker922206e2014-03-04 13:16:24 -08001514 if OPTIONS.wipe_user_data:
1515 script.Print("Erasing user data...")
1516 script.FormatPartition("/data")
1517
Geremy Condra36bd3652014-02-06 19:45:10 -08001518 if OPTIONS.two_step:
1519 script.AppendExtra("""
1520set_stage("%(bcb_dev)s", "");
1521endif;
1522endif;
1523""" % bcb_dev)
1524
1525 script.SetProgress(1)
Tao Bao4996cf02016-03-08 17:53:39 -08001526 # For downgrade OTAs, we prefer to use the update-binary in the source
1527 # build that is actually newer than the one in the target build.
1528 if OPTIONS.downgrade:
1529 script.AddToZip(source_zip, output_zip, input_path=OPTIONS.updater_binary)
1530 else:
1531 script.AddToZip(target_zip, output_zip, input_path=OPTIONS.updater_binary)
Tao Baod8d14be2016-02-04 14:26:02 -08001532 metadata["ota-required-cache"] = str(script.required_cache)
Geremy Condra36bd3652014-02-06 19:45:10 -08001533 WriteMetadata(metadata, output_zip)
1534
Doug Zongker32b527d2014-03-04 10:03:02 -08001535
Tao Bao15a146a2018-02-21 16:06:59 -08001536def GetTargetFilesZipForSecondaryImages(input_file, skip_postinstall=False):
Tao Baof7140c02018-01-30 17:09:24 -08001537 """Returns a target-files.zip file for generating secondary payload.
1538
1539 Although the original target-files.zip already contains secondary slot
1540 images (i.e. IMAGES/system_other.img), we need to rename the files to the
1541 ones without _other suffix. Note that we cannot instead modify the names in
1542 META/ab_partitions.txt, because there are no matching partitions on device.
1543
1544 For the partitions that don't have secondary images, the ones for primary
1545 slot will be used. This is to ensure that we always have valid boot, vbmeta,
1546 bootloader images in the inactive slot.
1547
1548 Args:
1549 input_file: The input target-files.zip file.
Tao Bao15a146a2018-02-21 16:06:59 -08001550 skip_postinstall: Whether to skip copying the postinstall config file.
Tao Baof7140c02018-01-30 17:09:24 -08001551
1552 Returns:
1553 The filename of the target-files.zip for generating secondary payload.
1554 """
1555 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
1556 target_zip = zipfile.ZipFile(target_file, 'w', allowZip64=True)
1557
Tao Baodba59ee2018-01-09 13:21:02 -08001558 input_tmp = common.UnzipTemp(input_file, UNZIP_PATTERN)
1559 with zipfile.ZipFile(input_file, 'r') as input_zip:
1560 infolist = input_zip.infolist()
1561
1562 for info in infolist:
Tao Baof7140c02018-01-30 17:09:24 -08001563 unzipped_file = os.path.join(input_tmp, *info.filename.split('/'))
1564 if info.filename == 'IMAGES/system_other.img':
1565 common.ZipWrite(target_zip, unzipped_file, arcname='IMAGES/system.img')
1566
1567 # Primary images and friends need to be skipped explicitly.
1568 elif info.filename in ('IMAGES/system.img',
1569 'IMAGES/system.map'):
1570 pass
1571
Tao Bao15a146a2018-02-21 16:06:59 -08001572 # Skip copying the postinstall config if requested.
1573 elif skip_postinstall and info.filename == POSTINSTALL_CONFIG:
1574 pass
1575
Tao Baof7140c02018-01-30 17:09:24 -08001576 elif info.filename.startswith(('META/', 'IMAGES/')):
1577 common.ZipWrite(target_zip, unzipped_file, arcname=info.filename)
1578
Tao Baof7140c02018-01-30 17:09:24 -08001579 common.ZipClose(target_zip)
1580
1581 return target_file
1582
1583
Tao Bao15a146a2018-02-21 16:06:59 -08001584def GetTargetFilesZipWithoutPostinstallConfig(input_file):
1585 """Returns a target-files.zip that's not containing postinstall_config.txt.
1586
1587 This allows brillo_update_payload script to skip writing all the postinstall
1588 hooks in the generated payload. The input target-files.zip file will be
1589 duplicated, with 'META/postinstall_config.txt' skipped. If input_file doesn't
1590 contain the postinstall_config.txt entry, the input file will be returned.
1591
1592 Args:
1593 input_file: The input target-files.zip filename.
1594
1595 Returns:
1596 The filename of target-files.zip that doesn't contain postinstall config.
1597 """
1598 # We should only make a copy if postinstall_config entry exists.
1599 with zipfile.ZipFile(input_file, 'r') as input_zip:
1600 if POSTINSTALL_CONFIG not in input_zip.namelist():
1601 return input_file
1602
1603 target_file = common.MakeTempFile(prefix="targetfiles-", suffix=".zip")
1604 shutil.copyfile(input_file, target_file)
1605 common.ZipDelete(target_file, POSTINSTALL_CONFIG)
1606 return target_file
1607
1608
Tao Baoc098e9e2016-01-07 13:03:56 -08001609def WriteABOTAPackageWithBrilloScript(target_file, output_file,
1610 source_file=None):
Tao Baofe5b69a2018-03-02 09:47:43 -08001611 """Generates an Android OTA package that has A/B update payload."""
Tao Baodea0f8b2016-06-20 17:55:06 -07001612 # Stage the output zip package for package signing.
Tao Baoa652c002018-03-01 19:31:38 -08001613 staging_file = common.MakeTempFile(suffix='.zip')
1614 output_zip = zipfile.ZipFile(staging_file, "w",
Tao Baoc098e9e2016-01-07 13:03:56 -08001615 compression=zipfile.ZIP_DEFLATED)
1616
Tao Bao481bab82017-12-21 11:23:09 -08001617 if source_file is not None:
1618 target_info = BuildInfo(OPTIONS.target_info_dict, OPTIONS.oem_dicts)
1619 source_info = BuildInfo(OPTIONS.source_info_dict, OPTIONS.oem_dicts)
1620 else:
1621 target_info = BuildInfo(OPTIONS.info_dict, OPTIONS.oem_dicts)
1622 source_info = None
Tao Baoc098e9e2016-01-07 13:03:56 -08001623
Tao Bao481bab82017-12-21 11:23:09 -08001624 # Metadata to comply with Android OTA package format.
Tao Baodf3a48b2018-01-10 16:30:43 -08001625 metadata = GetPackageMetadata(target_info, source_info)
Tao Baob31892e2017-02-07 11:21:17 -08001626
Tao Bao15a146a2018-02-21 16:06:59 -08001627 if OPTIONS.skip_postinstall:
1628 target_file = GetTargetFilesZipWithoutPostinstallConfig(target_file)
1629
Tao Bao40b18822018-01-30 18:19:04 -08001630 # Generate payload.
1631 payload = Payload()
1632
1633 # Enforce a max timestamp this payload can be applied on top of.
Tao Baoff1b86e2017-10-03 14:17:57 -07001634 if OPTIONS.downgrade:
Tao Bao2a12ed72018-01-22 11:35:00 -08001635 max_timestamp = source_info.GetBuildProp("ro.build.date.utc")
Tao Baoff1b86e2017-10-03 14:17:57 -07001636 else:
1637 max_timestamp = metadata["post-timestamp"]
Tao Bao40b18822018-01-30 18:19:04 -08001638 additional_args = ["--max_timestamp", max_timestamp]
Tao Baoc098e9e2016-01-07 13:03:56 -08001639
Tao Bao40b18822018-01-30 18:19:04 -08001640 payload.Generate(target_file, source_file, additional_args)
Tao Baoc098e9e2016-01-07 13:03:56 -08001641
Tao Bao40b18822018-01-30 18:19:04 -08001642 # Sign the payload.
Tao Baof7140c02018-01-30 17:09:24 -08001643 payload_signer = PayloadSigner()
1644 payload.Sign(payload_signer)
Tao Baoc098e9e2016-01-07 13:03:56 -08001645
Tao Bao40b18822018-01-30 18:19:04 -08001646 # Write the payload into output zip.
1647 payload.WriteToZip(output_zip)
Tao Baoc098e9e2016-01-07 13:03:56 -08001648
Tao Baof7140c02018-01-30 17:09:24 -08001649 # Generate and include the secondary payload that installs secondary images
1650 # (e.g. system_other.img).
1651 if OPTIONS.include_secondary:
1652 # We always include a full payload for the secondary slot, even when
1653 # building an incremental OTA. See the comments for "--include_secondary".
Tao Bao15a146a2018-02-21 16:06:59 -08001654 secondary_target_file = GetTargetFilesZipForSecondaryImages(
1655 target_file, OPTIONS.skip_postinstall)
Tao Bao667ff572018-02-10 00:02:40 -08001656 secondary_payload = Payload(secondary=True)
Tao Baodb1fe412018-02-09 23:15:05 -08001657 secondary_payload.Generate(secondary_target_file,
1658 additional_args=additional_args)
Tao Baof7140c02018-01-30 17:09:24 -08001659 secondary_payload.Sign(payload_signer)
Tao Bao667ff572018-02-10 00:02:40 -08001660 secondary_payload.WriteToZip(output_zip)
Tao Baof7140c02018-01-30 17:09:24 -08001661
Tianjie Xucfa86222016-03-07 16:31:19 -08001662 # If dm-verity is supported for the device, copy contents of care_map
1663 # into A/B OTA package.
Tao Bao21803d32017-04-19 10:16:09 -07001664 target_zip = zipfile.ZipFile(target_file, "r")
Tao Bao481bab82017-12-21 11:23:09 -08001665 if (target_info.get("verity") == "true" or
1666 target_info.get("avb_enable") == "true"):
Tianjie Xucfa86222016-03-07 16:31:19 -08001667 care_map_path = "META/care_map.txt"
1668 namelist = target_zip.namelist()
1669 if care_map_path in namelist:
1670 care_map_data = target_zip.read(care_map_path)
Tao Bao40b18822018-01-30 18:19:04 -08001671 # In order to support streaming, care_map.txt needs to be packed as
1672 # ZIP_STORED.
Tao Baoc96316c2017-01-24 22:10:49 -08001673 common.ZipWriteStr(output_zip, "care_map.txt", care_map_data,
Tao Bao481bab82017-12-21 11:23:09 -08001674 compress_type=zipfile.ZIP_STORED)
Tianjie Xucfa86222016-03-07 16:31:19 -08001675 else:
Tao Bao89fbb0f2017-01-10 10:47:58 -08001676 print("Warning: cannot find care map file in target_file package")
Tao Bao21803d32017-04-19 10:16:09 -07001677
Tao Baobcd1d162017-08-26 13:10:26 -07001678 AddCompatibilityArchiveIfTrebleEnabled(
Tao Bao481bab82017-12-21 11:23:09 -08001679 target_zip, output_zip, target_info, source_info)
Tao Bao21803d32017-04-19 10:16:09 -07001680
Tao Bao21803d32017-04-19 10:16:09 -07001681 common.ZipClose(target_zip)
Tianjie Xucfa86222016-03-07 16:31:19 -08001682
Tao Baofe5b69a2018-03-02 09:47:43 -08001683 # We haven't written the metadata entry yet, which will be handled in
1684 # FinalizeMetadata().
Tao Baoc96316c2017-01-24 22:10:49 -08001685 common.ZipClose(output_zip)
1686
Tao Bao85f16982018-03-08 16:28:33 -08001687 # AbOtaPropertyFiles intends to replace StreamingPropertyFiles, as it covers
1688 # all the info of the latter. However, system updaters and OTA servers need to
1689 # take time to switch to the new flag. We keep both of the flags for
1690 # P-timeframe, and will remove StreamingPropertyFiles in later release.
Tao Baod3fc38a2018-03-08 16:09:01 -08001691 needed_property_files = (
Tao Bao85f16982018-03-08 16:28:33 -08001692 AbOtaPropertyFiles(),
Tao Baod3fc38a2018-03-08 16:09:01 -08001693 StreamingPropertyFiles(),
1694 )
1695 FinalizeMetadata(metadata, staging_file, output_file, needed_property_files)
Tao Baoc96316c2017-01-24 22:10:49 -08001696
Tao Baoc098e9e2016-01-07 13:03:56 -08001697
Doug Zongkereef39442009-04-02 12:14:19 -07001698def main(argv):
1699
1700 def option_handler(o, a):
Tao Bao4b76a0e2017-10-31 12:13:33 -07001701 if o in ("-k", "--package_key"):
Doug Zongkereef39442009-04-02 12:14:19 -07001702 OPTIONS.package_key = a
Doug Zongkereef39442009-04-02 12:14:19 -07001703 elif o in ("-i", "--incremental_from"):
1704 OPTIONS.incremental_source = a
Tao Bao43078aa2015-04-21 14:32:35 -07001705 elif o == "--full_radio":
1706 OPTIONS.full_radio = True
leozwangaa6c1a12015-08-14 10:57:58 -07001707 elif o == "--full_bootloader":
1708 OPTIONS.full_bootloader = True
Tao Bao337633f2017-12-06 15:20:19 -08001709 elif o == "--wipe_user_data":
Doug Zongkerdbfaae52009-04-21 17:12:54 -07001710 OPTIONS.wipe_user_data = True
Tao Bao5d182562016-02-23 11:38:39 -08001711 elif o == "--downgrade":
1712 OPTIONS.downgrade = True
1713 OPTIONS.wipe_user_data = True
Tao Bao3e6161a2017-02-28 11:48:48 -08001714 elif o == "--override_timestamp":
1715 OPTIONS.timestamp = True
Michael Runge6e836112014-04-15 17:40:21 -07001716 elif o in ("-o", "--oem_settings"):
Alain Vongsouvanh7f804ba2017-02-16 13:06:55 -08001717 OPTIONS.oem_source = a.split(',')
Tao Bao8608cde2016-02-25 19:49:55 -08001718 elif o == "--oem_no_mount":
1719 OPTIONS.oem_no_mount = True
Doug Zongker1c390a22009-05-14 19:06:36 -07001720 elif o in ("-e", "--extra_script"):
1721 OPTIONS.extra_script = a
Martin Blumenstingl374e1142014-05-31 20:42:55 +02001722 elif o in ("-t", "--worker_threads"):
1723 if a.isdigit():
1724 OPTIONS.worker_threads = int(a)
1725 else:
1726 raise ValueError("Cannot parse value %r for option %r - only "
1727 "integers are allowed." % (a, o))
Doug Zongker9b23f2c2013-11-25 14:44:12 -08001728 elif o in ("-2", "--two_step"):
1729 OPTIONS.two_step = True
Tao Baof7140c02018-01-30 17:09:24 -08001730 elif o == "--include_secondary":
1731 OPTIONS.include_secondary = True
Doug Zongker26e66192014-02-20 13:22:07 -08001732 elif o == "--no_signing":
Takeshi Kanemotoe153b342013-11-14 17:20:50 +09001733 OPTIONS.no_signing = True
Dan Albert8b72aef2015-03-23 19:13:21 -07001734 elif o == "--verify":
Michael Runge63f01de2014-10-28 19:24:19 -07001735 OPTIONS.verify = True
Doug Zongker26e66192014-02-20 13:22:07 -08001736 elif o == "--block":
1737 OPTIONS.block_based = True
Doug Zongker25568482014-03-03 10:21:27 -08001738 elif o in ("-b", "--binary"):
1739 OPTIONS.updater_binary = a
Tao Bao8dcf7382015-05-21 14:09:49 -07001740 elif o == "--stash_threshold":
1741 try:
1742 OPTIONS.stash_threshold = float(a)
1743 except ValueError:
1744 raise ValueError("Cannot parse value %r for option %r - expecting "
1745 "a float" % (a, o))
Tao Baod62c6032015-11-30 09:40:20 -08001746 elif o == "--log_diff":
1747 OPTIONS.log_diff = a
Tao Baodea0f8b2016-06-20 17:55:06 -07001748 elif o == "--payload_signer":
1749 OPTIONS.payload_signer = a
Baligh Uddin2abbbd02016-06-22 12:14:16 -07001750 elif o == "--payload_signer_args":
1751 OPTIONS.payload_signer_args = shlex.split(a)
Dan Willemsencea5cd22017-03-21 14:44:27 -07001752 elif o == "--extracted_input_target_files":
1753 OPTIONS.extracted_input = a
Tao Bao15a146a2018-02-21 16:06:59 -08001754 elif o == "--skip_postinstall":
1755 OPTIONS.skip_postinstall = True
Doug Zongkereef39442009-04-02 12:14:19 -07001756 else:
1757 return False
Doug Zongkerdbfaae52009-04-21 17:12:54 -07001758 return True
Doug Zongkereef39442009-04-02 12:14:19 -07001759
1760 args = common.ParseOptions(argv, __doc__,
Tao Bao337633f2017-12-06 15:20:19 -08001761 extra_opts="b:k:i:d:e:t:2o:",
Dan Albert8b72aef2015-03-23 19:13:21 -07001762 extra_long_opts=[
Dan Albert8b72aef2015-03-23 19:13:21 -07001763 "package_key=",
1764 "incremental_from=",
Tao Bao43078aa2015-04-21 14:32:35 -07001765 "full_radio",
leozwangaa6c1a12015-08-14 10:57:58 -07001766 "full_bootloader",
Dan Albert8b72aef2015-03-23 19:13:21 -07001767 "wipe_user_data",
Tao Bao5d182562016-02-23 11:38:39 -08001768 "downgrade",
Tao Bao3e6161a2017-02-28 11:48:48 -08001769 "override_timestamp",
Dan Albert8b72aef2015-03-23 19:13:21 -07001770 "extra_script=",
1771 "worker_threads=",
Dan Albert8b72aef2015-03-23 19:13:21 -07001772 "two_step",
Tao Baof7140c02018-01-30 17:09:24 -08001773 "include_secondary",
Dan Albert8b72aef2015-03-23 19:13:21 -07001774 "no_signing",
1775 "block",
1776 "binary=",
1777 "oem_settings=",
Tao Bao8608cde2016-02-25 19:49:55 -08001778 "oem_no_mount",
Dan Albert8b72aef2015-03-23 19:13:21 -07001779 "verify",
Tao Bao8dcf7382015-05-21 14:09:49 -07001780 "stash_threshold=",
Tao Baod62c6032015-11-30 09:40:20 -08001781 "log_diff=",
Tao Baodea0f8b2016-06-20 17:55:06 -07001782 "payload_signer=",
Baligh Uddin2abbbd02016-06-22 12:14:16 -07001783 "payload_signer_args=",
Dan Willemsencea5cd22017-03-21 14:44:27 -07001784 "extracted_input_target_files=",
Tao Bao15a146a2018-02-21 16:06:59 -08001785 "skip_postinstall",
Dan Albert8b72aef2015-03-23 19:13:21 -07001786 ], extra_option_handler=option_handler)
Doug Zongkereef39442009-04-02 12:14:19 -07001787
1788 if len(args) != 2:
1789 common.Usage(__doc__)
1790 sys.exit(1)
1791
Tao Bao5d182562016-02-23 11:38:39 -08001792 if OPTIONS.downgrade:
1793 # Sanity check to enforce a data wipe.
1794 if not OPTIONS.wipe_user_data:
1795 raise ValueError("Cannot downgrade without a data wipe")
1796
1797 # We should only allow downgrading incrementals (as opposed to full).
1798 # Otherwise the device may go back from arbitrary build with this full
1799 # OTA package.
1800 if OPTIONS.incremental_source is None:
Elliott Hughesd8a52f92016-06-20 14:35:47 -07001801 raise ValueError("Cannot generate downgradable full OTAs")
Tao Bao5d182562016-02-23 11:38:39 -08001802
Tao Bao3e6161a2017-02-28 11:48:48 -08001803 assert not (OPTIONS.downgrade and OPTIONS.timestamp), \
1804 "Cannot have --downgrade AND --override_timestamp both"
1805
Tao Bao2db13852018-01-08 22:28:57 -08001806 # Load the build info dicts from the zip directly or the extracted input
1807 # directory. We don't need to unzip the entire target-files zips, because they
1808 # won't be needed for A/B OTAs (brillo_update_payload does that on its own).
1809 # When loading the info dicts, we don't need to provide the second parameter
1810 # to common.LoadInfoDict(). Specifying the second parameter allows replacing
1811 # some properties with their actual paths, such as 'selinux_fc',
1812 # 'ramdisk_dir', which won't be used during OTA generation.
Dan Willemsencea5cd22017-03-21 14:44:27 -07001813 if OPTIONS.extracted_input is not None:
Tao Bao2db13852018-01-08 22:28:57 -08001814 OPTIONS.info_dict = common.LoadInfoDict(OPTIONS.extracted_input)
Dan Willemsencea5cd22017-03-21 14:44:27 -07001815 else:
Tao Bao2db13852018-01-08 22:28:57 -08001816 with zipfile.ZipFile(args[0], 'r') as input_zip:
1817 OPTIONS.info_dict = common.LoadInfoDict(input_zip)
Tao Baoc098e9e2016-01-07 13:03:56 -08001818
Tao Bao2db13852018-01-08 22:28:57 -08001819 if OPTIONS.verbose:
1820 print("--- target info ---")
1821 common.DumpInfoDict(OPTIONS.info_dict)
1822
1823 # Load the source build dict if applicable.
1824 if OPTIONS.incremental_source is not None:
1825 OPTIONS.target_info_dict = OPTIONS.info_dict
1826 with zipfile.ZipFile(OPTIONS.incremental_source, 'r') as source_zip:
1827 OPTIONS.source_info_dict = common.LoadInfoDict(source_zip)
1828
1829 if OPTIONS.verbose:
1830 print("--- source info ---")
1831 common.DumpInfoDict(OPTIONS.source_info_dict)
1832
1833 # Load OEM dicts if provided.
Tao Bao481bab82017-12-21 11:23:09 -08001834 OPTIONS.oem_dicts = _LoadOemDicts(OPTIONS.oem_source)
1835
Tao Baoc098e9e2016-01-07 13:03:56 -08001836 ab_update = OPTIONS.info_dict.get("ab_update") == "true"
1837
Christian Oderf63e2cd2017-05-01 22:30:15 +02001838 # Use the default key to sign the package if not specified with package_key.
1839 # package_keys are needed on ab_updates, so always define them if an
1840 # ab_update is getting created.
1841 if not OPTIONS.no_signing or ab_update:
1842 if OPTIONS.package_key is None:
1843 OPTIONS.package_key = OPTIONS.info_dict.get(
1844 "default_system_dev_certificate",
1845 "build/target/product/security/testkey")
1846 # Get signing keys
1847 OPTIONS.key_passwords = common.GetKeyPasswords([OPTIONS.package_key])
1848
Tao Baoc098e9e2016-01-07 13:03:56 -08001849 if ab_update:
Tao Baoc098e9e2016-01-07 13:03:56 -08001850 WriteABOTAPackageWithBrilloScript(
1851 target_file=args[0],
1852 output_file=args[1],
1853 source_file=OPTIONS.incremental_source)
1854
Tao Bao89fbb0f2017-01-10 10:47:58 -08001855 print("done.")
Tao Baoc098e9e2016-01-07 13:03:56 -08001856 return
1857
Tao Bao2db13852018-01-08 22:28:57 -08001858 # Sanity check the loaded info dicts first.
1859 if OPTIONS.info_dict.get("no_recovery") == "true":
1860 raise common.ExternalError(
1861 "--- target build has specified no recovery ---")
1862
1863 # Non-A/B OTAs rely on /cache partition to store temporary files.
1864 cache_size = OPTIONS.info_dict.get("cache_size")
1865 if cache_size is None:
1866 print("--- can't determine the cache partition size ---")
1867 OPTIONS.cache_size = cache_size
1868
Doug Zongker1c390a22009-05-14 19:06:36 -07001869 if OPTIONS.extra_script is not None:
1870 OPTIONS.extra_script = open(OPTIONS.extra_script).read()
1871
Dan Willemsencea5cd22017-03-21 14:44:27 -07001872 if OPTIONS.extracted_input is not None:
1873 OPTIONS.input_tmp = OPTIONS.extracted_input
Dan Willemsencea5cd22017-03-21 14:44:27 -07001874 else:
1875 print("unzipping target target-files...")
Tao Baodba59ee2018-01-09 13:21:02 -08001876 OPTIONS.input_tmp = common.UnzipTemp(args[0], UNZIP_PATTERN)
Tao Bao2db13852018-01-08 22:28:57 -08001877 OPTIONS.target_tmp = OPTIONS.input_tmp
Doug Zongkerfdd8e692009-08-03 17:27:48 -07001878
Tao Bao2db13852018-01-08 22:28:57 -08001879 # If the caller explicitly specified the device-specific extensions path via
1880 # -s / --device_specific, use that. Otherwise, use META/releasetools.py if it
1881 # is present in the target target_files. Otherwise, take the path of the file
1882 # from 'tool_extensions' in the info dict and look for that in the local
1883 # filesystem, relative to the current directory.
Doug Zongker37974732010-09-16 17:44:38 -07001884 if OPTIONS.device_specific is None:
Doug Zongkereb0a78a2014-01-27 10:01:06 -08001885 from_input = os.path.join(OPTIONS.input_tmp, "META", "releasetools.py")
1886 if os.path.exists(from_input):
Tao Bao89fbb0f2017-01-10 10:47:58 -08001887 print("(using device-specific extensions from target_files)")
Doug Zongkereb0a78a2014-01-27 10:01:06 -08001888 OPTIONS.device_specific = from_input
1889 else:
Tao Bao2db13852018-01-08 22:28:57 -08001890 OPTIONS.device_specific = OPTIONS.info_dict.get("tool_extensions")
Doug Zongkereb0a78a2014-01-27 10:01:06 -08001891
Doug Zongker37974732010-09-16 17:44:38 -07001892 if OPTIONS.device_specific is not None:
Doug Zongkereb0a78a2014-01-27 10:01:06 -08001893 OPTIONS.device_specific = os.path.abspath(OPTIONS.device_specific)
Doug Zongker37974732010-09-16 17:44:38 -07001894
Tao Bao767e3ac2015-11-10 12:19:19 -08001895 # Set up the output zip. Create a temporary zip file if signing is needed.
1896 if OPTIONS.no_signing:
1897 if os.path.exists(args[1]):
1898 os.unlink(args[1])
1899 output_zip = zipfile.ZipFile(args[1], "w",
1900 compression=zipfile.ZIP_DEFLATED)
1901 else:
1902 temp_zip_file = tempfile.NamedTemporaryFile()
1903 output_zip = zipfile.ZipFile(temp_zip_file, "w",
1904 compression=zipfile.ZIP_DEFLATED)
Doug Zongker62d4f182014-08-04 16:06:43 -07001905
Tao Bao767e3ac2015-11-10 12:19:19 -08001906 # Generate a full OTA.
Tao Bao0c6a4142017-12-15 10:11:19 -08001907 if OPTIONS.incremental_source is None:
Tao Baodba59ee2018-01-09 13:21:02 -08001908 with zipfile.ZipFile(args[0], 'r') as input_zip:
1909 WriteFullOTAPackage(input_zip, output_zip)
Tao Bao767e3ac2015-11-10 12:19:19 -08001910
Tao Bao32b80dc2018-01-08 22:50:47 -08001911 # Generate an incremental OTA.
Tao Bao767e3ac2015-11-10 12:19:19 -08001912 else:
Tao Bao89fbb0f2017-01-10 10:47:58 -08001913 print("unzipping source target-files...")
Tao Baodba59ee2018-01-09 13:21:02 -08001914 OPTIONS.source_tmp = common.UnzipTemp(
1915 OPTIONS.incremental_source, UNZIP_PATTERN)
1916 with zipfile.ZipFile(args[0], 'r') as input_zip, \
1917 zipfile.ZipFile(OPTIONS.incremental_source, 'r') as source_zip:
1918 WriteBlockIncrementalOTAPackage(input_zip, source_zip, output_zip)
Tao Bao32b80dc2018-01-08 22:50:47 -08001919
1920 if OPTIONS.log_diff:
1921 with open(OPTIONS.log_diff, 'w') as out_file:
Tao Baod62c6032015-11-30 09:40:20 -08001922 import target_files_diff
Tao Bao32b80dc2018-01-08 22:50:47 -08001923 target_files_diff.recursiveDiff(
1924 '', OPTIONS.source_tmp, OPTIONS.input_tmp, out_file)
Doug Zongker62d4f182014-08-04 16:06:43 -07001925
Tao Bao767e3ac2015-11-10 12:19:19 -08001926 common.ZipClose(output_zip)
Doug Zongkerafb32ea2011-09-22 10:28:04 -07001927
Tao Bao767e3ac2015-11-10 12:19:19 -08001928 # Sign the generated zip package unless no_signing is specified.
Takeshi Kanemotoe153b342013-11-14 17:20:50 +09001929 if not OPTIONS.no_signing:
1930 SignOutput(temp_zip_file.name, args[1])
1931 temp_zip_file.close()
Doug Zongkereef39442009-04-02 12:14:19 -07001932
Tao Bao89fbb0f2017-01-10 10:47:58 -08001933 print("done.")
Doug Zongkereef39442009-04-02 12:14:19 -07001934
1935
1936if __name__ == '__main__':
1937 try:
Ying Wang7e6d4e42010-12-13 16:25:36 -08001938 common.CloseInheritedPipes()
Doug Zongkereef39442009-04-02 12:14:19 -07001939 main(sys.argv[1:])
Dan Albert8b72aef2015-03-23 19:13:21 -07001940 except common.ExternalError as e:
Tao Bao89fbb0f2017-01-10 10:47:58 -08001941 print("\n ERROR: %s\n" % (e,))
Doug Zongkereef39442009-04-02 12:14:19 -07001942 sys.exit(1)
Doug Zongkerfc44a512014-08-26 13:10:25 -07001943 finally:
1944 common.Cleanup()