| // Copyright 2021 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. |
| |
| #ifndef SRC_STORAGE_F2FS_F2FS_H_ |
| #define SRC_STORAGE_F2FS_F2FS_H_ |
| |
| // clang-format off |
| #include <lib/zircon-internal/thread_annotations.h> |
| #include <zircon/assert.h> |
| #include <zircon/device/vfs.h> |
| #include <zircon/errors.h> |
| #include <zircon/listnode.h> |
| #include <zircon/types.h> |
| #include <lib/syslog/cpp/macros.h> |
| #include <lib/async-loop/cpp/loop.h> |
| #include <lib/fidl-async/cpp/bind.h> |
| #include <fidl/fuchsia.fs/cpp/wire.h> |
| #include <lib/async-loop/default.h> |
| |
| #include <fbl/algorithm.h> |
| #include <fbl/auto_lock.h> |
| #include <fbl/condition_variable.h> |
| #include <fbl/function.h> |
| #include <fbl/intrusive_wavl_tree.h> |
| #include <fbl/intrusive_double_list.h> |
| #include <fbl/macros.h> |
| #include <fbl/mutex.h> |
| #include <fbl/ref_ptr.h> |
| #include <condition_variable> |
| |
| #include "src/lib/storage/vfs/cpp/managed_vfs.h" |
| #include "src/lib/storage/vfs/cpp/vfs.h" |
| #include "src/lib/storage/vfs/cpp/vnode.h" |
| #include "src/lib/storage/vfs/cpp/watcher.h" |
| #include "src/lib/storage/vfs/cpp/shared_mutex.h" |
| #include "src/lib/storage/vfs/cpp/service.h" |
| |
| #include "src/storage/f2fs/f2fs_types.h" |
| #include "src/storage/f2fs/f2fs_lib.h" |
| #include "src/storage/f2fs/f2fs_layout.h" |
| #include "src/storage/f2fs/f2fs_internal.h" |
| #include "src/storage/f2fs/namestring.h" |
| #include "src/storage/f2fs/bcache.h" |
| #include "src/storage/f2fs/vnode.h" |
| #include "src/storage/f2fs/dir.h" |
| #include "src/storage/f2fs/file.h" |
| #include "src/storage/f2fs/vnode_cache.h" |
| #include "src/storage/f2fs/node.h" |
| #include "src/storage/f2fs/segment.h" |
| #include "src/storage/f2fs/mkfs.h" |
| #include "src/storage/f2fs/mount.h" |
| #include "src/storage/f2fs/fsck.h" |
| #include "src/storage/f2fs/admin.h" |
| #include "src/storage/f2fs/query.h" |
| // clang-format on |
| |
| namespace f2fs { |
| |
| enum class ServeLayout { |
| // The root of the filesystem is exposed directly. |
| kDataRootOnly, |
| |
| // Expose a pseudo-directory with the filesystem root located at "svc/root". |
| // TODO(fxbug.dev/34531): Also expose an administration service under "svc/fuchsia.fs.Admin". |
| kExportDirectory |
| }; |
| |
| zx_status_t LoadSuperblock(f2fs::Bcache *bc, SuperBlock *out_info); |
| zx_status_t LoadSuperblock(f2fs::Bcache *bc, SuperBlock *out_info, block_t bno); |
| |
| zx::status<std::unique_ptr<F2fs>> CreateFsAndRoot(const MountOptions &mount_options, |
| async_dispatcher_t *dispatcher, |
| std::unique_ptr<f2fs::Bcache> bcache, |
| fidl::ServerEnd<fuchsia_io::Directory> root, |
| fbl::Closure on_unmount, |
| ServeLayout serve_layout); |
| |
| using SyncCallback = fs::Vnode::SyncCallback; |
| |
| class F2fs : public fs::ManagedVfs { |
| public: |
| // Not copyable or moveable |
| F2fs(const F2fs &) = delete; |
| F2fs &operator=(const F2fs &) = delete; |
| F2fs(F2fs &&) = delete; |
| F2fs &operator=(F2fs &&) = delete; |
| |
| explicit F2fs(async_dispatcher_t *dispatcher, std::unique_ptr<f2fs::Bcache> bc, SuperBlock *sb, |
| const MountOptions &mount_options); |
| |
| ~F2fs() override; |
| |
| [[nodiscard]] static zx_status_t Create(async_dispatcher_t *dispatcher, |
| std::unique_ptr<f2fs::Bcache> bc, |
| const MountOptions &options, std::unique_ptr<F2fs> *out); |
| |
| void SetUnmountCallback(fbl::Closure closure) { on_unmount_ = std::move(closure); } |
| void Shutdown(fs::FuchsiaVfs::ShutdownCallback cb) final; |
| |
| void SetQueryService(fbl::RefPtr<QueryService> svc) { query_svc_ = std::move(svc); } |
| void SetAdminService(fbl::RefPtr<AdminService> svc) { admin_svc_ = std::move(svc); } |
| |
| zx_status_t GetFsId(zx::event *out_fs_id) const; |
| uint64_t GetFsIdLegacy() const { return fs_id_legacy_; } |
| |
| VnodeCache &GetVCache() { return vnode_cache_; } |
| inline zx_status_t InsertVnode(VnodeF2fs *vn) { return vnode_cache_.Add(vn); } |
| inline void EvictVnode(VnodeF2fs *vn) { __UNUSED zx_status_t status = vnode_cache_.Evict(vn); } |
| inline zx_status_t LookupVnode(ino_t ino, fbl::RefPtr<VnodeF2fs> *out) { |
| return vnode_cache_.Lookup(ino, out); |
| } |
| |
| void ResetBc(std::unique_ptr<f2fs::Bcache> *out = nullptr) { |
| if (out == nullptr) { |
| bc_.reset(); |
| return; |
| } |
| *out = std::move(bc_); |
| }; |
| Bcache &GetBc() { return *bc_; } |
| SuperBlock &RawSb() { return *raw_sb_; } |
| SbInfo &GetSbInfo() { return *sbi_; } |
| SegmentManager &GetSegmentManager() { return *segment_manager_; } |
| NodeManager &GetNodeManager() { return *node_manager_; } |
| |
| // super.cc |
| void PutSuper(); |
| zx_status_t SyncFs(int sync); |
| zx_status_t SanityCheckRawSuper(); |
| zx_status_t SanityCheckCkpt(); |
| void InitSbInfo(); |
| zx_status_t FillSuper(); |
| void ParseOptions(); |
| void Reset(); |
| #if 0 // porting needed |
| void InitOnce(void *foo); |
| VnodeF2fs *F2fsAllocInode(); |
| static void F2fsICallback(rcu_head *head); |
| void F2fsDestroyInode(inode *inode); |
| int F2fsStatfs(dentry *dentry /*, kstatfs *buf*/); |
| int F2fsShowOptions(/*seq_file *seq*/); |
| VnodeF2fs *F2fsNfsGetInode(uint64_t ino, uint32_t generation); |
| dentry *F2fsFhToDentry(fid *fid, int fh_len, int fh_type); |
| dentry *F2fsFhToParent(fid *fid, int fh_len, int fh_type); |
| dentry *F2fsMount(file_system_type *fs_type, int flags, |
| const char *dev_name, void *data); |
| int InitInodecache(void); |
| void DestroyInodecache(void); |
| int /*__init*/ initF2fsFs(void); |
| void /*__exit*/ exitF2fsFs(void); |
| #endif |
| |
| // checkpoint.cc |
| Page *GetMetaPage(pgoff_t index); |
| Page *GrabMetaPage(pgoff_t index); |
| zx_status_t F2fsWriteMetaPage(Page *page, WritebackControl *wbc); |
| int64_t SyncMetaPages(PageType type, long nr_to_write); |
| zx_status_t CheckOrphanSpace(); |
| void AddOrphanInode(VnodeF2fs *vnode); |
| void AddOrphanInode(nid_t ino); |
| void RemoveOrphanInode(nid_t ino); |
| void RecoverOrphanInode(nid_t ino); |
| int RecoverOrphanInodes(); |
| void WriteOrphanInodes(block_t start_blk); |
| zx_status_t GetValidCheckpoint(); |
| Page *ValidateCheckpoint(block_t cp_addr, uint64_t *version); |
| void SyncDirtyDirInodes(); |
| void BlockOperations(); |
| void UnblockOperations(); |
| void DoCheckpoint(bool is_umount); |
| void WriteCheckpoint(bool blocked, bool is_umount); |
| void InitOrphanInfo(); |
| #if 0 // porting needed |
| int F2fsWriteMetaPages(address_space *mapping, WritebackControl *wbc); |
| int F2fsSetMetaPageDirty(Page *page); |
| void SetDirtyDirPage(VnodeF2fs *vnode, Page *page); |
| void RemoveDirtyDirInode(VnodeF2fs *vnode); |
| int CreateCheckpointCaches(); |
| void DestroyCheckpointCaches(); |
| #endif |
| |
| // recovery.cc |
| bool SpaceForRollForward(); |
| FsyncInodeEntry *GetFsyncInode(list_node_t *head, nid_t ino); |
| zx_status_t RecoverDentry(Page *ipage, VnodeF2fs *vnode); |
| zx_status_t RecoverInode(VnodeF2fs *inode, Page *node_page); |
| zx_status_t FindFsyncDnodes(list_node_t *head); |
| void DestroyFsyncDnodes(list_node_t *head); |
| void CheckIndexInPrevNodes(block_t blkaddr); |
| void DoRecoverData(VnodeF2fs *inode, Page *page, block_t blkaddr); |
| void RecoverData(list_node_t *head, CursegType type); |
| void RecoverFsyncData(); |
| |
| // block count |
| void DecValidBlockCount(VnodeF2fs *vnode, block_t count); |
| zx_status_t IncValidBlockCount(VnodeF2fs *vnode, block_t count); |
| block_t ValidUserBlocks(); |
| uint32_t ValidNodeCount(); |
| void IncValidInodeCount(); |
| void DecValidInodeCount(); |
| uint32_t ValidInodeCount(); |
| loff_t MaxFileSize(unsigned bits); |
| |
| private: |
| std::unique_ptr<f2fs::Bcache> bc_; |
| |
| fbl::RefPtr<VnodeF2fs> root_vnode_; |
| fbl::Closure on_unmount_{}; |
| MountOptions mount_options_{}; |
| |
| std::unique_ptr<SuperBlock> raw_sb_; |
| std::unique_ptr<SbInfo> sbi_; |
| std::unique_ptr<SegmentManager> segment_manager_; |
| std::unique_ptr<NodeManager> node_manager_; |
| |
| VnodeCache vnode_cache_{}; |
| |
| fbl::RefPtr<QueryService> query_svc_; |
| fbl::RefPtr<AdminService> admin_svc_; |
| |
| zx::event fs_id_{}; |
| uint64_t fs_id_legacy_ = 0; |
| }; |
| |
| f2fs_hash_t DentryHash(const char *name, int len); |
| |
| zx_status_t FlushDirtyNodePage(F2fs *fs, Page *page); |
| zx_status_t FlushDirtyMetaPage(F2fs *fs, Page *page); |
| zx_status_t FlushDirtyDataPage(F2fs *fs, Page *page); |
| |
| } // namespace f2fs |
| |
| #endif // SRC_STORAGE_F2FS_F2FS_H_ |