blob: 29647ad498bc4192d29a42d1b80306d8f8ae1fe8 [file] [log] [blame]
bigbiff1f9e4842020-10-31 11:33:15 -04001/*
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#pragma once
18
19#include <stddef.h>
20
21#include <map>
22#include <string>
23#include <vector>
24
25#include <ziparchive/zip_archive.h>
26
27#include "package.h"
28
29enum InstallResult {
30 INSTALL_SUCCESS,
31 INSTALL_ERROR,
32 INSTALL_CORRUPT,
33 INSTALL_NONE,
34 INSTALL_SKIPPED,
35 INSTALL_RETRY,
36 INSTALL_KEY_INTERRUPTED,
37 INSTALL_REBOOT,
38};
39
40enum class OtaType {
41 AB,
42 BLOCK,
43 BRICK,
44};
45
46static constexpr const char* UPDATE_BINARY_NAME = "META-INF/com/google/android/update-binary";
47static constexpr float VERIFICATION_PROGRESS_FRACTION = 0.25;
48
49// Installs the given update package. This function should also wipe the cache partition after a
50// successful installation if |should_wipe_cache| is true or an updater command asks to wipe the
51// cache.
52int install_package(const std::string& package, bool should_wipe_cache, bool needs_mount,
53 int retry_count);
54
55// Verifies the package by ota keys. Returns true if the package is verified successfully,
56// otherwise returns false.
57bool verify_package(Package* package);
58
59// Reads meta data file of the package; parses each line in the format "key=value"; and writes the
60// result to |metadata|. Return true if succeed, otherwise return false.
61bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata);
62
63// Reads the "recovery.wipe" entry in the zip archive returns a list of partitions to wipe.
64std::vector<std::string> GetWipePartitionList(Package* wipe_package);
65
66// Verifies the compatibility info in a Treble-compatible package. Returns true directly if the
67// entry doesn't exist.
68bool verify_package_compatibility(ZipArchiveHandle package_zip);
69
70// Checks if the the metadata in the OTA package has expected values. Returns 0 on success.
71// Mandatory checks: ota-type, pre-device and serial number(if presents)
72// AB OTA specific checks: pre-build version, fingerprint, timestamp.
73int CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type);
74bool HasUpdaterBinary(ZipArchiveHandle zip);