mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
d3cf4cd8f0
All Inode subclasses can get to their FileSystem via Inode::fs().
162 lines
5.3 KiB
C++
162 lines
5.3 KiB
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/FileSystem/FileSystem.h>
|
|
#include <Kernel/FileSystem/Inode.h>
|
|
#include <Kernel/FileSystem/InodeMetadata.h>
|
|
#include <Kernel/TTY/SlavePTY.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class DevFS final : public FileSystem {
|
|
friend class DevFSInode;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual ~DevFS() override;
|
|
static NonnullRefPtr<DevFS> create();
|
|
|
|
virtual bool initialize() override;
|
|
virtual StringView class_name() const override { return "DevFS"sv; }
|
|
|
|
void notify_new_device(Device&);
|
|
void notify_device_removal(Device&);
|
|
|
|
virtual Inode& root_inode() override;
|
|
|
|
private:
|
|
DevFS();
|
|
RefPtr<Inode> get_inode(InodeIdentifier) const;
|
|
size_t allocate_inode_index();
|
|
|
|
NonnullRefPtr<DevFSRootDirectoryInode> m_root_inode;
|
|
NonnullRefPtrVector<DevFSInode> m_nodes;
|
|
|
|
InodeIndex m_next_inode_index { 0 };
|
|
};
|
|
|
|
class DevFSInode : public Inode {
|
|
friend class DevFS;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual StringView name() const = 0;
|
|
|
|
DevFS& fs() { return static_cast<DevFS&>(Inode::fs()); }
|
|
DevFS const& fs() const { return static_cast<DevFS const&>(Inode::fs()); }
|
|
|
|
protected:
|
|
DevFSInode(DevFS&);
|
|
virtual KResultOr<size_t> read_bytes(off_t, size_t, UserOrKernelBuffer& buffer, FileDescription*) const override;
|
|
virtual KResult traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)>) const override;
|
|
virtual RefPtr<Inode> lookup(StringView name) override;
|
|
virtual void flush_metadata() override;
|
|
virtual KResultOr<size_t> write_bytes(off_t, size_t, const UserOrKernelBuffer& buffer, FileDescription*) override;
|
|
virtual KResultOr<NonnullRefPtr<Inode>> create_child(StringView name, mode_t, dev_t, uid_t, gid_t) override;
|
|
virtual KResult add_child(Inode&, const StringView& name, mode_t) override;
|
|
virtual KResult remove_child(const StringView& name) override;
|
|
virtual KResult chmod(mode_t) override;
|
|
virtual KResult chown(uid_t, gid_t) override;
|
|
virtual KResult truncate(u64) override;
|
|
};
|
|
|
|
class DevFSDeviceInode : public DevFSInode {
|
|
friend class DevFS;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual StringView name() const override;
|
|
virtual ~DevFSDeviceInode() override;
|
|
|
|
private:
|
|
DevFSDeviceInode(DevFS&, Device const&, NonnullOwnPtr<KString> name);
|
|
// ^Inode
|
|
virtual KResultOr<size_t> read_bytes(off_t, size_t, UserOrKernelBuffer& buffer, FileDescription*) const override;
|
|
virtual InodeMetadata metadata() const override;
|
|
virtual KResultOr<size_t> write_bytes(off_t, size_t, const UserOrKernelBuffer& buffer, FileDescription*) override;
|
|
virtual KResult chown(uid_t, gid_t) override;
|
|
|
|
NonnullRefPtr<Device> m_attached_device;
|
|
NonnullOwnPtr<KString> m_name;
|
|
|
|
uid_t m_uid { 0 };
|
|
gid_t m_gid { 0 };
|
|
};
|
|
|
|
class DevFSLinkInode : public DevFSInode {
|
|
friend class DevFS;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual StringView name() const override;
|
|
virtual ~DevFSLinkInode() override;
|
|
|
|
protected:
|
|
DevFSLinkInode(DevFS&, NonnullOwnPtr<KString>);
|
|
// ^Inode
|
|
virtual KResultOr<size_t> read_bytes(off_t, size_t, UserOrKernelBuffer& buffer, FileDescription*) const override;
|
|
virtual InodeMetadata metadata() const override;
|
|
virtual KResultOr<size_t> write_bytes(off_t, size_t, const UserOrKernelBuffer& buffer, FileDescription*) override;
|
|
|
|
NonnullOwnPtr<KString> m_name;
|
|
OwnPtr<KString> m_link;
|
|
};
|
|
|
|
class DevFSDirectoryInode : public DevFSInode {
|
|
friend class DevFS;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual ~DevFSDirectoryInode() override;
|
|
|
|
protected:
|
|
DevFSDirectoryInode(DevFS&);
|
|
// ^Inode
|
|
virtual InodeMetadata metadata() const override;
|
|
virtual KResult traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)>) const override;
|
|
virtual RefPtr<Inode> lookup(StringView name) override;
|
|
|
|
NonnullRefPtrVector<DevFSDeviceInode> m_devices;
|
|
};
|
|
|
|
class DevFSPtsDirectoryInode final : public DevFSDirectoryInode {
|
|
friend class DevFS;
|
|
friend class DevFSRootDirectoryInode;
|
|
|
|
public:
|
|
virtual ~DevFSPtsDirectoryInode() override;
|
|
virtual StringView name() const override { return "pts"; };
|
|
|
|
private:
|
|
explicit DevFSPtsDirectoryInode(DevFS&);
|
|
virtual KResult traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)>) const override;
|
|
virtual RefPtr<Inode> lookup(StringView name) override;
|
|
virtual InodeMetadata metadata() const override;
|
|
};
|
|
|
|
class DevFSRootDirectoryInode final : public DevFSDirectoryInode {
|
|
friend class DevFS;
|
|
|
|
public:
|
|
virtual ~DevFSRootDirectoryInode() override;
|
|
virtual StringView name() const override { return "."; }
|
|
|
|
private:
|
|
explicit DevFSRootDirectoryInode(DevFS&);
|
|
virtual KResultOr<NonnullRefPtr<Inode>> create_child(StringView name, mode_t, dev_t, uid_t, gid_t) override;
|
|
virtual KResult traverse_as_directory(Function<bool(FileSystem::DirectoryEntryView const&)>) const override;
|
|
virtual RefPtr<Inode> lookup(StringView name) override;
|
|
virtual InodeMetadata metadata() const override;
|
|
|
|
NonnullRefPtrVector<DevFSDirectoryInode> m_subdirectories;
|
|
NonnullRefPtrVector<DevFSLinkInode> m_links;
|
|
};
|
|
|
|
}
|