Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright (C) 2014 The Android Open Source Project |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | """ |
| 18 | Given a target-files zipfile that does not contain images (ie, does |
| 19 | not have an IMAGES/ top-level subdirectory), produce the images and |
| 20 | add them to the zipfile. |
| 21 | |
Tianjie Xu | b48589a | 2016-08-03 19:21:52 -0700 | [diff] [blame] | 22 | Usage: add_img_to_target_files [flag] target_files |
| 23 | |
| 24 | -a (--add_missing) |
| 25 | Build and add missing images to "IMAGES/". If this option is |
| 26 | not specified, this script will simply exit when "IMAGES/" |
| 27 | directory exists in the target file. |
| 28 | |
| 29 | -r (--rebuild_recovery) |
| 30 | Rebuild the recovery patch and write it to the system image. Only |
| 31 | meaningful when system image needs to be rebuilt. |
| 32 | |
| 33 | --replace_verity_private_key |
| 34 | Replace the private key used for verity signing. (same as the option |
| 35 | in sign_target_files_apks) |
| 36 | |
| 37 | --replace_verity_public_key |
| 38 | Replace the certificate (public key) used for verity verification. (same |
| 39 | as the option in sign_target_files_apks) |
| 40 | |
| 41 | --is_signing |
| 42 | Skip building & adding the images for "userdata" and "cache" if we |
| 43 | are signing the target files. |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 44 | """ |
| 45 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 46 | from __future__ import print_function |
| 47 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 48 | import sys |
| 49 | |
| 50 | if sys.hexversion < 0x02070000: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 51 | print("Python 2.7 or newer is required.", file=sys.stderr) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 52 | sys.exit(1) |
| 53 | |
Tao Bao | 822f584 | 2015-09-30 16:01:14 -0700 | [diff] [blame] | 54 | import datetime |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 55 | import errno |
| 56 | import os |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 57 | import shlex |
Ying Wang | 2a04839 | 2015-06-25 13:56:53 -0700 | [diff] [blame] | 58 | import shutil |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 59 | import subprocess |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 60 | import tempfile |
| 61 | import zipfile |
| 62 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 63 | import build_image |
| 64 | import common |
Tianjie Xu | f1a1318 | 2017-01-19 17:39:30 -0800 | [diff] [blame] | 65 | import rangelib |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 66 | import sparse_img |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 67 | |
| 68 | OPTIONS = common.OPTIONS |
| 69 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 70 | OPTIONS.add_missing = False |
| 71 | OPTIONS.rebuild_recovery = False |
Baligh Uddin | 59f4ff1 | 2015-09-16 21:20:30 -0700 | [diff] [blame] | 72 | OPTIONS.replace_verity_public_key = False |
| 73 | OPTIONS.replace_verity_private_key = False |
Tianjie Xu | b48589a | 2016-08-03 19:21:52 -0700 | [diff] [blame] | 74 | OPTIONS.is_signing = False |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 75 | |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 76 | def GetCareMap(which, imgname): |
| 77 | """Generate care_map of system (or vendor) partition""" |
| 78 | |
| 79 | assert which in ("system", "vendor") |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 80 | |
| 81 | simg = sparse_img.SparseImage(imgname) |
| 82 | care_map_list = [] |
Tianjie Xu | 955629b | 2017-03-01 11:48:25 -0800 | [diff] [blame] | 83 | care_map_list.append(which) |
Tianjie Xu | f1a1318 | 2017-01-19 17:39:30 -0800 | [diff] [blame] | 84 | |
| 85 | care_map_ranges = simg.care_map |
| 86 | key = which + "_adjusted_partition_size" |
| 87 | adjusted_blocks = OPTIONS.info_dict.get(key) |
| 88 | if adjusted_blocks: |
| 89 | assert adjusted_blocks > 0, "blocks should be positive for " + which |
| 90 | care_map_ranges = care_map_ranges.intersect(rangelib.RangeSet( |
| 91 | "0-%d" % (adjusted_blocks,))) |
| 92 | |
| 93 | care_map_list.append(care_map_ranges.to_string_raw()) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 94 | return care_map_list |
| 95 | |
| 96 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 97 | def AddSystem(output_zip, prefix="IMAGES/", recovery_img=None, boot_img=None): |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 98 | """Turn the contents of SYSTEM into a system image and store it in |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 99 | output_zip. Returns the name of the system image file.""" |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 100 | |
| 101 | prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system.img") |
| 102 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 103 | print("system.img already exists in %s, no need to rebuild..." % (prefix,)) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 104 | return prebuilt_path |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 105 | |
| 106 | def output_sink(fn, data): |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 107 | ofile = open(os.path.join(OPTIONS.input_tmp, "SYSTEM", fn), "w") |
| 108 | ofile.write(data) |
| 109 | ofile.close() |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 110 | |
| 111 | if OPTIONS.rebuild_recovery: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 112 | print("Building new recovery patch") |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 113 | common.MakeRecoveryPatch(OPTIONS.input_tmp, output_sink, recovery_img, |
| 114 | boot_img, info_dict=OPTIONS.info_dict) |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 115 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 116 | block_list = common.MakeTempFile(prefix="system-blocklist-", suffix=".map") |
| 117 | imgname = BuildSystem(OPTIONS.input_tmp, OPTIONS.info_dict, |
| 118 | block_list=block_list) |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 119 | |
Dan Albert | 8e0178d | 2015-01-27 15:53:15 -0800 | [diff] [blame] | 120 | common.ZipWrite(output_zip, imgname, prefix + "system.img") |
| 121 | common.ZipWrite(output_zip, block_list, prefix + "system.map") |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 122 | return imgname |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 123 | |
| 124 | |
| 125 | def BuildSystem(input_dir, info_dict, block_list=None): |
| 126 | """Build the (sparse) system image and return the name of a temp |
| 127 | file containing it.""" |
| 128 | return CreateImage(input_dir, info_dict, "system", block_list=block_list) |
| 129 | |
| 130 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 131 | def AddSystemOther(output_zip, prefix="IMAGES/"): |
| 132 | """Turn the contents of SYSTEM_OTHER into a system_other image |
| 133 | and store it in output_zip.""" |
| 134 | |
| 135 | prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "system_other.img") |
| 136 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 137 | print("system_other.img already exists in %s, no need to rebuild..." % ( |
| 138 | prefix,)) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 139 | return |
| 140 | |
| 141 | imgname = BuildSystemOther(OPTIONS.input_tmp, OPTIONS.info_dict) |
| 142 | common.ZipWrite(output_zip, imgname, prefix + "system_other.img") |
| 143 | |
| 144 | def BuildSystemOther(input_dir, info_dict): |
| 145 | """Build the (sparse) system_other image and return the name of a temp |
| 146 | file containing it.""" |
| 147 | return CreateImage(input_dir, info_dict, "system_other", block_list=None) |
| 148 | |
| 149 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 150 | def AddVendor(output_zip, prefix="IMAGES/"): |
| 151 | """Turn the contents of VENDOR into a vendor image and store in it |
| 152 | output_zip.""" |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 153 | |
| 154 | prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "vendor.img") |
| 155 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 156 | print("vendor.img already exists in %s, no need to rebuild..." % (prefix,)) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 157 | return prebuilt_path |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 158 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 159 | block_list = common.MakeTempFile(prefix="vendor-blocklist-", suffix=".map") |
| 160 | imgname = BuildVendor(OPTIONS.input_tmp, OPTIONS.info_dict, |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 161 | block_list=block_list) |
Dan Albert | 8e0178d | 2015-01-27 15:53:15 -0800 | [diff] [blame] | 162 | common.ZipWrite(output_zip, imgname, prefix + "vendor.img") |
| 163 | common.ZipWrite(output_zip, block_list, prefix + "vendor.map") |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 164 | return imgname |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 165 | |
| 166 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 167 | def BuildVendor(input_dir, info_dict, block_list=None): |
| 168 | """Build the (sparse) vendor image and return the name of a temp |
| 169 | file containing it.""" |
| 170 | return CreateImage(input_dir, info_dict, "vendor", block_list=block_list) |
| 171 | |
| 172 | |
| 173 | def CreateImage(input_dir, info_dict, what, block_list=None): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 174 | print("creating " + what + ".img...") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 175 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 176 | img = common.MakeTempFile(prefix=what + "-", suffix=".img") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 177 | |
| 178 | # The name of the directory it is making an image out of matters to |
| 179 | # mkyaffs2image. It wants "system" but we have a directory named |
| 180 | # "SYSTEM", so create a symlink. |
| 181 | try: |
| 182 | os.symlink(os.path.join(input_dir, what.upper()), |
| 183 | os.path.join(input_dir, what)) |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 184 | except OSError as e: |
| 185 | # bogus error on my mac version? |
| 186 | # File "./build/tools/releasetools/img_from_target_files" |
| 187 | # os.path.join(OPTIONS.input_tmp, "system")) |
| 188 | # OSError: [Errno 17] File exists |
| 189 | if e.errno == errno.EEXIST: |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 190 | pass |
| 191 | |
| 192 | image_props = build_image.ImagePropFromGlobalDict(info_dict, what) |
| 193 | fstab = info_dict["fstab"] |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 194 | mount_point = "/" + what |
| 195 | if fstab and mount_point in fstab: |
| 196 | image_props["fs_type"] = fstab[mount_point].fs_type |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 197 | |
Tao Bao | 822f584 | 2015-09-30 16:01:14 -0700 | [diff] [blame] | 198 | # Use a fixed timestamp (01/01/2009) when packaging the image. |
| 199 | # Bug: 24377993 |
| 200 | epoch = datetime.datetime.fromtimestamp(0) |
| 201 | timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds() |
| 202 | image_props["timestamp"] = int(timestamp) |
| 203 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 204 | if what == "system": |
| 205 | fs_config_prefix = "" |
| 206 | else: |
| 207 | fs_config_prefix = what + "_" |
| 208 | |
| 209 | fs_config = os.path.join( |
| 210 | input_dir, "META/" + fs_config_prefix + "filesystem_config.txt") |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 211 | if not os.path.exists(fs_config): |
| 212 | fs_config = None |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 213 | |
Ying Wang | a2292c9 | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 214 | # Override values loaded from info_dict. |
| 215 | if fs_config: |
| 216 | image_props["fs_config"] = fs_config |
Ying Wang | a2292c9 | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 217 | if block_list: |
| 218 | image_props["block_list"] = block_list |
Ying Wang | a2292c9 | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 219 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 220 | succ = build_image.BuildImage(os.path.join(input_dir, what), |
Ying Wang | a2292c9 | 2015-03-24 19:07:40 -0700 | [diff] [blame] | 221 | image_props, img) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 222 | assert succ, "build " + what + ".img image failed" |
| 223 | |
Tianjie Xu | f1a1318 | 2017-01-19 17:39:30 -0800 | [diff] [blame] | 224 | is_verity_partition = "verity_block_device" in image_props |
| 225 | verity_supported = image_props.get("verity") == "true" |
| 226 | if is_verity_partition and verity_supported: |
| 227 | adjusted_blocks_value = image_props.get("partition_size") |
| 228 | if adjusted_blocks_value: |
| 229 | adjusted_blocks_key = what + "_adjusted_partition_size" |
| 230 | info_dict[adjusted_blocks_key] = int(adjusted_blocks_value)/4096 - 1 |
| 231 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 232 | return img |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 233 | |
| 234 | |
| 235 | def AddUserdata(output_zip, prefix="IMAGES/"): |
Ying Wang | 2a04839 | 2015-06-25 13:56:53 -0700 | [diff] [blame] | 236 | """Create a userdata image and store it in output_zip. |
| 237 | |
| 238 | In most case we just create and store an empty userdata.img; |
| 239 | But the invoker can also request to create userdata.img with real |
| 240 | data from the target files, by setting "userdata_img_with_data=true" |
| 241 | in OPTIONS.info_dict. |
| 242 | """ |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 243 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 244 | prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "userdata.img") |
| 245 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 246 | print("userdata.img already exists in %s, no need to rebuild..." % ( |
| 247 | prefix,)) |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 248 | return |
| 249 | |
Elliott Hughes | 305b088 | 2016-06-15 17:04:54 -0700 | [diff] [blame] | 250 | # Skip userdata.img if no size. |
Tao Bao | 2c15d9e | 2015-07-09 11:51:16 -0700 | [diff] [blame] | 251 | image_props = build_image.ImagePropFromGlobalDict(OPTIONS.info_dict, "data") |
Elliott Hughes | 305b088 | 2016-06-15 17:04:54 -0700 | [diff] [blame] | 252 | if not image_props.get("partition_size"): |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 253 | return |
| 254 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 255 | print("creating userdata.img...") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 256 | |
Tao Bao | 822f584 | 2015-09-30 16:01:14 -0700 | [diff] [blame] | 257 | # Use a fixed timestamp (01/01/2009) when packaging the image. |
| 258 | # Bug: 24377993 |
| 259 | epoch = datetime.datetime.fromtimestamp(0) |
| 260 | timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds() |
| 261 | image_props["timestamp"] = int(timestamp) |
| 262 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 263 | # The name of the directory it is making an image out of matters to |
| 264 | # mkyaffs2image. So we create a temp dir, and within it we create an |
Ying Wang | 2a04839 | 2015-06-25 13:56:53 -0700 | [diff] [blame] | 265 | # empty dir named "data", or a symlink to the DATA dir, |
| 266 | # and build the image from that. |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 267 | temp_dir = tempfile.mkdtemp() |
| 268 | user_dir = os.path.join(temp_dir, "data") |
Ying Wang | 2a04839 | 2015-06-25 13:56:53 -0700 | [diff] [blame] | 269 | empty = (OPTIONS.info_dict.get("userdata_img_with_data") != "true") |
| 270 | if empty: |
| 271 | # Create an empty dir. |
| 272 | os.mkdir(user_dir) |
| 273 | else: |
| 274 | # Symlink to the DATA dir. |
| 275 | os.symlink(os.path.join(OPTIONS.input_tmp, "DATA"), |
| 276 | user_dir) |
| 277 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 278 | img = tempfile.NamedTemporaryFile() |
| 279 | |
| 280 | fstab = OPTIONS.info_dict["fstab"] |
| 281 | if fstab: |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 282 | image_props["fs_type"] = fstab["/data"].fs_type |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 283 | succ = build_image.BuildImage(user_dir, image_props, img.name) |
| 284 | assert succ, "build userdata.img image failed" |
| 285 | |
| 286 | common.CheckSize(img.name, "userdata.img", OPTIONS.info_dict) |
Tao Bao | 2ed665a | 2015-04-01 11:21:55 -0700 | [diff] [blame] | 287 | common.ZipWrite(output_zip, img.name, prefix + "userdata.img") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 288 | img.close() |
Ying Wang | 2a04839 | 2015-06-25 13:56:53 -0700 | [diff] [blame] | 289 | shutil.rmtree(temp_dir) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 290 | |
| 291 | |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 292 | def AddVBMeta(output_zip, boot_img_path, system_img_path, prefix="IMAGES/"): |
| 293 | """Create a VBMeta image and store it in output_zip.""" |
| 294 | _, img_file_name = tempfile.mkstemp() |
| 295 | avbtool = os.getenv('AVBTOOL') or "avbtool" |
| 296 | cmd = [avbtool, "make_vbmeta_image", |
| 297 | "--output", img_file_name, |
| 298 | "--include_descriptors_from_image", boot_img_path, |
| 299 | "--include_descriptors_from_image", system_img_path, |
| 300 | "--generate_dm_verity_cmdline_from_hashtree", system_img_path] |
| 301 | common.AppendAVBSigningArgs(cmd) |
| 302 | args = OPTIONS.info_dict.get("board_avb_make_vbmeta_image_args", None) |
| 303 | if args and args.strip(): |
| 304 | cmd.extend(shlex.split(args)) |
| 305 | p = common.Run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| 306 | p.communicate() |
| 307 | assert p.returncode == 0, "avbtool make_vbmeta_image failed" |
| 308 | common.ZipWrite(output_zip, img_file_name, prefix + "vbmeta.img") |
| 309 | |
| 310 | |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 311 | def AddPartitionTable(output_zip, prefix="IMAGES/"): |
| 312 | """Create a partition table image and store it in output_zip.""" |
| 313 | |
| 314 | _, img_file_name = tempfile.mkstemp() |
| 315 | _, bpt_file_name = tempfile.mkstemp() |
| 316 | |
| 317 | # use BPTTOOL from environ, or "bpttool" if empty or not set. |
| 318 | bpttool = os.getenv("BPTTOOL") or "bpttool" |
| 319 | cmd = [bpttool, "make_table", "--output_json", bpt_file_name, |
| 320 | "--output_gpt", img_file_name] |
| 321 | input_files_str = OPTIONS.info_dict["board_bpt_input_files"] |
| 322 | input_files = input_files_str.split(" ") |
| 323 | for i in input_files: |
| 324 | cmd.extend(["--input", i]) |
| 325 | disk_size = OPTIONS.info_dict.get("board_bpt_disk_size") |
| 326 | if disk_size: |
| 327 | cmd.extend(["--disk_size", disk_size]) |
| 328 | args = OPTIONS.info_dict.get("board_bpt_make_table_args") |
| 329 | if args: |
| 330 | cmd.extend(shlex.split(args)) |
| 331 | |
| 332 | p = common.Run(cmd, stdout=subprocess.PIPE) |
| 333 | p.communicate() |
| 334 | assert p.returncode == 0, "bpttool make_table failed" |
| 335 | |
| 336 | common.ZipWrite(output_zip, img_file_name, prefix + "partition-table.img") |
| 337 | common.ZipWrite(output_zip, bpt_file_name, prefix + "partition-table.bpt") |
| 338 | |
| 339 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 340 | def AddCache(output_zip, prefix="IMAGES/"): |
| 341 | """Create an empty cache image and store it in output_zip.""" |
| 342 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 343 | prebuilt_path = os.path.join(OPTIONS.input_tmp, prefix, "cache.img") |
| 344 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 345 | print("cache.img already exists in %s, no need to rebuild..." % (prefix,)) |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 346 | return |
| 347 | |
Tao Bao | 2c15d9e | 2015-07-09 11:51:16 -0700 | [diff] [blame] | 348 | image_props = build_image.ImagePropFromGlobalDict(OPTIONS.info_dict, "cache") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 349 | # The build system has to explicitly request for cache.img. |
| 350 | if "fs_type" not in image_props: |
| 351 | return |
| 352 | |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 353 | print("creating cache.img...") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 354 | |
Tao Bao | 822f584 | 2015-09-30 16:01:14 -0700 | [diff] [blame] | 355 | # Use a fixed timestamp (01/01/2009) when packaging the image. |
| 356 | # Bug: 24377993 |
| 357 | epoch = datetime.datetime.fromtimestamp(0) |
| 358 | timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds() |
| 359 | image_props["timestamp"] = int(timestamp) |
| 360 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 361 | # The name of the directory it is making an image out of matters to |
| 362 | # mkyaffs2image. So we create a temp dir, and within it we create an |
| 363 | # empty dir named "cache", and build the image from that. |
| 364 | temp_dir = tempfile.mkdtemp() |
| 365 | user_dir = os.path.join(temp_dir, "cache") |
| 366 | os.mkdir(user_dir) |
| 367 | img = tempfile.NamedTemporaryFile() |
| 368 | |
| 369 | fstab = OPTIONS.info_dict["fstab"] |
| 370 | if fstab: |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 371 | image_props["fs_type"] = fstab["/cache"].fs_type |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 372 | succ = build_image.BuildImage(user_dir, image_props, img.name) |
| 373 | assert succ, "build cache.img image failed" |
| 374 | |
| 375 | common.CheckSize(img.name, "cache.img", OPTIONS.info_dict) |
Tao Bao | 2ed665a | 2015-04-01 11:21:55 -0700 | [diff] [blame] | 376 | common.ZipWrite(output_zip, img.name, prefix + "cache.img") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 377 | img.close() |
| 378 | os.rmdir(user_dir) |
| 379 | os.rmdir(temp_dir) |
| 380 | |
| 381 | |
| 382 | def AddImagesToTargetFiles(filename): |
| 383 | OPTIONS.input_tmp, input_zip = common.UnzipTemp(filename) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 384 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 385 | if not OPTIONS.add_missing: |
| 386 | for n in input_zip.namelist(): |
| 387 | if n.startswith("IMAGES/"): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 388 | print("target_files appears to already contain images.") |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 389 | sys.exit(1) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 390 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 391 | try: |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 392 | input_zip.getinfo("VENDOR/") |
| 393 | has_vendor = True |
| 394 | except KeyError: |
| 395 | has_vendor = False |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 396 | |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 397 | has_system_other = "SYSTEM_OTHER/" in input_zip.namelist() |
| 398 | |
Tao Bao | 2c15d9e | 2015-07-09 11:51:16 -0700 | [diff] [blame] | 399 | OPTIONS.info_dict = common.LoadInfoDict(input_zip, OPTIONS.input_tmp) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 400 | |
Tao Bao | 2ed665a | 2015-04-01 11:21:55 -0700 | [diff] [blame] | 401 | common.ZipClose(input_zip) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 402 | output_zip = zipfile.ZipFile(filename, "a", |
Tao Bao | 9c84e50 | 2016-08-22 10:31:05 -0700 | [diff] [blame] | 403 | compression=zipfile.ZIP_DEFLATED, |
| 404 | allowZip64=True) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 405 | |
Tao Bao | db45efa | 2015-10-27 19:25:18 -0700 | [diff] [blame] | 406 | has_recovery = (OPTIONS.info_dict.get("no_recovery") != "true") |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 407 | system_root_image = (OPTIONS.info_dict.get("system_root_image", None) == "true") |
Tao Bao | db45efa | 2015-10-27 19:25:18 -0700 | [diff] [blame] | 408 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 409 | def banner(s): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 410 | print("\n\n++++ " + s + " ++++\n\n") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 411 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 412 | prebuilt_path = os.path.join(OPTIONS.input_tmp, "IMAGES", "boot.img") |
| 413 | boot_image = None |
| 414 | if os.path.exists(prebuilt_path): |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 415 | banner("boot") |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 416 | print("boot.img already exists in IMAGES/, no need to rebuild...") |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 417 | if OPTIONS.rebuild_recovery: |
| 418 | boot_image = common.GetBootableImage( |
| 419 | "IMAGES/boot.img", "boot.img", OPTIONS.input_tmp, "BOOT") |
| 420 | else: |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 421 | banner("boot") |
| 422 | boot_image = common.GetBootableImage( |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 423 | "IMAGES/boot.img", "boot.img", OPTIONS.input_tmp, "BOOT") |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 424 | if boot_image: |
| 425 | boot_image.AddToZip(output_zip) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 426 | |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 427 | recovery_image = None |
Tao Bao | db45efa | 2015-10-27 19:25:18 -0700 | [diff] [blame] | 428 | if has_recovery: |
| 429 | banner("recovery") |
| 430 | prebuilt_path = os.path.join(OPTIONS.input_tmp, "IMAGES", "recovery.img") |
| 431 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 432 | print("recovery.img already exists in IMAGES/, no need to rebuild...") |
Tao Bao | db45efa | 2015-10-27 19:25:18 -0700 | [diff] [blame] | 433 | if OPTIONS.rebuild_recovery: |
| 434 | recovery_image = common.GetBootableImage( |
| 435 | "IMAGES/recovery.img", "recovery.img", OPTIONS.input_tmp, |
| 436 | "RECOVERY") |
| 437 | else: |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 438 | recovery_image = common.GetBootableImage( |
| 439 | "IMAGES/recovery.img", "recovery.img", OPTIONS.input_tmp, "RECOVERY") |
Tao Bao | db45efa | 2015-10-27 19:25:18 -0700 | [diff] [blame] | 440 | if recovery_image: |
| 441 | recovery_image.AddToZip(output_zip) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 442 | |
Tao Bao | d42e97e | 2016-11-30 12:11:57 -0800 | [diff] [blame] | 443 | banner("recovery (two-step image)") |
| 444 | # The special recovery.img for two-step package use. |
| 445 | recovery_two_step_image = common.GetBootableImage( |
| 446 | "IMAGES/recovery-two-step.img", "recovery-two-step.img", |
| 447 | OPTIONS.input_tmp, "RECOVERY", two_step_image=True) |
| 448 | if recovery_two_step_image: |
| 449 | recovery_two_step_image.AddToZip(output_zip) |
| 450 | |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 451 | banner("system") |
David Zeuthen | d995f4b | 2016-01-29 16:59:17 -0500 | [diff] [blame] | 452 | system_img_path = AddSystem( |
| 453 | output_zip, recovery_img=recovery_image, boot_img=boot_image) |
Tianjie Xu | 737afb9 | 2016-07-11 11:42:53 -0700 | [diff] [blame] | 454 | vendor_img_path = None |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 455 | if has_vendor: |
| 456 | banner("vendor") |
Tianjie Xu | 737afb9 | 2016-07-11 11:42:53 -0700 | [diff] [blame] | 457 | vendor_img_path = AddVendor(output_zip) |
Alex Light | 4e358ab | 2016-06-16 14:47:10 -0700 | [diff] [blame] | 458 | if has_system_other: |
| 459 | banner("system_other") |
| 460 | AddSystemOther(output_zip) |
Tianjie Xu | b48589a | 2016-08-03 19:21:52 -0700 | [diff] [blame] | 461 | if not OPTIONS.is_signing: |
| 462 | banner("userdata") |
| 463 | AddUserdata(output_zip) |
| 464 | banner("cache") |
| 465 | AddCache(output_zip) |
David Zeuthen | 2532862 | 2016-04-08 15:08:03 -0400 | [diff] [blame] | 466 | if OPTIONS.info_dict.get("board_bpt_enable", None) == "true": |
| 467 | banner("partition-table") |
| 468 | AddPartitionTable(output_zip) |
David Zeuthen | 2ce63ed | 2016-09-15 13:43:54 -0400 | [diff] [blame] | 469 | if OPTIONS.info_dict.get("board_avb_enable", None) == "true": |
| 470 | banner("vbmeta") |
| 471 | boot_contents = boot_image.WriteToTemp() |
| 472 | AddVBMeta(output_zip, boot_contents.name, system_img_path) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 473 | |
Wei Wang | 2e735ca | 2016-05-10 22:48:13 -0700 | [diff] [blame] | 474 | # For devices using A/B update, copy over images from RADIO/ and/or |
| 475 | # VENDOR_IMAGES/ to IMAGES/ and make sure we have all the needed |
| 476 | # images ready under IMAGES/. All images should have '.img' as extension. |
Tianjie Xu | aaca421 | 2016-06-28 14:34:03 -0700 | [diff] [blame] | 477 | banner("radio") |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 478 | ab_partitions = os.path.join(OPTIONS.input_tmp, "META", "ab_partitions.txt") |
| 479 | if os.path.exists(ab_partitions): |
| 480 | with open(ab_partitions, 'r') as f: |
| 481 | lines = f.readlines() |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 482 | # For devices using A/B update, generate care_map for system and vendor |
| 483 | # partitions (if present), then write this file to target_files package. |
| 484 | care_map_list = [] |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 485 | for line in lines: |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 486 | if line.strip() == "system" and OPTIONS.info_dict.get( |
| 487 | "system_verity_block_device", None) is not None: |
Tianjie Xu | 737afb9 | 2016-07-11 11:42:53 -0700 | [diff] [blame] | 488 | assert os.path.exists(system_img_path) |
| 489 | care_map_list += GetCareMap("system", system_img_path) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 490 | if line.strip() == "vendor" and OPTIONS.info_dict.get( |
| 491 | "vendor_verity_block_device", None) is not None: |
Tianjie Xu | 737afb9 | 2016-07-11 11:42:53 -0700 | [diff] [blame] | 492 | assert os.path.exists(vendor_img_path) |
| 493 | care_map_list += GetCareMap("vendor", vendor_img_path) |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 494 | |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 495 | img_name = line.strip() + ".img" |
Tianjie Xu | aaca421 | 2016-06-28 14:34:03 -0700 | [diff] [blame] | 496 | prebuilt_path = os.path.join(OPTIONS.input_tmp, "IMAGES", img_name) |
| 497 | if os.path.exists(prebuilt_path): |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 498 | print("%s already exists, no need to overwrite..." % (img_name,)) |
Tianjie Xu | aaca421 | 2016-06-28 14:34:03 -0700 | [diff] [blame] | 499 | continue |
| 500 | |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 501 | img_radio_path = os.path.join(OPTIONS.input_tmp, "RADIO", img_name) |
Wei Wang | 2e735ca | 2016-05-10 22:48:13 -0700 | [diff] [blame] | 502 | img_vendor_dir = os.path.join( |
| 503 | OPTIONS.input_tmp, "VENDOR_IMAGES") |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 504 | if os.path.exists(img_radio_path): |
| 505 | common.ZipWrite(output_zip, img_radio_path, |
| 506 | os.path.join("IMAGES", img_name)) |
Wei Wang | 2e735ca | 2016-05-10 22:48:13 -0700 | [diff] [blame] | 507 | else: |
| 508 | for root, _, files in os.walk(img_vendor_dir): |
| 509 | if img_name in files: |
| 510 | common.ZipWrite(output_zip, os.path.join(root, img_name), |
| 511 | os.path.join("IMAGES", img_name)) |
| 512 | break |
Tao Bao | a0421cd | 2015-11-16 16:32:27 -0800 | [diff] [blame] | 513 | |
| 514 | # Zip spec says: All slashes MUST be forward slashes. |
| 515 | img_path = 'IMAGES/' + img_name |
| 516 | assert img_path in output_zip.namelist(), "cannot find " + img_name |
| 517 | |
Tianjie Xu | cfa8622 | 2016-03-07 16:31:19 -0800 | [diff] [blame] | 518 | if care_map_list: |
| 519 | file_path = "META/care_map.txt" |
| 520 | common.ZipWriteStr(output_zip, file_path, '\n'.join(care_map_list)) |
| 521 | |
Tao Bao | 2ed665a | 2015-04-01 11:21:55 -0700 | [diff] [blame] | 522 | common.ZipClose(output_zip) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 523 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 524 | def main(argv): |
Baligh Uddin | 59f4ff1 | 2015-09-16 21:20:30 -0700 | [diff] [blame] | 525 | def option_handler(o, a): |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 526 | if o in ("-a", "--add_missing"): |
| 527 | OPTIONS.add_missing = True |
| 528 | elif o in ("-r", "--rebuild_recovery",): |
| 529 | OPTIONS.rebuild_recovery = True |
Baligh Uddin | 59f4ff1 | 2015-09-16 21:20:30 -0700 | [diff] [blame] | 530 | elif o == "--replace_verity_private_key": |
| 531 | OPTIONS.replace_verity_private_key = (True, a) |
| 532 | elif o == "--replace_verity_public_key": |
| 533 | OPTIONS.replace_verity_public_key = (True, a) |
Tianjie Xu | b48589a | 2016-08-03 19:21:52 -0700 | [diff] [blame] | 534 | elif o == "--is_signing": |
| 535 | OPTIONS.is_signing = True |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 536 | else: |
| 537 | return False |
| 538 | return True |
| 539 | |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 540 | args = common.ParseOptions( |
| 541 | argv, __doc__, extra_opts="ar", |
Baligh Uddin | 59f4ff1 | 2015-09-16 21:20:30 -0700 | [diff] [blame] | 542 | extra_long_opts=["add_missing", "rebuild_recovery", |
| 543 | "replace_verity_public_key=", |
| 544 | "replace_verity_private_key=", |
Tao Bao | 4581042 | 2016-10-17 16:20:12 -0700 | [diff] [blame] | 545 | "is_signing"], |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 546 | extra_option_handler=option_handler) |
Michael Runge | 2e0d8fc | 2014-11-13 21:41:08 -0800 | [diff] [blame] | 547 | |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 548 | |
| 549 | if len(args) != 1: |
| 550 | common.Usage(__doc__) |
| 551 | sys.exit(1) |
| 552 | |
| 553 | AddImagesToTargetFiles(args[0]) |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 554 | print("done.") |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 555 | |
| 556 | if __name__ == '__main__': |
| 557 | try: |
| 558 | common.CloseInheritedPipes() |
| 559 | main(sys.argv[1:]) |
Dan Albert | 8b72aef | 2015-03-23 19:13:21 -0700 | [diff] [blame] | 560 | except common.ExternalError as e: |
Tao Bao | 89fbb0f | 2017-01-10 10:47:58 -0800 | [diff] [blame] | 561 | print("\n ERROR: %s\n" % (e,)) |
Doug Zongker | 3c84f56 | 2014-07-31 11:06:30 -0700 | [diff] [blame] | 562 | sys.exit(1) |
Doug Zongker | fc44a51 | 2014-08-26 13:10:25 -0700 | [diff] [blame] | 563 | finally: |
| 564 | common.Cleanup() |