Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | # |
| 3 | # Copyright (C) 2018 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 OTA package file, produces update config JSON file. |
| 19 | |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 20 | Example: |
| 21 | $ PYTHONPATH=$ANDROID_BUILD_TOP/build/make/tools/releasetools:$PYTHONPATH \\ |
| 22 | bootable/recovery/updater_sample/tools/gen_update_config.py \\ |
| 23 | --ab_install_type=STREAMING \\ |
| 24 | ota-build-001.zip \\ |
| 25 | my-config-001.json \\ |
| 26 | http://foo.bar/ota-builds/ota-build-001.zip |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 27 | """ |
| 28 | |
| 29 | import argparse |
| 30 | import json |
| 31 | import os.path |
| 32 | import sys |
| 33 | import zipfile |
| 34 | |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 35 | import ota_from_target_files # pylint: disable=import-error |
| 36 | |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 37 | |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 38 | class GenUpdateConfig(object): |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 39 | """ |
| 40 | A class that generates update configuration file from an OTA package. |
| 41 | |
| 42 | Currently supports only A/B (seamless) OTA packages. |
| 43 | TODO: add non-A/B packages support. |
| 44 | """ |
| 45 | |
| 46 | AB_INSTALL_TYPE_STREAMING = 'STREAMING' |
| 47 | AB_INSTALL_TYPE_NON_STREAMING = 'NON_STREAMING' |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 48 | |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 49 | def __init__(self, package, url, ab_install_type, ab_force_switch_slot): |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 50 | self.package = package |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 51 | self.url = url |
| 52 | self.ab_install_type = ab_install_type |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 53 | self.ab_force_switch_slot = ab_force_switch_slot |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 54 | self.streaming_required = ( |
| 55 | # payload.bin and payload_properties.txt must exist. |
| 56 | 'payload.bin', |
| 57 | 'payload_properties.txt', |
| 58 | ) |
| 59 | self.streaming_optional = ( |
| 60 | # care_map.txt is available only if dm-verity is enabled. |
| 61 | 'care_map.txt', |
| 62 | # compatibility.zip is available only if target supports Treble. |
| 63 | 'compatibility.zip', |
| 64 | ) |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 65 | self._config = None |
| 66 | |
| 67 | @property |
| 68 | def config(self): |
| 69 | """Returns generated config object.""" |
| 70 | return self._config |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 71 | |
| 72 | def run(self): |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 73 | """Generates config.""" |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 74 | streaming_metadata = None |
| 75 | if self.ab_install_type == GenUpdateConfig.AB_INSTALL_TYPE_STREAMING: |
| 76 | streaming_metadata = self._gen_ab_streaming_metadata() |
| 77 | |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 78 | self._config = { |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 79 | '__': '*** Generated using tools/gen_update_config.py ***', |
| 80 | 'name': self.ab_install_type[0] + ' ' + os.path.basename(self.package)[:-4], |
| 81 | 'url': self.url, |
| 82 | 'ab_streaming_metadata': streaming_metadata, |
| 83 | 'ab_install_type': self.ab_install_type, |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 84 | 'ab_config': { |
| 85 | 'force_switch_slot': self.ab_force_switch_slot, |
| 86 | } |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 87 | } |
| 88 | |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 89 | def _gen_ab_streaming_metadata(self): |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 90 | """Builds metadata for files required for streaming update.""" |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 91 | with zipfile.ZipFile(self.package, 'r') as package_zip: |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 92 | metadata = { |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 93 | 'property_files': self._get_property_files(package_zip) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | return metadata |
| 97 | |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 98 | @staticmethod |
| 99 | def _get_property_files(package_zip): |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 100 | """Constructs the property-files list for A/B streaming metadata.""" |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 101 | |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 102 | ab_ota = ota_from_target_files.AbOtaPropertyFiles() |
| 103 | property_str = ab_ota.GetPropertyFilesString(package_zip, False) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 104 | property_files = [] |
Zhomart Mukhamejanov | 96eb59e | 2018-05-04 12:17:01 -0700 | [diff] [blame] | 105 | for file in property_str.split(','): |
| 106 | filename, offset, size = file.split(':') |
| 107 | inner_file = { |
| 108 | 'filename': filename, |
| 109 | 'offset': int(offset), |
| 110 | 'size': int(size) |
| 111 | } |
| 112 | property_files.append(inner_file) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 113 | |
| 114 | return property_files |
| 115 | |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 116 | def write(self, out): |
| 117 | """Writes config to the output file.""" |
| 118 | with open(out, 'w') as out_file: |
| 119 | json.dump(self.config, out_file, indent=4, separators=(',', ': '), sort_keys=True) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 120 | |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 121 | |
| 122 | def main(): # pylint: disable=missing-docstring |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 123 | ab_install_type_choices = [ |
| 124 | GenUpdateConfig.AB_INSTALL_TYPE_STREAMING, |
| 125 | GenUpdateConfig.AB_INSTALL_TYPE_NON_STREAMING] |
| 126 | parser = argparse.ArgumentParser(description=__doc__, |
| 127 | formatter_class=argparse.RawDescriptionHelpFormatter) |
| 128 | parser.add_argument('--ab_install_type', |
| 129 | type=str, |
| 130 | default=GenUpdateConfig.AB_INSTALL_TYPE_NON_STREAMING, |
| 131 | choices=ab_install_type_choices, |
| 132 | help='A/B update installation type') |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 133 | parser.add_argument('--ab_force_switch_slot', |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 134 | default=False, |
Zhomart Mukhamejanov | da96070 | 2018-06-06 18:38:51 -0700 | [diff] [blame] | 135 | action='store_true', |
| 136 | help='if set device will boot to a new slot, otherwise user ' |
| 137 | 'manually switches slot on the screen') |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 138 | parser.add_argument('package', |
| 139 | type=str, |
| 140 | help='OTA package zip file') |
| 141 | parser.add_argument('out', |
| 142 | type=str, |
| 143 | help='Update configuration JSON file') |
| 144 | parser.add_argument('url', |
| 145 | type=str, |
| 146 | help='OTA package download url') |
| 147 | args = parser.parse_args() |
| 148 | |
| 149 | if not args.out.endswith('.json'): |
| 150 | print('out must be a json file') |
| 151 | sys.exit(1) |
| 152 | |
| 153 | gen = GenUpdateConfig( |
| 154 | package=args.package, |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 155 | url=args.url, |
Zhomart Mukhamejanov | 238beb7 | 2018-05-09 16:25:40 -0700 | [diff] [blame] | 156 | ab_install_type=args.ab_install_type, |
| 157 | ab_force_switch_slot=args.ab_force_switch_slot) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 158 | gen.run() |
Zhomart Mukhamejanov | 72a4d46 | 2018-04-26 15:49:08 -0700 | [diff] [blame] | 159 | gen.write(args.out) |
| 160 | print('Config is written to ' + args.out) |
Zhomart Mukhamejanov | d5a4182 | 2018-04-24 18:17:57 -0700 | [diff] [blame] | 161 | |
| 162 | |
| 163 | if __name__ == '__main__': |
| 164 | main() |