The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 17 | #pragma once |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 18 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 19 | #include <stddef.h> |
| 20 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 21 | #include <map> |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 22 | #include <string> |
xunchang | e0d991c | 2019-03-05 14:50:51 -0800 | [diff] [blame] | 23 | #include <vector> |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 24 | |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 25 | #include <ziparchive/zip_archive.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 26 | |
xunchang | f07ed2e | 2019-02-25 14:14:01 -0800 | [diff] [blame] | 27 | #include "package.h" |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 28 | #include "recovery_ui/ui.h" |
xunchang | f07ed2e | 2019-02-25 14:14:01 -0800 | [diff] [blame] | 29 | |
Hridya Valsaraju | eb6f13a | 2018-09-12 10:25:01 -0700 | [diff] [blame] | 30 | enum InstallResult { |
| 31 | INSTALL_SUCCESS, |
| 32 | INSTALL_ERROR, |
| 33 | INSTALL_CORRUPT, |
| 34 | INSTALL_NONE, |
| 35 | INSTALL_SKIPPED, |
| 36 | INSTALL_RETRY, |
Tao Bao | 10f441a | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 37 | INSTALL_KEY_INTERRUPTED, |
| 38 | INSTALL_REBOOT, |
Hridya Valsaraju | eb6f13a | 2018-09-12 10:25:01 -0700 | [diff] [blame] | 39 | }; |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 40 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 41 | enum class OtaType { |
| 42 | AB, |
| 43 | BLOCK, |
| 44 | BRICK, |
| 45 | }; |
| 46 | |
Tianjie Xu | 980f92e | 2019-06-11 15:43:43 -0700 | [diff] [blame] | 47 | // Installs the given update package. The package_id is a string provided by the caller (e.g. the |
| 48 | // package path) to identify the package and log to last_install. This function should also wipe the |
| 49 | // cache partition after a successful installation if |should_wipe_cache| is true or an updater |
| 50 | // command asks to wipe the cache. |
| 51 | InstallResult InstallPackage(Package* package, const std::string_view package_id, |
| 52 | bool should_wipe_cache, int retry_count, RecoveryUI* ui); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 53 | |
xunchang | f07ed2e | 2019-02-25 14:14:01 -0800 | [diff] [blame] | 54 | // Verifies the package by ota keys. Returns true if the package is verified successfully, |
| 55 | // otherwise returns false. |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 56 | bool verify_package(Package* package, RecoveryUI* ui); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 57 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 58 | // Reads meta data file of the package; parses each line in the format "key=value"; and writes the |
| 59 | // result to |metadata|. Return true if succeed, otherwise return false. |
| 60 | bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata); |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 61 | |
Tao Bao | 36c7276 | 2019-04-30 00:25:41 -0700 | [diff] [blame] | 62 | // Checks if the metadata in the OTA package has expected values. Mandatory checks: ota-type, |
| 63 | // pre-device and serial number (if presents). A/B OTA specific checks: pre-build version, |
| 64 | // fingerprint, timestamp. |
| 65 | bool CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type); |