// 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 #include #include #include #include #include #include #include #include #include #include #include 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(info->alignment, static_cast(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 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(std::min(remaining, static_cast(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(read); } uint8_t out[32]; SHA256_Final(out, &ctx); return ToHexString(out, sizeof(out)); } std::optional 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&& 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