blob: 359489f7e4fb3e2ad775c15c72ac682a8897f1b2 [file] [log] [blame]
Ying Wangbd93d422011-10-28 17:02:30 -07001#!/usr/bin/env python
2#
3# Copyright (C) 2011 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"""
18Build image output_image_file from input_directory and properties_file.
19
20Usage: build_image input_directory properties_file output_image_file
21
22"""
23import os
Ying Wang69e9b4d2012-11-26 18:10:23 -080024import os.path
Ying Wangbd93d422011-10-28 17:02:30 -070025import subprocess
26import sys
Geremy Condrafd6f7512013-06-16 17:26:08 -070027import commands
28import shutil
Geremy Condra5b5f4952014-05-05 22:19:37 -070029import tempfile
Ying Wangbd93d422011-10-28 17:02:30 -070030
Geremy Condrae8e982a2014-05-16 19:14:30 -070031FIXED_SALT = "aee087a5be3b982978c923f566a94613496b417f2af592639bc80d141e34dfe7"
32
Ying Wang69e9b4d2012-11-26 18:10:23 -080033def RunCommand(cmd):
34 """ Echo and run the given command
35
36 Args:
37 cmd: the command represented as a list of strings.
38 Returns:
39 The exit code.
40 """
41 print "Running: ", " ".join(cmd)
42 p = subprocess.Popen(cmd)
43 p.communicate()
44 return p.returncode
Ying Wangbd93d422011-10-28 17:02:30 -070045
Geremy Condrafd6f7512013-06-16 17:26:08 -070046def GetVerityTreeSize(partition_size):
Colin Cross477cf2b2014-04-16 18:49:56 -070047 cmd = "build_verity_tree -s %d"
Geremy Condrafd6f7512013-06-16 17:26:08 -070048 cmd %= partition_size
49 status, output = commands.getstatusoutput(cmd)
50 if status:
51 print output
52 return False, 0
53 return True, int(output)
54
55def GetVerityMetadataSize(partition_size):
56 cmd = "system/extras/verity/build_verity_metadata.py -s %d"
57 cmd %= partition_size
58 status, output = commands.getstatusoutput(cmd)
59 if status:
60 print output
61 return False, 0
62 return True, int(output)
63
64def AdjustPartitionSizeForVerity(partition_size):
65 """Modifies the provided partition size to account for the verity metadata.
66
67 This information is used to size the created image appropriately.
68 Args:
69 partition_size: the size of the partition to be verified.
70 Returns:
71 The size of the partition adjusted for verity metadata.
72 """
73 success, verity_tree_size = GetVerityTreeSize(partition_size)
74 if not success:
Dan Albert8b72aef2015-03-23 19:13:21 -070075 return 0
Geremy Condrafd6f7512013-06-16 17:26:08 -070076 success, verity_metadata_size = GetVerityMetadataSize(partition_size)
77 if not success:
78 return 0
79 return partition_size - verity_tree_size - verity_metadata_size
80
Colin Cross477cf2b2014-04-16 18:49:56 -070081def BuildVerityTree(sparse_image_path, verity_image_path, prop_dict):
Dan Albert8b72aef2015-03-23 19:13:21 -070082 cmd = "build_verity_tree -A %s %s %s" % (
83 FIXED_SALT, sparse_image_path, verity_image_path)
Geremy Condrafd6f7512013-06-16 17:26:08 -070084 print cmd
85 status, output = commands.getstatusoutput(cmd)
86 if status:
87 print "Could not build verity tree! Error: %s" % output
88 return False
89 root, salt = output.split()
90 prop_dict["verity_root_hash"] = root
91 prop_dict["verity_salt"] = salt
92 return True
93
94def BuildVerityMetadata(image_size, verity_metadata_path, root_hash, salt,
95 block_device, signer_path, key):
Dan Albert8b72aef2015-03-23 19:13:21 -070096 cmd_template = (
97 "system/extras/verity/build_verity_metadata.py %s %s %s %s %s %s %s")
98 cmd = cmd_template % (image_size, verity_metadata_path, root_hash, salt,
99 block_device, signer_path, key)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700100 print cmd
101 status, output = commands.getstatusoutput(cmd)
102 if status:
103 print "Could not build verity metadata! Error: %s" % output
104 return False
105 return True
106
107def Append2Simg(sparse_image_path, unsparse_image_path, error_message):
108 """Appends the unsparse image to the given sparse image.
109
110 Args:
111 sparse_image_path: the path to the (sparse) image
112 unsparse_image_path: the path to the (unsparse) image
113 Returns:
114 True on success, False on failure.
115 """
116 cmd = "append2simg %s %s"
117 cmd %= (sparse_image_path, unsparse_image_path)
118 print cmd
119 status, output = commands.getstatusoutput(cmd)
120 if status:
121 print "%s: %s" % (error_message, output)
122 return False
123 return True
124
Dan Albert8b72aef2015-03-23 19:13:21 -0700125def BuildVerifiedImage(data_image_path, verity_image_path,
126 verity_metadata_path):
127 if not Append2Simg(data_image_path, verity_metadata_path,
128 "Could not append verity metadata!"):
Geremy Condrafd6f7512013-06-16 17:26:08 -0700129 return False
Dan Albert8b72aef2015-03-23 19:13:21 -0700130 if not Append2Simg(data_image_path, verity_image_path,
131 "Could not append verity tree!"):
Geremy Condrafd6f7512013-06-16 17:26:08 -0700132 return False
133 return True
134
Geremy Condra6e8f53c2013-12-05 17:09:18 -0800135def UnsparseImage(sparse_image_path, replace=True):
Geremy Condrafd6f7512013-06-16 17:26:08 -0700136 img_dir = os.path.dirname(sparse_image_path)
137 unsparse_image_path = "unsparse_" + os.path.basename(sparse_image_path)
138 unsparse_image_path = os.path.join(img_dir, unsparse_image_path)
139 if os.path.exists(unsparse_image_path):
Geremy Condra6e8f53c2013-12-05 17:09:18 -0800140 if replace:
141 os.unlink(unsparse_image_path)
142 else:
143 return True, unsparse_image_path
Geremy Condrafd6f7512013-06-16 17:26:08 -0700144 inflate_command = ["simg2img", sparse_image_path, unsparse_image_path]
145 exit_code = RunCommand(inflate_command)
146 if exit_code != 0:
147 os.remove(unsparse_image_path)
148 return False, None
149 return True, unsparse_image_path
150
151def MakeVerityEnabledImage(out_file, prop_dict):
152 """Creates an image that is verifiable using dm-verity.
153
154 Args:
155 out_file: the location to write the verifiable image at
Dan Albert8b72aef2015-03-23 19:13:21 -0700156 prop_dict: a dictionary of properties required for image creation and
157 verification
Geremy Condrafd6f7512013-06-16 17:26:08 -0700158 Returns:
159 True on success, False otherwise.
160 """
161 # get properties
162 image_size = prop_dict["partition_size"]
Geremy Condrafd6f7512013-06-16 17:26:08 -0700163 block_dev = prop_dict["verity_block_device"]
Paul Lawrencea37b2bb2014-11-13 17:54:30 -0800164 signer_key = prop_dict["verity_key"] + ".pk8"
Geremy Condrafd6f7512013-06-16 17:26:08 -0700165 signer_path = prop_dict["verity_signer_cmd"]
166
167 # make a tempdir
Geremy Condra5b5f4952014-05-05 22:19:37 -0700168 tempdir_name = tempfile.mkdtemp(suffix="_verity_images")
Geremy Condrafd6f7512013-06-16 17:26:08 -0700169
170 # get partial image paths
171 verity_image_path = os.path.join(tempdir_name, "verity.img")
172 verity_metadata_path = os.path.join(tempdir_name, "verity_metadata.img")
Geremy Condrafd6f7512013-06-16 17:26:08 -0700173
174 # build the verity tree and get the root hash and salt
Colin Cross477cf2b2014-04-16 18:49:56 -0700175 if not BuildVerityTree(out_file, verity_image_path, prop_dict):
Geremy Condra5b5f4952014-05-05 22:19:37 -0700176 shutil.rmtree(tempdir_name, ignore_errors=True)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700177 return False
178
179 # build the metadata blocks
180 root_hash = prop_dict["verity_root_hash"]
181 salt = prop_dict["verity_salt"]
Dan Albert8b72aef2015-03-23 19:13:21 -0700182 if not BuildVerityMetadata(image_size, verity_metadata_path, root_hash, salt,
183 block_dev, signer_path, signer_key):
Geremy Condra5b5f4952014-05-05 22:19:37 -0700184 shutil.rmtree(tempdir_name, ignore_errors=True)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700185 return False
186
187 # build the full verified image
188 if not BuildVerifiedImage(out_file,
189 verity_image_path,
190 verity_metadata_path):
Geremy Condra5b5f4952014-05-05 22:19:37 -0700191 shutil.rmtree(tempdir_name, ignore_errors=True)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700192 return False
193
Geremy Condra5b5f4952014-05-05 22:19:37 -0700194 shutil.rmtree(tempdir_name, ignore_errors=True)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700195 return True
196
Doug Zongker82822822014-06-16 09:10:55 -0700197def BuildImage(in_dir, prop_dict, out_file,
198 fs_config=None,
Doug Zongkerf21cb5a2014-08-12 14:16:55 -0700199 fc_config=None,
200 block_list=None):
Ying Wangbd93d422011-10-28 17:02:30 -0700201 """Build an image to out_file from in_dir with property prop_dict.
202
203 Args:
204 in_dir: path of input directory.
205 prop_dict: property dictionary.
206 out_file: path of the output image file.
Doug Zongker82822822014-06-16 09:10:55 -0700207 fs_config: path to the fs_config file (typically
208 META/filesystem_config.txt). If None then the configuration in
209 the local client will be used.
210 fc_config: path to the SELinux file_contexts file. If None then
211 the value from prop_dict['selinux_fc'] will be used.
Ying Wangbd93d422011-10-28 17:02:30 -0700212
213 Returns:
214 True iff the image is built successfully.
215 """
216 build_command = []
217 fs_type = prop_dict.get("fs_type", "")
Ying Wang69e9b4d2012-11-26 18:10:23 -0800218 run_fsck = False
Geremy Condrafd6f7512013-06-16 17:26:08 -0700219
Daniel Rosenbergf4eabc32014-07-10 15:42:38 -0700220 is_verity_partition = "verity_block_device" in prop_dict
Geremy Condra5b5f4952014-05-05 22:19:37 -0700221 verity_supported = prop_dict.get("verity") == "true"
Dan Albert8b72aef2015-03-23 19:13:21 -0700222 # adjust the partition size to make room for the hashes if this is to be
223 # verified
Geremy Condra5b5f4952014-05-05 22:19:37 -0700224 if verity_supported and is_verity_partition:
Geremy Condrafd6f7512013-06-16 17:26:08 -0700225 partition_size = int(prop_dict.get("partition_size"))
226 adjusted_size = AdjustPartitionSizeForVerity(partition_size)
227 if not adjusted_size:
228 return False
229 prop_dict["partition_size"] = str(adjusted_size)
230 prop_dict["original_partition_size"] = str(partition_size)
231
Ying Wangbd93d422011-10-28 17:02:30 -0700232 if fs_type.startswith("ext"):
233 build_command = ["mkuserimg.sh"]
234 if "extfs_sparse_flag" in prop_dict:
235 build_command.append(prop_dict["extfs_sparse_flag"])
Ying Wang69e9b4d2012-11-26 18:10:23 -0800236 run_fsck = True
Ying Wangbd93d422011-10-28 17:02:30 -0700237 build_command.extend([in_dir, out_file, fs_type,
238 prop_dict["mount_point"]])
Doug Zongker850b8072013-12-05 15:54:55 -0800239 build_command.append(prop_dict["partition_size"])
Ying Wangf3b86352014-11-18 18:03:13 -0800240 if "journal_size" in prop_dict:
241 build_command.extend(["-j", prop_dict["journal_size"]])
Doug Zongker850b8072013-12-05 15:54:55 -0800242 if "timestamp" in prop_dict:
243 build_command.extend(["-T", str(prop_dict["timestamp"])])
Doug Zongker82822822014-06-16 09:10:55 -0700244 if fs_config is not None:
245 build_command.extend(["-C", fs_config])
Doug Zongkerf21cb5a2014-08-12 14:16:55 -0700246 if block_list is not None:
247 build_command.extend(["-B", block_list])
Christoffer Dall8ed01f32014-12-17 21:34:12 +0100248 build_command.extend(["-L", prop_dict["mount_point"]])
Doug Zongker82822822014-06-16 09:10:55 -0700249 if fc_config is not None:
250 build_command.append(fc_config)
251 elif "selinux_fc" in prop_dict:
Kenny Rootf32dc712012-04-08 10:42:34 -0700252 build_command.append(prop_dict["selinux_fc"])
Mohamad Ayyashb97746e2015-03-03 12:30:37 -0800253 elif fs_type.startswith("squash"):
254 build_command = ["mksquashfsimage.sh"]
255 build_command.extend([in_dir, out_file])
256 build_command.extend(["-m", prop_dict["mount_point"]])
257 if fc_config is not None:
258 build_command.extend(["-c", fc_config])
259 elif "selinux_fc" in prop_dict:
260 build_command.extend(["-c", prop_dict["selinux_fc"]])
JP Abgrall5bfed5a2014-06-16 14:17:40 -0700261 elif fs_type.startswith("f2fs"):
262 build_command = ["mkf2fsuserimg.sh"]
263 build_command.extend([out_file, prop_dict["partition_size"]])
Ying Wangbd93d422011-10-28 17:02:30 -0700264 else:
265 build_command = ["mkyaffs2image", "-f"]
266 if prop_dict.get("mkyaffs2_extra_flags", None):
267 build_command.extend(prop_dict["mkyaffs2_extra_flags"].split())
268 build_command.append(in_dir)
269 build_command.append(out_file)
Kenny Rootf32dc712012-04-08 10:42:34 -0700270 if "selinux_fc" in prop_dict:
271 build_command.append(prop_dict["selinux_fc"])
272 build_command.append(prop_dict["mount_point"])
Ying Wangbd93d422011-10-28 17:02:30 -0700273
Ying Wang69e9b4d2012-11-26 18:10:23 -0800274 exit_code = RunCommand(build_command)
275 if exit_code != 0:
276 return False
277
Geremy Condrafd6f7512013-06-16 17:26:08 -0700278 # create the verified image if this is to be verified
Geremy Condra5b5f4952014-05-05 22:19:37 -0700279 if verity_supported and is_verity_partition:
Geremy Condrafd6f7512013-06-16 17:26:08 -0700280 if not MakeVerityEnabledImage(out_file, prop_dict):
281 return False
282
Ying Wang6a42a252013-02-27 13:54:02 -0800283 if run_fsck and prop_dict.get("skip_fsck") != "true":
Geremy Condra6e8f53c2013-12-05 17:09:18 -0800284 success, unsparse_image = UnsparseImage(out_file, replace=False)
Geremy Condrafd6f7512013-06-16 17:26:08 -0700285 if not success:
Ying Wang69e9b4d2012-11-26 18:10:23 -0800286 return False
287
288 # Run e2fsck on the inflated image file
289 e2fsck_command = ["e2fsck", "-f", "-n", unsparse_image]
290 exit_code = RunCommand(e2fsck_command)
291
292 os.remove(unsparse_image)
293
294 return exit_code == 0
Ying Wangbd93d422011-10-28 17:02:30 -0700295
296
297def ImagePropFromGlobalDict(glob_dict, mount_point):
298 """Build an image property dictionary from the global dictionary.
299
300 Args:
301 glob_dict: the global dictionary from the build system.
302 mount_point: such as "system", "data" etc.
303 """
Doug Zongker1ad7ade2013-12-06 11:53:27 -0800304 d = {}
305 if "build.prop" in glob_dict:
306 bp = glob_dict["build.prop"]
307 if "ro.build.date.utc" in bp:
308 d["timestamp"] = bp["ro.build.date.utc"]
Ying Wang9f8e8db2011-11-04 11:37:01 -0700309
310 def copy_prop(src_p, dest_p):
311 if src_p in glob_dict:
312 d[dest_p] = str(glob_dict[src_p])
313
Ying Wangbd93d422011-10-28 17:02:30 -0700314 common_props = (
Ying Wangbd93d422011-10-28 17:02:30 -0700315 "extfs_sparse_flag",
316 "mkyaffs2_extra_flags",
Kenny Rootf32dc712012-04-08 10:42:34 -0700317 "selinux_fc",
Ying Wang6a42a252013-02-27 13:54:02 -0800318 "skip_fsck",
Geremy Condrafd6f7512013-06-16 17:26:08 -0700319 "verity",
Geremy Condrafd6f7512013-06-16 17:26:08 -0700320 "verity_key",
Daniel Rosenbergf4eabc32014-07-10 15:42:38 -0700321 "verity_signer_cmd"
Ying Wangbd93d422011-10-28 17:02:30 -0700322 )
323 for p in common_props:
Ying Wang9f8e8db2011-11-04 11:37:01 -0700324 copy_prop(p, p)
Ying Wangbd93d422011-10-28 17:02:30 -0700325
326 d["mount_point"] = mount_point
327 if mount_point == "system":
Ying Wang9f8e8db2011-11-04 11:37:01 -0700328 copy_prop("fs_type", "fs_type")
Dan Albert8b72aef2015-03-23 19:13:21 -0700329 # Copy the generic sysetem fs type first, override with specific one if
330 # available.
Mohamad Ayyashb97746e2015-03-03 12:30:37 -0800331 copy_prop("system_fs_type", "fs_type")
Ying Wang9f8e8db2011-11-04 11:37:01 -0700332 copy_prop("system_size", "partition_size")
Ying Wangf3b86352014-11-18 18:03:13 -0800333 copy_prop("system_journal_size", "journal_size")
Daniel Rosenbergf4eabc32014-07-10 15:42:38 -0700334 copy_prop("system_verity_block_device", "verity_block_device")
Ying Wangbd93d422011-10-28 17:02:30 -0700335 elif mount_point == "data":
JP Abgrall5bfed5a2014-06-16 14:17:40 -0700336 # Copy the generic fs type first, override with specific one if available.
Ying Wang9f8e8db2011-11-04 11:37:01 -0700337 copy_prop("fs_type", "fs_type")
JP Abgrall5bfed5a2014-06-16 14:17:40 -0700338 copy_prop("userdata_fs_type", "fs_type")
Ying Wang9f8e8db2011-11-04 11:37:01 -0700339 copy_prop("userdata_size", "partition_size")
340 elif mount_point == "cache":
341 copy_prop("cache_fs_type", "fs_type")
342 copy_prop("cache_size", "partition_size")
Ying Wanga0febe52013-03-20 11:02:05 -0700343 elif mount_point == "vendor":
344 copy_prop("vendor_fs_type", "fs_type")
345 copy_prop("vendor_size", "partition_size")
Ying Wangf3b86352014-11-18 18:03:13 -0800346 copy_prop("vendor_journal_size", "journal_size")
Daniel Rosenbergf4eabc32014-07-10 15:42:38 -0700347 copy_prop("vendor_verity_block_device", "verity_block_device")
Ying Wangb8888432014-03-11 17:13:27 -0700348 elif mount_point == "oem":
349 copy_prop("fs_type", "fs_type")
350 copy_prop("oem_size", "partition_size")
Ying Wangf3b86352014-11-18 18:03:13 -0800351 copy_prop("oem_journal_size", "journal_size")
Ying Wangbd93d422011-10-28 17:02:30 -0700352
353 return d
354
355
356def LoadGlobalDict(filename):
357 """Load "name=value" pairs from filename"""
358 d = {}
359 f = open(filename)
360 for line in f:
361 line = line.strip()
362 if not line or line.startswith("#"):
363 continue
364 k, v = line.split("=", 1)
365 d[k] = v
366 f.close()
367 return d
368
369
370def main(argv):
371 if len(argv) != 3:
372 print __doc__
373 sys.exit(1)
374
375 in_dir = argv[0]
376 glob_dict_file = argv[1]
377 out_file = argv[2]
378
379 glob_dict = LoadGlobalDict(glob_dict_file)
380 image_filename = os.path.basename(out_file)
381 mount_point = ""
382 if image_filename == "system.img":
383 mount_point = "system"
384 elif image_filename == "userdata.img":
385 mount_point = "data"
Ying Wang9f8e8db2011-11-04 11:37:01 -0700386 elif image_filename == "cache.img":
387 mount_point = "cache"
Ying Wanga0febe52013-03-20 11:02:05 -0700388 elif image_filename == "vendor.img":
389 mount_point = "vendor"
Ying Wangb8888432014-03-11 17:13:27 -0700390 elif image_filename == "oem.img":
391 mount_point = "oem"
Ying Wang9f8e8db2011-11-04 11:37:01 -0700392 else:
393 print >> sys.stderr, "error: unknown image file name ", image_filename
394 exit(1)
Ying Wangbd93d422011-10-28 17:02:30 -0700395
396 image_properties = ImagePropFromGlobalDict(glob_dict, mount_point)
397 if not BuildImage(in_dir, image_properties, out_file):
Dan Albert8b72aef2015-03-23 19:13:21 -0700398 print >> sys.stderr, "error: failed to build %s from %s" % (out_file,
399 in_dir)
Ying Wangbd93d422011-10-28 17:02:30 -0700400 exit(1)
401
402
403if __name__ == '__main__':
404 main(sys.argv[1:])