Snap for 5110273 from 9b21c7df08 to qt-release
Change-Id: Ifb0d4c2fc75603a97f4b95d808bc7ac450e32f61
This commit is contained in:
+128
-108
@@ -32,9 +32,7 @@
|
||||
#include <condition_variable>
|
||||
#include <functional>
|
||||
#include <limits>
|
||||
#include <map>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
@@ -47,7 +45,6 @@
|
||||
#include <android-base/strings.h>
|
||||
#include <android-base/unique_fd.h>
|
||||
#include <vintf/VintfObjectRecovery.h>
|
||||
#include <ziparchive/zip_archive.h>
|
||||
|
||||
#include "common.h"
|
||||
#include "otautil/error_code.h"
|
||||
@@ -67,18 +64,7 @@ static constexpr float VERIFICATION_PROGRESS_FRACTION = 0.25;
|
||||
|
||||
static std::condition_variable finish_log_temperature;
|
||||
|
||||
// This function parses and returns the build.version.incremental
|
||||
static std::string parse_build_number(const std::string& str) {
|
||||
size_t pos = str.find('=');
|
||||
if (pos != std::string::npos) {
|
||||
return android::base::Trim(str.substr(pos+1));
|
||||
}
|
||||
|
||||
LOG(ERROR) << "Failed to parse build number in " << str;
|
||||
return "";
|
||||
}
|
||||
|
||||
bool read_metadata_from_package(ZipArchiveHandle zip, std::string* metadata) {
|
||||
bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata) {
|
||||
CHECK(metadata != nullptr);
|
||||
|
||||
static constexpr const char* METADATA_PATH = "META-INF/com/android/metadata";
|
||||
@@ -90,101 +76,79 @@ bool read_metadata_from_package(ZipArchiveHandle zip, std::string* metadata) {
|
||||
}
|
||||
|
||||
uint32_t length = entry.uncompressed_length;
|
||||
metadata->resize(length, '\0');
|
||||
int32_t err = ExtractToMemory(zip, &entry, reinterpret_cast<uint8_t*>(&(*metadata)[0]), length);
|
||||
std::string metadata_string(length, '\0');
|
||||
int32_t err =
|
||||
ExtractToMemory(zip, &entry, reinterpret_cast<uint8_t*>(&metadata_string[0]), length);
|
||||
if (err != 0) {
|
||||
LOG(ERROR) << "Failed to extract " << METADATA_PATH << ": " << ErrorCodeString(err);
|
||||
return false;
|
||||
}
|
||||
|
||||
for (const std::string& line : android::base::Split(metadata_string, "\n")) {
|
||||
size_t eq = line.find('=');
|
||||
if (eq != std::string::npos) {
|
||||
metadata->emplace(android::base::Trim(line.substr(0, eq)),
|
||||
android::base::Trim(line.substr(eq + 1)));
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// Read the build.version.incremental of src/tgt from the metadata and log it to last_install.
|
||||
static void read_source_target_build(ZipArchiveHandle zip, std::vector<std::string>* log_buffer) {
|
||||
std::string metadata;
|
||||
if (!read_metadata_from_package(zip, &metadata)) {
|
||||
return;
|
||||
}
|
||||
// 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(metadata, "\n");
|
||||
for (const std::string& line : lines) {
|
||||
std::string str = android::base::Trim(line);
|
||||
if (android::base::StartsWith(str, "pre-build-incremental")) {
|
||||
std::string source_build = parse_build_number(str);
|
||||
if (!source_build.empty()) {
|
||||
log_buffer->push_back("source_build: " + source_build);
|
||||
}
|
||||
} else if (android::base::StartsWith(str, "post-build-incremental")) {
|
||||
std::string target_build = parse_build_number(str);
|
||||
if (!target_build.empty()) {
|
||||
log_buffer->push_back("target_build: " + target_build);
|
||||
}
|
||||
}
|
||||
// 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";
|
||||
}
|
||||
}
|
||||
|
||||
// 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
|
||||
// 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);
|
||||
}
|
||||
|
||||
auto target_build = get_value(metadata, "post-build-incremental");
|
||||
if (!target_build.empty()) {
|
||||
log_buffer->push_back("target_build: " + target_build);
|
||||
}
|
||||
}
|
||||
|
||||
// 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.
|
||||
static int check_newer_ab_build(ZipArchiveHandle zip) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
std::string value = android::base::GetProperty("ro.product.device", "");
|
||||
const std::string& pkg_device = metadata["pre-device"];
|
||||
if (pkg_device != value || pkg_device.empty()) {
|
||||
LOG(ERROR) << "Package is for product " << pkg_device << " but expected " << value;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
// 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.
|
||||
value = android::base::GetProperty("ro.serialno", "");
|
||||
const std::string& pkg_serial_no = metadata["serialno"];
|
||||
if (!pkg_serial_no.empty()) {
|
||||
bool match = false;
|
||||
for (const std::string& number : android::base::Split(pkg_serial_no, "|")) {
|
||||
if (value == android::base::Trim(number)) {
|
||||
match = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!match) {
|
||||
LOG(ERROR) << "Package is for serial " << pkg_serial_no;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
if (metadata["ota-type"] != "AB") {
|
||||
LOG(ERROR) << "Package is not A/B";
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
static int CheckAbSpecificMetadata(const std::map<std::string, std::string>& metadata) {
|
||||
// Incremental updates should match the current build.
|
||||
value = android::base::GetProperty("ro.build.version.incremental", "");
|
||||
const std::string& pkg_pre_build = metadata["pre-build-incremental"];
|
||||
if (!pkg_pre_build.empty() && pkg_pre_build != value) {
|
||||
LOG(ERROR) << "Package is for source build " << pkg_pre_build << " but expected " << value;
|
||||
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;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
value = android::base::GetProperty("ro.build.fingerprint", "");
|
||||
const std::string& pkg_pre_build_fingerprint = metadata["pre-build"];
|
||||
if (!pkg_pre_build_fingerprint.empty() && pkg_pre_build_fingerprint != value) {
|
||||
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) {
|
||||
LOG(ERROR) << "Package is for source build " << pkg_pre_build_fingerprint << " but expected "
|
||||
<< value;
|
||||
<< device_fingerprint;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
@@ -194,10 +158,11 @@ static int check_newer_ab_build(ZipArchiveHandle zip) {
|
||||
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.
|
||||
if (metadata["post-timestamp"].empty() ||
|
||||
!android::base::ParseInt(metadata["post-timestamp"].c_str(), &pkg_post_timestamp) ||
|
||||
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) ||
|
||||
pkg_post_timestamp < build_timestamp) {
|
||||
if (metadata["ota-downgrade"] != "yes") {
|
||||
if (get_value(metadata, "ota-downgrade") != "yes") {
|
||||
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
|
||||
@@ -213,13 +178,55 @@ static int check_newer_ab_build(ZipArchiveHandle zip) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
int CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type) {
|
||||
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;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (package_ota_type != expected_ota_type) {
|
||||
LOG(ERROR) << "Unexpected ota package type, expects " << expected_ota_type << ", actual "
|
||||
<< package_ota_type;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
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;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
|
||||
// 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;
|
||||
return INSTALL_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
if (ota_type == OtaType::AB) {
|
||||
return CheckAbSpecificMetadata(metadata);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int SetUpAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int status_fd,
|
||||
std::vector<std::string>* cmd) {
|
||||
CHECK(cmd != nullptr);
|
||||
int ret = check_newer_ab_build(zip);
|
||||
if (ret != 0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
// For A/B updates we extract the payload properties to a buffer and obtain the RAW payload offset
|
||||
// in the zip file.
|
||||
@@ -311,20 +318,33 @@ static void log_max_temperature(int* max_temperature, const std::atomic<bool>& l
|
||||
static int try_update_binary(const std::string& package, ZipArchiveHandle zip, bool* wipe_cache,
|
||||
std::vector<std::string>* log_buffer, int retry_count,
|
||||
int* max_temperature) {
|
||||
read_source_target_build(zip, log_buffer);
|
||||
std::map<std::string, std::string> metadata;
|
||||
if (!ReadMetadataFromPackage(zip, &metadata)) {
|
||||
LOG(ERROR) << "Failed to parse metadata in the zip file";
|
||||
return INSTALL_CORRUPT;
|
||||
}
|
||||
|
||||
bool is_ab = android::base::GetBoolProperty("ro.build.ab_update", false);
|
||||
// Verifies against the metadata in the package first.
|
||||
if (int check_status = is_ab ? CheckPackageMetadata(metadata, OtaType::AB) : 0;
|
||||
check_status != 0) {
|
||||
log_buffer->push_back(android::base::StringPrintf("error: %d", kUpdateBinaryCommandFailure));
|
||||
return check_status;
|
||||
}
|
||||
|
||||
ReadSourceTargetBuild(metadata, log_buffer);
|
||||
|
||||
int pipefd[2];
|
||||
pipe(pipefd);
|
||||
|
||||
bool is_ab = android::base::GetBoolProperty("ro.build.ab_update", false);
|
||||
std::vector<std::string> args;
|
||||
int ret = is_ab ? SetUpAbUpdateCommands(package, zip, pipefd[1], &args)
|
||||
: SetUpNonAbUpdateCommands(package, zip, retry_count, pipefd[1], &args);
|
||||
if (ret) {
|
||||
if (int update_status =
|
||||
is_ab ? SetUpAbUpdateCommands(package, zip, pipefd[1], &args)
|
||||
: SetUpNonAbUpdateCommands(package, zip, retry_count, pipefd[1], &args);
|
||||
update_status != 0) {
|
||||
close(pipefd[0]);
|
||||
close(pipefd[1]);
|
||||
log_buffer->push_back(android::base::StringPrintf("error: %d", kUpdateBinaryCommandFailure));
|
||||
return ret;
|
||||
return update_status;
|
||||
}
|
||||
|
||||
// When executing the update binary contained in the package, the
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include <ziparchive/zip_archive.h>
|
||||
@@ -33,6 +34,12 @@ enum InstallResult {
|
||||
INSTALL_KEY_INTERRUPTED
|
||||
};
|
||||
|
||||
enum class OtaType {
|
||||
AB,
|
||||
BLOCK,
|
||||
BRICK,
|
||||
};
|
||||
|
||||
// Installs the given update package. If INSTALL_SUCCESS is returned and *wipe_cache is true on
|
||||
// exit, caller should wipe the cache partition.
|
||||
int install_package(const std::string& package, bool* wipe_cache, bool needs_mount,
|
||||
@@ -42,12 +49,17 @@ int install_package(const std::string& package, bool* wipe_cache, bool needs_mou
|
||||
// otherwise return false.
|
||||
bool verify_package(const unsigned char* package_data, size_t package_size);
|
||||
|
||||
// Read meta data file of the package, write its content in the string pointed by meta_data.
|
||||
// Return true if succeed, otherwise return false.
|
||||
bool read_metadata_from_package(ZipArchiveHandle zip, std::string* metadata);
|
||||
// Reads meta data file of the package; parses each line in the format "key=value"; and writes the
|
||||
// result to |metadata|. Return true if succeed, otherwise return false.
|
||||
bool ReadMetadataFromPackage(ZipArchiveHandle zip, std::map<std::string, std::string>* metadata);
|
||||
|
||||
// Verifies the compatibility info in a Treble-compatible package. Returns true directly if the
|
||||
// entry doesn't exist.
|
||||
bool verify_package_compatibility(ZipArchiveHandle package_zip);
|
||||
|
||||
// Checks if the the metadata in the OTA package has expected values. Returns 0 on success.
|
||||
// Mandatory checks: ota-type, pre-device and serial number(if presents)
|
||||
// AB OTA specific checks: pre-build version, fingerprint, timestamp.
|
||||
int CheckPackageMetadata(const std::map<std::string, std::string>& metadata, OtaType ota_type);
|
||||
|
||||
#endif // RECOVERY_INSTALL_H_
|
||||
|
||||
+44
-45
@@ -20,6 +20,7 @@
|
||||
#include <fcntl.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/mman.h>
|
||||
#include <unistd.h>
|
||||
|
||||
@@ -28,51 +29,60 @@
|
||||
|
||||
#include "minui/minui.h"
|
||||
|
||||
MinuiBackendAdf::MinuiBackendAdf()
|
||||
: intf_fd(-1), dev(), current_surface(0), n_surfaces(0), surfaces() {}
|
||||
GRSurfaceAdf::~GRSurfaceAdf() {
|
||||
if (mmapped_buffer_) {
|
||||
munmap(mmapped_buffer_, pitch * height);
|
||||
}
|
||||
if (fence_fd != -1) {
|
||||
close(fence_fd);
|
||||
}
|
||||
if (fd != -1) {
|
||||
close(fd);
|
||||
}
|
||||
}
|
||||
|
||||
int MinuiBackendAdf::SurfaceInit(const drm_mode_modeinfo* mode, GRSurfaceAdf* surf) {
|
||||
*surf = {};
|
||||
surf->fence_fd = -1;
|
||||
surf->fd = adf_interface_simple_buffer_alloc(intf_fd, mode->hdisplay, mode->vdisplay, format,
|
||||
&surf->offset, &surf->pitch);
|
||||
if (surf->fd < 0) {
|
||||
return surf->fd;
|
||||
std::unique_ptr<GRSurfaceAdf> GRSurfaceAdf::Create(int intf_fd, const drm_mode_modeinfo* mode,
|
||||
__u32 format, int* err) {
|
||||
__u32 offset;
|
||||
__u32 pitch;
|
||||
auto fd = adf_interface_simple_buffer_alloc(intf_fd, mode->hdisplay, mode->vdisplay, format,
|
||||
&offset, &pitch);
|
||||
|
||||
if (fd < 0) {
|
||||
*err = fd;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
surf->width = mode->hdisplay;
|
||||
surf->height = mode->vdisplay;
|
||||
surf->row_bytes = surf->pitch;
|
||||
surf->pixel_bytes = (format == DRM_FORMAT_RGB565) ? 2 : 4;
|
||||
std::unique_ptr<GRSurfaceAdf> surf = std::unique_ptr<GRSurfaceAdf>(
|
||||
new GRSurfaceAdf(mode->hdisplay, mode->vdisplay, pitch, (format == DRM_FORMAT_RGB565 ? 2 : 4),
|
||||
offset, pitch, fd));
|
||||
|
||||
auto mmapped =
|
||||
mmap(nullptr, surf->pitch * surf->height, PROT_WRITE, MAP_SHARED, surf->fd, surf->offset);
|
||||
if (mmapped == MAP_FAILED) {
|
||||
int saved_errno = errno;
|
||||
close(surf->fd);
|
||||
return -saved_errno;
|
||||
*err = -errno;
|
||||
return nullptr;
|
||||
}
|
||||
surf->mmapped_buffer_ = static_cast<uint8_t*>(mmapped);
|
||||
return 0;
|
||||
return surf;
|
||||
}
|
||||
|
||||
MinuiBackendAdf::MinuiBackendAdf() : intf_fd(-1), dev(), current_surface(0), n_surfaces(0) {}
|
||||
|
||||
int MinuiBackendAdf::InterfaceInit() {
|
||||
adf_interface_data intf_data;
|
||||
int err = adf_get_interface_data(intf_fd, &intf_data);
|
||||
if (err < 0) return err;
|
||||
if (int err = adf_get_interface_data(intf_fd, &intf_data); err < 0) return err;
|
||||
|
||||
int ret = 0;
|
||||
err = SurfaceInit(&intf_data.current_mode, &surfaces[0]);
|
||||
if (err < 0) {
|
||||
fprintf(stderr, "allocating surface 0 failed: %s\n", strerror(-err));
|
||||
ret = err;
|
||||
int result = 0;
|
||||
surfaces[0] = GRSurfaceAdf::Create(intf_fd, &intf_data.current_mode, format, &result);
|
||||
if (!surfaces[0]) {
|
||||
fprintf(stderr, "Failed to allocate surface 0: %s\n", strerror(-result));
|
||||
goto done;
|
||||
}
|
||||
|
||||
err = SurfaceInit(&intf_data.current_mode, &surfaces[1]);
|
||||
if (err < 0) {
|
||||
fprintf(stderr, "allocating surface 1 failed: %s\n", strerror(-err));
|
||||
surfaces[1] = {};
|
||||
surfaces[1] = GRSurfaceAdf::Create(intf_fd, &intf_data.current_mode, format, &result);
|
||||
if (!surfaces[1]) {
|
||||
fprintf(stderr, "Failed to allocate surface 1: %s\n", strerror(-result));
|
||||
n_surfaces = 1;
|
||||
} else {
|
||||
n_surfaces = 2;
|
||||
@@ -80,7 +90,7 @@ int MinuiBackendAdf::InterfaceInit() {
|
||||
|
||||
done:
|
||||
adf_free_interface_data(&intf_data);
|
||||
return ret;
|
||||
return result;
|
||||
}
|
||||
|
||||
int MinuiBackendAdf::DeviceInit(adf_device* dev) {
|
||||
@@ -153,12 +163,12 @@ GRSurface* MinuiBackendAdf::Init() {
|
||||
}
|
||||
|
||||
void MinuiBackendAdf::Sync(GRSurfaceAdf* surf) {
|
||||
static constexpr unsigned int warningTimeout = 3000;
|
||||
static constexpr unsigned int kWarningTimeout = 3000;
|
||||
|
||||
if (surf == nullptr) return;
|
||||
|
||||
if (surf->fence_fd >= 0) {
|
||||
int err = sync_wait(surf->fence_fd, warningTimeout);
|
||||
int err = sync_wait(surf->fence_fd, kWarningTimeout);
|
||||
if (err < 0) {
|
||||
perror("adf sync fence wait error\n");
|
||||
}
|
||||
@@ -169,33 +179,22 @@ void MinuiBackendAdf::Sync(GRSurfaceAdf* surf) {
|
||||
}
|
||||
|
||||
GRSurface* MinuiBackendAdf::Flip() {
|
||||
GRSurfaceAdf* surf = &surfaces[current_surface];
|
||||
const auto& surf = surfaces[current_surface];
|
||||
|
||||
int fence_fd = adf_interface_simple_post(intf_fd, eng_id, surf->width, surf->height, format,
|
||||
surf->fd, surf->offset, surf->pitch, -1);
|
||||
if (fence_fd >= 0) surf->fence_fd = fence_fd;
|
||||
|
||||
current_surface = (current_surface + 1) % n_surfaces;
|
||||
Sync(&surfaces[current_surface]);
|
||||
return &surfaces[current_surface];
|
||||
Sync(surfaces[current_surface].get());
|
||||
return surfaces[current_surface].get();
|
||||
}
|
||||
|
||||
void MinuiBackendAdf::Blank(bool blank) {
|
||||
adf_interface_blank(intf_fd, blank ? DRM_MODE_DPMS_OFF : DRM_MODE_DPMS_ON);
|
||||
}
|
||||
|
||||
void MinuiBackendAdf::SurfaceDestroy(GRSurfaceAdf* surf) {
|
||||
if (surf->mmapped_buffer_) {
|
||||
munmap(surf->mmapped_buffer_, surf->pitch * surf->height);
|
||||
}
|
||||
close(surf->fence_fd);
|
||||
close(surf->fd);
|
||||
}
|
||||
|
||||
MinuiBackendAdf::~MinuiBackendAdf() {
|
||||
adf_device_close(&dev);
|
||||
for (unsigned int i = 0; i < n_surfaces; i++) {
|
||||
SurfaceDestroy(&surfaces[i]);
|
||||
}
|
||||
if (intf_fd >= 0) close(intf_fd);
|
||||
}
|
||||
|
||||
+21
-11
@@ -17,6 +17,9 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <adf/adf.h>
|
||||
|
||||
@@ -25,6 +28,11 @@
|
||||
|
||||
class GRSurfaceAdf : public GRSurface {
|
||||
public:
|
||||
~GRSurfaceAdf() override;
|
||||
|
||||
static std::unique_ptr<GRSurfaceAdf> Create(int intf_fd, const drm_mode_modeinfo* mode,
|
||||
__u32 format, int* err);
|
||||
|
||||
uint8_t* data() override {
|
||||
return mmapped_buffer_;
|
||||
}
|
||||
@@ -32,34 +40,36 @@ class GRSurfaceAdf : public GRSurface {
|
||||
private:
|
||||
friend class MinuiBackendAdf;
|
||||
|
||||
int fence_fd;
|
||||
int fd;
|
||||
__u32 offset;
|
||||
__u32 pitch;
|
||||
GRSurfaceAdf(int width, int height, int row_bytes, int pixel_bytes, __u32 offset, __u32 pitch,
|
||||
int fd)
|
||||
: GRSurface(width, height, row_bytes, pixel_bytes), offset(offset), pitch(pitch), fd(fd) {}
|
||||
|
||||
const __u32 offset;
|
||||
const __u32 pitch;
|
||||
|
||||
int fd;
|
||||
int fence_fd{ -1 };
|
||||
uint8_t* mmapped_buffer_{ nullptr };
|
||||
};
|
||||
|
||||
class MinuiBackendAdf : public MinuiBackend {
|
||||
public:
|
||||
MinuiBackendAdf();
|
||||
~MinuiBackendAdf() override;
|
||||
GRSurface* Init() override;
|
||||
GRSurface* Flip() override;
|
||||
void Blank(bool) override;
|
||||
~MinuiBackendAdf() override;
|
||||
MinuiBackendAdf();
|
||||
|
||||
private:
|
||||
int SurfaceInit(const drm_mode_modeinfo* mode, GRSurfaceAdf* surf);
|
||||
int InterfaceInit();
|
||||
int DeviceInit(adf_device* dev);
|
||||
void SurfaceDestroy(GRSurfaceAdf* surf);
|
||||
void Sync(GRSurfaceAdf* surf);
|
||||
|
||||
int intf_fd;
|
||||
adf_id_t eng_id;
|
||||
__u32 format;
|
||||
adf_device dev;
|
||||
unsigned int current_surface;
|
||||
unsigned int n_surfaces;
|
||||
GRSurfaceAdf surfaces[2];
|
||||
size_t current_surface;
|
||||
size_t n_surfaces;
|
||||
std::unique_ptr<GRSurfaceAdf> surfaces[2];
|
||||
};
|
||||
|
||||
@@ -102,15 +102,15 @@ std::unique_ptr<GRSurfaceDrm> GRSurfaceDrm::Create(int drm_fd, int width, int he
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
std::unique_ptr<GRSurfaceDrm> surface = std::make_unique<GRSurfaceDrm>(drm_fd);
|
||||
surface->handle = create_dumb.handle;
|
||||
// Cannot use std::make_unique to access non-public ctor.
|
||||
auto surface = std::unique_ptr<GRSurfaceDrm>(new GRSurfaceDrm(
|
||||
width, height, create_dumb.pitch, create_dumb.bpp / 8, drm_fd, create_dumb.handle));
|
||||
|
||||
uint32_t handles[4], pitches[4], offsets[4];
|
||||
|
||||
handles[0] = surface->handle;
|
||||
pitches[0] = create_dumb.pitch;
|
||||
offsets[0] = 0;
|
||||
|
||||
if (drmModeAddFB2(drm_fd, width, height, format, handles, pitches, offsets, &surface->fb_id, 0) !=
|
||||
0) {
|
||||
perror("Failed to drmModeAddFB2");
|
||||
@@ -124,10 +124,6 @@ std::unique_ptr<GRSurfaceDrm> GRSurfaceDrm::Create(int drm_fd, int width, int he
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
surface->height = height;
|
||||
surface->width = width;
|
||||
surface->row_bytes = create_dumb.pitch;
|
||||
surface->pixel_bytes = create_dumb.bpp / 8;
|
||||
auto mmapped = mmap(nullptr, surface->height * surface->row_bytes, PROT_READ | PROT_WRITE,
|
||||
MAP_SHARED, drm_fd, map_dumb.offset);
|
||||
if (mmapped == MAP_FAILED) {
|
||||
|
||||
@@ -20,7 +20,6 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <android-base/macros.h>
|
||||
#include <xf86drmMode.h>
|
||||
|
||||
#include "graphics.h"
|
||||
@@ -28,7 +27,6 @@
|
||||
|
||||
class GRSurfaceDrm : public GRSurface {
|
||||
public:
|
||||
explicit GRSurfaceDrm(int drm_fd) : drm_fd_(drm_fd) {}
|
||||
~GRSurfaceDrm() override;
|
||||
|
||||
// Creates a GRSurfaceDrm instance.
|
||||
@@ -41,13 +39,14 @@ class GRSurfaceDrm : public GRSurface {
|
||||
private:
|
||||
friend class MinuiBackendDrm;
|
||||
|
||||
GRSurfaceDrm(int width, int height, int row_bytes, int pixel_bytes, int drm_fd, uint32_t handle)
|
||||
: GRSurface(width, height, row_bytes, pixel_bytes), drm_fd_(drm_fd), handle(handle) {}
|
||||
|
||||
const int drm_fd_;
|
||||
|
||||
uint32_t fb_id{ 0 };
|
||||
uint32_t handle{ 0 };
|
||||
uint8_t* mmapped_buffer_{ nullptr };
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(GRSurfaceDrm);
|
||||
};
|
||||
|
||||
class MinuiBackendDrm : public MinuiBackend {
|
||||
|
||||
+35
-46
@@ -26,21 +26,29 @@
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <android-base/unique_fd.h>
|
||||
|
||||
#include "minui/minui.h"
|
||||
|
||||
MinuiBackendFbdev::MinuiBackendFbdev() : gr_draw(nullptr), fb_fd(-1) {}
|
||||
std::unique_ptr<GRSurfaceFbdev> GRSurfaceFbdev::Create(int width, int height, int row_bytes,
|
||||
int pixel_bytes) {
|
||||
// Cannot use std::make_unique to access non-public ctor.
|
||||
return std::unique_ptr<GRSurfaceFbdev>(new GRSurfaceFbdev(width, height, row_bytes, pixel_bytes));
|
||||
}
|
||||
|
||||
void MinuiBackendFbdev::Blank(bool blank) {
|
||||
int ret = ioctl(fb_fd, FBIOBLANK, blank ? FB_BLANK_POWERDOWN : FB_BLANK_UNBLANK);
|
||||
if (ret < 0) perror("ioctl(): blank");
|
||||
}
|
||||
|
||||
void MinuiBackendFbdev::SetDisplayedFramebuffer(unsigned n) {
|
||||
void MinuiBackendFbdev::SetDisplayedFramebuffer(size_t n) {
|
||||
if (n > 1 || !double_buffered) return;
|
||||
|
||||
vi.yres_virtual = gr_framebuffer[0].height * 2;
|
||||
vi.yoffset = n * gr_framebuffer[0].height;
|
||||
vi.bits_per_pixel = gr_framebuffer[0].pixel_bytes * 8;
|
||||
vi.yres_virtual = gr_framebuffer[0]->height * 2;
|
||||
vi.yoffset = n * gr_framebuffer[0]->height;
|
||||
vi.bits_per_pixel = gr_framebuffer[0]->pixel_bytes * 8;
|
||||
if (ioctl(fb_fd, FBIOPUT_VSCREENINFO, &vi) < 0) {
|
||||
perror("active fb swap failed");
|
||||
}
|
||||
@@ -48,7 +56,7 @@ void MinuiBackendFbdev::SetDisplayedFramebuffer(unsigned n) {
|
||||
}
|
||||
|
||||
GRSurface* MinuiBackendFbdev::Init() {
|
||||
int fd = open("/dev/graphics/fb0", O_RDWR);
|
||||
android::base::unique_fd fd(open("/dev/graphics/fb0", O_RDWR));
|
||||
if (fd == -1) {
|
||||
perror("cannot open fb0");
|
||||
return nullptr;
|
||||
@@ -57,13 +65,11 @@ GRSurface* MinuiBackendFbdev::Init() {
|
||||
fb_fix_screeninfo fi;
|
||||
if (ioctl(fd, FBIOGET_FSCREENINFO, &fi) < 0) {
|
||||
perror("failed to get fb0 info");
|
||||
close(fd);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
if (ioctl(fd, FBIOGET_VSCREENINFO, &vi) < 0) {
|
||||
perror("failed to get fb0 info");
|
||||
close(fd);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@@ -90,46 +96,41 @@ GRSurface* MinuiBackendFbdev::Init() {
|
||||
void* bits = mmap(0, fi.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
||||
if (bits == MAP_FAILED) {
|
||||
perror("failed to mmap framebuffer");
|
||||
close(fd);
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
memset(bits, 0, fi.smem_len);
|
||||
|
||||
gr_framebuffer[0].width = vi.xres;
|
||||
gr_framebuffer[0].height = vi.yres;
|
||||
gr_framebuffer[0].row_bytes = fi.line_length;
|
||||
gr_framebuffer[0].pixel_bytes = vi.bits_per_pixel / 8;
|
||||
gr_framebuffer[0].buffer_ = static_cast<uint8_t*>(bits);
|
||||
memset(gr_framebuffer[0].buffer_, 0, gr_framebuffer[0].height * gr_framebuffer[0].row_bytes);
|
||||
gr_framebuffer[0] =
|
||||
GRSurfaceFbdev::Create(vi.xres, vi.yres, fi.line_length, vi.bits_per_pixel / 8);
|
||||
gr_framebuffer[0]->buffer_ = static_cast<uint8_t*>(bits);
|
||||
memset(gr_framebuffer[0]->buffer_, 0, gr_framebuffer[0]->height * gr_framebuffer[0]->row_bytes);
|
||||
|
||||
gr_framebuffer[1] =
|
||||
GRSurfaceFbdev::Create(gr_framebuffer[0]->width, gr_framebuffer[0]->height,
|
||||
gr_framebuffer[0]->row_bytes, gr_framebuffer[0]->pixel_bytes);
|
||||
|
||||
/* check if we can use double buffering */
|
||||
if (vi.yres * fi.line_length * 2 <= fi.smem_len) {
|
||||
double_buffered = true;
|
||||
|
||||
gr_framebuffer[1] = gr_framebuffer[0];
|
||||
gr_framebuffer[1].buffer_ =
|
||||
gr_framebuffer[0].buffer_ + gr_framebuffer[0].height * gr_framebuffer[0].row_bytes;
|
||||
|
||||
gr_draw = gr_framebuffer + 1;
|
||||
|
||||
gr_framebuffer[1]->buffer_ =
|
||||
gr_framebuffer[0]->buffer_ + gr_framebuffer[0]->height * gr_framebuffer[0]->row_bytes;
|
||||
} else {
|
||||
double_buffered = false;
|
||||
|
||||
// Without double-buffering, we allocate RAM for a buffer to
|
||||
// draw in, and then "flipping" the buffer consists of a
|
||||
// memcpy from the buffer we allocated to the framebuffer.
|
||||
|
||||
gr_draw = new GRSurfaceFbdev;
|
||||
*gr_draw = gr_framebuffer[0];
|
||||
gr_draw->buffer_ = new uint8_t[gr_draw->height * gr_draw->row_bytes];
|
||||
// Without double-buffering, we allocate RAM for a buffer to draw in, and then "flipping" the
|
||||
// buffer consists of a memcpy from the buffer we allocated to the framebuffer.
|
||||
memory_buffer.resize(gr_framebuffer[1]->height * gr_framebuffer[1]->row_bytes);
|
||||
gr_framebuffer[1]->buffer_ = memory_buffer.data();
|
||||
}
|
||||
|
||||
gr_draw = gr_framebuffer[1].get();
|
||||
memset(gr_draw->buffer_, 0, gr_draw->height * gr_draw->row_bytes);
|
||||
fb_fd = fd;
|
||||
fb_fd = std::move(fd);
|
||||
SetDisplayedFramebuffer(0);
|
||||
|
||||
printf("framebuffer: %d (%d x %d)\n", fb_fd, gr_draw->width, gr_draw->height);
|
||||
printf("framebuffer: %d (%d x %d)\n", fb_fd.get(), gr_draw->width, gr_draw->height);
|
||||
|
||||
Blank(true);
|
||||
Blank(false);
|
||||
@@ -139,25 +140,13 @@ GRSurface* MinuiBackendFbdev::Init() {
|
||||
|
||||
GRSurface* MinuiBackendFbdev::Flip() {
|
||||
if (double_buffered) {
|
||||
// Change gr_draw to point to the buffer currently displayed,
|
||||
// then flip the driver so we're displaying the other buffer
|
||||
// instead.
|
||||
gr_draw = gr_framebuffer + displayed_buffer;
|
||||
// Change gr_draw to point to the buffer currently displayed, then flip the driver so we're
|
||||
// displaying the other buffer instead.
|
||||
gr_draw = gr_framebuffer[displayed_buffer].get();
|
||||
SetDisplayedFramebuffer(1 - displayed_buffer);
|
||||
} else {
|
||||
// Copy from the in-memory surface to the framebuffer.
|
||||
memcpy(gr_framebuffer[0].buffer_, gr_draw->buffer_, gr_draw->height * gr_draw->row_bytes);
|
||||
memcpy(gr_framebuffer[0]->buffer_, gr_draw->buffer_, gr_draw->height * gr_draw->row_bytes);
|
||||
}
|
||||
return gr_draw;
|
||||
}
|
||||
|
||||
MinuiBackendFbdev::~MinuiBackendFbdev() {
|
||||
close(fb_fd);
|
||||
fb_fd = -1;
|
||||
|
||||
if (!double_buffered && gr_draw) {
|
||||
delete[] gr_draw->buffer_;
|
||||
delete gr_draw;
|
||||
}
|
||||
gr_draw = nullptr;
|
||||
}
|
||||
|
||||
+23
-8
@@ -19,37 +19,52 @@
|
||||
#include <linux/fb.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include <android-base/unique_fd.h>
|
||||
|
||||
#include "graphics.h"
|
||||
#include "minui/minui.h"
|
||||
|
||||
class GRSurfaceFbdev : public GRSurface {
|
||||
public:
|
||||
// Creates and returns a GRSurfaceFbdev instance, or nullptr on error.
|
||||
static std::unique_ptr<GRSurfaceFbdev> Create(int width, int height, int row_bytes,
|
||||
int pixel_bytes);
|
||||
|
||||
uint8_t* data() override {
|
||||
return buffer_;
|
||||
}
|
||||
|
||||
protected:
|
||||
using GRSurface::GRSurface;
|
||||
|
||||
private:
|
||||
friend class MinuiBackendFbdev;
|
||||
|
||||
// Points to the start of the buffer: either the mmap'd framebuffer or one allocated in-memory.
|
||||
uint8_t* buffer_;
|
||||
uint8_t* buffer_{ nullptr };
|
||||
};
|
||||
|
||||
class MinuiBackendFbdev : public MinuiBackend {
|
||||
public:
|
||||
MinuiBackendFbdev() = default;
|
||||
~MinuiBackendFbdev() override = default;
|
||||
|
||||
GRSurface* Init() override;
|
||||
GRSurface* Flip() override;
|
||||
void Blank(bool) override;
|
||||
~MinuiBackendFbdev() override;
|
||||
MinuiBackendFbdev();
|
||||
|
||||
private:
|
||||
void SetDisplayedFramebuffer(unsigned n);
|
||||
void SetDisplayedFramebuffer(size_t n);
|
||||
|
||||
GRSurfaceFbdev gr_framebuffer[2];
|
||||
std::unique_ptr<GRSurfaceFbdev> gr_framebuffer[2];
|
||||
// Points to the current surface (i.e. one of the two gr_framebuffer's).
|
||||
GRSurfaceFbdev* gr_draw{ nullptr };
|
||||
bool double_buffered;
|
||||
GRSurfaceFbdev* gr_draw;
|
||||
int displayed_buffer;
|
||||
std::vector<uint8_t> memory_buffer;
|
||||
size_t displayed_buffer{ 0 };
|
||||
fb_var_screeninfo vi;
|
||||
int fb_fd;
|
||||
android::base::unique_fd fb_fd;
|
||||
};
|
||||
|
||||
@@ -24,19 +24,24 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include <android-base/macros.h>
|
||||
|
||||
//
|
||||
// Graphics.
|
||||
//
|
||||
|
||||
class GRSurface {
|
||||
public:
|
||||
GRSurface() = default;
|
||||
virtual ~GRSurface();
|
||||
|
||||
// Creates and returns a GRSurface instance for the given data_size. The starting address of the
|
||||
// surface data is aligned to SURFACE_DATA_ALIGNMENT. Returns the created GRSurface instance (in
|
||||
// std::unique_ptr), or nullptr on error.
|
||||
static std::unique_ptr<GRSurface> Create(size_t data_size);
|
||||
// Creates and returns a GRSurface instance that's sufficient for storing an image of the given
|
||||
// size. The starting address of the surface data is aligned to SURFACE_DATA_ALIGNMENT. Returns
|
||||
// the created GRSurface instance (in std::unique_ptr), or nullptr on error.
|
||||
static std::unique_ptr<GRSurface> Create(int width, int height, int row_bytes, int pixel_bytes,
|
||||
size_t data_size);
|
||||
|
||||
// Clones the current GRSurface instance (i.e. an image).
|
||||
std::unique_ptr<GRSurface> Clone() const;
|
||||
|
||||
virtual uint8_t* data() {
|
||||
return data_;
|
||||
@@ -51,8 +56,15 @@ class GRSurface {
|
||||
int row_bytes;
|
||||
int pixel_bytes;
|
||||
|
||||
protected:
|
||||
GRSurface(int width, int height, int row_bytes, int pixel_bytes)
|
||||
: width(width), height(height), row_bytes(row_bytes), pixel_bytes(pixel_bytes) {}
|
||||
|
||||
private:
|
||||
uint8_t* data_{ nullptr };
|
||||
size_t data_size_;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(GRSurface);
|
||||
};
|
||||
|
||||
struct GRFont {
|
||||
|
||||
+61
-80
@@ -39,16 +39,24 @@
|
||||
|
||||
static std::string g_resource_dir{ "/res/images" };
|
||||
|
||||
std::unique_ptr<GRSurface> GRSurface::Create(size_t data_size) {
|
||||
std::unique_ptr<GRSurface> GRSurface::Create(int width, int height, int row_bytes, int pixel_bytes,
|
||||
size_t data_size) {
|
||||
static constexpr size_t kSurfaceDataAlignment = 8;
|
||||
std::unique_ptr<GRSurface> result = std::make_unique<GRSurface>();
|
||||
size_t aligned_size =
|
||||
// Cannot use std::make_unique to access non-public ctor.
|
||||
auto result = std::unique_ptr<GRSurface>(new GRSurface(width, height, row_bytes, pixel_bytes));
|
||||
result->data_size_ =
|
||||
(data_size + kSurfaceDataAlignment - 1) / kSurfaceDataAlignment * kSurfaceDataAlignment;
|
||||
result->data_ = static_cast<uint8_t*>(aligned_alloc(kSurfaceDataAlignment, aligned_size));
|
||||
result->data_ = static_cast<uint8_t*>(aligned_alloc(kSurfaceDataAlignment, result->data_size_));
|
||||
if (result->data_ == nullptr) return nullptr;
|
||||
return result;
|
||||
}
|
||||
|
||||
std::unique_ptr<GRSurface> GRSurface::Clone() const {
|
||||
auto result = GRSurface::Create(width, height, row_bytes, pixel_bytes, data_size_);
|
||||
memcpy(result->data_, data_, data_size_);
|
||||
return result;
|
||||
}
|
||||
|
||||
GRSurface::~GRSurface() {
|
||||
if (data_ != nullptr) {
|
||||
free(data_);
|
||||
@@ -68,7 +76,7 @@ PngHandler::PngHandler(const std::string& name) {
|
||||
return;
|
||||
}
|
||||
|
||||
unsigned char header[8];
|
||||
uint8_t header[8];
|
||||
size_t bytesRead = fread(header, 1, sizeof(header), png_fp_.get());
|
||||
if (bytesRead != sizeof(header)) {
|
||||
error_code_ = -2;
|
||||
@@ -131,70 +139,49 @@ PngHandler::~PngHandler() {
|
||||
}
|
||||
}
|
||||
|
||||
// "display" surfaces are transformed into the framebuffer's required
|
||||
// pixel format (currently only RGBX is supported) at load time, so
|
||||
// gr_blit() can be nothing more than a memcpy() for each row. The
|
||||
// next two functions are the only ones that know anything about the
|
||||
// framebuffer pixel format; they need to be modified if the
|
||||
// framebuffer format changes (but nothing else should).
|
||||
// "display" surfaces are transformed into the framebuffer's required pixel format (currently only
|
||||
// RGBX is supported) at load time, so gr_blit() can be nothing more than a memcpy() for each row.
|
||||
|
||||
// Allocates and returns a GRSurface* sufficient for storing an image of the indicated size in the
|
||||
// framebuffer pixel format.
|
||||
static std::unique_ptr<GRSurface> init_display_surface(png_uint_32 width, png_uint_32 height) {
|
||||
std::unique_ptr<GRSurface> surface = GRSurface::Create(width * height * 4);
|
||||
if (!surface) return nullptr;
|
||||
|
||||
surface->width = width;
|
||||
surface->height = height;
|
||||
surface->row_bytes = width * 4;
|
||||
surface->pixel_bytes = 4;
|
||||
|
||||
return surface;
|
||||
}
|
||||
|
||||
// Copy 'input_row' to 'output_row', transforming it to the
|
||||
// framebuffer pixel format. The input format depends on the value of
|
||||
// 'channels':
|
||||
// Copies 'input_row' to 'output_row', transforming it to the framebuffer pixel format. The input
|
||||
// format depends on the value of 'channels':
|
||||
//
|
||||
// 1 - input is 8-bit grayscale
|
||||
// 3 - input is 24-bit RGB
|
||||
// 4 - input is 32-bit RGBA/RGBX
|
||||
//
|
||||
// 'width' is the number of pixels in the row.
|
||||
static void transform_rgb_to_draw(unsigned char* input_row,
|
||||
unsigned char* output_row,
|
||||
int channels, int width) {
|
||||
int x;
|
||||
unsigned char* ip = input_row;
|
||||
unsigned char* op = output_row;
|
||||
static void TransformRgbToDraw(const uint8_t* input_row, uint8_t* output_row, int channels,
|
||||
int width) {
|
||||
const uint8_t* ip = input_row;
|
||||
uint8_t* op = output_row;
|
||||
|
||||
switch (channels) {
|
||||
case 1:
|
||||
// expand gray level to RGBX
|
||||
for (x = 0; x < width; ++x) {
|
||||
*op++ = *ip;
|
||||
*op++ = *ip;
|
||||
*op++ = *ip;
|
||||
*op++ = 0xff;
|
||||
ip++;
|
||||
}
|
||||
break;
|
||||
switch (channels) {
|
||||
case 1:
|
||||
// expand gray level to RGBX
|
||||
for (int x = 0; x < width; ++x) {
|
||||
*op++ = *ip;
|
||||
*op++ = *ip;
|
||||
*op++ = *ip;
|
||||
*op++ = 0xff;
|
||||
ip++;
|
||||
}
|
||||
break;
|
||||
|
||||
case 3:
|
||||
// expand RGBA to RGBX
|
||||
for (x = 0; x < width; ++x) {
|
||||
*op++ = *ip++;
|
||||
*op++ = *ip++;
|
||||
*op++ = *ip++;
|
||||
*op++ = 0xff;
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
// expand RGBA to RGBX
|
||||
for (int x = 0; x < width; ++x) {
|
||||
*op++ = *ip++;
|
||||
*op++ = *ip++;
|
||||
*op++ = *ip++;
|
||||
*op++ = 0xff;
|
||||
}
|
||||
break;
|
||||
|
||||
case 4:
|
||||
// copy RGBA to RGBX
|
||||
memcpy(output_row, input_row, width*4);
|
||||
break;
|
||||
}
|
||||
case 4:
|
||||
// copy RGBA to RGBX
|
||||
memcpy(output_row, input_row, width * 4);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
int res_create_display_surface(const char* name, GRSurface** pSurface) {
|
||||
@@ -207,7 +194,7 @@ int res_create_display_surface(const char* name, GRSurface** pSurface) {
|
||||
png_uint_32 width = png_handler.width();
|
||||
png_uint_32 height = png_handler.height();
|
||||
|
||||
std::unique_ptr<GRSurface> surface = init_display_surface(width, height);
|
||||
auto surface = GRSurface::Create(width, height, width * 4, 4, width * height * 4);
|
||||
if (!surface) {
|
||||
return -8;
|
||||
}
|
||||
@@ -218,10 +205,10 @@ int res_create_display_surface(const char* name, GRSurface** pSurface) {
|
||||
}
|
||||
|
||||
for (png_uint_32 y = 0; y < height; ++y) {
|
||||
std::vector<unsigned char> p_row(width * 4);
|
||||
std::vector<uint8_t> p_row(width * 4);
|
||||
png_read_row(png_ptr, p_row.data(), nullptr);
|
||||
transform_rgb_to_draw(p_row.data(), surface->data() + y * surface->row_bytes,
|
||||
png_handler.channels(), width);
|
||||
TransformRgbToDraw(p_row.data(), surface->data() + y * surface->row_bytes,
|
||||
png_handler.channels(), width);
|
||||
}
|
||||
|
||||
*pSurface = surface.release();
|
||||
@@ -277,7 +264,9 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
|
||||
goto exit;
|
||||
}
|
||||
for (int i = 0; i < *frames; ++i) {
|
||||
auto created_surface = init_display_surface(width, height / *frames);
|
||||
auto height_per_frame = height / *frames;
|
||||
auto created_surface =
|
||||
GRSurface::Create(width, height_per_frame, width * 4, 4, width * height_per_frame);
|
||||
if (!created_surface) {
|
||||
result = -8;
|
||||
goto exit;
|
||||
@@ -290,11 +279,11 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
|
||||
}
|
||||
|
||||
for (png_uint_32 y = 0; y < height; ++y) {
|
||||
std::vector<unsigned char> p_row(width * 4);
|
||||
std::vector<uint8_t> p_row(width * 4);
|
||||
png_read_row(png_ptr, p_row.data(), nullptr);
|
||||
int frame = y % *frames;
|
||||
unsigned char* out_row = surface[frame]->data() + (y / *frames) * surface[frame]->row_bytes;
|
||||
transform_rgb_to_draw(p_row.data(), out_row, png_handler.channels(), width);
|
||||
uint8_t* out_row = surface[frame]->data() + (y / *frames) * surface[frame]->row_bytes;
|
||||
TransformRgbToDraw(p_row.data(), out_row, png_handler.channels(), width);
|
||||
}
|
||||
|
||||
*pSurface = surface;
|
||||
@@ -325,14 +314,10 @@ int res_create_alpha_surface(const char* name, GRSurface** pSurface) {
|
||||
png_uint_32 width = png_handler.width();
|
||||
png_uint_32 height = png_handler.height();
|
||||
|
||||
std::unique_ptr<GRSurface> surface = GRSurface::Create(width * height);
|
||||
auto surface = GRSurface::Create(width, height, width, 1, width * height);
|
||||
if (!surface) {
|
||||
return -8;
|
||||
}
|
||||
surface->width = width;
|
||||
surface->height = height;
|
||||
surface->row_bytes = width;
|
||||
surface->pixel_bytes = 1;
|
||||
|
||||
PixelFormat pixel_format = gr_pixel_format();
|
||||
if (pixel_format == PixelFormat::ABGR || pixel_format == PixelFormat::BGRA) {
|
||||
@@ -340,7 +325,7 @@ int res_create_alpha_surface(const char* name, GRSurface** pSurface) {
|
||||
}
|
||||
|
||||
for (png_uint_32 y = 0; y < height; ++y) {
|
||||
unsigned char* p_row = surface->data() + y * surface->row_bytes;
|
||||
uint8_t* p_row = surface->data() + y * surface->row_bytes;
|
||||
png_read_row(png_ptr, p_row, nullptr);
|
||||
}
|
||||
|
||||
@@ -389,7 +374,7 @@ std::vector<std::string> get_locales_in_png(const std::string& png_name) {
|
||||
}
|
||||
|
||||
std::vector<std::string> result;
|
||||
std::vector<unsigned char> row(png_handler.width());
|
||||
std::vector<uint8_t> row(png_handler.width());
|
||||
for (png_uint_32 y = 0; y < png_handler.height(); ++y) {
|
||||
png_read_row(png_handler.png_ptr(), row.data(), nullptr);
|
||||
int h = (row[3] << 8) | row[2];
|
||||
@@ -425,7 +410,7 @@ int res_create_localized_alpha_surface(const char* name,
|
||||
png_uint_32 height = png_handler.height();
|
||||
|
||||
for (png_uint_32 y = 0; y < height; ++y) {
|
||||
std::vector<unsigned char> row(width);
|
||||
std::vector<uint8_t> row(width);
|
||||
png_read_row(png_ptr, row.data(), nullptr);
|
||||
int w = (row[1] << 8) | row[0];
|
||||
int h = (row[3] << 8) | row[2];
|
||||
@@ -435,14 +420,10 @@ int res_create_localized_alpha_surface(const char* name,
|
||||
if (y + 1 + h >= height || matches_locale(loc, locale)) {
|
||||
printf(" %20s: %s (%d x %d @ %d)\n", name, loc, w, h, y);
|
||||
|
||||
std::unique_ptr<GRSurface> surface = GRSurface::Create(w * h);
|
||||
auto surface = GRSurface::Create(w, h, w, 1, w * h);
|
||||
if (!surface) {
|
||||
return -8;
|
||||
}
|
||||
surface->width = w;
|
||||
surface->height = h;
|
||||
surface->row_bytes = w;
|
||||
surface->pixel_bytes = 1;
|
||||
|
||||
for (int i = 0; i < h; ++i, ++y) {
|
||||
png_read_row(png_ptr, row.data(), nullptr);
|
||||
|
||||
+8
-25
@@ -520,34 +520,17 @@ static bool check_wipe_package(size_t wipe_package_size) {
|
||||
LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
|
||||
return false;
|
||||
}
|
||||
std::string metadata;
|
||||
if (!read_metadata_from_package(zip, &metadata)) {
|
||||
CloseArchive(zip);
|
||||
return false;
|
||||
|
||||
std::map<std::string, std::string> metadata;
|
||||
if (!ReadMetadataFromPackage(zip, &metadata)) {
|
||||
LOG(ERROR) << "Failed to parse metadata in the zip file";
|
||||
return false;
|
||||
}
|
||||
|
||||
int result = CheckPackageMetadata(metadata, OtaType::BRICK);
|
||||
CloseArchive(zip);
|
||||
|
||||
// Check metadata
|
||||
std::vector<std::string> lines = android::base::Split(metadata, "\n");
|
||||
bool ota_type_matched = false;
|
||||
bool device_type_matched = false;
|
||||
bool has_serial_number = false;
|
||||
bool serial_number_matched = false;
|
||||
for (const auto& line : lines) {
|
||||
if (line == "ota-type=BRICK") {
|
||||
ota_type_matched = true;
|
||||
} else if (android::base::StartsWith(line, "pre-device=")) {
|
||||
std::string device_type = line.substr(strlen("pre-device="));
|
||||
std::string real_device_type = android::base::GetProperty("ro.build.product", "");
|
||||
device_type_matched = (device_type == real_device_type);
|
||||
} else if (android::base::StartsWith(line, "serialno=")) {
|
||||
std::string serial_no = line.substr(strlen("serialno="));
|
||||
std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
|
||||
has_serial_number = true;
|
||||
serial_number_matched = (serial_no == real_serial_no);
|
||||
}
|
||||
}
|
||||
return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
|
||||
return result == 0;
|
||||
}
|
||||
|
||||
// Wipes the current A/B device, with a secure wipe of all the partitions in RECOVERY_WIPE.
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
#include <unistd.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <random>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
@@ -74,15 +75,15 @@ TEST(InstallTest, verify_package_compatibility_invalid_entry) {
|
||||
|
||||
TEST(InstallTest, read_metadata_from_package_smoke) {
|
||||
TemporaryFile temp_file;
|
||||
const std::string content("abcdefg");
|
||||
const std::string content("abc=defg");
|
||||
BuildZipArchive({ { "META-INF/com/android/metadata", content } }, temp_file.release(),
|
||||
kCompressStored);
|
||||
|
||||
ZipArchiveHandle zip;
|
||||
ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
|
||||
std::string metadata;
|
||||
ASSERT_TRUE(read_metadata_from_package(zip, &metadata));
|
||||
ASSERT_EQ(content, metadata);
|
||||
std::map<std::string, std::string> metadata;
|
||||
ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
|
||||
ASSERT_EQ("defg", metadata["abc"]);
|
||||
CloseArchive(zip);
|
||||
|
||||
TemporaryFile temp_file2;
|
||||
@@ -91,8 +92,8 @@ TEST(InstallTest, read_metadata_from_package_smoke) {
|
||||
|
||||
ASSERT_EQ(0, OpenArchive(temp_file2.path, &zip));
|
||||
metadata.clear();
|
||||
ASSERT_TRUE(read_metadata_from_package(zip, &metadata));
|
||||
ASSERT_EQ(content, metadata);
|
||||
ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
|
||||
ASSERT_EQ("defg", metadata["abc"]);
|
||||
CloseArchive(zip);
|
||||
}
|
||||
|
||||
@@ -102,8 +103,8 @@ TEST(InstallTest, read_metadata_from_package_no_entry) {
|
||||
|
||||
ZipArchiveHandle zip;
|
||||
ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
|
||||
std::string metadata;
|
||||
ASSERT_FALSE(read_metadata_from_package(zip, &metadata));
|
||||
std::map<std::string, std::string> metadata;
|
||||
ASSERT_FALSE(ReadMetadataFromPackage(zip, &metadata));
|
||||
CloseArchive(zip);
|
||||
}
|
||||
|
||||
@@ -235,11 +236,11 @@ static void VerifyAbUpdateCommands(const std::string& serialno, bool success = t
|
||||
if (!serialno.empty()) {
|
||||
meta.push_back("serialno=" + serialno);
|
||||
}
|
||||
std::string metadata = android::base::Join(meta, "\n");
|
||||
std::string metadata_string = android::base::Join(meta, "\n");
|
||||
|
||||
BuildZipArchive({ { "payload.bin", "" },
|
||||
{ "payload_properties.txt", properties },
|
||||
{ "META-INF/com/android/metadata", metadata } },
|
||||
{ "META-INF/com/android/metadata", metadata_string } },
|
||||
temp_file.release(), kCompressStored);
|
||||
|
||||
ZipArchiveHandle zip;
|
||||
@@ -247,10 +248,15 @@ static void VerifyAbUpdateCommands(const std::string& serialno, bool success = t
|
||||
ZipString payload_name("payload.bin");
|
||||
ZipEntry payload_entry;
|
||||
ASSERT_EQ(0, FindEntry(zip, payload_name, &payload_entry));
|
||||
int status_fd = 10;
|
||||
std::string package = "/path/to/update.zip";
|
||||
std::vector<std::string> cmd;
|
||||
|
||||
std::map<std::string, std::string> metadata;
|
||||
ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
|
||||
if (success) {
|
||||
ASSERT_EQ(0, CheckPackageMetadata(metadata, OtaType::AB));
|
||||
|
||||
int status_fd = 10;
|
||||
std::string package = "/path/to/update.zip";
|
||||
std::vector<std::string> cmd;
|
||||
ASSERT_EQ(0, SetUpAbUpdateCommands(package, zip, status_fd, &cmd));
|
||||
ASSERT_EQ(5U, cmd.size());
|
||||
ASSERT_EQ("/system/bin/update_engine_sideload", cmd[0]);
|
||||
@@ -259,7 +265,7 @@ static void VerifyAbUpdateCommands(const std::string& serialno, bool success = t
|
||||
ASSERT_EQ("--headers=" + properties, cmd[3]);
|
||||
ASSERT_EQ("--status_fd=" + std::to_string(status_fd), cmd[4]);
|
||||
} else {
|
||||
ASSERT_EQ(INSTALL_ERROR, SetUpAbUpdateCommands(package, zip, status_fd, &cmd));
|
||||
ASSERT_EQ(INSTALL_ERROR, CheckPackageMetadata(metadata, OtaType::AB));
|
||||
}
|
||||
CloseArchive(zip);
|
||||
}
|
||||
@@ -282,8 +288,12 @@ TEST(InstallTest, SetUpAbUpdateCommands_MissingPayloadPropertiesTxt) {
|
||||
},
|
||||
"\n");
|
||||
|
||||
BuildZipArchive({ { "payload.bin", "" }, { "META-INF/com/android/metadata", metadata } },
|
||||
temp_file.release(), kCompressStored);
|
||||
BuildZipArchive(
|
||||
{
|
||||
{ "payload.bin", "" },
|
||||
{ "META-INF/com/android/metadata", metadata },
|
||||
},
|
||||
temp_file.release(), kCompressStored);
|
||||
|
||||
ZipArchiveHandle zip;
|
||||
ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
|
||||
@@ -322,3 +332,241 @@ TEST(InstallTest, SetUpAbUpdateCommands_MultipleSerialnos) {
|
||||
// String with the matching serialno should pass the verification.
|
||||
VerifyAbUpdateCommands(long_serialno);
|
||||
}
|
||||
|
||||
static void test_check_package_metadata(const std::string& metadata_string, OtaType ota_type,
|
||||
int exptected_result) {
|
||||
TemporaryFile temp_file;
|
||||
BuildZipArchive(
|
||||
{
|
||||
{ "META-INF/com/android/metadata", metadata_string },
|
||||
},
|
||||
temp_file.release(), kCompressStored);
|
||||
|
||||
ZipArchiveHandle zip;
|
||||
ASSERT_EQ(0, OpenArchive(temp_file.path, &zip));
|
||||
|
||||
std::map<std::string, std::string> metadata;
|
||||
ASSERT_TRUE(ReadMetadataFromPackage(zip, &metadata));
|
||||
ASSERT_EQ(exptected_result, CheckPackageMetadata(metadata, ota_type));
|
||||
CloseArchive(zip);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_ota_type) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
// ota-type must be present
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"pre-device=" + device,
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
|
||||
// Checks if ota-type matches
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, 0);
|
||||
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_device_type) {
|
||||
// device type can not be empty
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
|
||||
|
||||
// device type mismatches
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=dummy_device_type",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_serial_number_smoke) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
// Serial number doesn't need to exist
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=" + device,
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, 0);
|
||||
|
||||
// Serial number mismatches
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=" + device,
|
||||
"serialno=dummy_serial",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
|
||||
|
||||
std::string serialno = android::base::GetProperty("ro.serialno", "");
|
||||
ASSERT_NE("", serialno);
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=" + device,
|
||||
"serialno=" + serialno,
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, 0);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_multiple_serial_number) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
std::string serialno = android::base::GetProperty("ro.serialno", "");
|
||||
ASSERT_NE("", serialno);
|
||||
|
||||
std::vector<std::string> serial_numbers;
|
||||
// Creates a dummy serial number string.
|
||||
for (size_t c = 'a'; c <= 'z'; c++) {
|
||||
serial_numbers.emplace_back(c, serialno.size());
|
||||
}
|
||||
|
||||
// No matched serialno found.
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=" + device,
|
||||
"serialno=" + android::base::Join(serial_numbers, '|'),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, INSTALL_ERROR);
|
||||
|
||||
serial_numbers.emplace_back(serialno);
|
||||
std::shuffle(serial_numbers.begin(), serial_numbers.end(), std::default_random_engine());
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=BRICK",
|
||||
"pre-device=" + device,
|
||||
"serialno=" + android::base::Join(serial_numbers, '|'),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::BRICK, 0);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_ab_build_version) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
std::string build_version = android::base::GetProperty("ro.build.version.incremental", "");
|
||||
ASSERT_NE("", build_version);
|
||||
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"pre-build-incremental=" + build_version,
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, 0);
|
||||
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"pre-build-incremental=dummy_build",
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_ab_fingerprint) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
std::string finger_print = android::base::GetProperty("ro.build.fingerprint", "");
|
||||
ASSERT_NE("", finger_print);
|
||||
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"pre-build=" + finger_print,
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, 0);
|
||||
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"pre-build=dummy_build_fingerprint",
|
||||
"post-timestamp=" + std::to_string(std::numeric_limits<int64_t>::max()),
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
}
|
||||
|
||||
TEST(InstallTest, CheckPackageMetadata_ab_post_timestamp) {
|
||||
std::string device = android::base::GetProperty("ro.product.device", "");
|
||||
ASSERT_NE("", device);
|
||||
|
||||
// post timestamp is required for upgrade.
|
||||
std::string metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
|
||||
// post timestamp should be larger than the timestamp on device.
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"post-timestamp=0",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
|
||||
// fingerprint is required for downgrade
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"post-timestamp=0",
|
||||
"ota-downgrade=yes",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, INSTALL_ERROR);
|
||||
|
||||
std::string finger_print = android::base::GetProperty("ro.build.fingerprint", "");
|
||||
ASSERT_NE("", finger_print);
|
||||
|
||||
metadata = android::base::Join(
|
||||
std::vector<std::string>{
|
||||
"ota-type=AB",
|
||||
"pre-device=" + device,
|
||||
"post-timestamp=0",
|
||||
"pre-build=" + finger_print,
|
||||
"ota-downgrade=yes",
|
||||
},
|
||||
"\n");
|
||||
test_check_package_metadata(metadata, OtaType::AB, 0);
|
||||
}
|
||||
|
||||
@@ -15,8 +15,9 @@
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
@@ -25,8 +26,19 @@
|
||||
TEST(GRSurfaceTest, Create_aligned) {
|
||||
static constexpr size_t kSurfaceDataAlignment = 8;
|
||||
for (size_t data_size = 100; data_size < 128; data_size++) {
|
||||
std::unique_ptr<GRSurface> surface(GRSurface::Create(data_size));
|
||||
auto surface = GRSurface::Create(10, 1, 10, 1, data_size);
|
||||
ASSERT_TRUE(surface);
|
||||
ASSERT_EQ(0, reinterpret_cast<uintptr_t>(surface->data()) % kSurfaceDataAlignment);
|
||||
}
|
||||
}
|
||||
|
||||
TEST(GRSurfaceTest, Clone) {
|
||||
static constexpr size_t kImageSize = 10 * 50;
|
||||
auto image = GRSurface::Create(50, 10, 50, 1, kImageSize);
|
||||
for (auto i = 0; i < kImageSize; i++) {
|
||||
image->data()[i] = rand() % 128;
|
||||
}
|
||||
auto image_copy = image->Clone();
|
||||
ASSERT_EQ(std::vector(image->data(), image->data() + kImageSize),
|
||||
std::vector(image_copy->data(), image_copy->data() + kImageSize));
|
||||
}
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <android-base/stringprintf.h>
|
||||
#include <android-base/test_utils.h>
|
||||
#include <gtest/gtest.h>
|
||||
#include <gtest/gtest_prod.h>
|
||||
|
||||
#include "common/test_constants.h"
|
||||
#include "device.h"
|
||||
@@ -69,17 +70,6 @@ class ScreenUITest : public testing::Test {
|
||||
MockDrawFunctions draw_funcs_;
|
||||
};
|
||||
|
||||
// TODO(xunchang) Create a constructor.
|
||||
static GRSurface CreateFakeGRSurface(int width, int height, int row_bytes, int pixel_bytes) {
|
||||
GRSurface fake_surface;
|
||||
fake_surface.width = width;
|
||||
fake_surface.height = height;
|
||||
fake_surface.row_bytes = row_bytes;
|
||||
fake_surface.pixel_bytes = pixel_bytes;
|
||||
|
||||
return fake_surface;
|
||||
}
|
||||
|
||||
TEST_F(ScreenUITest, StartPhoneMenuSmoke) {
|
||||
TextMenu menu(false, 10, 20, HEADERS, ITEMS, 0, 20, draw_funcs_);
|
||||
ASSERT_FALSE(menu.scrollable());
|
||||
@@ -241,9 +231,14 @@ TEST_F(ScreenUITest, WearMenuSelectItemsOverflow) {
|
||||
}
|
||||
|
||||
TEST_F(ScreenUITest, GraphicMenuSelection) {
|
||||
auto fake_surface = CreateFakeGRSurface(50, 50, 50, 1);
|
||||
std::vector<GRSurface*> items = { &fake_surface, &fake_surface, &fake_surface };
|
||||
GraphicMenu menu(&fake_surface, items, 0, draw_funcs_);
|
||||
auto header = GRSurface::Create(50, 50, 50, 1, 50 * 50);
|
||||
auto item = GRSurface::Create(50, 50, 50, 1, 50 * 50);
|
||||
std::vector<GRSurface*> items = {
|
||||
item.get(),
|
||||
item.get(),
|
||||
item.get(),
|
||||
};
|
||||
GraphicMenu menu(header.get(), items, 0, draw_funcs_);
|
||||
|
||||
ASSERT_EQ(0, menu.selection());
|
||||
|
||||
@@ -263,18 +258,23 @@ TEST_F(ScreenUITest, GraphicMenuSelection) {
|
||||
}
|
||||
|
||||
TEST_F(ScreenUITest, GraphicMenuValidate) {
|
||||
auto fake_surface = CreateFakeGRSurface(50, 50, 50, 1);
|
||||
std::vector<GRSurface*> items = { &fake_surface, &fake_surface, &fake_surface };
|
||||
auto header = GRSurface::Create(50, 50, 50, 1, 50 * 50);
|
||||
auto item = GRSurface::Create(50, 50, 50, 1, 50 * 50);
|
||||
std::vector<GRSurface*> items = {
|
||||
item.get(),
|
||||
item.get(),
|
||||
item.get(),
|
||||
};
|
||||
|
||||
ASSERT_TRUE(GraphicMenu::Validate(200, 200, &fake_surface, items));
|
||||
ASSERT_TRUE(GraphicMenu::Validate(200, 200, header.get(), items));
|
||||
|
||||
// Menu exceeds the horizontal boundary.
|
||||
auto wide_surface = CreateFakeGRSurface(300, 50, 300, 1);
|
||||
ASSERT_FALSE(GraphicMenu::Validate(299, 200, &wide_surface, items));
|
||||
auto wide_surface = GRSurface::Create(300, 50, 300, 1, 300 * 50);
|
||||
ASSERT_FALSE(GraphicMenu::Validate(299, 200, wide_surface.get(), items));
|
||||
|
||||
// Menu exceeds the vertical boundary.
|
||||
items.push_back(&fake_surface);
|
||||
ASSERT_FALSE(GraphicMenu::Validate(200, 249, &fake_surface, items));
|
||||
items.push_back(item.get());
|
||||
ASSERT_FALSE(GraphicMenu::Validate(200, 249, header.get(), items));
|
||||
}
|
||||
|
||||
static constexpr int kMagicAction = 101;
|
||||
@@ -307,24 +307,13 @@ class TestableScreenRecoveryUI : public ScreenRecoveryUI {
|
||||
|
||||
int KeyHandler(int key, bool visible) const;
|
||||
|
||||
// The following functions expose the protected members for test purpose.
|
||||
void RunLoadAnimation() {
|
||||
LoadAnimation();
|
||||
}
|
||||
|
||||
size_t GetLoopFrames() const {
|
||||
return loop_frames;
|
||||
}
|
||||
|
||||
size_t GetIntroFrames() const {
|
||||
return intro_frames;
|
||||
}
|
||||
|
||||
bool GetRtlLocale() const {
|
||||
return rtl_locale_;
|
||||
}
|
||||
|
||||
private:
|
||||
FRIEND_TEST(ScreenRecoveryUITest, Init);
|
||||
FRIEND_TEST(ScreenRecoveryUITest, RtlLocale);
|
||||
FRIEND_TEST(ScreenRecoveryUITest, RtlLocaleWithSuffix);
|
||||
FRIEND_TEST(ScreenRecoveryUITest, LoadAnimation);
|
||||
FRIEND_TEST(ScreenRecoveryUITest, LoadAnimation_MissingAnimation);
|
||||
|
||||
std::vector<KeyCode> key_buffer_;
|
||||
size_t key_buffer_index_;
|
||||
};
|
||||
@@ -388,7 +377,7 @@ TEST_F(ScreenRecoveryUITest, Init) {
|
||||
|
||||
ASSERT_TRUE(ui_->Init(kTestLocale));
|
||||
ASSERT_EQ(kTestLocale, ui_->GetLocale());
|
||||
ASSERT_FALSE(ui_->GetRtlLocale());
|
||||
ASSERT_FALSE(ui_->rtl_locale_);
|
||||
ASSERT_FALSE(ui_->IsTextVisible());
|
||||
ASSERT_FALSE(ui_->WasTextEverVisible());
|
||||
}
|
||||
@@ -416,14 +405,14 @@ TEST_F(ScreenRecoveryUITest, RtlLocale) {
|
||||
RETURN_IF_NO_GRAPHICS;
|
||||
|
||||
ASSERT_TRUE(ui_->Init(kTestRtlLocale));
|
||||
ASSERT_TRUE(ui_->GetRtlLocale());
|
||||
ASSERT_TRUE(ui_->rtl_locale_);
|
||||
}
|
||||
|
||||
TEST_F(ScreenRecoveryUITest, RtlLocaleWithSuffix) {
|
||||
RETURN_IF_NO_GRAPHICS;
|
||||
|
||||
ASSERT_TRUE(ui_->Init(kTestRtlLocaleWithSuffix));
|
||||
ASSERT_TRUE(ui_->GetRtlLocale());
|
||||
ASSERT_TRUE(ui_->rtl_locale_);
|
||||
}
|
||||
|
||||
TEST_F(ScreenRecoveryUITest, ShowMenu) {
|
||||
@@ -548,10 +537,10 @@ TEST_F(ScreenRecoveryUITest, LoadAnimation) {
|
||||
}
|
||||
Paths::Get().set_resource_dir(resource_dir.path);
|
||||
|
||||
ui_->RunLoadAnimation();
|
||||
ui_->LoadAnimation();
|
||||
|
||||
ASSERT_EQ(2u, ui_->GetIntroFrames());
|
||||
ASSERT_EQ(3u, ui_->GetLoopFrames());
|
||||
ASSERT_EQ(2u, ui_->intro_frames);
|
||||
ASSERT_EQ(3u, ui_->loop_frames);
|
||||
|
||||
for (const auto& name : tempfiles) {
|
||||
ASSERT_EQ(0, unlink(name.c_str()));
|
||||
@@ -567,7 +556,7 @@ TEST_F(ScreenRecoveryUITest, LoadAnimation_MissingAnimation) {
|
||||
Paths::Get().set_resource_dir("/proc/self");
|
||||
|
||||
::testing::FLAGS_gtest_death_test_style = "threadsafe";
|
||||
ASSERT_EXIT(ui_->RunLoadAnimation(), ::testing::KilledBySignal(SIGABRT), "");
|
||||
ASSERT_EXIT(ui_->LoadAnimation(), ::testing::KilledBySignal(SIGABRT), "");
|
||||
}
|
||||
|
||||
#undef RETURN_IF_NO_GRAPHICS
|
||||
|
||||
Reference in New Issue
Block a user