1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
// Copyright (C) 2019 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.
#include <libsnapshot/test_helpers.h>
#include <sys/statvfs.h>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/parsebool.h>
#include <android-base/properties.h>
#include <android-base/strings.h>
#include <android-base/unique_fd.h>
#include <gtest/gtest.h>
#include <liblp/property_fetcher.h>
#include <openssl/sha.h>
#include <payload_consumer/file_descriptor.h>
namespace android {
namespace snapshot {
using android::base::ReadFully;
using android::base::unique_fd;
using android::base::WriteFully;
using android::fiemap::IImageManager;
using testing::AssertionFailure;
using testing::AssertionSuccess;
void DeleteBackingImage(IImageManager* manager, const std::string& name) {
if (manager->IsImageMapped(name)) {
ASSERT_TRUE(manager->UnmapImageDevice(name));
}
if (manager->BackingImageExists(name)) {
ASSERT_TRUE(manager->DeleteBackingImage(name));
}
}
android::base::unique_fd TestPartitionOpener::Open(const std::string& partition_name,
int flags) const {
if (partition_name == "super") {
return PartitionOpener::Open(fake_super_path_, flags);
}
return PartitionOpener::Open(partition_name, flags);
}
bool TestPartitionOpener::GetInfo(const std::string& partition_name,
android::fs_mgr::BlockDeviceInfo* info) const {
if (partition_name != "super") {
return PartitionOpener::GetInfo(partition_name, info);
}
if (PartitionOpener::GetInfo(fake_super_path_, info)) {
// SnapshotUpdateTest uses a relatively small super partition, which requires a small
// alignment and 0 offset to work. For the purpose of this test, hardcode the alignment
// and offset. This test isn't about testing liblp or libdm.
info->alignment_offset = 0;
info->alignment = std::min<uint32_t>(info->alignment, static_cast<uint32_t>(128_KiB));
return true;
}
return false;
}
std::string TestPartitionOpener::GetDeviceString(const std::string& partition_name) const {
if (partition_name == "super") {
return fake_super_path_;
}
return PartitionOpener::GetDeviceString(partition_name);
}
std::string ToHexString(const uint8_t* buf, size_t len) {
char lookup[] = "0123456789abcdef";
std::string out(len * 2 + 1, '\0');
char* outp = out.data();
for (; len > 0; len--, buf++) {
*outp++ = (char)lookup[*buf >> 4];
*outp++ = (char)lookup[*buf & 0xf];
}
return out;
}
bool WriteRandomData(const std::string& path, std::optional<size_t> expect_size,
std::string* hash) {
unique_fd rand(open("/dev/urandom", O_RDONLY));
unique_fd fd(open(path.c_str(), O_WRONLY));
SHA256_CTX ctx;
if (hash) {
SHA256_Init(&ctx);
}
char buf[4096];
size_t total_written = 0;
while (!expect_size || total_written < *expect_size) {
ssize_t n = TEMP_FAILURE_RETRY(read(rand.get(), buf, sizeof(buf)));
if (n <= 0) return false;
if (!WriteFully(fd.get(), buf, n)) {
if (errno == ENOSPC) {
break;
}
PLOG(ERROR) << "Cannot write " << path;
return false;
}
total_written += n;
if (hash) {
SHA256_Update(&ctx, buf, n);
}
}
if (expect_size && total_written != *expect_size) {
PLOG(ERROR) << "Written " << total_written << " bytes, expected " << *expect_size;
return false;
}
if (hash) {
uint8_t out[32];
SHA256_Final(out, &ctx);
*hash = ToHexString(out, sizeof(out));
}
return true;
}
std::string HashSnapshot(ICowWriter::FileDescriptor* reader) {
SHA256_CTX ctx;
SHA256_Init(&ctx);
uint64_t remaining = reader->BlockDevSize();
char buffer[4096];
while (remaining) {
size_t to_read =
static_cast<size_t>(std::min(remaining, static_cast<uint64_t>(sizeof(buffer))));
ssize_t read = reader->Read(&buffer, to_read);
if (read <= 0) {
if (read < 0) {
LOG(ERROR) << "Failed to read from snapshot writer";
return {};
}
break;
}
SHA256_Update(&ctx, buffer, to_read);
remaining -= static_cast<size_t>(read);
}
uint8_t out[32];
SHA256_Final(out, &ctx);
return ToHexString(out, sizeof(out));
}
std::optional<std::string> GetHash(const std::string& path) {
std::string content;
if (!android::base::ReadFileToString(path, &content, true)) {
PLOG(ERROR) << "Cannot access " << path;
return std::nullopt;
}
SHA256_CTX ctx;
SHA256_Init(&ctx);
SHA256_Update(&ctx, content.c_str(), content.size());
uint8_t out[32];
SHA256_Final(out, &ctx);
return ToHexString(out, sizeof(out));
}
AssertionResult FillFakeMetadata(MetadataBuilder* builder, const DeltaArchiveManifest& manifest,
const std::string& suffix) {
for (const auto& group : manifest.dynamic_partition_metadata().groups()) {
if (!builder->AddGroup(group.name() + suffix, group.size())) {
return AssertionFailure()
<< "Cannot add group " << group.name() << " with size " << group.size();
}
for (const auto& partition_name : group.partition_names()) {
auto p = builder->AddPartition(partition_name + suffix, group.name() + suffix,
0 /* attr */);
if (!p) {
return AssertionFailure() << "Cannot add partition " << partition_name + suffix
<< " to group " << group.name() << suffix;
}
}
}
for (const auto& partition : manifest.partitions()) {
auto p = builder->FindPartition(partition.partition_name() + suffix);
if (!p) {
return AssertionFailure() << "Cannot resize partition " << partition.partition_name()
<< suffix << "; it is not found.";
}
if (!builder->ResizePartition(p, partition.new_partition_info().size())) {
return AssertionFailure()
<< "Cannot resize partition " << partition.partition_name() << suffix
<< " to size " << partition.new_partition_info().size();
}
}
return AssertionSuccess();
}
void SetSize(PartitionUpdate* partition_update, uint64_t size) {
partition_update->mutable_new_partition_info()->set_size(size);
}
uint64_t GetSize(PartitionUpdate* partition_update) {
return partition_update->mutable_new_partition_info()->size();
}
bool IsVirtualAbEnabled() {
return android::base::GetBoolProperty("ro.virtual_ab.enabled", false);
}
SnapshotTestPropertyFetcher::SnapshotTestPropertyFetcher(
const std::string& slot_suffix, std::unordered_map<std::string, std::string>&& props)
: properties_(std::move(props)) {
properties_["ro.boot.slot_suffix"] = slot_suffix;
properties_["ro.boot.dynamic_partitions"] = "true";
properties_["ro.boot.dynamic_partitions_retrofit"] = "false";
properties_["ro.virtual_ab.enabled"] = "true";
}
std::string SnapshotTestPropertyFetcher::GetProperty(const std::string& key,
const std::string& defaultValue) {
auto iter = properties_.find(key);
if (iter == properties_.end()) {
return android::base::GetProperty(key, defaultValue);
}
return iter->second;
}
bool SnapshotTestPropertyFetcher::GetBoolProperty(const std::string& key, bool defaultValue) {
auto iter = properties_.find(key);
if (iter == properties_.end()) {
return android::base::GetBoolProperty(key, defaultValue);
}
switch (android::base::ParseBool(iter->second)) {
case android::base::ParseBoolResult::kTrue:
return true;
case android::base::ParseBoolResult::kFalse:
return false;
default:
return defaultValue;
}
}
} // namespace snapshot
} // namespace android
|