2018-10-10 11:53:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/HashMap.h>
|
|
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <AK/RetainPtr.h>
|
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/Vector.h>
|
2018-10-24 12:43:52 +02:00
|
|
|
#include <AK/Function.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
#include "InodeIdentifier.h"
|
2018-10-24 12:43:52 +02:00
|
|
|
#include "InodeMetadata.h"
|
2018-10-14 21:19:27 +02:00
|
|
|
#include "Limits.h"
|
2018-10-24 12:43:52 +02:00
|
|
|
#include "FileSystem.h"
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-10-28 14:11:51 +01:00
|
|
|
#define O_RDONLY 0
|
|
|
|
#define O_WRONLY 1
|
|
|
|
#define O_RDWR 2
|
2018-11-13 01:36:31 +01:00
|
|
|
#define O_CREAT 0100
|
|
|
|
#define O_EXCL 0200
|
|
|
|
#define O_NOCTTY 0400
|
|
|
|
#define O_TRUNC 01000
|
|
|
|
#define O_APPEND 02000
|
|
|
|
#define O_NONBLOCK 04000
|
2018-10-28 14:11:51 +01:00
|
|
|
#define O_DIRECTORY 00200000
|
|
|
|
#define O_NOFOLLOW 00400000
|
2018-11-13 01:36:31 +01:00
|
|
|
#define O_CLOEXEC 02000000
|
2018-10-28 14:11:51 +01:00
|
|
|
#define O_NOFOLLOW_NOERROR 0x4000000
|
|
|
|
|
2018-10-14 02:59:22 +02:00
|
|
|
class CharacterDevice;
|
2018-11-07 11:37:54 +01:00
|
|
|
class FileDescriptor;
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-10-30 13:59:29 +01:00
|
|
|
inline constexpr dword encodedDevice(unsigned major, unsigned minor)
|
|
|
|
{
|
|
|
|
return (minor & 0xff) | (major << 8) | ((minor & ~0xff) << 12);
|
|
|
|
}
|
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
class VFS;
|
|
|
|
|
|
|
|
class Vnode {
|
|
|
|
public:
|
|
|
|
InodeIdentifier inode;
|
|
|
|
const InodeMetadata& metadata() const;
|
|
|
|
|
|
|
|
bool inUse() const { return inode.isValid() || m_characterDevice; }
|
|
|
|
|
|
|
|
bool isCharacterDevice() const { return m_characterDevice; }
|
|
|
|
CharacterDevice* characterDevice() { return m_characterDevice; }
|
|
|
|
const CharacterDevice* characterDevice() const { return m_characterDevice; }
|
|
|
|
|
|
|
|
void retain();
|
|
|
|
void release();
|
|
|
|
|
|
|
|
FileSystem* fileSystem() { return inode.fileSystem(); }
|
|
|
|
const FileSystem* fileSystem() const { return inode.fileSystem(); }
|
|
|
|
|
|
|
|
VFS* vfs() { return m_vfs; }
|
|
|
|
const VFS* vfs() const { return m_vfs; }
|
|
|
|
|
|
|
|
void* vmo() { return m_vmo; }
|
|
|
|
void set_vmo(void* vmo) { m_vmo = vmo; }
|
|
|
|
|
|
|
|
unsigned retain_count() const { return retainCount; }
|
|
|
|
|
|
|
|
CoreInode* core_inode() { return m_core_inode.ptr(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class VFS;
|
|
|
|
VFS* m_vfs { nullptr };
|
|
|
|
unsigned retainCount { 0 };
|
|
|
|
CharacterDevice* m_characterDevice { nullptr };
|
|
|
|
mutable InodeMetadata m_cachedMetadata;
|
|
|
|
void* m_vmo { nullptr };
|
|
|
|
RetainPtr<CoreInode> m_core_inode;
|
|
|
|
};
|
|
|
|
|
|
|
|
class VFS {
|
2018-10-31 23:19:15 +01:00
|
|
|
AK_MAKE_ETERNAL
|
2018-11-09 17:46:55 +01:00
|
|
|
friend ByteBuffer procfs$vnodes();
|
2018-10-10 11:53:07 +02:00
|
|
|
public:
|
2018-10-19 11:20:49 +02:00
|
|
|
static void initializeGlobals();
|
|
|
|
|
2018-10-26 18:43:25 +02:00
|
|
|
class Mount {
|
|
|
|
public:
|
|
|
|
Mount(InodeIdentifier host, RetainPtr<FileSystem>&&);
|
|
|
|
|
|
|
|
InodeIdentifier host() const { return m_host; }
|
|
|
|
InodeIdentifier guest() const { return m_guest; }
|
|
|
|
|
|
|
|
const FileSystem& fileSystem() const { return *m_fileSystem; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
InodeIdentifier m_host;
|
|
|
|
InodeIdentifier m_guest;
|
|
|
|
RetainPtr<FileSystem> m_fileSystem;
|
|
|
|
};
|
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
static VFS& the() PURE;
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
VFS();
|
|
|
|
~VFS();
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
#ifndef SERENITY
|
2018-10-28 12:20:25 +01:00
|
|
|
bool isDirectory(const String& path, InodeIdentifier base = InodeIdentifier());
|
2018-11-07 15:51:39 +01:00
|
|
|
void listDirectory(const String& path, InodeIdentifier base);
|
|
|
|
void listDirectoryRecursively(const String& path, InodeIdentifier base);
|
2018-11-15 14:43:10 +01:00
|
|
|
#endif
|
2018-10-10 11:53:07 +02:00
|
|
|
|
|
|
|
unsigned maxNodeCount() const { return m_maxNodeCount; }
|
|
|
|
unsigned allocatedNodeCount() const { return m_maxNodeCount - m_nodeFreeList.size(); }
|
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
Vnode* root() { return m_rootNode.ptr(); }
|
|
|
|
const Vnode* root() const { return m_rootNode.ptr(); }
|
2018-10-10 11:53:07 +02:00
|
|
|
|
|
|
|
bool mountRoot(RetainPtr<FileSystem>&&);
|
|
|
|
bool mount(RetainPtr<FileSystem>&&, const String& path);
|
|
|
|
|
2018-11-07 11:37:54 +01:00
|
|
|
RetainPtr<FileDescriptor> open(CharacterDevice&, int options);
|
|
|
|
RetainPtr<FileDescriptor> open(const String& path, int& error, int options = 0, InodeIdentifier base = InodeIdentifier());
|
|
|
|
RetainPtr<FileDescriptor> create(const String& path, InodeIdentifier base = InodeIdentifier());
|
|
|
|
RetainPtr<FileDescriptor> mkdir(const String& path, InodeIdentifier base = InodeIdentifier());
|
2018-10-10 11:53:07 +02:00
|
|
|
|
|
|
|
bool touch(const String&path);
|
|
|
|
|
2018-10-30 13:59:29 +01:00
|
|
|
void registerCharacterDevice(CharacterDevice&);
|
2018-10-14 02:59:22 +02:00
|
|
|
|
2018-10-26 18:43:25 +02:00
|
|
|
size_t mountCount() const { return m_mounts.size(); }
|
|
|
|
void forEachMount(Function<void(const Mount&)>) const;
|
|
|
|
|
2018-11-13 23:44:54 +01:00
|
|
|
String absolute_path(CoreInode&);
|
2018-10-28 12:20:25 +01:00
|
|
|
|
2018-10-10 11:53:07 +02:00
|
|
|
private:
|
2018-11-07 11:37:54 +01:00
|
|
|
friend class FileDescriptor;
|
2018-11-15 14:43:10 +01:00
|
|
|
friend class Vnode;
|
2018-10-24 12:43:52 +02:00
|
|
|
|
2018-11-13 23:44:54 +01:00
|
|
|
RetainPtr<CoreInode> get_inode(InodeIdentifier);
|
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
bool is_vfs_root(InodeIdentifier) const;
|
|
|
|
|
2018-10-24 12:43:52 +02:00
|
|
|
void enumerateDirectoryInode(InodeIdentifier, Function<bool(const FileSystem::DirectoryEntry&)>);
|
2018-11-13 23:44:54 +01:00
|
|
|
InodeIdentifier resolve_path(const String& path, int& error, CoreInode& base, int options = 0);
|
2018-10-29 22:43:39 +01:00
|
|
|
InodeIdentifier resolvePath(const String& path, int& error, InodeIdentifier base = InodeIdentifier(), int options = 0);
|
|
|
|
InodeIdentifier resolveSymbolicLink(InodeIdentifier base, InodeIdentifier symlinkInode, int& error);
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
RetainPtr<Vnode> allocateNode();
|
|
|
|
void freeNode(Vnode*);
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
RetainPtr<Vnode> makeNode(InodeIdentifier);
|
|
|
|
RetainPtr<Vnode> makeNode(CharacterDevice&);
|
|
|
|
RetainPtr<Vnode> getOrCreateNode(InodeIdentifier);
|
|
|
|
RetainPtr<Vnode> getOrCreateNode(CharacterDevice&);
|
2018-10-10 11:53:07 +02:00
|
|
|
|
|
|
|
Mount* findMountForHost(InodeIdentifier);
|
|
|
|
Mount* findMountForGuest(InodeIdentifier);
|
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
HashMap<InodeIdentifier, Vnode*> m_inode2vnode;
|
|
|
|
HashMap<dword, Vnode*> m_device2vnode;
|
2018-10-10 11:53:07 +02:00
|
|
|
|
|
|
|
Vector<OwnPtr<Mount>> m_mounts;
|
|
|
|
|
|
|
|
unsigned m_maxNodeCount { 0 };
|
2018-11-15 14:43:10 +01:00
|
|
|
Vnode* m_nodes { nullptr };
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
Vector<Vnode*> m_nodeFreeList;
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2018-11-15 14:43:10 +01:00
|
|
|
RetainPtr<Vnode> m_rootNode;
|
2018-10-14 02:59:22 +02:00
|
|
|
|
|
|
|
HashMap<dword, CharacterDevice*> m_characterDevices;
|
2018-10-10 11:53:07 +02:00
|
|
|
};
|
|
|
|
|