blob: 9f33e923e4b46106a6316ced50a783befd1a540a [file] [log] [blame]
/*
* 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.
*/
#define LOG_TAG "VtsSecurityAvbTest"
#include <array>
#include <list>
#include <map>
#include <set>
#include <tuple>
#include <vector>
#include <android-base/file.h>
#include <android-base/logging.h>
#include <android-base/properties.h>
#include <android-base/result.h>
#include <android-base/stringprintf.h>
#include <android-base/unique_fd.h>
#include <fs_avb/fs_avb_util.h>
#include <fs_mgr/roots.h>
#include <fstab/fstab.h>
#include <gtest/gtest.h>
#include <libavb/libavb.h>
#include <libavb_user/avb_ops_user.h>
#include <libdm/dm.h>
#include <log/log.h>
#include "gsi_validation_utils.h"
using android::base::Error;
using android::base::Result;
// Calculates the digest of a block filled with 0.
static bool CalculateZeroDigest(const ShaHasher &hasher, size_t size,
const void *salt, int32_t block_length,
uint8_t *digest) {
const std::vector<uint8_t> buffer(size, 0);
return hasher.CalculateDigest(buffer.data(), size, salt, block_length,
digest);
}
// Logical structure of a hashtree:
//
// Level 2: [ root ]
// / \
// Level 1: [entry_0] [entry_1]
// / ... \ ... \
// Level 0: [entry_0_0] ... [entry_0_127] ... [entry_1_127]
// / ... \ / ... \ / ... \
// Data: blk_0 ... blk_127 blk_16256 ... blk_16383 blk_32640 ... blk_32767
//
// The digest of a data block or a hash block in level N is stored in level
// N + 1.
// The function VerifyHashtree allocates a HashtreeLevel for each level. It
// calculates the digests of the blocks in lower level and fills them in
// calculating_hash_block. When calculating_hash_block is full, it is compared
// with the hash block at comparing_tree_offset in the image. After comparison,
// calculating_hash_block is cleared and reused for the next hash block.
//
// comparing_tree_offset
// |
// v
// [<-------------------- level_size -------------------->]
// [entry_0_0] ... [entry_0_127 ] ... [entry_1_127]
//
// [calculating_hash_block]
// ^
// |
// calculating_offset
struct HashtreeLevel {
// Offset of an expected hash block to compare, relative to the beginning of
// the hashtree in the image file.
uint64_t comparing_tree_offset;
// Size of this level, in bytes.
const uint64_t level_size;
// Offset of a digest in calculating_hash_block.
size_t calculating_offset;
// The hash block containing the digests calculated from the lower level.
std::vector<uint8_t> calculating_hash_block;
HashtreeLevel(uint64_t lv_offset, uint64_t lv_size, size_t hash_block_size)
: comparing_tree_offset(lv_offset),
level_size(lv_size),
calculating_offset(0),
calculating_hash_block(hash_block_size) {}
};
// Calculates and verifies the image's hashtree.
//
// Arguments:
// image_fd: The raw image file.
// image_size, data_block_size, hash_block_size, tree_offset, tree_size: The
// fields in AvbHashtreeDescriptor.
// salt: The binary value of the salt in FsAvbHashtreeDescriptor.
// hasher: The ShaHasher object.
// root_digest: The binary value of the root_digest in
// FsAvbHashtreeDescriptor.
//
// Returns:
// An empty string if the function succeeds.
// Otherwise it returns the error message.
static std::string VerifyHashtree(int image_fd, uint64_t image_size,
const std::vector<uint8_t> &salt,
uint32_t data_block_size,
uint32_t hash_block_size,
uint64_t tree_offset, uint64_t tree_size,
const ShaHasher &hasher,
const std::vector<uint8_t> &root_digest) {
uint32_t digest_size = hasher.GetDigestSize();
uint32_t padded_digest_size = 1;
while (padded_digest_size < digest_size) {
padded_digest_size *= 2;
}
if (image_size % data_block_size != 0) {
return "Image size is not a multiple of data block size";
}
uint64_t data_block_count = image_size / data_block_size;
uint32_t digests_per_block = hash_block_size / padded_digest_size;
// Initialize HashtreeLevel in bottom-up order.
std::list<HashtreeLevel> levels;
{
uint64_t hash_block_count = 0;
uint32_t level_block_count = data_block_count;
// Calculate the hashtree until the root hash is reached.
while (level_block_count > 1) {
uint32_t next_level_block_count =
(level_block_count + digests_per_block - 1) / digests_per_block;
hash_block_count += next_level_block_count;
// comparing_tree_offset will be initialized later.
levels.emplace_back(0 /* comparing_tree_offset */,
next_level_block_count * hash_block_size,
hash_block_size);
level_block_count = next_level_block_count;
}
if (hash_block_count * hash_block_size != tree_size) {
return "Block count and tree size mismatch";
}
// Append the root digest. Its level_size is unused.
levels.emplace_back(0 /* comparing_tree_offset */, 0 /* level_size */,
digest_size);
// Initialize comparing_tree_offset of each level
for (auto level = std::prev(levels.end()); level != levels.begin();
level--) {
std::prev(level)->comparing_tree_offset =
level->comparing_tree_offset + level->level_size;
}
}
std::vector<uint8_t> padded_zero_digest(padded_digest_size, 0);
if (!CalculateZeroDigest(hasher, data_block_size, salt.data(), salt.size(),
padded_zero_digest.data())) {
return "CalculateZeroDigest fails";
}
std::vector<uint8_t> data_block(data_block_size);
std::vector<uint8_t> tree_block(hash_block_size);
for (uint64_t image_offset = 0; image_offset < image_size;
image_offset += data_block_size) {
ssize_t read_size = TEMP_FAILURE_RETRY(
pread64(image_fd, data_block.data(), data_block.size(), image_offset));
if (read_size != data_block.size()) {
return android::base::StringPrintf(
"Fail to read data block at offset %llu",
(unsigned long long)image_offset);
}
bool is_last_data = (image_offset + data_block.size() == image_size);
// The block to be digested
std::vector<uint8_t> *current_block = &data_block;
for (auto level = levels.begin(); true; level++) {
uint8_t *current_digest =
level->calculating_hash_block.data() + level->calculating_offset;
if (!hasher.CalculateDigest(current_block->data(), current_block->size(),
salt.data(), salt.size(), current_digest)) {
return "CalculateDigest fails";
}
// Stop at root digest
if (std::next(level) == levels.end()) {
break;
}
// Pad the digest
memset(current_digest + digest_size, 0, padded_digest_size - digest_size);
level->calculating_offset += padded_digest_size;
// Pad the last hash block of this level
if (is_last_data) {
memset(
level->calculating_hash_block.data() + level->calculating_offset, 0,
level->calculating_hash_block.size() - level->calculating_offset);
} else if (level->calculating_offset <
level->calculating_hash_block.size()) {
// Stop at this level if the hash block is not full, continue to read
// more data_blocks from the outside loop for digest calculation
break;
}
// Verify the full hash block
// current_block may point to tree_block. Since the following pread64
// changes tree_block, do not read current_block in the rest of this
// code block.
current_block = nullptr;
read_size = TEMP_FAILURE_RETRY(
pread64(image_fd, tree_block.data(), tree_block.size(),
tree_offset + level->comparing_tree_offset));
if (read_size != tree_block.size()) {
return android::base::StringPrintf(
"Fail to read tree block at offset %llu",
(unsigned long long)tree_offset + level->comparing_tree_offset);
}
for (uint32_t offset = 0; offset < tree_block.size();
offset += padded_digest_size) {
// If the digest in the hashtree is equal to the digest of zero block,
// it indicates the corresponding data block is in DONT_CARE chunk in
// sparse image. The block should not be verified.
if (level == levels.begin() &&
memcmp(tree_block.data() + offset, padded_zero_digest.data(),
padded_digest_size) == 0) {
continue;
}
if (memcmp(tree_block.data() + offset,
level->calculating_hash_block.data() + offset,
padded_digest_size) != 0) {
return android::base::StringPrintf(
"Hash blocks mismatch, block offset = %llu, digest offset = %u",
(unsigned long long)tree_offset + level->comparing_tree_offset,
offset);
}
}
level->calculating_offset = 0;
level->comparing_tree_offset += hash_block_size;
if (level->comparing_tree_offset > tree_size) {
return "Tree offset is out of bound";
}
// Prepare for next/upper level, to calculate the digest of this
// hash_block for comparison
current_block = &tree_block;
}
}
if (levels.back().calculating_hash_block != root_digest) {
return "Root digests mismatch";
}
return "";
}
// Gets the system partition's AvbHashtreeDescriptor and device file path.
//
// Arguments:
// out_verify_result: The result of vbmeta verification.
// out_system_path: The system's device file path.
//
// Returns:
// The pointer to the system's AvbHashtreeDescriptor.
// nullptr if any operation fails.
static std::unique_ptr<android::fs_mgr::FsAvbHashtreeDescriptor>
GetSystemHashtreeDescriptor(
android::fs_mgr::VBMetaVerifyResult *out_verify_result,
std::string *out_system_path) {
android::fs_mgr::Fstab default_fstab;
bool ok = ReadDefaultFstab(&default_fstab);
if (!ok) {
ALOGE("ReadDefaultFstab fails");
return nullptr;
}
android::fs_mgr::FstabEntry *system_fstab_entry =
GetEntryForPath(&default_fstab, "/system");
if (system_fstab_entry == nullptr) {
ALOGE("GetEntryForPath fails");
return nullptr;
}
ok = fs_mgr_update_logical_partition(system_fstab_entry);
if (!ok) {
ALOGE("fs_mgr_update_logical_partition fails");
return nullptr;
}
CHECK(out_system_path != nullptr);
*out_system_path = system_fstab_entry->blk_device;
std::string out_public_key_data;
std::string out_avb_partition_name;
std::unique_ptr<android::fs_mgr::VBMetaData> vbmeta =
android::fs_mgr::LoadAndVerifyVbmeta(
*system_fstab_entry, "" /* expected_key_blob */, &out_public_key_data,
&out_avb_partition_name, out_verify_result);
if (vbmeta == nullptr) {
ALOGE("LoadAndVerifyVbmeta fails");
return nullptr;
}
if (out_public_key_data.empty()) {
ALOGE("The GSI image is not signed");
return nullptr;
}
if (!ValidatePublicKeyBlob(out_public_key_data)) {
ALOGE("The GSI image is not signed by an official key");
return nullptr;
}
std::unique_ptr<android::fs_mgr::FsAvbHashtreeDescriptor> descriptor =
android::fs_mgr::GetHashtreeDescriptor("system", std::move(*vbmeta));
if (descriptor == nullptr) {
ALOGE("GetHashtreeDescriptor fails");
return nullptr;
}
return descriptor;
}
const uint32_t kCurrentApiLevel = 10000;
static uint32_t ReadApiLevelProps(
const std::vector<std::string> &api_level_props) {
uint32_t api_level = kCurrentApiLevel;
for (const auto &api_level_prop : api_level_props) {
api_level = android::base::GetUintProperty<uint32_t>(api_level_prop,
kCurrentApiLevel);
if (api_level != kCurrentApiLevel) {
break;
}
}
return api_level;
}
static uint32_t GetBoardApiLevel() {
// "ro.vendor.api_level" is added in Android T.
uint32_t vendor_api_level = ReadApiLevelProps({"ro.vendor.api_level"});
if (vendor_api_level != kCurrentApiLevel) {
return vendor_api_level;
}
// For pre-T devices, determine the board API level by ourselves.
uint32_t device_api_level =
ReadApiLevelProps({"ro.product.first_api_level", "ro.build.version.sdk"});
uint32_t board_api_level =
ReadApiLevelProps({"ro.board.api_level", "ro.board.first_api_level",
"ro.vendor.build.version.sdk"});
uint32_t api_level =
board_api_level < device_api_level ? board_api_level : device_api_level;
if (api_level == kCurrentApiLevel) {
ADD_FAILURE() << "Failed to determine board API level";
return 0;
}
return api_level;
}
// Loads contents and metadata of logical system partition, calculates
// the hashtree, and compares with the metadata.
TEST(AvbTest, SystemHashtree) {
android::fs_mgr::VBMetaVerifyResult verify_result;
std::string system_path;
std::unique_ptr<android::fs_mgr::FsAvbHashtreeDescriptor> descriptor =
GetSystemHashtreeDescriptor(&verify_result, &system_path);
ASSERT_TRUE(descriptor);
ALOGI("System partition is %s", system_path.c_str());
// TODO: Skip assertion when running with non-compliance configuration.
EXPECT_EQ(verify_result, android::fs_mgr::VBMetaVerifyResult::kSuccess);
EXPECT_NE(verify_result,
android::fs_mgr::VBMetaVerifyResult::kErrorVerification)
<< "The system image is not an officially signed GSI.";
const std::string &salt_str = descriptor->salt;
const std::string &expected_digest_str = descriptor->root_digest;
android::base::unique_fd fd(open(system_path.c_str(), O_RDONLY));
ASSERT_GE(fd, 0) << "Fail to open system partition. Try 'adb root'.";
const std::string hash_algorithm(
reinterpret_cast<const char *>(descriptor->hash_algorithm));
ALOGI("hash_algorithm = %s", hash_algorithm.c_str());
std::unique_ptr<ShaHasher> hasher = CreateShaHasher(hash_algorithm);
ASSERT_TRUE(hasher);
std::vector<uint8_t> salt, expected_digest;
bool ok = HexToBytes(salt_str, &salt);
ASSERT_TRUE(ok) << "Invalid salt in descriptor: " << salt_str;
ok = HexToBytes(expected_digest_str, &expected_digest);
ASSERT_TRUE(ok) << "Invalid digest in descriptor: " << expected_digest_str;
ASSERT_EQ(expected_digest.size(), hasher->GetDigestSize());
ALOGI("image_size = %llu", (unsigned long long)descriptor->image_size);
ALOGI("data_block_size = %u", descriptor->data_block_size);
ALOGI("hash_block_size = %u", descriptor->hash_block_size);
ALOGI("tree_offset = %llu", (unsigned long long)descriptor->tree_offset);
ALOGI("tree_size = %llu", (unsigned long long)descriptor->tree_size);
std::string error_message = VerifyHashtree(
fd, descriptor->image_size, salt, descriptor->data_block_size,
descriptor->hash_block_size, descriptor->tree_offset,
descriptor->tree_size, *hasher, expected_digest);
ASSERT_EQ(error_message, "");
}
// Finds the next word consisting of non-whitespace characters in a string.
//
// Arguments:
// str: The string to be searched for the next word.
// pos: The starting position to search for the next word.
// This function sets it to the past-the-end position of the word.
//
// Returns:
// The starting position of the word.
// If there is no next word, this function does not change pos and returns
// std::string::npos.
static size_t NextWord(const std::string &str, size_t *pos) {
const char *whitespaces = " \t\r\n";
size_t start = str.find_first_not_of(whitespaces, *pos);
if (start == std::string::npos) {
return start;
}
*pos = str.find_first_of(whitespaces, start);
if (*pos == std::string::npos) {
*pos = str.size();
}
return start;
}
// Compares device mapper table with system hashtree descriptor.
TEST(AvbTest, SystemDescriptor) {
// Get system hashtree descriptor.
android::fs_mgr::VBMetaVerifyResult verify_result;
std::string system_path;
std::unique_ptr<android::fs_mgr::FsAvbHashtreeDescriptor> descriptor =
GetSystemHashtreeDescriptor(&verify_result, &system_path);
ASSERT_TRUE(descriptor);
// TODO: Assert when running with compliance configuration.
// The SystemHashtree function asserts verify_result.
if (verify_result != android::fs_mgr::VBMetaVerifyResult::kSuccess) {
ALOGW("The system image is not an officially signed GSI.");
}
// Get device mapper table.
android::dm::DeviceMapper &device_mapper =
android::dm::DeviceMapper::Instance();
std::vector<android::dm::DeviceMapper::TargetInfo> table;
bool ok = device_mapper.GetTableInfo("system-verity", &table);
ASSERT_TRUE(ok) << "GetTableInfo fails";
ASSERT_EQ(table.size(), 1);
const android::dm::DeviceMapper::TargetInfo &target = table[0];
// Sample output:
// Device mapper table for system-verity:
// 0-1783288: verity, 1 253:0 253:0 4096 4096 222911 222911 sha1
// 6b2b46715a2d27c53cc7f91fe63ce798ff1f3df7
// 65bc99ca8e97379d4f7adc66664941acc0a8e682 10 restart_on_corruption
// ignore_zero_blocks use_fec_from_device 253:0 fec_blocks 224668 fec_start
// 224668 fec_roots 2
ALOGI("Device mapper table for system-verity:\n%llu-%llu: %s, %s",
target.spec.sector_start, target.spec.sector_start + target.spec.length,
target.spec.target_type, target.data.c_str());
EXPECT_EQ(strcmp(target.spec.target_type, "verity"), 0);
// Compare the target's positional parameters with the descriptor. Reference:
// https://gitlab.com/cryptsetup/cryptsetup/wikis/DMVerity#mapping-table-for-verity-target
std::array<std::string, 10> descriptor_values = {
std::to_string(descriptor->dm_verity_version),
"", // skip data_dev
"", // skip hash_dev
std::to_string(descriptor->data_block_size),
std::to_string(descriptor->hash_block_size),
std::to_string(descriptor->image_size /
descriptor->data_block_size), // #blocks
std::to_string(descriptor->image_size /
descriptor->data_block_size), // hash_start
reinterpret_cast<const char *>(descriptor->hash_algorithm),
descriptor->root_digest,
descriptor->salt,
};
size_t next_pos = 0;
for (const std::string &descriptor_value : descriptor_values) {
size_t begin_pos = NextWord(target.data, &next_pos);
ASSERT_NE(begin_pos, std::string::npos);
if (!descriptor_value.empty()) {
EXPECT_EQ(target.data.compare(begin_pos, next_pos - begin_pos,
descriptor_value),
0);
}
}
// Compare the target's optional parameters with the descriptor.
unsigned long opt_param_count;
{
size_t begin_pos = NextWord(target.data, &next_pos);
ASSERT_NE(begin_pos, std::string::npos);
opt_param_count =
std::stoul(target.data.substr(begin_pos, next_pos - begin_pos));
}
// https://gitlab.com/cryptsetup/cryptsetup/wikis/DMVerity#optional-parameters
std::set<std::string> opt_params = {
"check_at_most_once",
"ignore_corruption",
"ignore_zero_blocks",
"restart_on_corruption",
};
// https://gitlab.com/cryptsetup/cryptsetup/wikis/DMVerity#optional-fec-forward-error-correction-parameters
std::map<std::string, std::string> opt_fec_params = {
{"fec_blocks", ""},
{"fec_roots", ""},
{"fec_start", ""},
{"use_fec_from_device", ""},
};
for (unsigned long i = 0; i < opt_param_count; i++) {
size_t begin_pos = NextWord(target.data, &next_pos);
ASSERT_NE(begin_pos, std::string::npos);
const std::string param_name(target.data, begin_pos, next_pos - begin_pos);
if (opt_fec_params.count(param_name)) {
i++;
ASSERT_LT(i, opt_param_count);
begin_pos = NextWord(target.data, &next_pos);
ASSERT_NE(begin_pos, std::string::npos);
opt_fec_params[param_name] =
target.data.substr(begin_pos, next_pos - begin_pos);
} else {
ASSERT_NE(opt_params.count(param_name), 0)
<< "Unknown dm-verity target parameter: " << param_name;
}
}
EXPECT_EQ(opt_fec_params["fec_roots"],
std::to_string(descriptor->fec_num_roots));
EXPECT_EQ(
opt_fec_params["fec_blocks"],
std::to_string(descriptor->fec_offset / descriptor->data_block_size));
EXPECT_EQ(
opt_fec_params["fec_start"],
std::to_string(descriptor->fec_offset / descriptor->data_block_size));
// skip use_fec_from_device
ASSERT_EQ(NextWord(target.data, &next_pos), std::string::npos);
}
static void VerifyHashAlgorithm(const AvbHashtreeDescriptor* descriptor) {
AvbHashtreeDescriptor hashtree_descriptor;
ASSERT_TRUE(avb_hashtree_descriptor_validate_and_byteswap(
descriptor, &hashtree_descriptor))
<< "hash tree descriptor is invalid.";
auto partition_name_ptr = reinterpret_cast<const uint8_t*>(descriptor) +
sizeof(AvbHashtreeDescriptor);
std::string partition_name(
partition_name_ptr,
partition_name_ptr + hashtree_descriptor.partition_name_len);
if (avb_strcmp(
reinterpret_cast<const char*>(hashtree_descriptor.hash_algorithm),
"sha1") == 0) {
FAIL() << "The hash tree algorithm cannot be SHA1 for partition "
<< partition_name;
}
}
// In VTS, a boot-debug.img or vendor_boot-debug.img, which is not release
// key signed, will be used. In this case, The AvbSlotVerifyResult returned
// from libavb->avb_slot_verify() might be the following non-fatal errors.
// We should allow them in VTS because it might not be
// AVB_SLOT_VERIFY_RESULT_OK.
static bool CheckAvbSlotVerifyResult(AvbSlotVerifyResult result) {
switch (result) {
case AVB_SLOT_VERIFY_RESULT_OK:
case AVB_SLOT_VERIFY_RESULT_ERROR_VERIFICATION:
case AVB_SLOT_VERIFY_RESULT_ERROR_ROLLBACK_INDEX:
case AVB_SLOT_VERIFY_RESULT_ERROR_PUBLIC_KEY_REJECTED:
return true;
case AVB_SLOT_VERIFY_RESULT_ERROR_OOM:
case AVB_SLOT_VERIFY_RESULT_ERROR_IO:
case AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_METADATA:
case AVB_SLOT_VERIFY_RESULT_ERROR_UNSUPPORTED_VERSION:
case AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_ARGUMENT:
return false;
}
return false;
}
static void LoadAndVerifyAvbSlotDataForCurrentSlot(
AvbSlotVerifyData** avb_slot_data) {
// Use an empty suffix string for non-A/B devices.
std::string suffix;
if (android::base::GetBoolProperty("ro.build.ab_update", false)) {
suffix = android::base::GetProperty("ro.boot.slot_suffix", "");
ASSERT_TRUE(!suffix.empty()) << "Failed to get suffix for the current slot";
}
const char* requested_partitions[] = {nullptr};
// AVB_SLOT_VERIFY_FLAGS_ALLOW_VERIFICATION_ERROR is needed for boot-debug.img
// or vendor_boot-debug.img, which is not releae key signed.
auto avb_ops = avb_ops_user_new();
auto verify_result =
avb_slot_verify(avb_ops, requested_partitions, suffix.c_str(),
AVB_SLOT_VERIFY_FLAGS_ALLOW_VERIFICATION_ERROR,
AVB_HASHTREE_ERROR_MODE_EIO, avb_slot_data);
ASSERT_TRUE(CheckAvbSlotVerifyResult(verify_result))
<< "Failed to verify avb slot data " << verify_result;
}
// Check the correct hashtree algorithm is used.
TEST(AvbTest, HashtreeAlgorithm) {
constexpr auto S_API_LEVEL = 31;
uint32_t board_api_level = GetBoardApiLevel();
GTEST_LOG_(INFO) << "Board API level is " << board_api_level;
if (board_api_level < S_API_LEVEL) {
GTEST_LOG_(INFO)
<< "Exempt from avb hash tree test due to old starting API level";
return;
}
// Note we don't iterate the entries in fstab; because we don't know if a
// partition uses hashtree or not.
AvbSlotVerifyData* avb_slot_data;
LoadAndVerifyAvbSlotDataForCurrentSlot(&avb_slot_data);
ASSERT_NE(nullptr, avb_slot_data) << "Failed to load avb slot verify data";
std::unique_ptr<AvbSlotVerifyData, decltype(&avb_slot_verify_data_free)>
scope_guard(avb_slot_data, avb_slot_verify_data_free);
// Iterate over the loaded vbmeta structs
for (size_t i = 0; i < avb_slot_data->num_vbmeta_images; i++) {
std::string partition_name = avb_slot_data->vbmeta_images[i].partition_name;
const auto& vbmeta_image = avb_slot_data->vbmeta_images[i];
size_t num_descriptors;
auto descriptors = avb_descriptor_get_all(
vbmeta_image.vbmeta_data, vbmeta_image.vbmeta_size, &num_descriptors);
// Iterate over the hashtree descriptors
for (size_t n = 0; n < num_descriptors; n++) {
if (avb_be64toh(descriptors[n]->tag) != AVB_DESCRIPTOR_TAG_HASHTREE) {
continue;
}
VerifyHashAlgorithm(
reinterpret_cast<const AvbHashtreeDescriptor*>(descriptors[n]));
}
}
}