blob: c0a8f1f4cb58d7242525ad6cb0649036b42387e9 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
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
xunchang24788852019-03-22 16:08:52 -070017#pragma once
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080018
Tao Bao641fa972018-04-25 18:59:40 -070019#include <stddef.h>
20
Tianjie Xu93b5bf22018-10-25 10:39:01 -070021#include <map>
Yabin Cuifd99a312016-06-09 14:09:39 -070022#include <string>
xunchange0d991c2019-03-05 14:50:51 -080023#include <vector>
Tao Bao641fa972018-04-25 18:59:40 -070024
Yabin Cuifd99a312016-06-09 14:09:39 -070025#include <ziparchive/zip_archive.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080026
xunchangf07ed2e2019-02-25 14:14:01 -080027#include "package.h"
xunchang24788852019-03-22 16:08:52 -070028#include "recovery_ui/ui.h"
xunchangf07ed2e2019-02-25 14:14:01 -080029
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -070030enum InstallResult {
31 INSTALL_SUCCESS,
32 INSTALL_ERROR,
33 INSTALL_CORRUPT,
34 INSTALL_NONE,
35 INSTALL_SKIPPED,
36 INSTALL_RETRY,
Tao Bao10f441a2019-04-19 15:22:15 -070037 INSTALL_KEY_INTERRUPTED,
38 INSTALL_REBOOT,
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -070039};
Tao Baoac9d94d2016-11-03 11:37:15 -070040
Tianjie Xu93b5bf22018-10-25 10:39:01 -070041enum class OtaType {
42 AB,
43 BLOCK,
44 BRICK,
45};
46
xunchang316e9712019-04-12 16:22:15 -070047// Installs the given update package. This function should also wipe the cache partition after a
48// successful installation if |should_wipe_cache| is true or an updater command asks to wipe the
49// cache.
50int install_package(const std::string& package, bool should_wipe_cache, bool needs_mount,
51 int retry_count, RecoveryUI* ui);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080052
xunchangf07ed2e2019-02-25 14:14:01 -080053// Verifies the package by ota keys. Returns true if the package is verified successfully,
54// otherwise returns false.
xunchang24788852019-03-22 16:08:52 -070055bool verify_package(Package* package, RecoveryUI* ui);
Yabin Cuifd99a312016-06-09 14:09:39 -070056
Tianjie Xu93b5bf22018-10-25 10:39:01 -070057// Reads meta data file of the package; parses each line in the format "key=value"; and writes the
58// result to |metadata|. Return true if succeed, otherwise return false.
59bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata);
Doug Zongker28ce47c2011-10-28 10:33:05 -070060
xunchange0d991c2019-03-05 14:50:51 -080061// Reads the "recovery.wipe" entry in the zip archive returns a list of partitions to wipe.
xunchang55e3d222019-03-11 11:28:41 -070062std::vector<std::string> GetWipePartitionList(Package* wipe_package);
xunchange0d991c2019-03-05 14:50:51 -080063
Tao Bao29ee69b2017-05-01 12:23:17 -070064// Verifies the compatibility info in a Treble-compatible package. Returns true directly if the
Tao Bao1d866052017-04-10 16:55:57 -070065// entry doesn't exist.
66bool verify_package_compatibility(ZipArchiveHandle package_zip);
67
Tianjie Xu93b5bf22018-10-25 10:39:01 -070068// Checks if the the metadata in the OTA package has expected values. Returns 0 on success.
69// Mandatory checks: ota-type, pre-device and serial number(if presents)
70// AB OTA specific checks: pre-build version, fingerprint, timestamp.
71int CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type);