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 | |
| 17 | #ifndef RECOVERY_INSTALL_H_ |
| 18 | #define RECOVERY_INSTALL_H_ |
| 19 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 20 | #include <stddef.h> |
| 21 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 22 | #include <map> |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 23 | #include <string> |
xunchang | e0d991c | 2019-03-05 14:50:51 -0800 | [diff] [blame] | 24 | #include <vector> |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 25 | |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 26 | #include <ziparchive/zip_archive.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 27 | |
xunchang | f07ed2e | 2019-02-25 14:14:01 -0800 | [diff] [blame] | 28 | #include "package.h" |
| 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, |
| 37 | INSTALL_KEY_INTERRUPTED |
| 38 | }; |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 39 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 40 | enum class OtaType { |
| 41 | AB, |
| 42 | BLOCK, |
| 43 | BRICK, |
| 44 | }; |
| 45 | |
Tao Bao | 29ee69b | 2017-05-01 12:23:17 -0700 | [diff] [blame] | 46 | // Installs the given update package. If INSTALL_SUCCESS is returned and *wipe_cache is true on |
| 47 | // exit, caller should wipe the cache partition. |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 48 | int install_package(const std::string& package, bool* wipe_cache, bool needs_mount, |
| 49 | int retry_count); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 50 | |
xunchang | f07ed2e | 2019-02-25 14:14:01 -0800 | [diff] [blame] | 51 | // Verifies the package by ota keys. Returns true if the package is verified successfully, |
| 52 | // otherwise returns false. |
| 53 | bool verify_package(Package* package); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 54 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 55 | // Reads meta data file of the package; parses each line in the format "key=value"; and writes the |
| 56 | // result to |metadata|. Return true if succeed, otherwise return false. |
| 57 | bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata); |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 58 | |
xunchang | e0d991c | 2019-03-05 14:50:51 -0800 | [diff] [blame] | 59 | // Reads the "recovery.wipe" entry in the zip archive returns a list of partitions to wipe. |
xunchang | 55e3d22 | 2019-03-11 11:28:41 -0700 | [diff] [blame] | 60 | std::vector<std::string> GetWipePartitionList(Package* wipe_package); |
xunchang | e0d991c | 2019-03-05 14:50:51 -0800 | [diff] [blame] | 61 | |
Tao Bao | 29ee69b | 2017-05-01 12:23:17 -0700 | [diff] [blame] | 62 | // Verifies the compatibility info in a Treble-compatible package. Returns true directly if the |
Tao Bao | 1d86605 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 63 | // entry doesn't exist. |
| 64 | bool verify_package_compatibility(ZipArchiveHandle package_zip); |
| 65 | |
Tianjie Xu | 93b5bf2 | 2018-10-25 10:39:01 -0700 | [diff] [blame] | 66 | // Checks if the the metadata in the OTA package has expected values. Returns 0 on success. |
| 67 | // Mandatory checks: ota-type, pre-device and serial number(if presents) |
| 68 | // AB OTA specific checks: pre-build version, fingerprint, timestamp. |
| 69 | int CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type); |
| 70 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | #endif // RECOVERY_INSTALL_H_ |