/* * Copyright (c) 2022, Undefine * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include namespace Kernel { class FATFS final : public BlockBasedFileSystem { friend FATInode; public: static ErrorOr> try_create(OpenFileDescription&, ReadonlyBytes); virtual ~FATFS() override = default; virtual StringView class_name() const override { return "FATFS"sv; } virtual Inode& root_inode() override; virtual u8 internal_file_type_to_directory_entry_type(DirectoryEntryView const& entry) const override; private: virtual ErrorOr initialize_while_locked() override; virtual bool is_initialized_while_locked() override; // FIXME: This is not a proper way to clear last mount of a FAT filesystem, // but for now we simply have no other way to properly do it. virtual ErrorOr prepare_to_clear_last_mount(Inode&) override { return {}; } FATFS(OpenFileDescription&); static constexpr u8 signature_1 = 0x28; static constexpr u8 signature_2 = 0x29; static constexpr u32 first_data_cluster = 2; FAT32BootRecord const* boot_record() const { return reinterpret_cast(m_boot_record->data()); } BlockBasedFileSystem::BlockIndex first_block_of_cluster(u32 cluster) const; OwnPtr m_boot_record {}; RefPtr m_root_inode; u32 m_first_data_sector { 0 }; }; }