| // Copyright 2017 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <inttypes.h> |
| #include <limits> |
| #include <safemath/checked_math.h> |
| #include <stdarg.h> |
| #include <stdlib.h> |
| #include <string.h> |
| |
| #include <digest/digest.h> |
| #include <digest/merkle-tree.h> |
| #include <fs/trace.h> |
| #include <fs/transaction/block_transaction.h> |
| |
| #ifdef __Fuchsia__ |
| #include <fuchsia/hardware/block/c/fidl.h> |
| #include <fuchsia/hardware/block/volume/c/fidl.h> |
| #include <fvm/client.h> |
| #endif |
| |
| #include <blobfs/common.h> |
| |
| using digest::Digest; |
| using digest::MerkleTreeCreator; |
| |
| namespace blobfs { |
| |
| namespace { |
| // Dumps the content of superblock to |out|. Does nothing if |out| is nullptr. |
| void DumpSuperblock(const Superblock& info, FILE* out) { |
| if (out == nullptr) { |
| return; |
| } |
| |
| fprintf(out, |
| "info.magic0: %" PRIu64 |
| "\n" |
| "info.magic1: %" PRIu64 |
| "\n" |
| "info.version: %" PRIu32 |
| "\n" |
| "info.flags: %" PRIu32 |
| "\n" |
| "info.block_size: %" PRIu32 |
| "\n" |
| "info.data_block_count: %" PRIu64 |
| "\n" |
| "info.journal_block_count: %" PRIu64 |
| "\n" |
| "info.inode_count: %" PRIu64 |
| "\n" |
| "info.alloc_block_count: %" PRIu64 |
| "\n" |
| "info.alloc_inode_count: %" PRIu64 |
| "\n" |
| "info.blob_header_next: %" PRIu64 |
| "\n" |
| "info.slice_size: %" PRIu64 |
| "\n" |
| "info.vslice_count: %" PRIu64 |
| "\n" |
| "info.abm_slices: %" PRIu32 |
| "\n" |
| "info.ino_slices: %" PRIu32 |
| "\n" |
| "info.dat_slices: %" PRIu32 |
| "\n" |
| "info.journal_slices: %" PRIu32 "\n", |
| info.magic0, info.magic1, info.version, info.flags, info.block_size, |
| info.data_block_count, info.journal_block_count, info.inode_count, info.alloc_block_count, |
| info.alloc_inode_count, info.blob_header_next, info.slice_size, info.vslice_count, |
| info.abm_slices, info.ino_slices, info.dat_slices, info.journal_slices); |
| } |
| |
| } // namespace |
| |
| // Number of blocks reserved for the Merkle Tree |
| uint32_t MerkleTreeBlocks(const Inode& blobNode) { |
| MerkleTreeCreator mtc; |
| // If this fails, omit the Merkle tree. This will cause subsequent Merkle tree creation and/or |
| // verification to fail. |
| zx_status_t status = mtc.SetDataLength(blobNode.blob_size); |
| if (status != ZX_OK) { |
| FS_TRACE_ERROR("blobfs: Merkle tree blocks (%s) Failure: %d\n", |
| Digest(blobNode.merkle_root_hash).ToString().c_str(), status); |
| return 0; |
| } |
| size_t merkle_size = mtc.GetTreeLength(); |
| if (merkle_size > std::numeric_limits<uint32_t>::max()) { |
| FS_TRACE_ERROR("blobfs: Merkle tree blocks (%s) max exceeded: %zu\n", |
| Digest(blobNode.merkle_root_hash).ToString().c_str(), merkle_size); |
| return 0; |
| } |
| return fbl::round_up(static_cast<uint32_t>(merkle_size), kBlobfsBlockSize) / kBlobfsBlockSize; |
| } |
| |
| // Validate the metadata for the superblock, given a maximum number of |
| // available blocks. |
| zx_status_t CheckSuperblock(const Superblock* info, uint64_t max) { |
| if ((info->magic0 != kBlobfsMagic0) || (info->magic1 != kBlobfsMagic1)) { |
| FS_TRACE_ERROR("blobfs: bad magic\n"); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| if (info->version != kBlobfsVersion) { |
| FS_TRACE_ERROR("blobfs: FS Version: %08x. Driver version: %08x\n", info->version, |
| kBlobfsVersion); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| if (info->block_size != kBlobfsBlockSize) { |
| FS_TRACE_ERROR("blobfs: bsz %u unsupported\n", info->block_size); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| |
| if (info->data_block_count < kMinimumDataBlocks) { |
| FS_TRACE_ERROR("blobfs: Not enough space for minimum data partition\n"); |
| return ZX_ERR_NO_SPACE; |
| } |
| |
| #ifdef __Fuchsia__ |
| if ((info->flags & kBlobFlagClean) == 0) { |
| FS_TRACE_ERROR("blobfs: filesystem in dirty state. Was not unmounted cleanly.\n"); |
| } else { |
| FS_TRACE_INFO("blobfs: filesystem in clean state.\n"); |
| } |
| #endif |
| |
| // Determine the number of blocks necessary for the block map and node map. |
| if (info->inode_count * sizeof(Inode) != NodeMapBlocks(*info) * kBlobfsBlockSize) { |
| FS_TRACE_ERROR("blobfs: Inode table block must be entirely filled\n"); |
| return ZX_ERR_BAD_STATE; |
| } |
| |
| if (info->journal_block_count < kMinimumJournalBlocks) { |
| FS_TRACE_ERROR("blobfs: Not enough space for minimum journal partition\n"); |
| return ZX_ERR_NO_SPACE; |
| } |
| |
| if ((info->flags & kBlobFlagFVM) == 0) { |
| if (TotalBlocks(*info) > max) { |
| FS_TRACE_ERROR("blobfs: too large for device\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| } else { |
| const size_t blocks_per_slice = info->slice_size / info->block_size; |
| |
| size_t abm_blocks_needed = BlockMapBlocks(*info); |
| size_t abm_blocks_allocated = info->abm_slices * blocks_per_slice; |
| if (abm_blocks_needed > abm_blocks_allocated) { |
| FS_TRACE_ERROR("blobfs: Not enough slices for block bitmap\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } else if (abm_blocks_allocated + BlockMapStartBlock(*info) >= NodeMapStartBlock(*info)) { |
| FS_TRACE_ERROR("blobfs: Block bitmap collides into node map\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| |
| size_t ino_blocks_needed = NodeMapBlocks(*info); |
| size_t ino_blocks_allocated = info->ino_slices * blocks_per_slice; |
| if (ino_blocks_needed > ino_blocks_allocated) { |
| FS_TRACE_ERROR("blobfs: Not enough slices for node map\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } else if (ino_blocks_allocated + NodeMapStartBlock(*info) >= DataStartBlock(*info)) { |
| FS_TRACE_ERROR("blobfs: Node bitmap collides into data blocks\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| |
| size_t dat_blocks_needed = DataBlocks(*info); |
| size_t dat_blocks_allocated = info->dat_slices * blocks_per_slice; |
| if (dat_blocks_needed < kStartBlockMinimum) { |
| FS_TRACE_ERROR("blobfs: Partition too small; no space left for data blocks\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } else if (dat_blocks_needed > dat_blocks_allocated) { |
| FS_TRACE_ERROR("blobfs: Not enough slices for data blocks\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } else if (dat_blocks_allocated + DataStartBlock(*info) > |
| std::numeric_limits<uint32_t>::max()) { |
| FS_TRACE_ERROR("blobfs: Data blocks overflow uint32\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| } |
| if (info->blob_header_next != 0) { |
| FS_TRACE_ERROR("blobfs: linked blob headers not yet supported\n"); |
| DumpSuperblock(*info, stderr); |
| return ZX_ERR_INVALID_ARGS; |
| } |
| return ZX_OK; |
| } |
| |
| uint32_t BlocksRequiredForInode(uint64_t inode_count) { |
| return safemath::checked_cast<uint32_t>(fbl::round_up(inode_count, kBlobfsInodesPerBlock) / |
| kBlobfsInodesPerBlock); |
| } |
| |
| uint32_t BlocksRequiredForBits(uint64_t bit_count) { |
| return safemath::checked_cast<uint32_t>(fbl::round_up(bit_count, kBlobfsBlockBits) / |
| kBlobfsBlockBits); |
| } |
| |
| uint32_t SuggestJournalBlocks(uint32_t current, uint32_t available) { return current + available; } |
| |
| void InitializeSuperblock(uint64_t block_count, Superblock* info) { |
| uint64_t inodes = kBlobfsDefaultInodeCount; |
| memset(info, 0x00, sizeof(*info)); |
| info->magic0 = kBlobfsMagic0; |
| info->magic1 = kBlobfsMagic1; |
| info->version = kBlobfsVersion; |
| info->flags = kBlobFlagClean; |
| info->block_size = kBlobfsBlockSize; |
| // TODO(planders): Consider modifying the inode count if we are low on space. |
| // It doesn't make sense to have fewer data blocks than inodes. |
| info->inode_count = inodes; |
| info->alloc_block_count = kStartBlockMinimum; |
| info->alloc_inode_count = 0; |
| info->blob_header_next = 0; // TODO(smklein): Allow chaining |
| |
| // Temporarily set the data_block_count to the total block_count so we can estimate the number |
| // of pre-data blocks. |
| info->data_block_count = block_count; |
| |
| // The result of DataStartBlock(info) is based on the current value of info.data_block_count. |
| // As a result, the block bitmap may have slightly more space allocated than is necessary. |
| size_t usable_blocks = |
| JournalStartBlock(*info) < block_count ? block_count - JournalStartBlock(*info) : 0; |
| |
| // Determine allocation for the journal vs. data blocks based on the number of blocks remaining. |
| if (usable_blocks >= kDefaultJournalBlocks * 2) { |
| // Regular-sized partition, capable of fitting a data region |
| // at least as large as the journal. Give all excess blocks |
| // to the data region. |
| info->journal_block_count = kDefaultJournalBlocks; |
| info->data_block_count = usable_blocks - kDefaultJournalBlocks; |
| } else if (usable_blocks >= kMinimumDataBlocks + kMinimumJournalBlocks) { |
| // On smaller partitions, give both regions the minimum amount of space, |
| // and split the remainder. The choice of where to allocate the "remainder" |
| // is arbitrary. |
| const size_t remainder_blocks = usable_blocks - (kMinimumDataBlocks + kMinimumJournalBlocks); |
| const size_t remainder_for_journal = remainder_blocks / 2; |
| const size_t remainder_for_data = remainder_blocks - remainder_for_journal; |
| info->journal_block_count = kMinimumJournalBlocks + remainder_for_journal; |
| info->data_block_count = kMinimumDataBlocks + remainder_for_data; |
| } else { |
| // Error, partition too small. |
| info->journal_block_count = 0; |
| info->data_block_count = 0; |
| } |
| } |
| |
| } // namespace blobfs |