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.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2016-04-14 01:39:56 +02:00
|
|
|
#include <chrono>
|
2016-08-04 06:03:53 +02:00
|
|
|
#include <limits>
|
|
|
|
#include <map>
|
2016-05-13 21:13:15 +02:00
|
|
|
#include <string>
|
2016-02-02 23:02:27 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2016-06-08 23:30:04 +02:00
|
|
|
#include <android-base/parseint.h>
|
2016-04-30 20:49:59 +02:00
|
|
|
#include <android-base/stringprintf.h>
|
|
|
|
#include <android-base/strings.h>
|
2016-08-04 06:03:53 +02:00
|
|
|
#include <cutils/properties.h>
|
2016-04-30 20:49:59 +02:00
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
#include "common.h"
|
2016-04-30 20:49:59 +02:00
|
|
|
#include "error_code.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
#include "install.h"
|
|
|
|
#include "minui/minui.h"
|
|
|
|
#include "minzip/SysUtil.h"
|
|
|
|
#include "minzip/Zip.h"
|
|
|
|
#include "mtdutils/mounts.h"
|
|
|
|
#include "mtdutils/mtdutils.h"
|
|
|
|
#include "roots.h"
|
2011-10-28 19:33:05 +02:00
|
|
|
#include "ui.h"
|
2016-04-14 01:39:56 +02:00
|
|
|
#include "verifier.h"
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
extern RecoveryUI* ui;
|
|
|
|
|
2009-06-04 19:24:53 +02:00
|
|
|
#define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
|
2016-08-04 06:03:53 +02:00
|
|
|
static constexpr const char* AB_OTA_PAYLOAD_PROPERTIES = "payload_properties.txt";
|
|
|
|
static constexpr const char* AB_OTA_PAYLOAD = "payload.bin";
|
2009-04-02 00:48:46 +02:00
|
|
|
#define PUBLIC_KEYS_FILE "/res/keys"
|
2016-06-08 23:30:04 +02:00
|
|
|
static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
// Default allocation of progress bar segments to operations
|
|
|
|
static const int VERIFICATION_PROGRESS_TIME = 60;
|
|
|
|
static const float VERIFICATION_PROGRESS_FRACTION = 0.25;
|
|
|
|
static const float DEFAULT_FILES_PROGRESS_FRACTION = 0.4;
|
|
|
|
static const float DEFAULT_IMAGE_PROGRESS_FRACTION = 0.1;
|
|
|
|
|
2016-06-08 23:30:04 +02:00
|
|
|
// This function parses and returns the build.version.incremental
|
|
|
|
static int parse_build_number(std::string str) {
|
|
|
|
size_t pos = str.find("=");
|
|
|
|
if (pos != std::string::npos) {
|
|
|
|
std::string num_string = android::base::Trim(str.substr(pos+1));
|
|
|
|
int build_number;
|
|
|
|
if (android::base::ParseInt(num_string.c_str(), &build_number, 0)) {
|
|
|
|
return build_number;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LOGE("Failed to parse build number in %s.\n", str.c_str());
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-06-09 23:09:39 +02:00
|
|
|
bool read_metadata_from_package(ZipArchive* zip, std::string* meta_data) {
|
2016-06-08 23:30:04 +02:00
|
|
|
const ZipEntry* meta_entry = mzFindZipEntry(zip, METADATA_PATH);
|
|
|
|
if (meta_entry == nullptr) {
|
|
|
|
LOGE("Failed to find %s in update package.\n", METADATA_PATH);
|
2016-06-09 23:09:39 +02:00
|
|
|
return false;
|
2016-06-08 23:30:04 +02:00
|
|
|
}
|
|
|
|
|
2016-06-09 23:09:39 +02:00
|
|
|
meta_data->resize(meta_entry->uncompLen, '\0');
|
|
|
|
if (!mzReadZipEntry(zip, meta_entry, &(*meta_data)[0], meta_entry->uncompLen)) {
|
2016-06-08 23:30:04 +02:00
|
|
|
LOGE("Failed to read metadata in update package.\n");
|
2016-06-09 23:09:39 +02:00
|
|
|
return false;
|
2016-06-08 23:30:04 +02:00
|
|
|
}
|
2016-06-09 23:09:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
2016-06-08 23:30:04 +02:00
|
|
|
|
2016-06-09 23:09:39 +02:00
|
|
|
// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
|
|
|
|
static void read_source_target_build(ZipArchive* zip, std::vector<std::string>& log_buffer) {
|
|
|
|
std::string meta_data;
|
|
|
|
if (!read_metadata_from_package(zip, &meta_data)) {
|
|
|
|
return;
|
|
|
|
}
|
2016-06-08 23:30:04 +02:00
|
|
|
// Examples of the pre-build and post-build strings in metadata:
|
|
|
|
// pre-build-incremental=2943039
|
|
|
|
// post-build-incremental=2951741
|
|
|
|
std::vector<std::string> lines = android::base::Split(meta_data, "\n");
|
|
|
|
for (const std::string& line : lines) {
|
|
|
|
std::string str = android::base::Trim(line);
|
|
|
|
if (android::base::StartsWith(str, "pre-build-incremental")){
|
|
|
|
int source_build = parse_build_number(str);
|
|
|
|
if (source_build != -1) {
|
|
|
|
log_buffer.push_back(android::base::StringPrintf("source_build: %d",
|
|
|
|
source_build));
|
|
|
|
}
|
|
|
|
} else if (android::base::StartsWith(str, "post-build-incremental")) {
|
|
|
|
int target_build = parse_build_number(str);
|
|
|
|
if (target_build != -1) {
|
|
|
|
log_buffer.push_back(android::base::StringPrintf("target_build: %d",
|
|
|
|
target_build));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
// Extract the update binary from the open zip archive |zip| located at |path|
|
|
|
|
// and store into |cmd| the command line that should be called. The |status_fd|
|
|
|
|
// is the file descriptor the child process should use to report back the
|
|
|
|
// progress of the update.
|
2009-06-04 19:24:53 +02:00
|
|
|
static int
|
2016-08-04 06:03:53 +02:00
|
|
|
update_binary_command(const char* path, ZipArchive* zip, int retry_count,
|
|
|
|
int status_fd, std::vector<std::string>* cmd);
|
|
|
|
|
|
|
|
#ifdef AB_OTA_UPDATER
|
|
|
|
|
|
|
|
// Parses the metadata of the OTA package in |zip| and checks whether we are
|
|
|
|
// allowed to accept this A/B package. Downgrading is not allowed unless
|
|
|
|
// explicitly enabled in the package and only for incremental packages.
|
|
|
|
static int check_newer_ab_build(ZipArchive* zip)
|
2016-05-13 21:13:15 +02:00
|
|
|
{
|
2016-08-04 06:03:53 +02:00
|
|
|
std::string metadata_str;
|
|
|
|
if (!read_metadata_from_package(zip, &metadata_str)) {
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
std::map<std::string, std::string> metadata;
|
|
|
|
for (const std::string& line : android::base::Split(metadata_str, "\n")) {
|
|
|
|
size_t eq = line.find('=');
|
|
|
|
if (eq != std::string::npos) {
|
|
|
|
metadata[line.substr(0, eq)] = line.substr(eq + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
char value[PROPERTY_VALUE_MAX];
|
|
|
|
|
|
|
|
property_get("ro.product.device", value, "");
|
|
|
|
const std::string& pkg_device = metadata["pre-device"];
|
|
|
|
if (pkg_device != value || pkg_device.empty()) {
|
|
|
|
LOGE("Package is for product %s but expected %s\n",
|
|
|
|
pkg_device.c_str(), value);
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We allow the package to not have any serialno, but if it has a non-empty
|
|
|
|
// value it should match.
|
|
|
|
property_get("ro.serialno", value, "");
|
|
|
|
const std::string& pkg_serial_no = metadata["serialno"];
|
|
|
|
if (!pkg_serial_no.empty() && pkg_serial_no != value) {
|
|
|
|
LOGE("Package is for serial %s\n", pkg_serial_no.c_str());
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
2016-06-08 23:30:04 +02:00
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
if (metadata["ota-type"] != "AB") {
|
|
|
|
LOGE("Package is not A/B\n");
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Incremental updates should match the current build.
|
|
|
|
property_get("ro.build.version.incremental", value, "");
|
|
|
|
const std::string& pkg_pre_build = metadata["pre-build-incremental"];
|
|
|
|
if (!pkg_pre_build.empty() && pkg_pre_build != value) {
|
|
|
|
LOGE("Package is for source build %s but expected %s\n",
|
|
|
|
pkg_pre_build.c_str(), value);
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
property_get("ro.build.fingerprint", value, "");
|
|
|
|
const std::string& pkg_pre_build_fingerprint = metadata["pre-build"];
|
|
|
|
if (!pkg_pre_build_fingerprint.empty() &&
|
|
|
|
pkg_pre_build_fingerprint != value) {
|
|
|
|
LOGE("Package is for source build %s but expected %s\n",
|
|
|
|
pkg_pre_build_fingerprint.c_str(), value);
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for downgrade version.
|
|
|
|
int64_t build_timestampt = property_get_int64(
|
|
|
|
"ro.build.date.utc", std::numeric_limits<int64_t>::max());
|
|
|
|
int64_t pkg_post_timespampt = 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.
|
|
|
|
if (metadata["post-timestamp"].empty() ||
|
|
|
|
!android::base::ParseInt(metadata["post-timestamp"].c_str(),
|
|
|
|
&pkg_post_timespampt) ||
|
|
|
|
pkg_post_timespampt < build_timestampt) {
|
|
|
|
if (metadata["ota-downgrade"] != "yes") {
|
|
|
|
LOGE("Update package is older than the current build, expected a "
|
|
|
|
"build newer than timestamp %" PRIu64 " but package has "
|
|
|
|
"timestamp %" PRIu64 " and downgrade not allowed.\n",
|
|
|
|
build_timestampt, pkg_post_timespampt);
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
if (pkg_pre_build_fingerprint.empty()) {
|
|
|
|
LOGE("Downgrade package must have a pre-build version set, not "
|
|
|
|
"allowed.\n");
|
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
update_binary_command(const char* path, ZipArchive* zip, int retry_count,
|
|
|
|
int status_fd, std::vector<std::string>* cmd)
|
|
|
|
{
|
|
|
|
int ret = check_newer_ab_build(zip);
|
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For A/B updates we extract the payload properties to a buffer and obtain
|
|
|
|
// the RAW payload offset in the zip file.
|
|
|
|
const ZipEntry* properties_entry =
|
|
|
|
mzFindZipEntry(zip, AB_OTA_PAYLOAD_PROPERTIES);
|
|
|
|
if (!properties_entry) {
|
|
|
|
LOGE("Can't find %s\n", AB_OTA_PAYLOAD_PROPERTIES);
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
std::vector<unsigned char> payload_properties(
|
|
|
|
mzGetZipEntryUncompLen(properties_entry));
|
|
|
|
if (!mzExtractZipEntryToBuffer(zip, properties_entry,
|
|
|
|
payload_properties.data())) {
|
|
|
|
LOGE("Can't extract %s\n", AB_OTA_PAYLOAD_PROPERTIES);
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ZipEntry* payload_entry = mzFindZipEntry(zip, AB_OTA_PAYLOAD);
|
|
|
|
if (!payload_entry) {
|
|
|
|
LOGE("Can't find %s\n", AB_OTA_PAYLOAD);
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
long payload_offset = mzGetZipEntryOffset(payload_entry);
|
|
|
|
*cmd = {
|
|
|
|
"/sbin/update_engine_sideload",
|
|
|
|
android::base::StringPrintf("--payload=file://%s", path),
|
|
|
|
android::base::StringPrintf("--offset=%ld", payload_offset),
|
|
|
|
"--headers=" + std::string(payload_properties.begin(),
|
|
|
|
payload_properties.end()),
|
|
|
|
android::base::StringPrintf("--status_fd=%d", status_fd),
|
|
|
|
};
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else // !AB_OTA_UPDATER
|
|
|
|
|
|
|
|
static int
|
|
|
|
update_binary_command(const char* path, ZipArchive* zip, int retry_count,
|
|
|
|
int status_fd, std::vector<std::string>* cmd)
|
|
|
|
{
|
|
|
|
// On traditional updates we extract the update binary from the package.
|
2009-06-04 19:24:53 +02:00
|
|
|
const ZipEntry* binary_entry =
|
|
|
|
mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME);
|
|
|
|
if (binary_entry == NULL) {
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2011-10-28 19:33:05 +02:00
|
|
|
const char* binary = "/tmp/update_binary";
|
2009-06-04 19:24:53 +02:00
|
|
|
unlink(binary);
|
|
|
|
int fd = creat(binary, 0755);
|
|
|
|
if (fd < 0) {
|
|
|
|
LOGE("Can't make %s\n", binary);
|
2011-10-19 19:51:12 +02:00
|
|
|
return INSTALL_ERROR;
|
2009-06-04 19:24:53 +02:00
|
|
|
}
|
|
|
|
bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd);
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME);
|
2011-10-19 19:51:12 +02:00
|
|
|
return INSTALL_ERROR;
|
2009-06-04 19:24:53 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
*cmd = {
|
|
|
|
binary,
|
|
|
|
EXPAND(RECOVERY_API_VERSION), // defined in Android.mk
|
|
|
|
std::to_string(status_fd),
|
|
|
|
path,
|
|
|
|
};
|
|
|
|
if (retry_count > 0)
|
|
|
|
cmd->push_back("retry");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif // !AB_OTA_UPDATER
|
|
|
|
|
|
|
|
// If the package contains an update binary, extract it and run it.
|
|
|
|
static int
|
|
|
|
try_update_binary(const char* path, ZipArchive* zip, bool* wipe_cache,
|
|
|
|
std::vector<std::string>& log_buffer, int retry_count)
|
|
|
|
{
|
|
|
|
read_source_target_build(zip, log_buffer);
|
|
|
|
|
2009-06-04 19:24:53 +02:00
|
|
|
int pipefd[2];
|
|
|
|
pipe(pipefd);
|
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
std::vector<std::string> args;
|
|
|
|
int ret = update_binary_command(path, zip, retry_count, pipefd[1], &args);
|
|
|
|
mzCloseZipArchive(zip);
|
|
|
|
if (ret) {
|
|
|
|
close(pipefd[0]);
|
|
|
|
close(pipefd[1]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-06-04 19:24:53 +02:00
|
|
|
// When executing the update binary contained in the package, the
|
|
|
|
// arguments passed are:
|
|
|
|
//
|
2009-06-18 02:29:40 +02:00
|
|
|
// - the version number for this interface
|
2009-06-04 19:24:53 +02:00
|
|
|
//
|
|
|
|
// - an fd to which the program can write in order to update the
|
|
|
|
// progress bar. The program can write single-line commands:
|
|
|
|
//
|
|
|
|
// progress <frac> <secs>
|
2009-06-24 18:36:20 +02:00
|
|
|
// 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
|
2015-04-11 01:14:52 +02:00
|
|
|
// progress of this segment of the bar.
|
2009-06-24 18:36:20 +02: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.
|
2009-06-04 19:24:53 +02:00
|
|
|
//
|
|
|
|
// firmware <"hboot"|"radio"> <filename>
|
|
|
|
// arrange to install the contents of <filename> in the
|
2010-02-02 22:09:52 +01:00
|
|
|
// given partition on reboot.
|
|
|
|
//
|
|
|
|
// (API v2: <filename> may start with "PACKAGE:" to
|
|
|
|
// indicate taking a file from the OTA package.)
|
|
|
|
//
|
|
|
|
// (API v3: this command no longer exists.)
|
2009-06-04 19:24:53 +02:00
|
|
|
//
|
2009-06-12 21:24:39 +02:00
|
|
|
// ui_print <string>
|
|
|
|
// display <string> on the screen.
|
|
|
|
//
|
2015-04-11 01:14:52 +02:00
|
|
|
// wipe_cache
|
|
|
|
// a wipe of cache will be performed following a successful
|
|
|
|
// installation.
|
|
|
|
//
|
|
|
|
// clear_display
|
|
|
|
// turn off the text display.
|
|
|
|
//
|
|
|
|
// 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).
|
|
|
|
//
|
2009-06-04 19:24:53 +02:00
|
|
|
// - the name of the package zip file.
|
|
|
|
//
|
2016-05-31 18:29:49 +02:00
|
|
|
// - an optional argument "retry" if this update is a retry of a failed
|
|
|
|
// update attempt.
|
|
|
|
//
|
2009-06-04 19:24:53 +02:00
|
|
|
|
2016-08-04 06:03:53 +02:00
|
|
|
// Convert the vector to a NULL-terminated char* array suitable for execv.
|
|
|
|
const char* chr_args[args.size() + 1];
|
|
|
|
chr_args[args.size()] = NULL;
|
|
|
|
for (size_t i = 0; i < args.size(); i++) {
|
|
|
|
chr_args[i] = args[i].c_str();
|
|
|
|
}
|
2009-06-04 19:24:53 +02:00
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid == 0) {
|
2013-07-17 19:41:49 +02:00
|
|
|
umask(022);
|
2009-06-04 19:24:53 +02:00
|
|
|
close(pipefd[0]);
|
2016-08-04 06:03:53 +02:00
|
|
|
execv(chr_args[0], const_cast<char**>(chr_args));
|
|
|
|
fprintf(stdout, "E:Can't run %s (%s)\n", chr_args[0], strerror(errno));
|
2009-06-04 19:24:53 +02:00
|
|
|
_exit(-1);
|
|
|
|
}
|
|
|
|
close(pipefd[1]);
|
|
|
|
|
2015-03-25 23:51:15 +01:00
|
|
|
*wipe_cache = false;
|
2016-02-06 03:25:58 +01:00
|
|
|
bool retry_update = false;
|
2011-10-19 19:51:12 +02:00
|
|
|
|
2009-07-15 01:31:56 +02:00
|
|
|
char buffer[1024];
|
2009-06-04 19:24:53 +02:00
|
|
|
FILE* from_child = fdopen(pipefd[0], "r");
|
|
|
|
while (fgets(buffer, sizeof(buffer), from_child) != NULL) {
|
|
|
|
char* command = strtok(buffer, " \n");
|
|
|
|
if (command == NULL) {
|
|
|
|
continue;
|
|
|
|
} else if (strcmp(command, "progress") == 0) {
|
|
|
|
char* fraction_s = strtok(NULL, " \n");
|
|
|
|
char* seconds_s = strtok(NULL, " \n");
|
|
|
|
|
|
|
|
float fraction = strtof(fraction_s, NULL);
|
|
|
|
int seconds = strtol(seconds_s, NULL, 10);
|
|
|
|
|
2011-10-29 00:13:10 +02:00
|
|
|
ui->ShowProgress(fraction * (1-VERIFICATION_PROGRESS_FRACTION), seconds);
|
2009-06-24 18:36:20 +02:00
|
|
|
} else if (strcmp(command, "set_progress") == 0) {
|
|
|
|
char* fraction_s = strtok(NULL, " \n");
|
|
|
|
float fraction = strtof(fraction_s, NULL);
|
2011-10-29 00:13:10 +02:00
|
|
|
ui->SetProgress(fraction);
|
2009-06-12 21:24:39 +02:00
|
|
|
} else if (strcmp(command, "ui_print") == 0) {
|
|
|
|
char* str = strtok(NULL, "\n");
|
|
|
|
if (str) {
|
2015-05-20 02:02:16 +02:00
|
|
|
ui->PrintOnScreenOnly("%s", str);
|
2009-06-12 21:24:39 +02:00
|
|
|
} else {
|
2015-05-20 02:02:16 +02:00
|
|
|
ui->PrintOnScreenOnly("\n");
|
2009-06-12 21:24:39 +02:00
|
|
|
}
|
2013-07-09 21:29:45 +02:00
|
|
|
fflush(stdout);
|
2011-10-19 19:51:12 +02:00
|
|
|
} else if (strcmp(command, "wipe_cache") == 0) {
|
2015-03-25 23:51:15 +01:00
|
|
|
*wipe_cache = true;
|
2012-04-12 20:01:22 +02:00
|
|
|
} else if (strcmp(command, "clear_display") == 0) {
|
|
|
|
ui->SetBackground(RecoveryUI::NONE);
|
2014-05-23 17:40:35 +02:00
|
|
|
} else if (strcmp(command, "enable_reboot") == 0) {
|
|
|
|
// 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);
|
2016-02-06 03:25:58 +01:00
|
|
|
} else if (strcmp(command, "retry_update") == 0) {
|
|
|
|
retry_update = true;
|
2016-05-13 21:13:15 +02:00
|
|
|
} else if (strcmp(command, "log") == 0) {
|
|
|
|
// Save the logging request from updater and write to
|
|
|
|
// last_install later.
|
|
|
|
log_buffer.push_back(std::string(strtok(NULL, "\n")));
|
2009-06-04 19:24:53 +02:00
|
|
|
} else {
|
|
|
|
LOGE("unknown command [%s]\n", command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(from_child);
|
|
|
|
|
|
|
|
int status;
|
|
|
|
waitpid(pid, &status, 0);
|
2016-02-06 03:25:58 +01:00
|
|
|
if (retry_update) {
|
|
|
|
return INSTALL_RETRY;
|
|
|
|
}
|
2009-06-04 19:24:53 +02:00
|
|
|
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
|
2009-06-10 23:11:53 +02:00
|
|
|
LOGE("Error in %s\n(Status %d)\n", path, WEXITSTATUS(status));
|
2009-06-04 19:24:53 +02:00
|
|
|
return INSTALL_ERROR;
|
|
|
|
}
|
|
|
|
|
2010-02-02 22:09:52 +01:00
|
|
|
return INSTALL_SUCCESS;
|
2009-06-04 19:24:53 +02:00
|
|
|
}
|
|
|
|
|
2011-04-12 18:28:10 +02:00
|
|
|
static int
|
2016-05-13 21:13:15 +02:00
|
|
|
really_install_package(const char *path, bool* wipe_cache, bool needs_mount,
|
2016-05-31 18:29:49 +02:00
|
|
|
std::vector<std::string>& log_buffer, int retry_count)
|
2009-03-04 04:28:42 +01:00
|
|
|
{
|
2012-08-23 02:26:40 +02:00
|
|
|
ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
|
2011-10-29 00:13:10 +02:00
|
|
|
ui->Print("Finding update package...\n");
|
2013-08-21 01:03:25 +02:00
|
|
|
// Give verification half the progress bar...
|
|
|
|
ui->SetProgressType(RecoveryUI::DETERMINATE);
|
|
|
|
ui->ShowProgress(VERIFICATION_PROGRESS_FRACTION, VERIFICATION_PROGRESS_TIME);
|
2010-09-20 21:16:13 +02:00
|
|
|
LOGI("Update location: %s\n", path);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
// Map the update package into memory.
|
|
|
|
ui->Print("Opening update package...\n");
|
|
|
|
|
2014-06-27 00:35:51 +02:00
|
|
|
if (path && needs_mount) {
|
2014-01-13 23:16:58 +01:00
|
|
|
if (path[0] == '@') {
|
|
|
|
ensure_path_mounted(path+1);
|
|
|
|
} else {
|
|
|
|
ensure_path_mounted(path);
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
MemMapping map;
|
|
|
|
if (sysMapFile(path, &map) != 0) {
|
|
|
|
LOGE("failed to map file\n");
|
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2016-04-14 01:39:56 +02:00
|
|
|
// Verify package.
|
2016-06-09 23:09:39 +02:00
|
|
|
if (!verify_package(map.addr, map.length)) {
|
2016-04-30 20:49:59 +02:00
|
|
|
log_buffer.push_back(android::base::StringPrintf("error: %d", kZipVerificationFailure));
|
2014-01-13 23:16:58 +01:00
|
|
|
sysReleaseMap(&map);
|
2009-08-13 03:30:03 +02:00
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2016-04-14 01:39:56 +02:00
|
|
|
// Try to open the package.
|
2009-03-04 04:28:42 +01:00
|
|
|
ZipArchive zip;
|
2016-06-09 23:09:39 +02:00
|
|
|
int err = mzOpenZipArchive(map.addr, map.length, &zip);
|
2009-03-04 04:28:42 +01:00
|
|
|
if (err != 0) {
|
|
|
|
LOGE("Can't open %s\n(%s)\n", path, err != -1 ? strerror(err) : "bad");
|
2016-04-30 20:49:59 +02:00
|
|
|
log_buffer.push_back(android::base::StringPrintf("error: %d", kZipOpenFailure));
|
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
sysReleaseMap(&map);
|
2009-03-04 04:28:42 +01:00
|
|
|
return INSTALL_CORRUPT;
|
|
|
|
}
|
|
|
|
|
2016-04-14 01:39:56 +02:00
|
|
|
// Verify and install the contents of the package.
|
2011-10-29 00:13:10 +02:00
|
|
|
ui->Print("Installing update...\n");
|
2016-05-31 18:29:49 +02:00
|
|
|
if (retry_count > 0) {
|
|
|
|
ui->Print("Retry attempt: %d\n", retry_count);
|
|
|
|
}
|
2014-05-23 17:40:35 +02:00
|
|
|
ui->SetEnableReboot(false);
|
2016-05-31 18:29:49 +02:00
|
|
|
int result = try_update_binary(path, &zip, wipe_cache, log_buffer, retry_count);
|
2014-05-23 17:40:35 +02:00
|
|
|
ui->SetEnableReboot(true);
|
2014-06-27 00:35:51 +02:00
|
|
|
ui->Print("\n");
|
2014-01-13 23:16:58 +01:00
|
|
|
|
|
|
|
sysReleaseMap(&map);
|
|
|
|
|
|
|
|
return result;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2011-04-12 18:28:10 +02:00
|
|
|
|
|
|
|
int
|
2015-03-25 23:51:15 +01:00
|
|
|
install_package(const char* path, bool* wipe_cache, const char* install_file,
|
2016-04-30 20:49:59 +02:00
|
|
|
bool needs_mount, int retry_count)
|
2011-04-12 18:28:10 +02:00
|
|
|
{
|
2015-04-08 02:16:35 +02:00
|
|
|
modified_flash = true;
|
2016-05-13 21:13:15 +02:00
|
|
|
auto start = std::chrono::system_clock::now();
|
2015-04-08 02:16:35 +02:00
|
|
|
|
2011-10-19 19:51:12 +02:00
|
|
|
FILE* install_log = fopen_path(install_file, "w");
|
2011-04-12 18:28:10 +02:00
|
|
|
if (install_log) {
|
|
|
|
fputs(path, install_log);
|
|
|
|
fputc('\n', install_log);
|
|
|
|
} else {
|
|
|
|
LOGE("failed to open last_install: %s\n", strerror(errno));
|
|
|
|
}
|
2013-08-21 01:03:25 +02:00
|
|
|
int result;
|
2016-05-13 21:13:15 +02:00
|
|
|
std::vector<std::string> log_buffer;
|
2013-08-21 01:03:25 +02:00
|
|
|
if (setup_install_mounts() != 0) {
|
|
|
|
LOGE("failed to set up expected mounts for install; aborting\n");
|
|
|
|
result = INSTALL_ERROR;
|
|
|
|
} else {
|
2016-05-31 18:29:49 +02:00
|
|
|
result = really_install_package(path, wipe_cache, needs_mount, log_buffer, retry_count);
|
2013-08-21 01:03:25 +02:00
|
|
|
}
|
2016-04-30 20:49:59 +02:00
|
|
|
if (install_log != nullptr) {
|
2011-04-12 18:28:10 +02:00
|
|
|
fputc(result == INSTALL_SUCCESS ? '1' : '0', install_log);
|
|
|
|
fputc('\n', install_log);
|
2016-05-13 21:13:15 +02:00
|
|
|
std::chrono::duration<double> duration = std::chrono::system_clock::now() - start;
|
|
|
|
int count = static_cast<int>(duration.count());
|
|
|
|
// Report the time spent to apply OTA update in seconds.
|
|
|
|
fprintf(install_log, "time_total: %d\n", count);
|
2016-04-30 20:49:59 +02:00
|
|
|
fprintf(install_log, "retry: %d\n", retry_count);
|
2016-05-13 21:13:15 +02:00
|
|
|
|
|
|
|
for (const auto& s : log_buffer) {
|
|
|
|
fprintf(install_log, "%s\n", s.c_str());
|
|
|
|
}
|
|
|
|
|
2011-04-12 18:28:10 +02:00
|
|
|
fclose(install_log);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2016-06-09 23:09:39 +02:00
|
|
|
|
|
|
|
bool verify_package(const unsigned char* package_data, size_t package_size) {
|
|
|
|
std::vector<Certificate> loadedKeys;
|
|
|
|
if (!load_keys(PUBLIC_KEYS_FILE, loadedKeys)) {
|
|
|
|
LOGE("Failed to load keys\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LOGI("%zu key(s) loaded from %s\n", loadedKeys.size(), PUBLIC_KEYS_FILE);
|
|
|
|
|
|
|
|
// Verify package.
|
|
|
|
ui->Print("Verifying update package...\n");
|
|
|
|
auto t0 = std::chrono::system_clock::now();
|
|
|
|
int err = verify_file(const_cast<unsigned char*>(package_data), package_size, loadedKeys);
|
|
|
|
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) {
|
|
|
|
LOGE("Signature verification failed\n");
|
|
|
|
LOGE("error: %d\n", kZipVerificationFailure);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|