Atmosphere/libraries/libstratosphere/source/fssystem/fssystem_romfs_filesystem.cpp

411 lines
18 KiB
C++
Raw Normal View History

2020-04-04 09:37:21 +00:00
/*
* Copyright (c) Atmosphère-NX
2020-04-04 09:37:21 +00:00
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stratosphere.hpp>
namespace ams::fssystem {
namespace {
2020-12-05 06:08:33 +00:00
constexpr size_t CalculateRequiredWorkingMemorySize(const fs::RomFileSystemInformation &header) {
2020-04-04 09:37:21 +00:00
return header.directory_bucket_size + header.directory_entry_size + header.file_bucket_size + header.file_entry_size;
}
class RomFsFile : public ams::fs::fsa::IFile, public ams::fs::impl::Newable {
private:
2021-10-10 07:14:06 +00:00
RomFsFileSystem *m_parent;
s64 m_start;
s64 m_end;
2020-04-04 09:37:21 +00:00
private:
s64 GetSize() const {
2021-10-10 07:14:06 +00:00
return m_end - m_start;
2020-04-04 09:37:21 +00:00
}
public:
2021-10-10 07:14:06 +00:00
RomFsFile(RomFsFileSystem *p, s64 s, s64 e) : m_parent(p), m_start(s), m_end(e) { /* ... */ }
2020-04-04 09:37:21 +00:00
virtual ~RomFsFile() { /* ... */ }
public:
2020-12-05 11:05:06 +00:00
virtual Result DoRead(size_t *out, s64 offset, void *buffer, size_t size, const fs::ReadOption &option) override {
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([=, this]() -> Result {
2020-04-04 09:37:21 +00:00
size_t read_size = 0;
R_TRY(this->DryRead(std::addressof(read_size), offset, size, option, fs::OpenMode_Read));
2021-10-10 07:14:06 +00:00
R_TRY(m_parent->GetBaseStorage()->Read(offset + m_start, buffer, read_size));
2020-04-04 09:37:21 +00:00
*out = read_size;
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
virtual Result DoGetSize(s64 *out) override {
2020-04-04 09:37:21 +00:00
*out = this->GetSize();
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
virtual Result DoFlush() override {
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
virtual Result DoWrite(s64 offset, const void *buffer, size_t size, const fs::WriteOption &option) override {
AMS_UNUSED(buffer);
2020-04-04 09:37:21 +00:00
bool needs_append;
R_TRY(this->DryWrite(std::addressof(needs_append), offset, size, option, fs::OpenMode_Read));
AMS_ASSERT(needs_append == false);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileA();
}
2020-12-05 11:05:06 +00:00
virtual Result DoSetSize(s64 size) override {
2020-04-04 09:37:21 +00:00
R_TRY(this->DrySetSize(size, fs::OpenMode_Read));
return fs::ResultUnsupportedOperationInRomFsFileA();
}
2020-12-05 11:05:06 +00:00
virtual Result DoOperateRange(void *dst, size_t dst_size, fs::OperationId op_id, s64 offset, s64 size, const void *src, size_t src_size) override {
2020-04-04 09:37:21 +00:00
switch (op_id) {
case fs::OperationId::Invalidate:
2020-04-04 09:37:21 +00:00
case fs::OperationId::QueryRange:
{
R_UNLESS(offset >= 0, fs::ResultOutOfRange());
R_UNLESS(this->GetSize() >= 0, fs::ResultOutOfRange());
auto operate_size = size;
if (offset + operate_size > this->GetSize() || offset + operate_size < offset) {
operate_size = this->GetSize() - offset;
}
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([=, this]() -> Result {
2021-10-10 07:14:06 +00:00
R_TRY(m_parent->GetBaseStorage()->OperateRange(dst, dst_size, op_id, m_start + offset, operate_size, src, src_size));
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
default:
return fs::ResultUnsupportedOperationInRomFsFileB();
}
}
public:
virtual sf::cmif::DomainObjectId GetDomainObjectId() const override {
AMS_ABORT();
}
};
class RomFsDirectory : public ams::fs::fsa::IDirectory, public ams::fs::impl::Newable {
private:
using FindPosition = RomFsFileSystem::RomFileTable::FindPosition;
private:
2021-10-10 07:14:06 +00:00
RomFsFileSystem *m_parent;
FindPosition m_current_find;
FindPosition m_first_find;
fs::OpenDirectoryMode m_mode;
2020-04-04 09:37:21 +00:00
public:
2021-10-10 07:14:06 +00:00
RomFsDirectory(RomFsFileSystem *p, const FindPosition &f, fs::OpenDirectoryMode m) : m_parent(p), m_current_find(f), m_first_find(f), m_mode(m) { /* ... */ }
2020-04-04 09:37:21 +00:00
virtual ~RomFsDirectory() override { /* ... */ }
public:
2020-12-05 11:05:06 +00:00
virtual Result DoRead(s64 *out_count, fs::DirectoryEntry *out_entries, s64 max_entries) {
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([=, this]() -> Result {
2021-10-10 07:14:06 +00:00
return this->ReadInternal(out_count, std::addressof(m_current_find), out_entries, max_entries);
2020-04-04 09:37:21 +00:00
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
virtual Result DoGetEntryCount(s64 *out) {
2021-10-10 07:14:06 +00:00
FindPosition find = m_first_find;
2020-04-04 09:37:21 +00:00
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([&]() -> Result {
2020-12-05 06:08:33 +00:00
R_TRY(this->ReadInternal(out, std::addressof(find), nullptr, 0));
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
private:
2020-12-05 06:08:33 +00:00
Result ReadInternal(s64 *out_count, FindPosition *find, fs::DirectoryEntry *out_entries, s64 max_entries) {
2020-04-04 09:37:21 +00:00
constexpr size_t NameBufferSize = fs::EntryNameLengthMax + 1;
2020-12-05 06:08:33 +00:00
fs::RomPathChar name[NameBufferSize];
2020-04-04 09:37:21 +00:00
s32 i = 0;
2021-10-10 07:14:06 +00:00
if (m_mode & fs::OpenDirectoryMode_Directory) {
2020-04-04 09:37:21 +00:00
while (i < max_entries || out_entries == nullptr) {
2021-10-10 07:14:06 +00:00
R_TRY_CATCH(m_parent->GetRomFileTable()->FindNextDirectory(name, find, NameBufferSize)) {
2020-04-04 09:37:21 +00:00
R_CATCH(fs::ResultDbmFindFinished) { break; }
} R_END_TRY_CATCH;
if (out_entries) {
R_UNLESS(strnlen(name, NameBufferSize) < NameBufferSize, fs::ResultTooLongPath());
strncpy(out_entries[i].name, name, fs::EntryNameLengthMax);
out_entries[i].name[fs::EntryNameLengthMax] = '\x00';
out_entries[i].type = fs::DirectoryEntryType_Directory;
out_entries[i].file_size = 0;
}
i++;
}
}
2021-10-10 07:14:06 +00:00
if (m_mode & fs::OpenDirectoryMode_File) {
2020-04-04 09:37:21 +00:00
while (i < max_entries || out_entries == nullptr) {
auto file_pos = find->next_file;
2021-10-10 07:14:06 +00:00
R_TRY_CATCH(m_parent->GetRomFileTable()->FindNextFile(name, find, NameBufferSize)) {
2020-04-04 09:37:21 +00:00
R_CATCH(fs::ResultDbmFindFinished) { break; }
} R_END_TRY_CATCH;
if (out_entries) {
R_UNLESS(strnlen(name, NameBufferSize) < NameBufferSize, fs::ResultTooLongPath());
strncpy(out_entries[i].name, name, fs::EntryNameLengthMax);
out_entries[i].name[fs::EntryNameLengthMax] = '\x00';
out_entries[i].type = fs::DirectoryEntryType_File;
RomFsFileSystem::RomFileTable::FileInfo file_info;
2021-10-10 07:14:06 +00:00
R_TRY(m_parent->GetRomFileTable()->OpenFile(std::addressof(file_info), m_parent->GetRomFileTable()->PositionToFileId(file_pos)));
2020-04-04 09:37:21 +00:00
out_entries[i].file_size = file_info.size.Get();
}
i++;
}
}
*out_count = i;
return ResultSuccess();
}
public:
virtual sf::cmif::DomainObjectId GetDomainObjectId() const override {
AMS_ABORT();
}
};
}
2021-10-10 07:14:06 +00:00
RomFsFileSystem::RomFsFileSystem() : m_base_storage() {
2020-04-04 09:37:21 +00:00
/* ... */
}
RomFsFileSystem::~RomFsFileSystem() {
/* ... */
}
fs::IStorage *RomFsFileSystem::GetBaseStorage() {
2021-10-10 07:14:06 +00:00
return m_base_storage;
2020-04-04 09:37:21 +00:00
}
RomFsFileSystem::RomFileTable *RomFsFileSystem::GetRomFileTable() {
2021-10-10 07:14:06 +00:00
return std::addressof(m_rom_file_table);
2020-04-04 09:37:21 +00:00
}
Result RomFsFileSystem::GetRequiredWorkingMemorySize(size_t *out, fs::IStorage *storage) {
2020-12-05 06:08:33 +00:00
fs::RomFileSystemInformation header;
2020-04-04 09:37:21 +00:00
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([&]() -> Result {
R_TRY(storage->Read(0, std::addressof(header), sizeof(header)));
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
*out = CalculateRequiredWorkingMemorySize(header);
return ResultSuccess();
}
Result RomFsFileSystem::Initialize(fs::IStorage *base, void *work, size_t work_size, bool use_cache) {
AMS_ABORT_UNLESS(!use_cache || work != nullptr);
AMS_ABORT_UNLESS(base != nullptr);
/* Register blocking context for the scope. */
buffers::ScopedBufferManagerContextRegistration _sr;
buffers::EnableBlockingBufferManagerAllocation();
/* Read the header. */
2020-12-05 06:08:33 +00:00
fs::RomFileSystemInformation header;
2020-04-04 09:37:21 +00:00
R_TRY(base->Read(0, std::addressof(header), sizeof(header)));
/* Set up our storages. */
if (use_cache) {
const size_t needed_size = CalculateRequiredWorkingMemorySize(header);
R_UNLESS(work_size >= needed_size, fs::ResultAllocationFailureInRomFsFileSystemA());
u8 *buf = static_cast<u8 *>(work);
auto dir_bucket_buf = buf; buf += header.directory_bucket_size;
auto dir_entry_buf = buf; buf += header.directory_entry_size;
auto file_bucket_buf = buf; buf += header.file_bucket_size;
auto file_entry_buf = buf; buf += header.file_entry_size;
R_TRY(base->Read(header.directory_bucket_offset, dir_bucket_buf, static_cast<size_t>(header.directory_bucket_size)));
R_TRY(base->Read(header.directory_entry_offset, dir_entry_buf, static_cast<size_t>(header.directory_entry_size)));
R_TRY(base->Read(header.file_bucket_offset, file_bucket_buf, static_cast<size_t>(header.file_bucket_size)));
R_TRY(base->Read(header.file_entry_offset, file_entry_buf, static_cast<size_t>(header.file_entry_size)));
2021-10-10 07:14:06 +00:00
m_dir_bucket_storage.reset(new fs::MemoryStorage(dir_bucket_buf, header.directory_bucket_size));
m_dir_entry_storage.reset(new fs::MemoryStorage(dir_entry_buf, header.directory_entry_size));
m_file_bucket_storage.reset(new fs::MemoryStorage(file_bucket_buf, header.file_bucket_size));
m_file_entry_storage.reset(new fs::MemoryStorage(file_entry_buf, header.file_entry_size));
2020-04-04 09:37:21 +00:00
} else {
2021-10-10 07:14:06 +00:00
m_dir_bucket_storage.reset(new fs::SubStorage(base, header.directory_bucket_offset, header.directory_bucket_size));
m_dir_entry_storage.reset(new fs::SubStorage(base, header.directory_entry_offset, header.directory_entry_size));
m_file_bucket_storage.reset(new fs::SubStorage(base, header.file_bucket_offset, header.file_bucket_size));
m_file_entry_storage.reset(new fs::SubStorage(base, header.file_entry_offset, header.file_entry_size));
2020-04-04 09:37:21 +00:00
}
/* Ensure we allocated storages successfully. */
2021-10-10 07:14:06 +00:00
R_UNLESS(m_dir_bucket_storage != nullptr, fs::ResultAllocationFailureInRomFsFileSystemB());
R_UNLESS(m_dir_entry_storage != nullptr, fs::ResultAllocationFailureInRomFsFileSystemB());
R_UNLESS(m_file_bucket_storage != nullptr, fs::ResultAllocationFailureInRomFsFileSystemB());
R_UNLESS(m_file_entry_storage != nullptr, fs::ResultAllocationFailureInRomFsFileSystemB());
2020-04-04 09:37:21 +00:00
/* Initialize the rom table. */
2021-10-10 07:14:06 +00:00
R_TRY(m_rom_file_table.Initialize(fs::SubStorage(m_dir_bucket_storage.get(), 0, static_cast<u32>(header.directory_bucket_size)),
fs::SubStorage(m_dir_entry_storage.get(), 0, static_cast<u32>(header.directory_entry_size)),
fs::SubStorage(m_file_bucket_storage.get(), 0, static_cast<u32>(header.file_bucket_size)),
fs::SubStorage(m_file_entry_storage.get(), 0, static_cast<u32>(header.file_entry_size))));
2020-04-04 09:37:21 +00:00
/* Set members. */
2021-10-10 07:14:06 +00:00
m_entry_size = header.body_offset;
m_base_storage = base;
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}
Result RomFsFileSystem::Initialize(std::shared_ptr<fs::IStorage> base, void *work, size_t work_size, bool use_cache) {
2021-10-10 07:14:06 +00:00
m_shared_storage = std::move(base);
return this->Initialize(m_shared_storage.get(), work, work_size, use_cache);
2020-04-04 09:37:21 +00:00
}
Result RomFsFileSystem::GetFileInfo(RomFileTable::FileInfo *out, const char *path) {
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([=, this]() -> Result {
2021-10-10 07:14:06 +00:00
R_TRY_CATCH(m_rom_file_table.OpenFile(out, path)) {
2020-04-04 09:37:21 +00:00
R_CONVERT(fs::ResultDbmNotFound, fs::ResultPathNotFound());
} R_END_TRY_CATCH;
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
Result RomFsFileSystem::GetFileBaseOffset(s64 *out, const char *path) {
RomFileTable::FileInfo info;
R_TRY(this->GetFileInfo(std::addressof(info), path));
2021-10-10 07:14:06 +00:00
*out = m_entry_size + info.offset.Get();
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoCreateFile(const char *path, s64 size, int flags) {
AMS_UNUSED(path, size, flags);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoDeleteFile(const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoCreateDirectory(const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoDeleteDirectory(const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoDeleteDirectoryRecursively(const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoRenameFile(const char *old_path, const char *new_path) {
AMS_UNUSED(old_path, new_path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoRenameDirectory(const char *old_path, const char *new_path) {
AMS_UNUSED(old_path, new_path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoGetEntryType(fs::DirectoryEntryType *out, const char *path) {
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([=, this]() -> Result {
2020-12-05 06:08:33 +00:00
fs::RomDirectoryInfo dir_info;
2020-04-04 09:37:21 +00:00
2021-10-10 07:14:06 +00:00
R_TRY_CATCH(m_rom_file_table.GetDirectoryInformation(std::addressof(dir_info), path)) {
2020-04-04 09:37:21 +00:00
R_CONVERT(fs::ResultDbmNotFound, fs::ResultPathNotFound())
R_CATCH(fs::ResultDbmInvalidOperation) {
RomFileTable::FileInfo file_info;
R_TRY(this->GetFileInfo(std::addressof(file_info), path));
*out = fs::DirectoryEntryType_File;
return ResultSuccess();
}
} R_END_TRY_CATCH;
*out = fs::DirectoryEntryType_Directory;
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoOpenFile(std::unique_ptr<fs::fsa::IFile> *out_file, const char *path, fs::OpenMode mode) {
2020-04-04 09:37:21 +00:00
R_UNLESS(mode == fs::OpenMode_Read, fs::ResultInvalidOpenMode());
RomFileTable::FileInfo file_info;
R_TRY(this->GetFileInfo(std::addressof(file_info), path));
2021-10-10 07:14:06 +00:00
auto file = std::make_unique<RomFsFile>(this, m_entry_size + file_info.offset.Get(), m_entry_size + file_info.offset.Get() + file_info.size.Get());
2020-04-04 09:37:21 +00:00
R_UNLESS(file != nullptr, fs::ResultAllocationFailureInRomFsFileSystemC());
*out_file = std::move(file);
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoOpenDirectory(std::unique_ptr<fs::fsa::IDirectory> *out_dir, const char *path, fs::OpenDirectoryMode mode) {
2020-04-04 09:37:21 +00:00
RomFileTable::FindPosition find;
R_TRY(buffers::DoContinuouslyUntilBufferIsAllocated([&]() -> Result {
2021-10-10 07:14:06 +00:00
R_TRY_CATCH(m_rom_file_table.FindOpen(std::addressof(find), path)) {
2020-04-04 09:37:21 +00:00
R_CONVERT(fs::ResultDbmNotFound, fs::ResultPathNotFound())
} R_END_TRY_CATCH;
return ResultSuccess();
}, AMS_CURRENT_FUNCTION_NAME));
auto dir = std::make_unique<RomFsDirectory>(this, find, mode);
R_UNLESS(dir != nullptr, fs::ResultAllocationFailureInRomFsFileSystemD());
*out_dir = std::move(dir);
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoCommit() {
2020-04-04 09:37:21 +00:00
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoGetFreeSpaceSize(s64 *out, const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
*out = 0;
return ResultSuccess();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoCleanDirectoryRecursively(const char *path) {
AMS_UNUSED(path);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemA();
}
2020-12-05 11:05:06 +00:00
Result RomFsFileSystem::DoCommitProvisionally(s64 counter) {
AMS_UNUSED(counter);
2020-04-04 09:37:21 +00:00
return fs::ResultUnsupportedOperationInRomFsFileSystemB();
}
}