2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2019-03-23 00:08:52 +01:00
|
|
|
#include "install/install.h"
|
2016-12-29 05:55:51 +01:00
|
|
|
|
2009-06-04 19:24:53 +02:00
|
|
|
#include <ctype.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2016-08-12 22:43:04 +02:00
|
|
|
#include <inttypes.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <limits.h>
|
2015-01-28 21:09:05 +01:00
|
|
|
#include <string.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <sys/stat.h>
|
2009-06-04 19:24:53 +02:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-03-27 23:12:26 +02:00
|
|
|
#include <algorithm>
|
2017-06-08 02:59:55 +02:00
|
|
|
#include <atomic>
|
2016-04-14 01:39:56 +02:00
|
|
|
#include <chrono>
|
2017-03-27 23:12:26 +02:00
|
|
|
#include <condition_variable>
|
2019-08-06 21:32:05 +02:00
|
|
|
#include <filesystem>
|
2017-03-17 01:37:38 +01:00
|
|
|
#include <functional>
|
2016-08-04 06:03:53 +02:00
|
|
|
#include <limits>
|
2017-03-27 23:12:26 +02:00
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
2016-02-02 23:02:27 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2016-09-09 19:55:44 +02:00
|
|
|
#include <android-base/file.h>
|
|
|
|
#include <android-base/logging.h>
|
2016-12-29 05:55:51 +01:00
|
|
|
#include <android-base/parsedouble.h>
|
2016-06-08 23:30:04 +02:00
|
|
|
#include <android-base/parseint.h>
|
2017-01-09 07:45:47 +01:00
|
|
|
#include <android-base/properties.h>
|
2016-04-30 20:49:59 +02:00
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/strings.h>
|
2018-06-18 23:56:20 +02:00
|
|
|
#include <android-base/unique_fd.h>
|
2016-04-30 20:49:59 +02:00
|
|
|
|
2019-03-23 00:08:52 +01:00
|
|
|
#include "install/package.h"
|
|
|
|
#include "install/verifier.h"
|
2019-04-13 01:22:15 +02:00
|
|
|
#include "install/wipe_data.h"
|
2017-10-06 16:43:41 +02:00
|
|
|
#include "otautil/error_code.h"
|
2018-04-26 03:59:40 +02:00
|
|
|
#include "otautil/paths.h"
|
2018-05-04 07:41:23 +02:00
|
|
|
#include "otautil/sysutil.h"
|
2019-03-23 00:08:52 +01:00
|
|
|
#include "private/setup_commands.h"
|
2018-08-20 22:40:47 +02:00
|
|
|
#include "recovery_ui/ui.h"
|
2019-10-01 20:55:36 +02:00
|
|
|
#include "recovery_utils/roots.h"
|
|
|
|
#include "recovery_utils/thermalutil.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-03-27 23:12:26 +02:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
2019-03-23 00:08:52 +01:00
|
|
|
static constexpr int kRecoveryApiVersion = 3;
|
2019-05-15 22:59:39 +02:00
|
|
|
// We define RECOVERY_API_VERSION in Android.mk, which will be picked up by build system and packed
|
|
|
|
// into target_files.zip. Assert the version defined in code and in Android.mk are consistent.
|
2019-03-23 00:08:52 +01:00
|
|
|
static_assert(kRecoveryApiVersion == RECOVERY_API_VERSION, "Mismatching recovery API versions.");
|
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
// Default allocation of progress bar segments to operations
|
2016-12-29 05:55:51 +01:00
|
|
|
static constexpr int VERIFICATION_PROGRESS_TIME = 60;
|
|
|
|
static constexpr float VERIFICATION_PROGRESS_FRACTION = 0.25;
|
2011-10-29 00:13:10 +02:00
|
|
|
|
2017-03-27 23:12:26 +02:00
|
|
|
static std::condition_variable finish_log_temperature;
|
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata) {
|
2017-04-19 07:05:50 +02:00
|
|
|
CHECK(metadata != nullptr);
|
2016-06-08 23:30:04 +02:00
|
|
|
|
2017-04-19 07:05:50 +02:00
|
|
|
static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
|
|
|
|
ZipEntry entry;
|
2019-05-04 07:52:37 +02:00
|
|
|
if (FindEntry(zip, METADATA_PATH, &entry) != 0) {
|
2017-04-19 07:05:50 +02:00
|
|
|
LOG(ERROR) << "Failed to find " << METADATA_PATH;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t length = entry.uncompressed_length;
|
2018-10-25 19:39:01 +02:00
|
|
|
std::string metadata_string(length, '\0');
|
|
|
|
int32_t err =
|
|
|
|
ExtractToMemory(zip, &entry, reinterpret_cast<uint8_t*>(&metadata_string[0]), length);
|
2017-04-19 07:05:50 +02:00
|
|
|
if (err != 0) {
|
|
|
|
LOG(ERROR) << "Failed to extract " << METADATA_PATH << ": " << ErrorCodeString(err);
|
|
|
|
return false;
|
|
|
|
}
|
2016-06-08 23:30:04 +02:00
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
for (const std::string& line : android::base::Split(metadata_string, "\n")) {
|
2017-01-09 07:45:47 +01:00
|
|
|
size_t eq = line.find('=');
|
|
|
|
if (eq != std::string::npos) {
|
2018-10-25 19:39:01 +02:00
|
|
|
metadata->emplace(android::base::Trim(line.substr(0, eq)),
|
|
|
|
android::base::Trim(line.substr(eq + 1)));
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Gets the value for the given key in |metadata|. Returns an emtpy string if the key isn't
|
|
|
|
// present.
|
|
|
|
static std::string get_value(const std::map<std::string, std::string>& metadata,
|
|
|
|
const std::string& key) {
|
|
|
|
const auto& it = metadata.find(key);
|
|
|
|
return (it == metadata.end()) ? "" : it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string OtaTypeToString(OtaType type) {
|
|
|
|
switch (type) {
|
|
|
|
case OtaType::AB:
|
|
|
|
return "AB";
|
|
|
|
case OtaType::BLOCK:
|
|
|
|
return "BLOCK";
|
|
|
|
case OtaType::BRICK:
|
|
|
|
return "BRICK";
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
2017-01-09 07:45:47 +01:00
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
|
|
|
|
static void ReadSourceTargetBuild(const std::map<std::string, std::string>& metadata,
|
|
|
|
std::vector<std::string>* log_buffer) {
|
|
|
|
// Examples of the pre-build and post-build strings in metadata:
|
|
|
|
// pre-build-incremental=2943039
|
|
|
|
// post-build-incremental=2951741
|
|
|
|
auto source_build = get_value(metadata, "pre-build-incremental");
|
|
|
|
if (!source_build.empty()) {
|
|
|
|
log_buffer->push_back("source_build: " + source_build);
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
auto target_build = get_value(metadata, "post-build-incremental");
|
|
|
|
if (!target_build.empty()) {
|
|
|
|
log_buffer->push_back("target_build: " + target_build);
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
2017-01-09 07:45:47 +01:00
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
// Checks the build version, fingerprint and timestamp in the metadata of the A/B package.
|
|
|
|
// Downgrading is not allowed unless explicitly enabled in the package and only for
|
|
|
|
// incremental packages.
|
2019-04-30 09:25:41 +02:00
|
|
|
static bool CheckAbSpecificMetadata(const std::map<std::string, std::string>& metadata) {
|
2017-01-09 07:45:47 +01:00
|
|
|
// Incremental updates should match the current build.
|
2018-10-25 19:39:01 +02:00
|
|
|
auto device_pre_build = android::base::GetProperty("ro.build.version.incremental", "");
|
|
|
|
auto pkg_pre_build = get_value(metadata, "pre-build-incremental");
|
|
|
|
if (!pkg_pre_build.empty() && pkg_pre_build != device_pre_build) {
|
|
|
|
LOG(ERROR) << "Package is for source build " << pkg_pre_build << " but expected "
|
|
|
|
<< device_pre_build;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
|
2018-10-25 19:39:01 +02:00
|
|
|
auto device_fingerprint = android::base::GetProperty("ro.build.fingerprint", "");
|
|
|
|
auto pkg_pre_build_fingerprint = get_value(metadata, "pre-build");
|
|
|
|
if (!pkg_pre_build_fingerprint.empty() && pkg_pre_build_fingerprint != device_fingerprint) {
|
2017-01-09 07:45:47 +01:00
|
|
|
LOG(ERROR) << "Package is for source build " << pkg_pre_build_fingerprint << " but expected "
|
2018-10-25 19:39:01 +02:00
|
|
|
<< device_fingerprint;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check for downgrade version.
|
|
|
|
int64_t build_timestamp =
|
|
|
|
android::base::GetIntProperty("ro.build.date.utc", std::numeric_limits<int64_t>::max());
|
|
|
|
int64_t pkg_post_timestamp = 0;
|
|
|
|
// We allow to full update to the same version we are running, in case there
|
|
|
|
// is a problem with the current copy of that version.
|
2018-10-25 19:39:01 +02:00
|
|
|
auto pkg_post_timestamp_string = get_value(metadata, "post-timestamp");
|
|
|
|
if (pkg_post_timestamp_string.empty() ||
|
|
|
|
!android::base::ParseInt(pkg_post_timestamp_string, &pkg_post_timestamp) ||
|
2017-01-09 07:45:47 +01:00
|
|
|
pkg_post_timestamp < build_timestamp) {
|
2018-10-25 19:39:01 +02:00
|
|
|
if (get_value(metadata, "ota-downgrade") != "yes") {
|
2017-01-09 07:45:47 +01:00
|
|
|
LOG(ERROR) << "Update package is older than the current build, expected a build "
|
|
|
|
"newer than timestamp "
|
|
|
|
<< build_timestamp << " but package has timestamp " << pkg_post_timestamp
|
|
|
|
<< " and downgrade not allowed.";
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
if (pkg_pre_build_fingerprint.empty()) {
|
|
|
|
LOG(ERROR) << "Downgrade package must have a pre-build version set, not allowed.";
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-01-09 07:45:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
return true;
|
2016-08-04 06:03:53 +02:00
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
bool CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type) {
|
2018-10-25 19:39:01 +02:00
|
|
|
auto package_ota_type = get_value(metadata, "ota-type");
|
|
|
|
auto expected_ota_type = OtaTypeToString(ota_type);
|
|
|
|
if (ota_type != OtaType::AB && ota_type != OtaType::BRICK) {
|
|
|
|
LOG(INFO) << "Skip package metadata check for ota type " << expected_ota_type;
|
2019-04-30 09:25:41 +02:00
|
|
|
return true;
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (package_ota_type != expected_ota_type) {
|
|
|
|
LOG(ERROR) << "Unexpected ota package type, expects " << expected_ota_type << ", actual "
|
|
|
|
<< package_ota_type;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
auto device = android::base::GetProperty("ro.product.device", "");
|
|
|
|
auto pkg_device = get_value(metadata, "pre-device");
|
|
|
|
if (pkg_device != device || pkg_device.empty()) {
|
|
|
|
LOG(ERROR) << "Package is for product " << pkg_device << " but expected " << device;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// We allow the package to not have any serialno; and we also allow it to carry multiple serial
|
|
|
|
// numbers split by "|"; e.g. serialno=serialno1|serialno2|serialno3 ... We will fail the
|
|
|
|
// verification if the device's serialno doesn't match any of these carried numbers.
|
|
|
|
auto pkg_serial_no = get_value(metadata, "serialno");
|
|
|
|
if (!pkg_serial_no.empty()) {
|
|
|
|
auto device_serial_no = android::base::GetProperty("ro.serialno", "");
|
|
|
|
bool serial_number_match = false;
|
|
|
|
for (const auto& number : android::base::Split(pkg_serial_no, "|")) {
|
|
|
|
if (device_serial_no == android::base::Trim(number)) {
|
|
|
|
serial_number_match = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!serial_number_match) {
|
|
|
|
LOG(ERROR) << "Package is for serial " << pkg_serial_no;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ota_type == OtaType::AB) {
|
|
|
|
return CheckAbSpecificMetadata(metadata);
|
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
return true;
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
bool SetUpAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int status_fd,
|
|
|
|
std::vector<std::string>* cmd) {
|
2017-04-18 01:46:05 +02:00
|
|
|
CHECK(cmd != nullptr);
|
2016-08-04 06:03:53 +02:00
|
|
|
|
2017-04-18 01:46:05 +02:00
|
|
|
// For A/B updates we extract the payload properties to a buffer and obtain the RAW payload offset
|
|
|
|
// in the zip file.
|
|
|
|
static constexpr const char* AB_OTA_PAYLOAD_PROPERTIES = "payload_properties.txt";
|
|
|
|
ZipEntry properties_entry;
|
2019-05-04 07:52:37 +02:00
|
|
|
if (FindEntry(zip, AB_OTA_PAYLOAD_PROPERTIES, &properties_entry) != 0) {
|
2017-04-18 01:46:05 +02:00
|
|
|
LOG(ERROR) << "Failed to find " << AB_OTA_PAYLOAD_PROPERTIES;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
|
|
|
uint32_t properties_entry_length = properties_entry.uncompressed_length;
|
|
|
|
std::vector<uint8_t> payload_properties(properties_entry_length);
|
|
|
|
int32_t err =
|
|
|
|
ExtractToMemory(zip, &properties_entry, payload_properties.data(), properties_entry_length);
|
|
|
|
if (err != 0) {
|
|
|
|
LOG(ERROR) << "Failed to extract " << AB_OTA_PAYLOAD_PROPERTIES << ": " << ErrorCodeString(err);
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
2016-08-04 06:03:53 +02:00
|
|
|
|
2017-04-18 01:46:05 +02:00
|
|
|
static constexpr const char* AB_OTA_PAYLOAD = "payload.bin";
|
|
|
|
ZipEntry payload_entry;
|
2019-05-04 07:52:37 +02:00
|
|
|
if (FindEntry(zip, AB_OTA_PAYLOAD, &payload_entry) != 0) {
|
2017-04-18 01:46:05 +02:00
|
|
|
LOG(ERROR) << "Failed to find " << AB_OTA_PAYLOAD;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
|
|
|
long payload_offset = payload_entry.offset;
|
|
|
|
*cmd = {
|
2018-08-14 21:34:46 +02:00
|
|
|
"/system/bin/update_engine_sideload",
|
2017-05-03 00:48:54 +02:00
|
|
|
"--payload=file://" + package,
|
2017-04-18 01:46:05 +02:00
|
|
|
android::base::StringPrintf("--offset=%ld", payload_offset),
|
|
|
|
"--headers=" + std::string(payload_properties.begin(), payload_properties.end()),
|
|
|
|
android::base::StringPrintf("--status_fd=%d", status_fd),
|
|
|
|
};
|
2019-04-30 09:25:41 +02:00
|
|
|
return true;
|
2016-08-04 06:03:53 +02:00
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
bool SetUpNonAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int retry_count,
|
|
|
|
int status_fd, std::vector<std::string>* cmd) {
|
2017-04-18 01:46:05 +02:00
|
|
|
CHECK(cmd != nullptr);
|
2009-06-04 19:24:53 +02:00
|
|
|
|
2018-06-18 23:56:20 +02:00
|
|
|
// In non-A/B updates we extract the update binary from the package.
|
2017-04-18 01:46:05 +02:00
|
|
|
static constexpr const char* UPDATE_BINARY_NAME = "META-INF/com/google/android/update-binary";
|
|
|
|
ZipEntry binary_entry;
|
2019-05-04 07:52:37 +02:00
|
|
|
if (FindEntry(zip, UPDATE_BINARY_NAME, &binary_entry) != 0) {
|
2017-04-18 01:46:05 +02:00
|
|
|
LOG(ERROR) << "Failed to find update binary " << UPDATE_BINARY_NAME;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
2009-06-04 19:24:53 +02:00
|
|
|
|
2018-06-18 23:56:20 +02:00
|
|
|
const std::string binary_path = Paths::Get().temporary_update_binary();
|
2017-05-03 00:48:54 +02:00
|
|
|
unlink(binary_path.c_str());
|
2018-06-18 23:56:20 +02:00
|
|
|
android::base::unique_fd fd(
|
|
|
|
open(binary_path.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_CLOEXEC, 0755));
|
2017-04-18 01:46:05 +02:00
|
|
|
if (fd == -1) {
|
2017-05-03 00:48:54 +02:00
|
|
|
PLOG(ERROR) << "Failed to create " << binary_path;
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
|
|
|
|
2019-04-30 09:25:41 +02:00
|
|
|
if (auto error = ExtractEntryToFile(zip, &binary_entry, fd); error != 0) {
|
2017-04-18 01:46:05 +02:00
|
|
|
LOG(ERROR) << "Failed to extract " << UPDATE_BINARY_NAME << ": " << ErrorCodeString(error);
|
2019-04-30 09:25:41 +02:00
|
|
|
return false;
|
2017-04-18 01:46:05 +02:00
|
|
|
}
|
2009-06-04 19:24:53 +02:00
|
|
|
|
2019-01-16 18:29:17 +01:00
|
|
|
// When executing the update binary contained in the package, the arguments passed are:
|
|
|
|
// - the version number for this interface
|
|
|
|
// - an FD to which the program can write in order to update the progress bar.
|
|
|
|
// - the name of the package zip file.
|
|
|
|
// - an optional argument "retry" if this update is a retry of a failed update attempt.
|
2017-04-18 01:46:05 +02:00
|
|
|
*cmd = {
|
2017-05-03 00:48:54 +02:00
|
|
|
binary_path,
|
2017-05-04 22:03:18 +02:00
|
|
|
std::to_string(kRecoveryApiVersion),
|
2017-04-18 01:46:05 +02:00
|
|
|
std::to_string(status_fd),
|
2017-05-03 00:48:54 +02:00
|
|
|
package,
|
2017-04-18 01:46:05 +02:00
|
|
|
};
|
|
|
|
if (retry_count > 0) {
|
|
|
|
cmd->push_back("retry");
|
|
|
|
}
|
2019-04-30 09:25:41 +02:00
|
|
|
return true;
|
2016-08-04 06:03:53 +02:00
|
|
|
}
|
|
|
|
|
2017-06-08 02:59:55 +02:00
|
|
|
static void log_max_temperature(int* max_temperature, const std::atomic<bool>& logger_finished) {
|
2017-03-27 23:12:26 +02:00
|
|
|
CHECK(max_temperature != nullptr);
|
|
|
|
std::mutex mtx;
|
|
|
|
std::unique_lock<std::mutex> lck(mtx);
|
2017-06-08 02:59:55 +02:00
|
|
|
while (!logger_finished.load() &&
|
|
|
|
finish_log_temperature.wait_for(lck, 20s) == std::cv_status::timeout) {
|
2017-03-27 23:12:26 +02:00
|
|
|
*max_temperature = std::max(*max_temperature, GetMaxValueFromThermalZone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
// If the package contains an update binary, extract it and run it.
|
2019-06-12 00:43:43 +02:00
|
|
|
static InstallResult TryUpdateBinary(Package* package, bool* wipe_cache,
|
|
|
|
std::vector<std::string>* log_buffer, int retry_count,
|
|
|
|
int* max_temperature, RecoveryUI* ui) {
|
2018-10-25 19:39:01 +02:00
|
|
|
std::map<std::string, std::string> metadata;
|
2019-06-12 00:43:43 +02:00
|
|
|
auto zip = package->GetZipArchiveHandle();
|
2018-10-25 19:39:01 +02:00
|
|
|
if (!ReadMetadataFromPackage(zip, &metadata)) {
|
|
|
|
LOG(ERROR) << "Failed to parse metadata in the zip file";
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2020-04-28 05:16:18 +02:00
|
|
|
bool package_is_ab = get_value(metadata, "ota-type") == OtaTypeToString(OtaType::AB);
|
|
|
|
bool device_supports_ab = android::base::GetBoolProperty("ro.build.ab_update", false);
|
|
|
|
bool ab_device_supports_nonab =
|
|
|
|
android::base::GetBoolProperty("ro.virtual_ab.allow_non_ab", false);
|
|
|
|
bool device_only_supports_ab = device_supports_ab && !ab_device_supports_nonab;
|
|
|
|
|
|
|
|
if (package_is_ab) {
|
2019-06-12 00:43:43 +02:00
|
|
|
CHECK(package->GetType() == PackageType::kFile);
|
|
|
|
}
|
|
|
|
|
2020-04-28 05:16:18 +02:00
|
|
|
// Verify against the metadata in the package first. Expects A/B metadata if:
|
|
|
|
// Package declares itself as an A/B package
|
|
|
|
// Package does not declare itself as an A/B package, but device only supports A/B;
|
|
|
|
// still calls CheckPackageMetadata to get a meaningful error message.
|
|
|
|
if (package_is_ab || device_only_supports_ab) {
|
|
|
|
if (!CheckPackageMetadata(metadata, OtaType::AB)) {
|
|
|
|
log_buffer->push_back(android::base::StringPrintf("error: %d", kUpdateBinaryCommandFailure));
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
2018-10-25 19:39:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ReadSourceTargetBuild(metadata, log_buffer);
|
2016-09-21 04:08:42 +02:00
|
|
|
|
2019-01-16 18:29:17 +01:00
|
|
|
// The updater in child process writes to the pipe to communicate with recovery.
|
|
|
|
android::base::unique_fd pipe_read, pipe_write;
|
2019-03-29 02:42:13 +01:00
|
|
|
// Explicitly disable O_CLOEXEC using 0 as the flags (last) parameter to Pipe
|
|
|
|
// so that the child updater process will recieve a non-closed fd.
|
|
|
|
if (!android::base::Pipe(&pipe_read, &pipe_write, 0)) {
|
2019-01-16 18:29:17 +01:00
|
|
|
PLOG(ERROR) << "Failed to create pipe for updater-recovery communication";
|
|
|
|
return INSTALL_CORRUPT;
|
2016-12-29 05:55:51 +01:00
|
|
|
}
|
|
|
|
|
2019-01-16 18:29:17 +01:00
|
|
|
// The updater-recovery communication protocol.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// progress <frac> <secs>
|
|
|
|
// fill up the next <frac> part of of the progress bar over <secs> seconds. If <secs> is
|
|
|
|
// zero, use `set_progress` commands to manually control the progress of this segment of the
|
|
|
|
// bar.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// set_progress <frac>
|
|
|
|
// <frac> should be between 0.0 and 1.0; sets the progress bar within the segment defined by
|
|
|
|
// the most recent progress command.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// ui_print <string>
|
|
|
|
// display <string> on the screen.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// wipe_cache
|
|
|
|
// a wipe of cache will be performed following a successful installation.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// clear_display
|
|
|
|
// turn off the text display.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// enable_reboot
|
|
|
|
// packages can explicitly request that they want the user to be able to reboot during
|
|
|
|
// installation (useful for debugging packages that don't exit).
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// retry_update
|
|
|
|
// updater encounters some issue during the update. It requests a reboot to retry the same
|
|
|
|
// package automatically.
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
2019-01-16 18:29:17 +01:00
|
|
|
// log <string>
|
|
|
|
// updater requests logging the string (e.g. cause of the failure).
|
2016-12-29 05:55:51 +01:00
|
|
|
//
|
|
|
|
|
2019-06-12 00:43:43 +02:00
|
|
|
std::string package_path = package->GetPath();
|
|
|
|
|
2019-01-16 18:29:17 +01:00
|
|
|
std::vector<std::string> args;
|
2019-04-30 09:25:41 +02:00
|
|
|
if (auto setup_result =
|
2020-04-28 05:16:18 +02:00
|
|
|
package_is_ab
|
|
|
|
? SetUpAbUpdateCommands(package_path, zip, pipe_write.get(), &args)
|
|
|
|
: SetUpNonAbUpdateCommands(package_path, zip, retry_count, pipe_write.get(), &args);
|
2019-04-30 09:25:41 +02:00
|
|
|
!setup_result) {
|
2019-01-16 18:29:17 +01:00
|
|
|
log_buffer->push_back(android::base::StringPrintf("error: %d", kUpdateBinaryCommandFailure));
|
2019-04-30 09:25:41 +02:00
|
|
|
return INSTALL_CORRUPT;
|
2019-01-16 18:29:17 +01:00
|
|
|
}
|
2016-12-29 05:55:51 +01:00
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == -1) {
|
|
|
|
PLOG(ERROR) << "Failed to fork update binary";
|
2017-08-23 09:18:07 +02:00
|
|
|
log_buffer->push_back(android::base::StringPrintf("error: %d", kForkUpdateBinaryFailure));
|
2016-12-29 05:55:51 +01:00
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid == 0) {
|
|
|
|
umask(022);
|
2019-01-16 18:29:17 +01:00
|
|
|
pipe_read.reset();
|
|
|
|
|
|
|
|
// Convert the std::string vector to a NULL-terminated char* vector suitable for execv.
|
|
|
|
auto chr_args = StringVectorToNullTerminatedArray(args);
|
2018-12-20 18:44:06 +01:00
|
|
|
execv(chr_args[0], chr_args.data());
|
2019-01-16 18:29:17 +01:00
|
|
|
// We shouldn't use LOG/PLOG in the forked process, since they may cause the child process to
|
|
|
|
// hang. This deadlock results from an improperly copied mutex in the ui functions.
|
|
|
|
// (Bug: 34769056)
|
2017-01-31 01:48:52 +01:00
|
|
|
fprintf(stdout, "E:Can't run %s (%s)\n", chr_args[0], strerror(errno));
|
2017-02-03 22:09:23 +01:00
|
|
|
_exit(EXIT_FAILURE);
|
2016-12-29 05:55:51 +01:00
|
|
|
}
|
2019-01-16 18:29:17 +01:00
|
|
|
pipe_write.reset();
|
2016-12-29 05:55:51 +01:00
|
|
|
|
2017-06-08 02:59:55 +02:00
|
|
|
std::atomic<bool> logger_finished(false);
|
|
|
|
std::thread temperature_logger(log_max_temperature, max_temperature, std::ref(logger_finished));
|
2017-03-27 23:12:26 +02:00
|
|
|
|
2016-12-29 05:55:51 +01:00
|
|
|
*wipe_cache = false;
|
|
|
|
bool retry_update = false;
|
|
|
|
|
|
|
|
char buffer[1024];
|
2019-01-16 18:29:17 +01:00
|
|
|
FILE* from_child = android::base::Fdopen(std::move(pipe_read), "r");
|
2016-12-29 05:55:51 +01:00
|
|
|
while (fgets(buffer, sizeof(buffer), from_child) != nullptr) {
|
|
|
|
std::string line(buffer);
|
|
|
|
size_t space = line.find_first_of(" \n");
|
|
|
|
std::string command(line.substr(0, space));
|
|
|
|
if (command.empty()) continue;
|
|
|
|
|
|
|
|
// Get rid of the leading and trailing space and/or newline.
|
|
|
|
std::string args = space == std::string::npos ? "" : android::base::Trim(line.substr(space));
|
|
|
|
|
|
|
|
if (command == "progress") {
|
|
|
|
std::vector<std::string> tokens = android::base::Split(args, " ");
|
|
|
|
double fraction;
|
|
|
|
int seconds;
|
|
|
|
if (tokens.size() == 2 && android::base::ParseDouble(tokens[0].c_str(), &fraction) &&
|
|
|
|
android::base::ParseInt(tokens[1], &seconds)) {
|
|
|
|
ui->ShowProgress(fraction * (1 - VERIFICATION_PROGRESS_FRACTION), seconds);
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "invalid \"progress\" parameters: " << line;
|
|
|
|
}
|
|
|
|
} else if (command == "set_progress") {
|
|
|
|
std::vector<std::string> tokens = android::base::Split(args, " ");
|
|
|
|
double fraction;
|
|
|
|
if (tokens.size() == 1 && android::base::ParseDouble(tokens[0].c_str(), &fraction)) {
|
|
|
|
ui->SetProgress(fraction);
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "invalid \"set_progress\" parameters: " << line;
|
|
|
|
}
|
|
|
|
} else if (command == "ui_print") {
|
2017-01-21 22:03:25 +01:00
|
|
|
ui->PrintOnScreenOnly("%s\n", args.c_str());
|
2016-12-29 05:55:51 +01:00
|
|
|
fflush(stdout);
|
|
|
|
} else if (command == "wipe_cache") {
|
|
|
|
*wipe_cache = true;
|
|
|
|
} else if (command == "clear_display") {
|
|
|
|
ui->SetBackground(RecoveryUI::NONE);
|
|
|
|
} else if (command == "enable_reboot") {
|
|
|
|
// packages can explicitly request that they want the user
|
|
|
|
// to be able to reboot during installation (useful for
|
|
|
|
// debugging packages that don't exit).
|
|
|
|
ui->SetEnableReboot(true);
|
|
|
|
} else if (command == "retry_update") {
|
|
|
|
retry_update = true;
|
|
|
|
} else if (command == "log") {
|
|
|
|
if (!args.empty()) {
|
|
|
|
// Save the logging request from updater and write to last_install later.
|
2017-05-01 21:23:17 +02:00
|
|
|
log_buffer->push_back(args);
|
2016-12-29 05:55:51 +01:00
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "invalid \"log\" parameters: " << line;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "unknown command [" << command << "]";
|
2009-06-04 19:24:53 +02:00
|
|
|
}
|
2016-12-29 05:55:51 +01:00
|
|
|
}
|
|
|
|
fclose(from_child);
|
|
|
|
|
|
|
|
int status;
|
|
|
|
waitpid(pid, &status, 0);
|
2017-03-27 23:12:26 +02:00
|
|
|
|
2017-06-08 02:59:55 +02:00
|
|
|
logger_finished.store(true);
|
2017-03-27 23:12:26 +02:00
|
|
|
finish_log_temperature.notify_one();
|
|
|
|
temperature_logger.join();
|
|
|
|
|
2016-12-29 05:55:51 +01:00
|
|
|
if (retry_update) {
|
|
|
|
return INSTALL_RETRY;
|
|
|
|
}
|
2018-11-08 00:13:30 +01:00
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
if (WEXITSTATUS(status) != EXIT_SUCCESS) {
|
2019-06-12 00:43:43 +02:00
|
|
|
LOG(ERROR) << "Error in " << package_path << " (status " << WEXITSTATUS(status) << ")";
|
2018-11-08 00:13:30 +01:00
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
} else if (WIFSIGNALED(status)) {
|
2019-06-12 00:43:43 +02:00
|
|
|
LOG(ERROR) << "Error in " << package_path << " (killed by signal " << WTERMSIG(status) << ")";
|
2016-12-29 05:55:51 +01:00
|
|
|
return INSTALL_ERROR;
|
2018-11-08 00:13:30 +01:00
|
|
|
} else {
|
|
|
|
LOG(FATAL) << "Invalid status code " << status;
|
2016-12-29 05:55:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return INSTALL_SUCCESS;
|
2009-06-04 19:24:53 +02:00
|
|
|
}
|
|
|
|
|
2019-06-12 00:43:43 +02:00
|
|
|
static InstallResult VerifyAndInstallPackage(Package* package, bool* wipe_cache,
|
|
|
|
std::vector<std::string>* log_buffer, int retry_count,
|
|
|
|
int* max_temperature, RecoveryUI* ui) {
|
2017-05-01 21:23:17 +02:00
|
|
|
ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
|
|
|
|
// Give verification half the progress bar...
|
|
|
|
ui->SetProgressType(RecoveryUI::DETERMINATE);
|
|
|
|
ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
|
2016-04-30 20:49:59 +02:00
|
|
|
|
2017-05-01 21:23:17 +02:00
|
|
|
// Verify package.
|
2019-06-12 00:43:43 +02:00
|
|
|
if (!verify_package(package, ui)) {
|
2017-05-01 21:23:17 +02:00
|
|
|
log_buffer->push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure));
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-05-01 21:23:17 +02:00
|
|
|
// Verify and install the contents of the package.
|
|
|
|
ui->Print("Installing update...\n");
|
|
|
|
if (retry_count > 0) {
|
|
|
|
ui->Print("Retry attempt: %d\n", retry_count);
|
|
|
|
}
|
|
|
|
ui->SetEnableReboot(false);
|
2019-06-12 00:43:43 +02:00
|
|
|
auto result = TryUpdateBinary(package, wipe_cache, log_buffer, retry_count, max_temperature, ui);
|
2017-05-01 21:23:17 +02:00
|
|
|
ui->SetEnableReboot(true);
|
|
|
|
ui->Print("\n");
|
|
|
|
|
|
|
|
return result;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2011-04-12 18:28:10 +02:00
|
|
|
|
2019-06-12 00:43:43 +02:00
|
|
|
InstallResult InstallPackage(Package* package, const std::string_view package_id,
|
|
|
|
bool should_wipe_cache, int retry_count, RecoveryUI* ui) {
|
2017-04-19 06:35:12 +02:00
|
|
|
auto start = std::chrono::system_clock::now();
|
|
|
|
|
|
|
|
int start_temperature = GetMaxValueFromThermalZone();
|
|
|
|
int max_temperature = start_temperature;
|
|
|
|
|
2019-04-30 08:48:02 +02:00
|
|
|
InstallResult result;
|
2017-04-19 06:35:12 +02:00
|
|
|
std::vector<std::string> log_buffer;
|
2019-06-12 00:43:43 +02:00
|
|
|
|
2019-05-15 22:59:39 +02:00
|
|
|
ui->Print("Supported API: %d\n", kRecoveryApiVersion);
|
|
|
|
|
2019-06-12 00:43:43 +02:00
|
|
|
ui->Print("Finding update package...\n");
|
|
|
|
LOG(INFO) << "Update package id: " << package_id;
|
|
|
|
if (!package) {
|
|
|
|
log_buffer.push_back(android::base::StringPrintf("error: %d", kMapFileFailure));
|
|
|
|
result = INSTALL_CORRUPT;
|
|
|
|
} else if (setup_install_mounts() != 0) {
|
2017-04-19 06:35:12 +02:00
|
|
|
LOG(ERROR) << "failed to set up expected mounts for install; aborting";
|
|
|
|
result = INSTALL_ERROR;
|
|
|
|
} else {
|
2019-04-13 01:22:15 +02:00
|
|
|
bool updater_wipe_cache = false;
|
2019-06-12 00:43:43 +02:00
|
|
|
result = VerifyAndInstallPackage(package, &updater_wipe_cache, &log_buffer, retry_count,
|
|
|
|
&max_temperature, ui);
|
2019-04-13 01:22:15 +02:00
|
|
|
should_wipe_cache = should_wipe_cache || updater_wipe_cache;
|
2017-04-19 06:35:12 +02:00
|
|
|
}
|
2015-04-08 02:16:35 +02:00
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
// Measure the time spent to apply OTA update in seconds.
|
|
|
|
std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
|
|
|
|
int time_total = static_cast<int>(duration.count());
|
2017-03-27 23:12:26 +02:00
|
|
|
|
2017-09-30 02:11:13 +02:00
|
|
|
bool has_cache = volume_for_mount_point("/cache") != nullptr;
|
2017-04-19 06:35:12 +02:00
|
|
|
// Skip logging the uncrypt_status on devices without /cache.
|
|
|
|
if (has_cache) {
|
|
|
|
static constexpr const char* UNCRYPT_STATUS = "/cache/recovery/uncrypt_status";
|
|
|
|
if (ensure_path_mounted(UNCRYPT_STATUS) != 0) {
|
|
|
|
LOG(WARNING) << "Can't mount " << UNCRYPT_STATUS;
|
2013-08-21 01:03:25 +02:00
|
|
|
} else {
|
2017-04-19 06:35:12 +02:00
|
|
|
std::string uncrypt_status;
|
|
|
|
if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) {
|
|
|
|
PLOG(WARNING) << "failed to read uncrypt status";
|
|
|
|
} else if (!android::base::StartsWith(uncrypt_status, "uncrypt_")) {
|
|
|
|
LOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status;
|
2017-03-24 22:13:56 +01:00
|
|
|
} else {
|
2017-04-19 06:35:12 +02:00
|
|
|
log_buffer.push_back(android::base::Trim(uncrypt_status));
|
2017-03-24 22:13:56 +01:00
|
|
|
}
|
2011-04-12 18:28:10 +02:00
|
|
|
}
|
2017-04-19 06:35:12 +02:00
|
|
|
}
|
2016-09-26 20:39:14 +02:00
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
// The first two lines need to be the package name and install result.
|
|
|
|
std::vector<std::string> log_header = {
|
2019-06-12 00:43:43 +02:00
|
|
|
std::string(package_id),
|
2017-04-19 06:35:12 +02:00
|
|
|
result == INSTALL_SUCCESS ? "1" : "0",
|
|
|
|
"time_total: " + std::to_string(time_total),
|
|
|
|
"retry: " + std::to_string(retry_count),
|
|
|
|
};
|
2017-03-27 23:12:26 +02:00
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
int end_temperature = GetMaxValueFromThermalZone();
|
|
|
|
max_temperature = std::max(end_temperature, max_temperature);
|
|
|
|
if (start_temperature > 0) {
|
|
|
|
log_buffer.push_back("temperature_start: " + std::to_string(start_temperature));
|
|
|
|
}
|
|
|
|
if (end_temperature > 0) {
|
|
|
|
log_buffer.push_back("temperature_end: " + std::to_string(end_temperature));
|
|
|
|
}
|
|
|
|
if (max_temperature > 0) {
|
|
|
|
log_buffer.push_back("temperature_max: " + std::to_string(max_temperature));
|
|
|
|
}
|
2016-09-26 20:39:14 +02:00
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
std::string log_content =
|
|
|
|
android::base::Join(log_header, "\n") + "\n" + android::base::Join(log_buffer, "\n") + "\n";
|
2018-04-26 03:59:40 +02:00
|
|
|
const std::string& install_file = Paths::Get().temporary_install_file();
|
2017-04-19 06:35:12 +02:00
|
|
|
if (!android::base::WriteStringToFile(log_content, install_file)) {
|
|
|
|
PLOG(ERROR) << "failed to write " << install_file;
|
|
|
|
}
|
2016-09-26 20:39:14 +02:00
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
// Write a copy into last_log.
|
|
|
|
LOG(INFO) << log_content;
|
|
|
|
|
2019-04-13 01:22:15 +02:00
|
|
|
if (result == INSTALL_SUCCESS && should_wipe_cache) {
|
|
|
|
if (!WipeCache(ui, nullptr)) {
|
|
|
|
result = INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 06:35:12 +02:00
|
|
|
return result;
|
2011-04-12 18:28:10 +02:00
|
|
|
}
|
2016-06-09 23:09:39 +02:00
|
|
|
|
2019-03-23 00:08:52 +01:00
|
|
|
bool verify_package(Package* package, RecoveryUI* ui) {
|
2018-10-20 00:52:17 +02:00
|
|
|
static constexpr const char* CERTIFICATE_ZIP_FILE = "/system/etc/security/otacerts.zip";
|
|
|
|
std::vector<Certificate> loaded_keys = LoadKeysFromZipfile(CERTIFICATE_ZIP_FILE);
|
|
|
|
if (loaded_keys.empty()) {
|
2017-03-17 01:37:38 +01:00
|
|
|
LOG(ERROR) << "Failed to load keys";
|
|
|
|
return false;
|
|
|
|
}
|
2018-10-20 00:52:17 +02:00
|
|
|
LOG(INFO) << loaded_keys.size() << " key(s) loaded from " << CERTIFICATE_ZIP_FILE;
|
2017-03-17 01:37:38 +01:00
|
|
|
|
|
|
|
// Verify package.
|
|
|
|
ui->Print("Verifying update package...\n");
|
|
|
|
auto t0 = std::chrono::system_clock::now();
|
2019-02-25 23:14:01 +01:00
|
|
|
int err = verify_file(package, loaded_keys);
|
2017-03-17 01:37:38 +01:00
|
|
|
std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0;
|
|
|
|
ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err);
|
|
|
|
if (err != VERIFY_SUCCESS) {
|
|
|
|
LOG(ERROR) << "Signature verification failed";
|
|
|
|
LOG(ERROR) << "error: " << kZipVerificationFailure;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2016-06-09 23:09:39 +02:00
|
|
|
}
|
2019-08-06 21:32:05 +02:00
|
|
|
|
|
|
|
bool SetupPackageMount(const std::string& package_path, bool* should_use_fuse) {
|
|
|
|
CHECK(should_use_fuse != nullptr);
|
|
|
|
|
|
|
|
if (package_path.empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
*should_use_fuse = true;
|
|
|
|
if (package_path[0] == '@') {
|
|
|
|
auto block_map_path = package_path.substr(1);
|
|
|
|
if (ensure_path_mounted(block_map_path) != 0) {
|
|
|
|
LOG(ERROR) << "Failed to mount " << block_map_path;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// uncrypt only produces block map only if the package stays on /data.
|
|
|
|
*should_use_fuse = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Package is not a block map file.
|
|
|
|
if (ensure_path_mounted(package_path) != 0) {
|
|
|
|
LOG(ERROR) << "Failed to mount " << package_path;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reject the package if the input path doesn't equal the canonicalized path.
|
|
|
|
// e.g. /cache/../sdcard/update_package.
|
|
|
|
std::error_code ec;
|
|
|
|
auto canonical_path = std::filesystem::canonical(package_path, ec);
|
|
|
|
if (ec) {
|
|
|
|
LOG(ERROR) << "Failed to get canonical of " << package_path << ", " << ec.message();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (canonical_path.string() != package_path) {
|
|
|
|
LOG(ERROR) << "Installation aborts. The canonical path " << canonical_path.string()
|
|
|
|
<< " doesn't equal the original path " << package_path;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr const char* CACHE_ROOT = "/cache";
|
|
|
|
if (android::base::StartsWith(package_path, CACHE_ROOT)) {
|
|
|
|
*should_use_fuse = false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|