blob: 7bfc04bfe5b90f90ee9b25b666bc72922926148d [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"""
18Signs all the APK files in a target-files zipfile, producing a new
19target-files zip.
20
21Usage: sign_target_files_apks [flags] input_target_files output_target_files
22
Doug Zongkereef39442009-04-02 12:14:19 -070023 -e (--extra_apks) <name,name,...=key>
24 Add extra APK name/key pairs as though they appeared in
Doug Zongkerad88c7c2009-04-14 12:34:27 -070025 apkcerts.txt (so mappings specified by -k and -d are applied).
26 Keys specified in -e override any value for that app contained
27 in the apkcerts.txt file. Option may be repeated to give
28 multiple extra packages.
Doug Zongkereef39442009-04-02 12:14:19 -070029
30 -k (--key_mapping) <src_key=dest_key>
31 Add a mapping from the key name as specified in apkcerts.txt (the
32 src_key) to the real key you wish to sign the package with
33 (dest_key). Option may be repeated to give multiple key
34 mappings.
35
36 -d (--default_key_mappings) <dir>
37 Set up the following key mappings:
38
Doug Zongker831840e2011-09-22 10:28:04 -070039 $devkey/devkey ==> $dir/releasekey
40 $devkey/testkey ==> $dir/releasekey
41 $devkey/media ==> $dir/media
42 $devkey/shared ==> $dir/shared
43 $devkey/platform ==> $dir/platform
44
45 where $devkey is the directory part of the value of
46 default_system_dev_certificate from the input target-files's
47 META/misc_info.txt. (Defaulting to "build/target/product/security"
48 if the value is not present in misc_info.
Doug Zongkereef39442009-04-02 12:14:19 -070049
50 -d and -k options are added to the set of mappings in the order
51 in which they appear on the command line.
Doug Zongker8e931bf2009-04-06 15:21:45 -070052
53 -o (--replace_ota_keys)
Tao Baoa80ed222016-06-16 14:41:24 -070054 Replace the certificate (public key) used by OTA package verification
55 with the ones specified in the input target_files zip (in the
56 META/otakeys.txt file). Key remapping (-k and -d) is performed on the
57 keys. For A/B devices, the payload verification key will be replaced
58 as well. If there're multiple OTA keys, only the first one will be used
59 for payload verification.
Doug Zongker17aa9442009-04-17 10:15:58 -070060
Doug Zongkerae877012009-04-21 10:04:51 -070061 -t (--tag_changes) <+tag>,<-tag>,...
62 Comma-separated list of changes to make to the set of tags (in
63 the last component of the build fingerprint). Prefix each with
64 '+' or '-' to indicate whether that tag should be added or
65 removed. Changes are processed in the order they appear.
Doug Zongker831840e2011-09-22 10:28:04 -070066 Default value is "-test-keys,-dev-keys,+release-keys".
Doug Zongkerae877012009-04-21 10:04:51 -070067
Tao Bao8adcfd12016-06-17 17:01:22 -070068 --replace_verity_private_key <key>
69 Replace the private key used for verity signing. It expects a filename
70 WITHOUT the extension (e.g. verity_key).
71
72 --replace_verity_public_key <key>
73 Replace the certificate (public key) used for verity verification. The
74 key file replaces the one at BOOT/RAMDISK/verity_key (or ROOT/verity_key
75 for devices using system_root_image). It expects the key filename WITH
76 the extension (e.g. verity_key.pub).
77
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -070078 --replace_verity_keyid <path_to_X509_PEM_cert_file>
79 Replace the veritykeyid in BOOT/cmdline of input_target_file_zip
Tao Bao8adcfd12016-06-17 17:01:22 -070080 with keyid of the cert pointed by <path_to_X509_PEM_cert_file>.
Tao Bao639118f2017-06-19 15:48:02 -070081
82 --avb_{boot,system,vendor,dtbo,vbmeta}_algorithm <algorithm>
83 --avb_{boot,system,vendor,dtbo,vbmeta}_key <key>
84 Use the specified algorithm (e.g. SHA256_RSA4096) and the key to AVB-sign
85 the specified image. Otherwise it uses the existing values in info dict.
86
87 --avb_{boot,system,vendor,dtbo,vbmeta}_extra_args <args>
88 Specify any additional args that are needed to AVB-sign the image
89 (e.g. "--signing_helper /path/to/helper"). The args will be appended to
90 the existing ones in info dict.
Doug Zongkereef39442009-04-02 12:14:19 -070091"""
92
93import sys
94
Doug Zongkercf6d5a92014-02-18 10:57:07 -080095if sys.hexversion < 0x02070000:
96 print >> sys.stderr, "Python 2.7 or newer is required."
Doug Zongkereef39442009-04-02 12:14:19 -070097 sys.exit(1)
98
Robert Craig817c5742013-04-19 10:59:22 -040099import base64
Doug Zongker8e931bf2009-04-06 15:21:45 -0700100import cStringIO
101import copy
Robert Craig817c5742013-04-19 10:59:22 -0400102import errno
Narayan Kamatha07bf042017-08-14 14:49:21 +0100103import gzip
Doug Zongkereef39442009-04-02 12:14:19 -0700104import os
105import re
Narayan Kamatha07bf042017-08-14 14:49:21 +0100106import shutil
Tao Bao9fdd00f2017-07-12 11:57:05 -0700107import stat
Doug Zongkereef39442009-04-02 12:14:19 -0700108import subprocess
109import tempfile
110import zipfile
111
Doug Zongker3c84f562014-07-31 11:06:30 -0700112import add_img_to_target_files
Doug Zongkereef39442009-04-02 12:14:19 -0700113import common
114
115OPTIONS = common.OPTIONS
116
117OPTIONS.extra_apks = {}
118OPTIONS.key_map = {}
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700119OPTIONS.rebuild_recovery = False
Doug Zongker8e931bf2009-04-06 15:21:45 -0700120OPTIONS.replace_ota_keys = False
Geremy Condraf19b3652014-07-29 17:54:54 -0700121OPTIONS.replace_verity_public_key = False
122OPTIONS.replace_verity_private_key = False
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700123OPTIONS.replace_verity_keyid = False
Doug Zongker831840e2011-09-22 10:28:04 -0700124OPTIONS.tag_changes = ("-test-keys", "-dev-keys", "+release-keys")
Tao Bao639118f2017-06-19 15:48:02 -0700125OPTIONS.avb_keys = {}
126OPTIONS.avb_algorithms = {}
127OPTIONS.avb_extra_args = {}
Doug Zongkereef39442009-04-02 12:14:19 -0700128
Narayan Kamatha07bf042017-08-14 14:49:21 +0100129def GetApkCerts(certmap):
Doug Zongkerf6a53aa2009-12-15 15:06:55 -0800130 # apply the key remapping to the contents of the file
131 for apk, cert in certmap.iteritems():
132 certmap[apk] = OPTIONS.key_map.get(cert, cert)
133
134 # apply all the -e options, overriding anything in the file
Doug Zongkerad88c7c2009-04-14 12:34:27 -0700135 for apk, cert in OPTIONS.extra_apks.iteritems():
Doug Zongkerdecf9952009-12-15 17:27:49 -0800136 if not cert:
137 cert = "PRESIGNED"
Doug Zongkerad88c7c2009-04-14 12:34:27 -0700138 certmap[apk] = OPTIONS.key_map.get(cert, cert)
Doug Zongkerf6a53aa2009-12-15 15:06:55 -0800139
Doug Zongkereef39442009-04-02 12:14:19 -0700140 return certmap
141
142
Narayan Kamatha07bf042017-08-14 14:49:21 +0100143def CheckAllApksSigned(input_tf_zip, apk_key_map, compressed_extension):
Doug Zongkereb338ef2009-05-20 16:50:49 -0700144 """Check that all the APKs we want to sign have keys specified, and
145 error out if they don't."""
146 unknown_apks = []
Narayan Kamatha07bf042017-08-14 14:49:21 +0100147 compressed_apk_extension = None
148 if compressed_extension:
149 compressed_apk_extension = ".apk" + compressed_extension
Doug Zongkereb338ef2009-05-20 16:50:49 -0700150 for info in input_tf_zip.infolist():
Narayan Kamatha07bf042017-08-14 14:49:21 +0100151 if (info.filename.endswith(".apk") or
152 (compressed_apk_extension and info.filename.endswith(compressed_apk_extension))):
Doug Zongkereb338ef2009-05-20 16:50:49 -0700153 name = os.path.basename(info.filename)
Narayan Kamatha07bf042017-08-14 14:49:21 +0100154 if compressed_apk_extension and name.endswith(compressed_apk_extension):
155 name = name[:-len(compressed_extension)]
Doug Zongkereb338ef2009-05-20 16:50:49 -0700156 if name not in apk_key_map:
157 unknown_apks.append(name)
158 if unknown_apks:
159 print "ERROR: no key specified for:\n\n ",
160 print "\n ".join(unknown_apks)
161 print "\nUse '-e <apkname>=' to specify a key (which may be an"
162 print "empty string to not sign this apk)."
163 sys.exit(1)
164
165
Narayan Kamatha07bf042017-08-14 14:49:21 +0100166def SignApk(data, keyname, pw, platform_api_level, codename_to_api_level_map,
167 is_compressed):
Doug Zongkereef39442009-04-02 12:14:19 -0700168 unsigned = tempfile.NamedTemporaryFile()
169 unsigned.write(data)
170 unsigned.flush()
171
Narayan Kamatha07bf042017-08-14 14:49:21 +0100172 if is_compressed:
173 uncompressed = tempfile.NamedTemporaryFile()
174 with gzip.open(unsigned.name, "rb") as in_file, open(uncompressed.name, "wb") as out_file:
175 shutil.copyfileobj(in_file, out_file)
176
177 # Finally, close the "unsigned" file (which is gzip compressed), and then
178 # replace it with the uncompressed version.
179 #
180 # TODO(narayan): All this nastiness can be avoided if python 3.2 is in use,
181 # we could just gzip / gunzip in-memory buffers instead.
182 unsigned.close()
183 unsigned = uncompressed
184
Doug Zongkereef39442009-04-02 12:14:19 -0700185 signed = tempfile.NamedTemporaryFile()
186
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800187 # For pre-N builds, don't upgrade to SHA-256 JAR signatures based on the APK's
188 # minSdkVersion to avoid increasing incremental OTA update sizes. If an APK
189 # didn't change, we don't want its signature to change due to the switch
190 # from SHA-1 to SHA-256.
191 # By default, APK signer chooses SHA-256 signatures if the APK's minSdkVersion
192 # is 18 or higher. For pre-N builds we disable this mechanism by pretending
193 # that the APK's minSdkVersion is 1.
194 # For N+ builds, we let APK signer rely on the APK's minSdkVersion to
195 # determine whether to use SHA-256.
196 min_api_level = None
197 if platform_api_level > 23:
198 # Let APK signer choose whether to use SHA-1 or SHA-256, based on the APK's
199 # minSdkVersion attribute
200 min_api_level = None
201 else:
202 # Force APK signer to use SHA-1
203 min_api_level = 1
204
205 common.SignFile(unsigned.name, signed.name, keyname, pw,
206 min_api_level=min_api_level,
207 codename_to_api_level_map=codename_to_api_level_map)
Doug Zongkereef39442009-04-02 12:14:19 -0700208
Narayan Kamatha07bf042017-08-14 14:49:21 +0100209 data = None;
210 if is_compressed:
211 # Recompress the file after it has been signed.
212 compressed = tempfile.NamedTemporaryFile()
213 with open(signed.name, "rb") as in_file, gzip.open(compressed.name, "wb") as out_file:
214 shutil.copyfileobj(in_file, out_file)
215
216 data = compressed.read()
217 compressed.close()
218 else:
219 data = signed.read()
220
Doug Zongkereef39442009-04-02 12:14:19 -0700221 unsigned.close()
222 signed.close()
223
224 return data
225
226
Doug Zongker412c02f2014-02-13 10:58:24 -0800227def ProcessTargetFiles(input_tf_zip, output_tf_zip, misc_info,
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800228 apk_key_map, key_passwords, platform_api_level,
Narayan Kamatha07bf042017-08-14 14:49:21 +0100229 codename_to_api_level_map,
230 compressed_extension):
231
232 compressed_apk_extension = None
233 if compressed_extension:
234 compressed_apk_extension = ".apk" + compressed_extension
Michael Rungedc2661a2014-06-03 14:43:11 -0700235
Doug Zongkereef39442009-04-02 12:14:19 -0700236 maxsize = max([len(os.path.basename(i.filename))
237 for i in input_tf_zip.infolist()
Narayan Kamatha07bf042017-08-14 14:49:21 +0100238 if i.filename.endswith('.apk') or
239 (compressed_apk_extension and i.filename.endswith(compressed_apk_extension))])
Tao Baoa80ed222016-06-16 14:41:24 -0700240 system_root_image = misc_info.get("system_root_image") == "true"
Doug Zongker412c02f2014-02-13 10:58:24 -0800241
Doug Zongkereef39442009-04-02 12:14:19 -0700242 for info in input_tf_zip.infolist():
Dan Albert8b72aef2015-03-23 19:13:21 -0700243 if info.filename.startswith("IMAGES/"):
244 continue
Doug Zongker3c84f562014-07-31 11:06:30 -0700245
Doug Zongkereef39442009-04-02 12:14:19 -0700246 data = input_tf_zip.read(info.filename)
Doug Zongker8e931bf2009-04-06 15:21:45 -0700247 out_info = copy.copy(info)
Doug Zongker412c02f2014-02-13 10:58:24 -0800248
Tao Baof2cffbd2015-07-22 12:33:18 -0700249 # Sign APKs.
Narayan Kamatha07bf042017-08-14 14:49:21 +0100250 if (info.filename.endswith(".apk") or
251 (compressed_apk_extension and info.filename.endswith(compressed_apk_extension))):
252 is_compressed = compressed_extension and info.filename.endswith(compressed_apk_extension)
Doug Zongkereef39442009-04-02 12:14:19 -0700253 name = os.path.basename(info.filename)
Narayan Kamatha07bf042017-08-14 14:49:21 +0100254 if is_compressed:
255 name = name[:-len(compressed_extension)]
256
Doug Zongker43874f82009-04-14 14:05:15 -0700257 key = apk_key_map[name]
Doug Zongkerf6a53aa2009-12-15 15:06:55 -0800258 if key not in common.SPECIAL_CERT_STRINGS:
Doug Zongker43874f82009-04-14 14:05:15 -0700259 print " signing: %-*s (%s)" % (maxsize, name, key)
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800260 signed_data = SignApk(data, key, key_passwords[key], platform_api_level,
Narayan Kamatha07bf042017-08-14 14:49:21 +0100261 codename_to_api_level_map, is_compressed)
Tao Bao2ed665a2015-04-01 11:21:55 -0700262 common.ZipWriteStr(output_tf_zip, out_info, signed_data)
Doug Zongkereef39442009-04-02 12:14:19 -0700263 else:
264 # an APK we're not supposed to sign.
Doug Zongker43874f82009-04-14 14:05:15 -0700265 print "NOT signing: %s" % (name,)
Tao Bao2ed665a2015-04-01 11:21:55 -0700266 common.ZipWriteStr(output_tf_zip, out_info, data)
Tao Baoa80ed222016-06-16 14:41:24 -0700267
268 # System properties.
Doug Zongker8e931bf2009-04-06 15:21:45 -0700269 elif info.filename in ("SYSTEM/build.prop",
Jesse Zhao2625d272015-02-06 09:49:55 -0800270 "VENDOR/build.prop",
Hung-ying Tyan7eb6a922017-05-01 21:56:26 +0800271 "SYSTEM/etc/prop.default",
272 "BOOT/RAMDISK/prop.default",
273 "BOOT/RAMDISK/default.prop", # legacy
274 "ROOT/default.prop", # legacy
275 "RECOVERY/RAMDISK/prop.default",
276 "RECOVERY/RAMDISK/default.prop"): # legacy
Doug Zongker17aa9442009-04-17 10:15:58 -0700277 print "rewriting %s:" % (info.filename,)
Hung-ying Tyan7eb6a922017-05-01 21:56:26 +0800278 if stat.S_ISLNK(info.external_attr >> 16):
279 new_data = data
280 else:
Tao Baoa7054ee2017-12-08 14:42:16 -0800281 new_data = RewriteProps(data)
Tao Bao2ed665a2015-04-01 11:21:55 -0700282 common.ZipWriteStr(output_tf_zip, out_info, new_data)
Tao Baoa80ed222016-06-16 14:41:24 -0700283
Robert Craig817c5742013-04-19 10:59:22 -0400284 elif info.filename.endswith("mac_permissions.xml"):
285 print "rewriting %s with new keys." % (info.filename,)
286 new_data = ReplaceCerts(data)
Tao Bao2ed665a2015-04-01 11:21:55 -0700287 common.ZipWriteStr(output_tf_zip, out_info, new_data)
Tao Baoa80ed222016-06-16 14:41:24 -0700288
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700289 # Ask add_img_to_target_files to rebuild the recovery patch if needed.
Doug Zongker412c02f2014-02-13 10:58:24 -0800290 elif info.filename in ("SYSTEM/recovery-from-boot.p",
Tao Baof2cffbd2015-07-22 12:33:18 -0700291 "SYSTEM/etc/recovery.img",
Doug Zongker412c02f2014-02-13 10:58:24 -0800292 "SYSTEM/bin/install-recovery.sh"):
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700293 OPTIONS.rebuild_recovery = True
Tao Baoa80ed222016-06-16 14:41:24 -0700294
295 # Don't copy OTA keys if we're replacing them.
Doug Zongker412c02f2014-02-13 10:58:24 -0800296 elif (OPTIONS.replace_ota_keys and
Tao Baoa80ed222016-06-16 14:41:24 -0700297 info.filename in (
298 "BOOT/RAMDISK/res/keys",
Alex Deymob3e8ce62016-08-04 16:06:12 -0700299 "BOOT/RAMDISK/etc/update_engine/update-payload-key.pub.pem",
Tao Baoa80ed222016-06-16 14:41:24 -0700300 "RECOVERY/RAMDISK/res/keys",
301 "SYSTEM/etc/security/otacerts.zip",
302 "SYSTEM/etc/update_engine/update-payload-key.pub.pem")):
Doug Zongker412c02f2014-02-13 10:58:24 -0800303 pass
Tao Baoa80ed222016-06-16 14:41:24 -0700304
Tao Bao46a59992017-06-05 11:55:16 -0700305 # Skip META/misc_info.txt since we will write back the new values later.
306 elif info.filename == "META/misc_info.txt":
Geremy Condraf19b3652014-07-29 17:54:54 -0700307 pass
Tao Bao8adcfd12016-06-17 17:01:22 -0700308
309 # Skip verity public key if we will replace it.
Michael Runge947894f2014-10-14 20:58:38 -0700310 elif (OPTIONS.replace_verity_public_key and
Tao Bao7a5bf8a2015-07-21 18:01:20 -0700311 info.filename in ("BOOT/RAMDISK/verity_key",
Tao Bao8adcfd12016-06-17 17:01:22 -0700312 "ROOT/verity_key")):
Geremy Condraf19b3652014-07-29 17:54:54 -0700313 pass
Tao Baoa80ed222016-06-16 14:41:24 -0700314
Tao Bao8adcfd12016-06-17 17:01:22 -0700315 # Skip verity keyid (for system_root_image use) if we will replace it.
316 elif (OPTIONS.replace_verity_keyid and
317 info.filename == "BOOT/cmdline"):
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700318 pass
319
Tianjie Xu4f099002016-08-11 18:04:27 -0700320 # Skip the care_map as we will regenerate the system/vendor images.
Tao Bao9aa4b9b2016-09-29 17:53:56 -0700321 elif info.filename == "META/care_map.txt":
Tianjie Xu4f099002016-08-11 18:04:27 -0700322 pass
323
Tao Baoa80ed222016-06-16 14:41:24 -0700324 # A non-APK file; copy it verbatim.
Doug Zongkereef39442009-04-02 12:14:19 -0700325 else:
Tao Bao2ed665a2015-04-01 11:21:55 -0700326 common.ZipWriteStr(output_tf_zip, out_info, data)
Doug Zongker8e931bf2009-04-06 15:21:45 -0700327
Doug Zongker412c02f2014-02-13 10:58:24 -0800328 if OPTIONS.replace_ota_keys:
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700329 ReplaceOtaKeys(input_tf_zip, output_tf_zip, misc_info)
Doug Zongker412c02f2014-02-13 10:58:24 -0800330
Tao Bao46a59992017-06-05 11:55:16 -0700331 # Replace the keyid string in misc_info dict.
Tao Bao8adcfd12016-06-17 17:01:22 -0700332 if OPTIONS.replace_verity_private_key:
Tao Bao46a59992017-06-05 11:55:16 -0700333 ReplaceVerityPrivateKey(misc_info, OPTIONS.replace_verity_private_key[1])
Tao Bao8adcfd12016-06-17 17:01:22 -0700334
335 if OPTIONS.replace_verity_public_key:
336 if system_root_image:
337 dest = "ROOT/verity_key"
338 else:
339 dest = "BOOT/RAMDISK/verity_key"
340 # We are replacing the one in boot image only, since the one under
341 # recovery won't ever be needed.
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700342 ReplaceVerityPublicKey(
Tao Bao8adcfd12016-06-17 17:01:22 -0700343 output_tf_zip, dest, OPTIONS.replace_verity_public_key[1])
Tao Bao8adcfd12016-06-17 17:01:22 -0700344
345 # Replace the keyid string in BOOT/cmdline.
346 if OPTIONS.replace_verity_keyid:
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700347 ReplaceVerityKeyId(input_tf_zip, output_tf_zip,
348 OPTIONS.replace_verity_keyid[1])
Doug Zongker412c02f2014-02-13 10:58:24 -0800349
Tao Bao639118f2017-06-19 15:48:02 -0700350 # Replace the AVB signing keys, if any.
351 ReplaceAvbSigningKeys(misc_info)
352
Tao Bao46a59992017-06-05 11:55:16 -0700353 # Write back misc_info with the latest values.
354 ReplaceMiscInfoTxt(input_tf_zip, output_tf_zip, misc_info)
355
Doug Zongker8e931bf2009-04-06 15:21:45 -0700356
Robert Craig817c5742013-04-19 10:59:22 -0400357def ReplaceCerts(data):
358 """Given a string of data, replace all occurences of a set
359 of X509 certs with a newer set of X509 certs and return
360 the updated data string."""
361 for old, new in OPTIONS.key_map.iteritems():
362 try:
363 if OPTIONS.verbose:
364 print " Replacing %s.x509.pem with %s.x509.pem" % (old, new)
365 f = open(old + ".x509.pem")
366 old_cert16 = base64.b16encode(common.ParseCertificate(f.read())).lower()
367 f.close()
368 f = open(new + ".x509.pem")
369 new_cert16 = base64.b16encode(common.ParseCertificate(f.read())).lower()
370 f.close()
371 # Only match entire certs.
372 pattern = "\\b"+old_cert16+"\\b"
373 (data, num) = re.subn(pattern, new_cert16, data, flags=re.IGNORECASE)
374 if OPTIONS.verbose:
375 print " Replaced %d occurence(s) of %s.x509.pem with " \
376 "%s.x509.pem" % (num, old, new)
Dan Albert8b72aef2015-03-23 19:13:21 -0700377 except IOError as e:
378 if e.errno == errno.ENOENT and not OPTIONS.verbose:
Robert Craig817c5742013-04-19 10:59:22 -0400379 continue
380
381 print " Error accessing %s. %s. Skip replacing %s.x509.pem " \
382 "with %s.x509.pem." % (e.filename, e.strerror, old, new)
383
384 return data
385
386
Doug Zongkerc09abc82010-01-11 13:09:15 -0800387def EditTags(tags):
Tao Baoa7054ee2017-12-08 14:42:16 -0800388 """Applies the edits to the tag string as specified in OPTIONS.tag_changes.
389
390 Args:
391 tags: The input string that contains comma-separated tags.
392
393 Returns:
394 The updated tags (comma-separated and sorted).
395 """
Doug Zongkerc09abc82010-01-11 13:09:15 -0800396 tags = set(tags.split(","))
397 for ch in OPTIONS.tag_changes:
398 if ch[0] == "-":
399 tags.discard(ch[1:])
400 elif ch[0] == "+":
401 tags.add(ch[1:])
402 return ",".join(sorted(tags))
403
404
Tao Baoa7054ee2017-12-08 14:42:16 -0800405def RewriteProps(data):
406 """Rewrites the system properties in the given string.
407
408 Each property is expected in 'key=value' format. The properties that contain
409 build tags (i.e. test-keys, dev-keys) will be updated accordingly by calling
410 EditTags().
411
412 Args:
413 data: Input string, separated by newlines.
414
415 Returns:
416 The string with modified properties.
417 """
Doug Zongker17aa9442009-04-17 10:15:58 -0700418 output = []
419 for line in data.split("\n"):
420 line = line.strip()
421 original_line = line
Michael Rungedc2661a2014-06-03 14:43:11 -0700422 if line and line[0] != '#' and "=" in line:
Doug Zongker17aa9442009-04-17 10:15:58 -0700423 key, value = line.split("=", 1)
Tao Baoa7054ee2017-12-08 14:42:16 -0800424 if key in ("ro.build.fingerprint", "ro.build.thumbprint",
425 "ro.vendor.build.fingerprint", "ro.vendor.build.thumbprint"):
Doug Zongkerc09abc82010-01-11 13:09:15 -0800426 pieces = value.split("/")
427 pieces[-1] = EditTags(pieces[-1])
428 value = "/".join(pieces)
Tao Baocb7ff772015-09-11 15:27:56 -0700429 elif key == "ro.bootimage.build.fingerprint":
430 pieces = value.split("/")
431 pieces[-1] = EditTags(pieces[-1])
432 value = "/".join(pieces)
Doug Zongker17aa9442009-04-17 10:15:58 -0700433 elif key == "ro.build.description":
Doug Zongkerc09abc82010-01-11 13:09:15 -0800434 pieces = value.split(" ")
Doug Zongker17aa9442009-04-17 10:15:58 -0700435 assert len(pieces) == 5
Doug Zongkerc09abc82010-01-11 13:09:15 -0800436 pieces[-1] = EditTags(pieces[-1])
437 value = " ".join(pieces)
438 elif key == "ro.build.tags":
439 value = EditTags(value)
Doug Zongkera8608a72013-07-23 11:51:04 -0700440 elif key == "ro.build.display.id":
441 # change, eg, "JWR66N dev-keys" to "JWR66N"
442 value = value.split()
Michael Rungedc2661a2014-06-03 14:43:11 -0700443 if len(value) > 1 and value[-1].endswith("-keys"):
Andrew Boie73d5abb2013-12-11 12:42:03 -0800444 value.pop()
445 value = " ".join(value)
Doug Zongkerc09abc82010-01-11 13:09:15 -0800446 line = key + "=" + value
Doug Zongker17aa9442009-04-17 10:15:58 -0700447 if line != original_line:
448 print " replace: ", original_line
449 print " with: ", line
450 output.append(line)
451 return "\n".join(output) + "\n"
452
453
Doug Zongker831840e2011-09-22 10:28:04 -0700454def ReplaceOtaKeys(input_tf_zip, output_tf_zip, misc_info):
Doug Zongker8e931bf2009-04-06 15:21:45 -0700455 try:
456 keylist = input_tf_zip.read("META/otakeys.txt").split()
457 except KeyError:
T.R. Fullharta28acc62013-03-18 10:31:26 -0700458 raise common.ExternalError("can't read META/otakeys.txt from input")
Doug Zongker8e931bf2009-04-06 15:21:45 -0700459
Tao Baof718f902017-11-09 10:10:10 -0800460 extra_recovery_keys = misc_info.get("extra_recovery_keys")
Doug Zongkere121d6a2011-02-01 14:13:52 -0800461 if extra_recovery_keys:
462 extra_recovery_keys = [OPTIONS.key_map.get(k, k) + ".x509.pem"
463 for k in extra_recovery_keys.split()]
464 if extra_recovery_keys:
465 print "extra recovery-only key(s): " + ", ".join(extra_recovery_keys)
466 else:
467 extra_recovery_keys = []
468
Doug Zongker8e931bf2009-04-06 15:21:45 -0700469 mapped_keys = []
470 for k in keylist:
471 m = re.match(r"^(.*)\.x509\.pem$", k)
472 if not m:
Doug Zongker412c02f2014-02-13 10:58:24 -0800473 raise common.ExternalError(
474 "can't parse \"%s\" from META/otakeys.txt" % (k,))
Doug Zongker8e931bf2009-04-06 15:21:45 -0700475 k = m.group(1)
476 mapped_keys.append(OPTIONS.key_map.get(k, k) + ".x509.pem")
477
Doug Zongkere05628c2009-08-20 17:38:42 -0700478 if mapped_keys:
479 print "using:\n ", "\n ".join(mapped_keys)
480 print "for OTA package verification"
481 else:
Doug Zongker831840e2011-09-22 10:28:04 -0700482 devkey = misc_info.get("default_system_dev_certificate",
483 "build/target/product/security/testkey")
Tao Baof718f902017-11-09 10:10:10 -0800484 mapped_devkey = OPTIONS.key_map.get(devkey, devkey)
485 if mapped_devkey != devkey:
486 misc_info["default_system_dev_certificate"] = mapped_devkey
487 mapped_keys.append(mapped_devkey + ".x509.pem")
Tao Baoa80ed222016-06-16 14:41:24 -0700488 print("META/otakeys.txt has no keys; using %s for OTA package"
489 " verification." % (mapped_keys[0],))
Doug Zongker8e931bf2009-04-06 15:21:45 -0700490
491 # recovery uses a version of the key that has been slightly
492 # predigested (by DumpPublicKey.java) and put in res/keys.
Doug Zongkere121d6a2011-02-01 14:13:52 -0800493 # extra_recovery_keys are used only in recovery.
Tao Baoe95540e2016-11-08 12:08:53 -0800494 cmd = ([OPTIONS.java_path] + OPTIONS.java_args +
495 ["-jar",
496 os.path.join(OPTIONS.search_path, "framework", "dumpkey.jar")] +
497 mapped_keys + extra_recovery_keys)
498 p = common.Run(cmd, stdout=subprocess.PIPE)
Doug Zongker412c02f2014-02-13 10:58:24 -0800499 new_recovery_keys, _ = p.communicate()
Doug Zongker8e931bf2009-04-06 15:21:45 -0700500 if p.returncode != 0:
T.R. Fullharta28acc62013-03-18 10:31:26 -0700501 raise common.ExternalError("failed to run dumpkeys")
Tao Baoa80ed222016-06-16 14:41:24 -0700502
503 # system_root_image puts the recovery keys at BOOT/RAMDISK.
504 if misc_info.get("system_root_image") == "true":
505 recovery_keys_location = "BOOT/RAMDISK/res/keys"
506 else:
507 recovery_keys_location = "RECOVERY/RAMDISK/res/keys"
508 common.ZipWriteStr(output_tf_zip, recovery_keys_location, new_recovery_keys)
Doug Zongker8e931bf2009-04-06 15:21:45 -0700509
510 # SystemUpdateActivity uses the x509.pem version of the keys, but
511 # put into a zipfile system/etc/security/otacerts.zip.
Doug Zongkere121d6a2011-02-01 14:13:52 -0800512 # We DO NOT include the extra_recovery_keys (if any) here.
Doug Zongker8e931bf2009-04-06 15:21:45 -0700513
Dan Albert8b72aef2015-03-23 19:13:21 -0700514 temp_file = cStringIO.StringIO()
515 certs_zip = zipfile.ZipFile(temp_file, "w")
Doug Zongker8e931bf2009-04-06 15:21:45 -0700516 for k in mapped_keys:
Tao Bao83cd79d2016-04-11 23:05:52 -0700517 common.ZipWrite(certs_zip, k)
518 common.ZipClose(certs_zip)
Doug Zongker048e7ca2009-06-15 14:31:53 -0700519 common.ZipWriteStr(output_tf_zip, "SYSTEM/etc/security/otacerts.zip",
Dan Albert8b72aef2015-03-23 19:13:21 -0700520 temp_file.getvalue())
Doug Zongkereef39442009-04-02 12:14:19 -0700521
Tao Baoa80ed222016-06-16 14:41:24 -0700522 # For A/B devices, update the payload verification key.
523 if misc_info.get("ab_update") == "true":
524 # Unlike otacerts.zip that may contain multiple keys, we can only specify
525 # ONE payload verification key.
526 if len(mapped_keys) > 1:
527 print("\n WARNING: Found more than one OTA keys; Using the first one"
528 " as payload verification key.\n\n")
529
530 print "Using %s for payload verification." % (mapped_keys[0],)
Tao Bao13b69622016-07-06 15:28:59 -0700531 cmd = common.Run(
532 ["openssl", "x509", "-pubkey", "-noout", "-in", mapped_keys[0]],
533 stdout=subprocess.PIPE)
534 pubkey, _ = cmd.communicate()
535 common.ZipWriteStr(
Tao Baoa80ed222016-06-16 14:41:24 -0700536 output_tf_zip,
Tao Bao13b69622016-07-06 15:28:59 -0700537 "SYSTEM/etc/update_engine/update-payload-key.pub.pem",
538 pubkey)
Alex Deymob3e8ce62016-08-04 16:06:12 -0700539 common.ZipWriteStr(
540 output_tf_zip,
541 "BOOT/RAMDISK/etc/update_engine/update-payload-key.pub.pem",
542 pubkey)
Tao Baoa80ed222016-06-16 14:41:24 -0700543
Doug Zongker412c02f2014-02-13 10:58:24 -0800544 return new_recovery_keys
545
Tao Bao8adcfd12016-06-17 17:01:22 -0700546
Tao Bao7a5bf8a2015-07-21 18:01:20 -0700547def ReplaceVerityPublicKey(targetfile_zip, filename, key_path):
Tao Bao46a59992017-06-05 11:55:16 -0700548 print "Replacing verity public key with %s" % (key_path,)
549 common.ZipWrite(targetfile_zip, key_path, arcname=filename)
Geremy Condraf19b3652014-07-29 17:54:54 -0700550
Tao Bao8adcfd12016-06-17 17:01:22 -0700551
Tao Bao46a59992017-06-05 11:55:16 -0700552def ReplaceVerityPrivateKey(misc_info, key_path):
553 print "Replacing verity private key with %s" % (key_path,)
Andrew Boied083f0b2014-09-15 16:01:07 -0700554 misc_info["verity_key"] = key_path
Doug Zongkereef39442009-04-02 12:14:19 -0700555
Tao Bao8adcfd12016-06-17 17:01:22 -0700556
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700557def ReplaceVerityKeyId(targetfile_input_zip, targetfile_output_zip, keypath):
558 in_cmdline = targetfile_input_zip.read("BOOT/cmdline")
559 # copy in_cmdline to output_zip if veritykeyid is not present in in_cmdline
560 if "veritykeyid" not in in_cmdline:
561 common.ZipWriteStr(targetfile_output_zip, "BOOT/cmdline", in_cmdline)
562 return in_cmdline
563 out_cmdline = []
564 for param in in_cmdline.split():
565 if "veritykeyid" in param:
566 # extract keyid using openssl command
Tao Bao9aa4b9b2016-09-29 17:53:56 -0700567 p = common.Run(
568 ["openssl", "x509", "-in", keypath, "-text"],
569 stdout=subprocess.PIPE)
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700570 keyid, stderr = p.communicate()
Tao Bao9aa4b9b2016-09-29 17:53:56 -0700571 keyid = re.search(
572 r'keyid:([0-9a-fA-F:]*)', keyid).group(1).replace(':', '').lower()
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700573 print "Replacing verity keyid with %s error=%s" % (keyid, stderr)
574 out_cmdline.append("veritykeyid=id:%s" % (keyid,))
575 else:
576 out_cmdline.append(param)
577
578 out_cmdline = ' '.join(out_cmdline)
579 out_cmdline = out_cmdline.strip()
580 print "out_cmdline %s" % (out_cmdline)
581 common.ZipWriteStr(targetfile_output_zip, "BOOT/cmdline", out_cmdline)
Tao Bao46a59992017-06-05 11:55:16 -0700582
583
584def ReplaceMiscInfoTxt(input_zip, output_zip, misc_info):
585 """Replaces META/misc_info.txt.
586
587 Only writes back the ones in the original META/misc_info.txt. Because the
588 current in-memory dict contains additional items computed at runtime.
589 """
590 misc_info_old = common.LoadDictionaryFromLines(
591 input_zip.read('META/misc_info.txt').split('\n'))
592 items = []
593 for key in sorted(misc_info):
594 if key in misc_info_old:
595 items.append('%s=%s' % (key, misc_info[key]))
596 common.ZipWriteStr(output_zip, "META/misc_info.txt", '\n'.join(items))
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700597
Tao Bao8adcfd12016-06-17 17:01:22 -0700598
Tao Bao639118f2017-06-19 15:48:02 -0700599def ReplaceAvbSigningKeys(misc_info):
600 """Replaces the AVB signing keys."""
601
602 AVB_FOOTER_ARGS_BY_PARTITION = {
603 'boot' : 'avb_boot_add_hash_footer_args',
604 'dtbo' : 'avb_dtbo_add_hash_footer_args',
David Zeuthen8fecb282017-12-01 16:24:01 -0500605 'recovery' : 'avb_recovery_add_hash_footer_args',
Tao Bao639118f2017-06-19 15:48:02 -0700606 'system' : 'avb_system_add_hashtree_footer_args',
607 'vendor' : 'avb_vendor_add_hashtree_footer_args',
608 'vbmeta' : 'avb_vbmeta_args',
609 }
610
611 def ReplaceAvbPartitionSigningKey(partition):
612 key = OPTIONS.avb_keys.get(partition)
613 if not key:
614 return
615
616 algorithm = OPTIONS.avb_algorithms.get(partition)
617 assert algorithm, 'Missing AVB signing algorithm for %s' % (partition,)
618
619 print 'Replacing AVB signing key for %s with "%s" (%s)' % (
620 partition, key, algorithm)
621 misc_info['avb_' + partition + '_algorithm'] = algorithm
622 misc_info['avb_' + partition + '_key_path'] = key
623
624 extra_args = OPTIONS.avb_extra_args.get(partition)
625 if extra_args:
626 print 'Setting extra AVB signing args for %s to "%s"' % (
627 partition, extra_args)
628 args_key = AVB_FOOTER_ARGS_BY_PARTITION[partition]
629 misc_info[args_key] = (misc_info.get(args_key, '') + ' ' + extra_args)
630
631 for partition in AVB_FOOTER_ARGS_BY_PARTITION:
632 ReplaceAvbPartitionSigningKey(partition)
633
634
Doug Zongker831840e2011-09-22 10:28:04 -0700635def BuildKeyMap(misc_info, key_mapping_options):
636 for s, d in key_mapping_options:
637 if s is None: # -d option
638 devkey = misc_info.get("default_system_dev_certificate",
639 "build/target/product/security/testkey")
640 devkeydir = os.path.dirname(devkey)
641
642 OPTIONS.key_map.update({
643 devkeydir + "/testkey": d + "/releasekey",
644 devkeydir + "/devkey": d + "/releasekey",
645 devkeydir + "/media": d + "/media",
646 devkeydir + "/shared": d + "/shared",
647 devkeydir + "/platform": d + "/platform",
648 })
649 else:
650 OPTIONS.key_map[s] = d
651
652
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800653def GetApiLevelAndCodename(input_tf_zip):
654 data = input_tf_zip.read("SYSTEM/build.prop")
655 api_level = None
656 codename = None
657 for line in data.split("\n"):
658 line = line.strip()
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800659 if line and line[0] != '#' and "=" in line:
660 key, value = line.split("=", 1)
661 key = key.strip()
662 if key == "ro.build.version.sdk":
663 api_level = int(value.strip())
664 elif key == "ro.build.version.codename":
665 codename = value.strip()
666
667 if api_level is None:
668 raise ValueError("No ro.build.version.sdk in SYSTEM/build.prop")
669 if codename is None:
670 raise ValueError("No ro.build.version.codename in SYSTEM/build.prop")
671
672 return (api_level, codename)
673
674
675def GetCodenameToApiLevelMap(input_tf_zip):
676 data = input_tf_zip.read("SYSTEM/build.prop")
677 api_level = None
678 codenames = None
679 for line in data.split("\n"):
680 line = line.strip()
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800681 if line and line[0] != '#' and "=" in line:
682 key, value = line.split("=", 1)
683 key = key.strip()
684 if key == "ro.build.version.sdk":
685 api_level = int(value.strip())
686 elif key == "ro.build.version.all_codenames":
687 codenames = value.strip().split(",")
688
689 if api_level is None:
690 raise ValueError("No ro.build.version.sdk in SYSTEM/build.prop")
691 if codenames is None:
692 raise ValueError("No ro.build.version.all_codenames in SYSTEM/build.prop")
693
694 result = dict()
695 for codename in codenames:
696 codename = codename.strip()
697 if len(codename) > 0:
698 result[codename] = api_level
699 return result
700
701
Doug Zongkereef39442009-04-02 12:14:19 -0700702def main(argv):
703
Doug Zongker831840e2011-09-22 10:28:04 -0700704 key_mapping_options = []
705
Doug Zongkereef39442009-04-02 12:14:19 -0700706 def option_handler(o, a):
Doug Zongker05d3dea2009-06-22 11:32:31 -0700707 if o in ("-e", "--extra_apks"):
Doug Zongkereef39442009-04-02 12:14:19 -0700708 names, key = a.split("=")
709 names = names.split(",")
710 for n in names:
711 OPTIONS.extra_apks[n] = key
712 elif o in ("-d", "--default_key_mappings"):
Doug Zongker831840e2011-09-22 10:28:04 -0700713 key_mapping_options.append((None, a))
Doug Zongkereef39442009-04-02 12:14:19 -0700714 elif o in ("-k", "--key_mapping"):
Doug Zongker831840e2011-09-22 10:28:04 -0700715 key_mapping_options.append(a.split("=", 1))
Doug Zongker8e931bf2009-04-06 15:21:45 -0700716 elif o in ("-o", "--replace_ota_keys"):
717 OPTIONS.replace_ota_keys = True
Doug Zongkerae877012009-04-21 10:04:51 -0700718 elif o in ("-t", "--tag_changes"):
719 new = []
720 for i in a.split(","):
721 i = i.strip()
722 if not i or i[0] not in "-+":
723 raise ValueError("Bad tag change '%s'" % (i,))
724 new.append(i[0] + i[1:].strip())
725 OPTIONS.tag_changes = tuple(new)
Geremy Condraf19b3652014-07-29 17:54:54 -0700726 elif o == "--replace_verity_public_key":
727 OPTIONS.replace_verity_public_key = (True, a)
728 elif o == "--replace_verity_private_key":
729 OPTIONS.replace_verity_private_key = (True, a)
Badhri Jagan Sridharan35c9b122016-06-16 19:58:44 -0700730 elif o == "--replace_verity_keyid":
731 OPTIONS.replace_verity_keyid = (True, a)
Tao Bao639118f2017-06-19 15:48:02 -0700732 elif o == "--avb_vbmeta_key":
733 OPTIONS.avb_keys['vbmeta'] = a
734 elif o == "--avb_vbmeta_algorithm":
735 OPTIONS.avb_algorithms['vbmeta'] = a
736 elif o == "--avb_vbmeta_extra_args":
737 OPTIONS.avb_extra_args['vbmeta'] = a
738 elif o == "--avb_boot_key":
739 OPTIONS.avb_keys['boot'] = a
740 elif o == "--avb_boot_algorithm":
741 OPTIONS.avb_algorithms['boot'] = a
742 elif o == "--avb_boot_extra_args":
743 OPTIONS.avb_extra_args['boot'] = a
744 elif o == "--avb_dtbo_key":
745 OPTIONS.avb_keys['dtbo'] = a
746 elif o == "--avb_dtbo_algorithm":
747 OPTIONS.avb_algorithms['dtbo'] = a
748 elif o == "--avb_dtbo_extra_args":
749 OPTIONS.avb_extra_args['dtbo'] = a
750 elif o == "--avb_system_key":
751 OPTIONS.avb_keys['system'] = a
752 elif o == "--avb_system_algorithm":
753 OPTIONS.avb_algorithms['system'] = a
754 elif o == "--avb_system_extra_args":
755 OPTIONS.avb_extra_args['system'] = a
756 elif o == "--avb_vendor_key":
757 OPTIONS.avb_keys['vendor'] = a
758 elif o == "--avb_vendor_algorithm":
759 OPTIONS.avb_algorithms['vendor'] = a
760 elif o == "--avb_vendor_extra_args":
761 OPTIONS.avb_extra_args['vendor'] = a
Doug Zongkereef39442009-04-02 12:14:19 -0700762 else:
763 return False
764 return True
765
Tao Bao639118f2017-06-19 15:48:02 -0700766 args = common.ParseOptions(
767 argv, __doc__,
768 extra_opts="e:d:k:ot:",
769 extra_long_opts=[
770 "extra_apks=",
771 "default_key_mappings=",
772 "key_mapping=",
773 "replace_ota_keys",
774 "tag_changes=",
775 "replace_verity_public_key=",
776 "replace_verity_private_key=",
777 "replace_verity_keyid=",
778 "avb_vbmeta_algorithm=",
779 "avb_vbmeta_key=",
780 "avb_vbmeta_extra_args=",
781 "avb_boot_algorithm=",
782 "avb_boot_key=",
783 "avb_boot_extra_args=",
784 "avb_dtbo_algorithm=",
785 "avb_dtbo_key=",
786 "avb_dtbo_extra_args=",
787 "avb_system_algorithm=",
788 "avb_system_key=",
789 "avb_system_extra_args=",
790 "avb_vendor_algorithm=",
791 "avb_vendor_key=",
792 "avb_vendor_extra_args=",
793 ],
794 extra_option_handler=option_handler)
Doug Zongkereef39442009-04-02 12:14:19 -0700795
796 if len(args) != 2:
797 common.Usage(__doc__)
798 sys.exit(1)
799
800 input_zip = zipfile.ZipFile(args[0], "r")
Tao Bao2b8f4892017-06-13 12:54:58 -0700801 output_zip = zipfile.ZipFile(args[1], "w",
802 compression=zipfile.ZIP_DEFLATED,
803 allowZip64=True)
Doug Zongkereef39442009-04-02 12:14:19 -0700804
Doug Zongker831840e2011-09-22 10:28:04 -0700805 misc_info = common.LoadInfoDict(input_zip)
806
807 BuildKeyMap(misc_info, key_mapping_options)
808
Narayan Kamatha07bf042017-08-14 14:49:21 +0100809 certmap, compressed_extension = common.ReadApkCerts(input_zip)
810 apk_key_map = GetApkCerts(certmap)
811 CheckAllApksSigned(input_zip, apk_key_map, compressed_extension)
Doug Zongkereb338ef2009-05-20 16:50:49 -0700812
813 key_passwords = common.GetKeyPasswords(set(apk_key_map.values()))
Tao Bao9aa4b9b2016-09-29 17:53:56 -0700814 platform_api_level, _ = GetApiLevelAndCodename(input_zip)
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800815 codename_to_api_level_map = GetCodenameToApiLevelMap(input_zip)
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800816
Doug Zongker412c02f2014-02-13 10:58:24 -0800817 ProcessTargetFiles(input_zip, output_zip, misc_info,
Alex Klyubin2cfd1d12016-01-13 10:32:47 -0800818 apk_key_map, key_passwords,
819 platform_api_level,
Narayan Kamatha07bf042017-08-14 14:49:21 +0100820 codename_to_api_level_map,
821 compressed_extension)
Doug Zongker8e931bf2009-04-06 15:21:45 -0700822
Tao Bao2ed665a2015-04-01 11:21:55 -0700823 common.ZipClose(input_zip)
824 common.ZipClose(output_zip)
Doug Zongkereef39442009-04-02 12:14:19 -0700825
Tianjie Xub48589a2016-08-03 19:21:52 -0700826 # Skip building userdata.img and cache.img when signing the target files.
Tianjie Xu616fbeb2017-05-23 14:51:02 -0700827 new_args = ["--is_signing"]
828 # add_img_to_target_files builds the system image from scratch, so the
829 # recovery patch is guaranteed to be regenerated there.
830 if OPTIONS.rebuild_recovery:
831 new_args.append("--rebuild_recovery")
832 new_args.append(args[1])
Tianjie Xub48589a2016-08-03 19:21:52 -0700833 add_img_to_target_files.main(new_args)
Doug Zongker3c84f562014-07-31 11:06:30 -0700834
Doug Zongkereef39442009-04-02 12:14:19 -0700835 print "done."
836
837
838if __name__ == '__main__':
839 try:
840 main(sys.argv[1:])
841 except common.ExternalError, e:
842 print
843 print " ERROR: %s" % (e,)
844 print
845 sys.exit(1)
Tao Bao639118f2017-06-19 15:48:02 -0700846 finally:
847 common.Cleanup()