Merge "releasetools: Track the change to applypatch arguments."
This commit is contained in:
commit
80810b9d36
2 changed files with 69 additions and 37 deletions
|
@ -1915,7 +1915,7 @@ def MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img,
|
||||||
if os.path.exists(path):
|
if os.path.exists(path):
|
||||||
diff_program.append("-b")
|
diff_program.append("-b")
|
||||||
diff_program.append(path)
|
diff_program.append(path)
|
||||||
bonus_args = "-b /system/etc/recovery-resource.dat"
|
bonus_args = "--bonus /system/etc/recovery-resource.dat"
|
||||||
else:
|
else:
|
||||||
bonus_args = ""
|
bonus_args = ""
|
||||||
|
|
||||||
|
@ -1933,8 +1933,12 @@ def MakeRecoveryPatch(input_dir, output_sink, recovery_img, boot_img,
|
||||||
|
|
||||||
if full_recovery_image:
|
if full_recovery_image:
|
||||||
sh = """#!/system/bin/sh
|
sh = """#!/system/bin/sh
|
||||||
if ! applypatch -c %(type)s:%(device)s:%(size)d:%(sha1)s; then
|
if ! applypatch --check %(type)s:%(device)s:%(size)d:%(sha1)s; then
|
||||||
applypatch /system/etc/recovery.img %(type)s:%(device)s %(sha1)s %(size)d && log -t recovery "Installing new recovery image: succeeded" || log -t recovery "Installing new recovery image: failed"
|
applypatch \\
|
||||||
|
--flash /system/etc/recovery.img \\
|
||||||
|
--target %(type)s:%(device)s:%(size)d:%(sha1)s && \\
|
||||||
|
log -t recovery "Installing new recovery image: succeeded" || \\
|
||||||
|
log -t recovery "Installing new recovery image: failed"
|
||||||
else
|
else
|
||||||
log -t recovery "Recovery image already installed"
|
log -t recovery "Recovery image already installed"
|
||||||
fi
|
fi
|
||||||
|
@ -1944,8 +1948,13 @@ fi
|
||||||
'size': recovery_img.size}
|
'size': recovery_img.size}
|
||||||
else:
|
else:
|
||||||
sh = """#!/system/bin/sh
|
sh = """#!/system/bin/sh
|
||||||
if ! applypatch -c %(recovery_type)s:%(recovery_device)s:%(recovery_size)d:%(recovery_sha1)s; then
|
if ! applypatch --check %(recovery_type)s:%(recovery_device)s:%(recovery_size)d:%(recovery_sha1)s; then
|
||||||
applypatch %(bonus_args)s %(boot_type)s:%(boot_device)s:%(boot_size)d:%(boot_sha1)s %(recovery_type)s:%(recovery_device)s %(recovery_sha1)s %(recovery_size)d %(boot_sha1)s:/system/recovery-from-boot.p && log -t recovery "Installing new recovery image: succeeded" || log -t recovery "Installing new recovery image: failed"
|
applypatch %(bonus_args)s \\
|
||||||
|
--patch /system/recovery-from-boot.p \\
|
||||||
|
--source %(boot_type)s:%(boot_device)s:%(boot_size)d:%(boot_sha1)s \\
|
||||||
|
--target %(recovery_type)s:%(recovery_device)s:%(recovery_size)d:%(recovery_sha1)s && \\
|
||||||
|
log -t recovery "Installing new recovery image: succeeded" || \\
|
||||||
|
log -t recovery "Installing new recovery image: failed"
|
||||||
else
|
else
|
||||||
log -t recovery "Recovery image already installed"
|
log -t recovery "Recovery image already installed"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -131,14 +131,18 @@ def ValidateInstallRecoveryScript(input_tmp, info_dict):
|
||||||
|
|
||||||
1. full recovery:
|
1. full recovery:
|
||||||
...
|
...
|
||||||
if ! applypatch -c type:device:size:SHA-1; then
|
if ! applypatch --check type:device:size:sha1; then
|
||||||
applypatch /system/etc/recovery.img type:device sha1 size && ...
|
applypatch --flash /system/etc/recovery.img \\
|
||||||
|
type:device:size:sha1 && \\
|
||||||
...
|
...
|
||||||
|
|
||||||
2. recovery from boot:
|
2. recovery from boot:
|
||||||
...
|
...
|
||||||
applypatch [-b bonus_args] boot_info recovery_info recovery_sha1 \
|
if ! applypatch --check type:recovery_device:recovery_size:recovery_sha1; then
|
||||||
recovery_size patch_info && ...
|
applypatch [--bonus bonus_args] \\
|
||||||
|
--patch /system/recovery-from-boot.p \\
|
||||||
|
--source type:boot_device:boot_size:boot_sha1 \\
|
||||||
|
--target type:recovery_device:recovery_size:recovery_sha1 && \\
|
||||||
...
|
...
|
||||||
|
|
||||||
For full recovery, we want to calculate the SHA-1 of /system/etc/recovery.img
|
For full recovery, we want to calculate the SHA-1 of /system/etc/recovery.img
|
||||||
|
@ -155,44 +159,63 @@ def ValidateInstallRecoveryScript(input_tmp, info_dict):
|
||||||
logging.info('Checking %s', script_path)
|
logging.info('Checking %s', script_path)
|
||||||
with open(os.path.join(input_tmp, script_path), 'r') as script:
|
with open(os.path.join(input_tmp, script_path), 'r') as script:
|
||||||
lines = script.read().strip().split('\n')
|
lines = script.read().strip().split('\n')
|
||||||
assert len(lines) >= 6
|
assert len(lines) >= 10
|
||||||
check_cmd = re.search(r'if ! applypatch -c \w+:.+:\w+:(\w+);',
|
check_cmd = re.search(r'if ! applypatch --check (\w+:.+:\w+:\w+);',
|
||||||
lines[1].strip())
|
lines[1].strip())
|
||||||
expected_recovery_check_sha1 = check_cmd.group(1)
|
check_partition = check_cmd.group(1)
|
||||||
patch_cmd = re.search(r'(applypatch.+)&&', lines[2].strip())
|
assert len(check_partition.split(':')) == 4
|
||||||
applypatch_argv = patch_cmd.group(1).strip().split()
|
|
||||||
|
|
||||||
full_recovery_image = info_dict.get("full_recovery_image") == "true"
|
full_recovery_image = info_dict.get("full_recovery_image") == "true"
|
||||||
if full_recovery_image:
|
if full_recovery_image:
|
||||||
assert len(applypatch_argv) == 5
|
assert len(lines) == 10, "Invalid line count: {}".format(lines)
|
||||||
# Check we have the same expected SHA-1 of recovery.img in both check mode
|
|
||||||
# and patch mode.
|
|
||||||
expected_recovery_sha1 = applypatch_argv[3].strip()
|
|
||||||
assert expected_recovery_check_sha1 == expected_recovery_sha1
|
|
||||||
ValidateFileAgainstSha1(input_tmp, 'recovery.img',
|
|
||||||
'SYSTEM/etc/recovery.img', expected_recovery_sha1)
|
|
||||||
else:
|
|
||||||
# We're patching boot.img to get recovery.img where bonus_args is optional
|
|
||||||
if applypatch_argv[1] == "-b":
|
|
||||||
assert len(applypatch_argv) == 8
|
|
||||||
boot_info_index = 3
|
|
||||||
else:
|
|
||||||
assert len(applypatch_argv) == 6
|
|
||||||
boot_info_index = 1
|
|
||||||
|
|
||||||
# boot_info: boot_type:boot_device:boot_size:boot_sha1
|
# Expect something like "EMMC:/dev/block/recovery:28:5f9c..62e3".
|
||||||
boot_info = applypatch_argv[boot_info_index].strip().split(':')
|
target = re.search(r'--target (.+) &&', lines[4].strip())
|
||||||
assert len(boot_info) == 4
|
assert target is not None, \
|
||||||
|
"Failed to parse target line \"{}\"".format(lines[4])
|
||||||
|
flash_partition = target.group(1)
|
||||||
|
|
||||||
|
# Check we have the same recovery target in the check and flash commands.
|
||||||
|
assert check_partition == flash_partition, \
|
||||||
|
"Mismatching targets: {} vs {}".format(check_partition, flash_partition)
|
||||||
|
|
||||||
|
# Validate the SHA-1 of the recovery image.
|
||||||
|
recovery_sha1 = flash_partition.split(':')[3]
|
||||||
|
ValidateFileAgainstSha1(
|
||||||
|
input_tmp, 'recovery.img', 'SYSTEM/etc/recovery.img', recovery_sha1)
|
||||||
|
else:
|
||||||
|
assert len(lines) == 11, "Invalid line count: {}".format(lines)
|
||||||
|
|
||||||
|
# --source boot_type:boot_device:boot_size:boot_sha1
|
||||||
|
source = re.search(r'--source (\w+:.+:\w+:\w+) \\', lines[4].strip())
|
||||||
|
assert source is not None, \
|
||||||
|
"Failed to parse source line \"{}\"".format(lines[4])
|
||||||
|
|
||||||
|
source_partition = source.group(1)
|
||||||
|
source_info = source_partition.split(':')
|
||||||
|
assert len(source_info) == 4, \
|
||||||
|
"Invalid source partition: {}".format(source_partition)
|
||||||
ValidateFileAgainstSha1(input_tmp, file_name='boot.img',
|
ValidateFileAgainstSha1(input_tmp, file_name='boot.img',
|
||||||
file_path='IMAGES/boot.img',
|
file_path='IMAGES/boot.img',
|
||||||
expected_sha1=boot_info[3])
|
expected_sha1=source_info[3])
|
||||||
|
|
||||||
recovery_sha1_index = boot_info_index + 2
|
# --target recovery_type:recovery_device:recovery_size:recovery_sha1
|
||||||
expected_recovery_sha1 = applypatch_argv[recovery_sha1_index]
|
target = re.search(r'--target (\w+:.+:\w+:\w+) && \\', lines[5].strip())
|
||||||
assert expected_recovery_check_sha1 == expected_recovery_sha1
|
assert target is not None, \
|
||||||
|
"Failed to parse target line \"{}\"".format(lines[5])
|
||||||
|
target_partition = target.group(1)
|
||||||
|
|
||||||
|
# Check we have the same recovery target in the check and patch commands.
|
||||||
|
assert check_partition == target_partition, \
|
||||||
|
"Mismatching targets: {} vs {}".format(
|
||||||
|
check_partition, target_partition)
|
||||||
|
|
||||||
|
recovery_info = target_partition.split(':')
|
||||||
|
assert len(recovery_info) == 4, \
|
||||||
|
"Invalid target partition: {}".format(target_partition)
|
||||||
ValidateFileAgainstSha1(input_tmp, file_name='recovery.img',
|
ValidateFileAgainstSha1(input_tmp, file_name='recovery.img',
|
||||||
file_path='IMAGES/recovery.img',
|
file_path='IMAGES/recovery.img',
|
||||||
expected_sha1=expected_recovery_sha1)
|
expected_sha1=recovery_info[3])
|
||||||
|
|
||||||
logging.info('Done checking %s', script_path)
|
logging.info('Done checking %s', script_path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue