summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-30 18:58:59 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-30 18:58:59 +0200
commit393851418b01f55052ad2f486ae808c959b7e3a4 (patch)
tree39380411926e9fcc3ac147d3125126371da0db44
parent4cb87b17536d64656e3f842a408d00c4072afc9b (diff)
downloadserenity-393851418b01f55052ad2f486ae808c959b7e3a4.zip
FileSystem: Port most of the code over to using custodies.
The current working directory is now stored as a custody. Likewise for a process executable file. This unbreaks /proc/PID/fd which has not been working since we made the filesystem bigger. This still needs a bunch of work, for instance when renaming or removing a file somewhere, we have to update the relevant custody links.
-rw-r--r--Kernel/FileSystem/Custody.cpp14
-rw-r--r--Kernel/FileSystem/Custody.h2
-rw-r--r--Kernel/FileSystem/FileDescriptor.cpp13
-rw-r--r--Kernel/FileSystem/FileDescriptor.h6
-rw-r--r--Kernel/FileSystem/ProcFS.cpp19
-rw-r--r--Kernel/FileSystem/VirtualFileSystem.cpp320
-rw-r--r--Kernel/FileSystem/VirtualFileSystem.h34
-rw-r--r--Kernel/KSyms.cpp2
-rw-r--r--Kernel/Net/LocalSocket.cpp4
-rw-r--r--Kernel/Process.cpp76
-rw-r--r--Kernel/Process.h10
11 files changed, 280 insertions, 220 deletions
diff --git a/Kernel/FileSystem/Custody.cpp b/Kernel/FileSystem/Custody.cpp
index 39c9761808..70bcd8e315 100644
--- a/Kernel/FileSystem/Custody.cpp
+++ b/Kernel/FileSystem/Custody.cpp
@@ -1,4 +1,5 @@
#include <AK/HashTable.h>
+#include <AK/StringBuilder.h>
#include <Kernel/FileSystem/Custody.h>
#include <Kernel/FileSystem/Inode.h>
#include <Kernel/Lock.h>
@@ -25,3 +26,16 @@ Custody::~Custody()
LOCKER(all_custodies().lock());
all_custodies().resource().remove(this);
}
+
+String Custody::absolute_path() const
+{
+ Vector<const Custody*, 32> custody_chain;
+ for (auto* custody = this; custody; custody = custody->parent())
+ custody_chain.append(custody);
+ StringBuilder builder;
+ for (int i = custody_chain.size() - 2; i >= 0; --i) {
+ builder.append('/');
+ builder.append(custody_chain[i]->name().characters());
+ }
+ return builder.to_string();
+}
diff --git a/Kernel/FileSystem/Custody.h b/Kernel/FileSystem/Custody.h
index 06cf20b69e..a468e4cf98 100644
--- a/Kernel/FileSystem/Custody.h
+++ b/Kernel/FileSystem/Custody.h
@@ -23,6 +23,8 @@ public:
const String& name() const { return m_name; }
+ String absolute_path() const;
+
private:
Custody(Custody* parent, const String& name, Inode&);
diff --git a/Kernel/FileSystem/FileDescriptor.cpp b/Kernel/FileSystem/FileDescriptor.cpp
index 68bc0c8329..54e3c7d57c 100644
--- a/Kernel/FileSystem/FileDescriptor.cpp
+++ b/Kernel/FileSystem/FileDescriptor.cpp
@@ -1,6 +1,7 @@
#include <AK/BufferStream.h>
#include <Kernel/Devices/BlockDevice.h>
#include <Kernel/Devices/CharacterDevice.h>
+#include <Kernel/FileSystem/Custody.h>
#include <Kernel/FileSystem/FIFO.h>
#include <Kernel/FileSystem/FileDescriptor.h>
#include <Kernel/FileSystem/FileSystem.h>
@@ -14,9 +15,11 @@
#include <Kernel/VM/MemoryManager.h>
#include <LibC/errno_numbers.h>
-Retained<FileDescriptor> FileDescriptor::create(RetainPtr<Inode>&& inode)
+Retained<FileDescriptor> FileDescriptor::create(RetainPtr<Custody>&& custody)
{
- return adopt(*new FileDescriptor(InodeFile::create(*inode)));
+ auto descriptor = adopt(*new FileDescriptor(InodeFile::create(custody->inode())));
+ descriptor->m_custody = move(custody);
+ return descriptor;
}
Retained<FileDescriptor> FileDescriptor::create(RetainPtr<File>&& file, SocketRole role)
@@ -62,6 +65,7 @@ Retained<FileDescriptor> FileDescriptor::clone()
descriptor = fifo()->open_direction(m_fifo_direction);
} else {
descriptor = FileDescriptor::create(m_file.copy_ref(), m_socket_role);
+ descriptor->m_custody = m_custody.copy_ref();
descriptor->m_inode = m_inode.copy_ref();
}
ASSERT(descriptor);
@@ -102,7 +106,7 @@ KResult FileDescriptor::fchmod(mode_t mode)
{
if (!m_inode)
return KResult(-EBADF);
- return VFS::the().chmod(*m_inode, mode);
+ return VFS::the().fchmod(*m_inode, mode);
}
off_t FileDescriptor::seek(off_t offset, int whence)
@@ -259,6 +263,9 @@ int FileDescriptor::close()
KResultOr<String> FileDescriptor::absolute_path()
{
+ if (m_custody)
+ return m_custody->absolute_path();
+ dbgprintf("FileDescriptor::absolute_path() for FD without custody, File type: %s\n", m_file->class_name());
return m_file->absolute_path(*this);
}
diff --git a/Kernel/FileSystem/FileDescriptor.h b/Kernel/FileSystem/FileDescriptor.h
index b6d1256c2b..e9844f2a59 100644
--- a/Kernel/FileSystem/FileDescriptor.h
+++ b/Kernel/FileSystem/FileDescriptor.h
@@ -21,7 +21,7 @@ class SharedMemory;
class FileDescriptor : public Retainable<FileDescriptor> {
public:
- static Retained<FileDescriptor> create(RetainPtr<Inode>&&);
+ static Retained<FileDescriptor> create(RetainPtr<Custody>&&);
static Retained<FileDescriptor> create(RetainPtr<File>&&, SocketRole = SocketRole::None);
~FileDescriptor();
@@ -64,6 +64,9 @@ public:
Inode* inode() { return m_inode.ptr(); }
const Inode* inode() const { return m_inode.ptr(); }
+ Custody* custody() { return m_custody.ptr(); }
+ const Custody* custody() const { return m_custody.ptr(); }
+
KResultOr<Region*> mmap(Process&, LinearAddress, size_t offset, size_t, int prot);
bool is_blocking() const { return m_is_blocking; }
@@ -103,6 +106,7 @@ private:
FileDescriptor(RetainPtr<File>&&, SocketRole = SocketRole::None);
FileDescriptor(FIFO&, FIFO::Direction);
+ RetainPtr<Custody> m_custody;
RetainPtr<Inode> m_inode;
RetainPtr<File> m_file;
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp
index 2b5220f167..9db23e5fd0 100644
--- a/Kernel/FileSystem/ProcFS.cpp
+++ b/Kernel/FileSystem/ProcFS.cpp
@@ -1,5 +1,6 @@
#include "ProcFS.h"
#include "Process.h"
+#include <Kernel/FileSystem/Custody.h>
#include <Kernel/FileSystem/FileDescriptor.h>
#include <Kernel/FileSystem/VirtualFileSystem.h>
#include <Kernel/VM/MemoryManager.h>
@@ -359,12 +360,9 @@ ByteBuffer procfs$pid_exe(InodeIdentifier identifier)
if (!handle)
return { };
auto& process = handle->process();
- auto inode = process.executable_inode();
- ASSERT(inode);
- auto result = VFS::the().absolute_path(*inode);
- if (result.is_error())
- return { };
- return result.value().to_byte_buffer();
+ auto* custody = process.executable_custody();
+ ASSERT(custody);
+ return custody->absolute_path().to_byte_buffer();
}
ByteBuffer procfs$pid_cwd(InodeIdentifier identifier)
@@ -372,10 +370,7 @@ ByteBuffer procfs$pid_cwd(InodeIdentifier identifier)
auto handle = ProcessInspectionHandle::from_pid(to_pid(identifier));
if (!handle)
return { };
- auto result = VFS::the().absolute_path(handle->process().cwd_inode());
- if (result.is_error())
- return { };
- return result.value().to_byte_buffer();
+ return handle->process().cwd_custody().absolute_path().to_byte_buffer();
}
ByteBuffer procfs$self(InodeIdentifier)
@@ -958,7 +953,7 @@ bool ProcFSInode::traverse_as_directory(Function<bool(const FS::DirectoryEntry&)
auto& process = handle->process();
for (auto& entry : fs().m_entries) {
if (entry.proc_file_type > __FI_PID_Start && entry.proc_file_type < __FI_PID_End) {
- if (entry.proc_file_type == FI_PID_exe && !process.executable_inode())
+ if (entry.proc_file_type == FI_PID_exe && !process.executable_custody())
continue;
// FIXME: strlen() here is sad.
callback({ entry.name, (int)strlen(entry.name), to_identifier(fsid(), PDI_PID, pid, (ProcFileType)entry.proc_file_type), 0 });
@@ -1039,7 +1034,7 @@ InodeIdentifier ProcFSInode::lookup(const String& name)
auto& process = handle->process();
for (auto& entry : fs().m_entries) {
if (entry.proc_file_type > __FI_PID_Start && entry.proc_file_type < __FI_PID_End) {
- if (entry.proc_file_type == FI_PID_exe && !process.executable_inode())
+ if (entry.proc_file_type == FI_PID_exe && !process.executable_custody())
continue;
if (entry.name == nullptr)
continue;
diff --git a/Kernel/FileSystem/VirtualFileSystem.cpp b/Kernel/FileSystem/VirtualFileSystem.cpp
index dfe1c56a3d..d9dba7bdfe 100644
--- a/Kernel/FileSystem/VirtualFileSystem.cpp
+++ b/Kernel/FileSystem/VirtualFileSystem.cpp
@@ -121,7 +121,7 @@ void VFS::traverse_directory_inode(Inode& dir_inode, Function<bool(const FS::Dir
});
}
-KResult VFS::utime(StringView path, Inode& base, time_t atime, time_t mtime)
+KResult VFS::utime(StringView path, Custody& base, time_t atime, time_t mtime)
{
auto descriptor_or_error = VFS::the().open(move(path), 0, 0, base);
if (descriptor_or_error.is_error())
@@ -141,28 +141,29 @@ KResult VFS::utime(StringView path, Inode& base, time_t atime, time_t mtime)
return KSuccess;
}
-KResult VFS::stat(StringView path, int options, Inode& base, struct stat& statbuf)
+KResult VFS::stat(StringView path, int options, Custody& base, struct stat& statbuf)
{
- auto inode_or_error = resolve_path_to_inode(path, base, nullptr, options);
- if (inode_or_error.is_error())
- return inode_or_error.error();
- return FileDescriptor::create(inode_or_error.value().ptr())->fstat(statbuf);
+ auto custody_or_error = resolve_path_to_custody(path, base, nullptr, options);
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
+ return FileDescriptor::create(custody_or_error.value().ptr())->fstat(statbuf);
}
-KResultOr<Retained<FileDescriptor>> VFS::open(StringView path, int options, mode_t mode, Inode& base)
+KResultOr<Retained<FileDescriptor>> VFS::open(StringView path, int options, mode_t mode, Custody& base)
{
- auto inode_or_error = resolve_path_to_inode(path, base, nullptr, options);
+ auto custody_or_error = resolve_path_to_custody(path, base, nullptr, options);
if (options & O_CREAT) {
- if (inode_or_error.is_error())
+ if (custody_or_error.is_error())
return create(path, options, mode, base);
if (options & O_EXCL)
return KResult(-EEXIST);
}
- if (inode_or_error.is_error())
- return inode_or_error.error();
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
- auto inode = inode_or_error.value();
- auto metadata = inode->metadata();
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
+ auto metadata = inode.metadata();
bool should_truncate_file = false;
@@ -188,41 +189,42 @@ KResultOr<Retained<FileDescriptor>> VFS::open(StringView path, int options, mode
auto descriptor_or_error = (*it).value->open(options);
if (descriptor_or_error.is_error())
return descriptor_or_error.error();
- descriptor_or_error.value()->set_original_inode(Badge<VFS>(), *inode);
+ descriptor_or_error.value()->set_original_inode(Badge<VFS>(), inode);
return descriptor_or_error;
}
if (should_truncate_file)
- inode->truncate(0);
- return FileDescriptor::create(*inode);
+ inode.truncate(0);
+ return FileDescriptor::create(custody);
}
-KResult VFS::mknod(StringView path, mode_t mode, dev_t dev, Inode& base)
+KResult VFS::mknod(StringView path, mode_t mode, dev_t dev, Custody& base)
{
if (!is_regular_file(mode) && !is_block_device(mode) && !is_character_device(mode) && !is_fifo(mode) && !is_socket(mode))
return KResult(-EINVAL);
- RetainPtr<Inode> parent_inode;
- auto existing_file_or_error = resolve_path_to_inode(path, base, &parent_inode);
+ RetainPtr<Custody> parent_custody;
+ auto existing_file_or_error = resolve_path_to_custody(path, base, &parent_custody);
if (!existing_file_or_error.is_error())
return KResult(-EEXIST);
- if (!parent_inode)
+ if (!parent_custody)
return KResult(-ENOENT);
if (existing_file_or_error.error() != -ENOENT)
return existing_file_or_error.error();
- if (!parent_inode->metadata().may_write(current->process()))
+ auto& parent_inode = parent_custody->inode();
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
FileSystemPath p(path);
- dbgprintf("VFS::mknod: '%s' mode=%o dev=%u in %u:%u\n", p.basename().characters(), mode, dev, parent_inode->fsid(), parent_inode->index());
+ dbgprintf("VFS::mknod: '%s' mode=%o dev=%u in %u:%u\n", p.basename().characters(), mode, dev, parent_inode.fsid(), parent_inode.index());
int error;
- auto new_file = parent_inode->fs().create_inode(parent_inode->identifier(), p.basename(), mode, 0, dev, error);
+ auto new_file = parent_inode.fs().create_inode(parent_inode.identifier(), p.basename(), mode, 0, dev, error);
if (!new_file)
return KResult(error);
return KSuccess;
}
-KResultOr<Retained<FileDescriptor>> VFS::create(StringView path, int options, mode_t mode, Inode& base)
+KResultOr<Retained<FileDescriptor>> VFS::create(StringView path, int options, mode_t mode, Custody& base)
{
(void)options;
@@ -231,57 +233,61 @@ KResultOr<Retained<FileDescriptor>> VFS::create(StringView path, int options, mo
mode |= 0100000;
}
- RetainPtr<Inode> parent_inode;
- auto existing_file_or_error = resolve_path_to_inode(path, base, &parent_inode);
- if (!existing_file_or_error.is_error())
+ RetainPtr<Custody> parent_custody;
+ auto existing_custody_or_error = resolve_path_to_custody(path, base, &parent_custody);
+ if (!existing_custody_or_error.is_error())
return KResult(-EEXIST);
- if (!parent_inode)
+ if (!parent_custody)
return KResult(-ENOENT);
- if (existing_file_or_error.error() != -ENOENT)
- return existing_file_or_error.error();
- if (!parent_inode->metadata().may_write(current->process()))
+ auto& parent_inode = parent_custody->inode();
+ if (existing_custody_or_error.error() != -ENOENT)
+ return existing_custody_or_error.error();
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
FileSystemPath p(path);
- dbgprintf("VFS::create_file: '%s' in %u:%u\n", p.basename().characters(), parent_inode->fsid(), parent_inode->index());
+ dbgprintf("VFS::create_file: '%s' in %u:%u\n", p.basename().characters(), parent_inode.fsid(), parent_inode.index());
int error;
- auto new_file = parent_inode->fs().create_inode(parent_inode->identifier(), p.basename(), mode, 0, 0, error);
+ auto new_file = parent_inode.fs().create_inode(parent_inode.identifier(), p.basename(), mode, 0, 0, error);
if (!new_file)
return KResult(error);
- return FileDescriptor::create(move(new_file));
+ auto new_custody = Custody::create(parent_custody, p.basename(), *new_file);
+ return FileDescriptor::create(*new_custody);
}
-KResult VFS::mkdir(StringView path, mode_t mode, Inode& base)
+KResult VFS::mkdir(StringView path, mode_t mode, Custody& base)
{
- RetainPtr<Inode> parent_inode;
- auto result = resolve_path_to_inode(path, base, &parent_inode);
+ RetainPtr<Custody> parent_custody;
+ auto result = resolve_path_to_custody(path, base, &parent_custody);
if (!result.is_error())
return KResult(-EEXIST);
- if (!parent_inode)
+ if (!parent_custody)
return KResult(-ENOENT);
if (result.error() != -ENOENT)
return result.error();
- if (!parent_inode->metadata().may_write(current->process()))
+ auto& parent_inode = parent_custody->inode();
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
FileSystemPath p(path);
- dbgprintf("VFS::mkdir: '%s' in %u:%u\n", p.basename().characters(), parent_inode->fsid(), parent_inode->index());
+ dbgprintf("VFS::mkdir: '%s' in %u:%u\n", p.basename().characters(), parent_inode.fsid(), parent_inode.index());
int error;
- auto new_dir = parent_inode->fs().create_directory(parent_inode->identifier(), p.basename(), mode, error);
+ auto new_dir = parent_inode.fs().create_directory(parent_inode.identifier(), p.basename(), mode, error);
if (new_dir)
return KSuccess;
return KResult(error);
}
-KResult VFS::access(StringView path, int mode, Inode& base)
+KResult VFS::access(StringView path, int mode, Custody& base)
{
- auto inode_or_error = resolve_path_to_inode(path, base);
- if (inode_or_error.is_error())
- return inode_or_error.error();
- auto inode = inode_or_error.value();
- auto metadata = inode->metadata();
+ auto custody_or_error = resolve_path_to_custody(path, base);
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
+ auto metadata = inode.metadata();
if (mode & R_OK) {
if (!metadata.may_read(current->process()))
return KResult(-EACCES);
@@ -297,20 +303,21 @@ KResult VFS::access(StringView path, int mode, Inode& base)
return KSuccess;
}
-KResultOr<Retained<Inode>> VFS::open_directory(StringView path, Inode& base)
+KResultOr<Retained<Custody>> VFS::open_directory(StringView path, Custody& base)
{
- auto inode_or_error = resolve_path_to_inode(path, base);
+ auto inode_or_error = resolve_path_to_custody(path, base);
if (inode_or_error.is_error())
return inode_or_error.error();
- auto inode = inode_or_error.value();
- if (!inode->is_directory())
+ auto& custody = *inode_or_error.value();
+ auto& inode = custody.inode();
+ if (!inode.is_directory())
return KResult(-ENOTDIR);
- if (!inode->metadata().may_execute(current->process()))
+ if (!inode.metadata().may_execute(current->process()))
return KResult(-EACCES);
- return Retained<Inode>(*inode);
+ return custody;
}
-KResult VFS::chmod(Inode& inode, mode_t mode)
+KResult VFS::fchmod(Inode& inode, mode_t mode)
{
if (inode.fs().is_readonly())
return KResult(-EROFS);
@@ -323,83 +330,90 @@ KResult VFS::chmod(Inode& inode, mode_t mode)
return inode.chmod(mode);
}
-KResult VFS::chmod(StringView path, mode_t mode, Inode& base)
+KResult VFS::chmod(StringView path, mode_t mode, Custody& base)
{
- auto inode_or_error = resolve_path_to_inode(path, base);
- if (inode_or_error.is_error())
- return inode_or_error.error();
- auto inode = inode_or_error.value();
- return chmod(*inode, mode);
+ auto custody_or_error = resolve_path_to_custody(path, base);
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
+ return fchmod(inode, mode);
}
-KResult VFS::rename(StringView old_path, StringView new_path, Inode& base)
+KResult VFS::rename(StringView old_path, StringView new_path, Custody& base)
{
- RetainPtr<Inode> old_parent_inode;
- auto old_inode_or_error = resolve_path_to_inode(old_path, base, &old_parent_inode);
- if (old_inode_or_error.is_error())
- return old_inode_or_error.error();
- auto old_inode = old_inode_or_error.value();
+ RetainPtr<Custody> old_parent_custody;
+ auto old_custody_or_error = resolve_path_to_custody(old_path, base, &old_parent_custody);
+ if (old_custody_or_error.is_error())
+ return old_custody_or_error.error();
+ auto& old_custody = *old_custody_or_error.value();
+ auto& old_inode = old_custody.inode();
- RetainPtr<Inode> new_parent_inode;
- auto new_inode_or_error = resolve_path_to_inode(new_path, base, &new_parent_inode);
- if (new_inode_or_error.is_error()) {
- if (new_inode_or_error.error() != -ENOENT)
- return new_inode_or_error.error();
+ RetainPtr<Custody> new_parent_custody;
+ auto new_custody_or_error = resolve_path_to_custody(new_path, base, &new_parent_custody);
+ if (new_custody_or_error.is_error()) {
+ if (new_custody_or_error.error() != -ENOENT)
+ return new_custody_or_error.error();
}
- if (!new_parent_inode->metadata().may_write(current->process()))
+ auto& old_parent_inode = old_parent_custody->inode();
+ auto& new_parent_inode = new_parent_custody->inode();
+
+ if (!new_parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
- if (!old_parent_inode->metadata().may_write(current->process()))
+ if (!old_parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
- if (old_parent_inode->metadata().is_sticky()) {
- if (!current->process().is_superuser() && old_inode->metadata().uid != current->process().euid())
+ if (old_parent_inode.metadata().is_sticky()) {
+ if (!current->process().is_superuser() && old_inode.metadata().uid != current->process().euid())
return KResult(-EACCES);
}
- if (!new_inode_or_error.is_error()) {
- auto new_inode = new_inode_or_error.value();
+ if (!new_custody_or_error.is_error()) {
+ auto& new_custody = *new_custody_or_error.value();
+ auto& new_inode = new_custody.inode();
// FIXME: Is this really correct? Check what other systems do.
- if (new_inode == old_inode)
+ if (&new_inode == &old_inode)
return KSuccess;
- if (new_parent_inode->metadata().is_sticky()) {
- if (!current->process().is_superuser() && new_inode->metadata().uid != current->process().euid())
+ if (new_parent_inode.metadata().is_sticky()) {
+ if (!current->process().is_superuser() && new_inode.metadata().uid != current->process().euid())
return KResult(-EACCES);
}
- if (new_inode->is_directory() && !old_inode->is_directory())
+ if (new_inode.is_directory() && !old_inode.is_directory())
return KResult(-EISDIR);
- auto result = new_parent_inode->remove_child(FileSystemPath(new_path).basename());
+ auto result = new_parent_inode.remove_child(FileSystemPath(new_path).basename());
if (result.is_error())
return result;
}
- auto result = new_parent_inode->add_child(old_inode->identifier(), FileSystemPath(new_path).basename(), 0 /* FIXME: file type? */);
+ auto result = new_parent_inode.add_child(old_inode.identifier(), FileSystemPath(new_path).basename(), 0 /* FIXME: file type? */);
if (result.is_error())
return result;
- result = old_parent_inode->remove_child(FileSystemPath(old_path).basename());
+ result = old_parent_inode.remove_child(FileSystemPath(old_path).basename());
if (result.is_error())
return result;
return KSuccess;
}
-KResult VFS::chown(StringView path, uid_t a_uid, gid_t a_gid, Inode& base)
+KResult VFS::chown(StringView path, uid_t a_uid, gid_t a_gid, Custody& base)
{
- auto inode_or_error = resolve_path_to_inode(path, base);
- if (inode_or_error.is_error())
- return inode_or_error.error();
- auto inode = inode_or_error.value();
+ auto custody_or_error = resolve_path_to_custody(path, base);
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
- if (inode->fs().is_readonly())
+ if (inode.fs().is_readonly())
return KResult(-EROFS);
- if (current->process().euid() != inode->metadata().uid && !current->process().is_superuser())
+ if (current->process().euid() != inode.metadata().uid && !current->process().is_superuser())
return KResult(-EPERM);
- uid_t new_uid = inode->metadata().uid;
- gid_t new_gid = inode->metadata().gid;
+ uid_t new_uid = inode.metadata().uid;
+ gid_t new_gid = inode.metadata().gid;
if (a_uid != (uid_t)-1) {
if (current->process().euid() != a_uid && !current->process().is_superuser())
@@ -412,8 +426,8 @@ KResult VFS::chown(StringView path, uid_t a_uid, gid_t a_gid, Inode& base)
new_gid = a_gid;
}
- dbgprintf("VFS::chown(): inode %u:%u <- uid:%d, gid:%d\n", inode->fsid(), inode->index(), new_uid, new_gid);
- return inode->chown(new_uid, new_gid);
+ dbgprintf("VFS::chown(): inode %u:%u <- uid:%d, gid:%d\n", inode.fsid(), inode.index(), new_uid, new_gid);
+ return inode.chown(new_uid, new_gid);
}
KResultOr<Retained<Inode>> VFS::resolve_path_to_inode(StringView path, Inode& base, RetainPtr<Inode>* parent_inode, int options)
@@ -431,72 +445,78 @@ KResultOr<Retained<Inode>> VFS::resolve_path_to_inode(StringView path, Inode& ba
return Retained<Inode>(*get_inode(result.value()));
}
-KResult VFS::link(StringView old_path, StringView new_path, Inode& base)
+KResult VFS::link(StringView old_path, StringView new_path, Custody& base)
{
- auto old_inode_or_error = resolve_path_to_inode(old_path, base);
- if (old_inode_or_error.is_error())
- return old_inode_or_error.error();
- auto old_inode = old_inode_or_error.value();
+ auto old_custody_or_error = resolve_path_to_custody(old_path, base);
+ if (old_custody_or_error.is_error())
+ return old_custody_or_error.error();
+ auto& old_custody = *old_custody_or_error.value();
+ auto& old_inode = old_custody.inode();
- RetainPtr<Inode> parent_inode;
- auto new_inode_or_error = resolve_path_to_inode(new_path, base, &parent_inode);
- if (!new_inode_or_error.is_error())
+ RetainPtr<Custody> parent_custody;
+ auto new_custody_or_error = resolve_path_to_custody(new_path, base, &parent_custody);
+ if (!new_custody_or_error.is_error())
return KResult(-EEXIST);
- if (!parent_inode)
+ if (!parent_custody)
return KResult(-ENOENT);
- if (parent_inode->fsid() != old_inode->fsid())
+ auto& parent_inode = parent_custody->inode();
+
+ if (parent_inode.fsid() != old_inode.fsid())
return KResult(-EXDEV);
- if (parent_inode->fs().is_readonly())
+ if (parent_inode.fs().is_readonly())
return KResult(-EROFS);
- if (!parent_inode->metadata().may_write(current->process()))
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
- return parent_inode->add_child(old_inode->identifier(), FileSystemPath(new_path).basename(), 0);
+ return parent_inode.add_child(old_inode.identifier(), FileSystemPath(new_path).basename(), 0);
}
-KResult VFS::unlink(StringView path, Inode& base)
+KResult VFS::unlink(StringView path, Custody& base)
{
- RetainPtr<Inode> parent_inode;
- auto inode_or_error = resolve_path_to_inode(path, base, &parent_inode);
- if (inode_or_error.is_error())
- return inode_or_error.error();
- auto inode = inode_or_error.value();
+ RetainPtr<Custody> parent_custody;
+ auto custody_or_error = resolve_path_to_custody(path, base, &parent_custody);
+ if (custody_or_error.is_error())
+ return custody_or_error.error();
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
- if (inode->is_directory())
+ if (inode.is_directory())
return KResult(-EISDIR);
- if (!parent_inode->metadata().may_write(current->process()))
+ auto& parent_inode = parent_custody->inode();
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
- if (parent_inode->metadata().is_sticky()) {
- if (!current->process().is_superuser() && inode->metadata().uid != current->process().euid())
+ if (parent_inode.metadata().is_sticky()) {
+ if (!current->process().is_superuser() && inode.metadata().uid != current->process().euid())
return KResult(-EACCES);
}
- return parent_inode->remove_child(FileSystemPath(path).basename());
+ return parent_inode.remove_child(FileSystemPath(path).basename());
}
-KResult VFS::symlink(StringView target, StringView linkpath, Inode& base)
+KResult VFS::symlink(StringView target, StringView linkpath, Custody& base)
{
- RetainPtr<Inode> parent_inode;
- auto existing_file_or_error = resolve_path_to_inode(linkpath, base, &parent_inode);
- if (!existing_file_or_error.is_error())
+ RetainPtr<Custody> parent_custody;
+ auto existing_custody_or_error = resolve_path_to_custody(linkpath, base, &parent_custody);
+ if (!existing_custody_or_error.is_error())
return KResult(-EEXIST);
- if (!parent_inode)
+ if (!parent_custody)
return KResult(-ENOENT);
- if (existing_file_or_error.error() != -ENOENT)
- return existing_file_or_error.error();
- if (!parent_inode->metadata().may_write(current->process()))
+ if (existing_custody_or_error.error() != -ENOENT)
+ return existing_custody_or_error.error();
+ auto& parent_inode = parent_custody->inode();
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
FileSystemPath p(linkpath);
- dbgprintf("VFS::symlink: '%s' (-> '%s') in %u:%u\n", p.basename().characters(), target.characters(), parent_inode->fsid(), parent_inode->index());
+ dbgprintf("VFS::symlink: '%s' (-> '%s') in %u:%u\n", p.basename().characters(), target.characters(), parent_inode.fsid(), parent_inode.index());
int error;
- auto new_file = parent_inode->fs().create_inode(parent_inode->identifier(), p.basename(), 0120644, 0, 0, error);
+ auto new_file = parent_inode.fs().create_inode(parent_inode.identifier(), p.basename(), 0120644, 0, 0, error);
if (!new_file)
return KResult(error);
ssize_t nwritten = new_file->write_bytes(0, target.length(), (const byte*)target.characters(), nullptr);
@@ -505,38 +525,41 @@ KResult VFS::symlink(StringView target, StringView linkpath, Inode& base)
return KSuccess;
}
-KResult VFS::rmdir(StringView path, Inode& base)
+KResult VFS::rmdir(StringView path, Custody& base)
{
- RetainPtr<Inode> parent_inode;
- auto inode_or_error = resolve_path_to_inode(path, base, &parent_inode);
- if (inode_or_error.is_error())
- return KResult(inode_or_error.error());
+ RetainPtr<Custody> parent_custody;
+ auto custody_or_error = resolve_path_to_custody(path, base, &parent_custody);
+ if (custody_or_error.is_error())
+ return KResult(custody_or_error.error());
- auto inode = inode_or_error.value();
- if (inode->fs().is_readonly())
+ auto& custody = *custody_or_error.value();
+ auto& inode = custody.inode();
+ if (inode.fs().is_readonly())
return KResult(-EROFS);
// FIXME: We should return EINVAL if the last component of the path is "."
// FIXME: We should return ENOTEMPTY if the last component of the path is ".."
- if (!inode->is_directory())
+ if (!inode.is_directory())
return KResult(-ENOTDIR);
- if (!parent_inode->metadata().may_write(current->process()))
+ auto& parent_inode = parent_custody->inode();
+
+ if (!parent_inode.metadata().may_write(current->process()))
return KResult(-EACCES);
- if (inode->directory_entry_count() != 2)
+ if (inode.directory_entry_count() != 2)
return KResult(-ENOTEMPTY);
- auto result = inode->remove_child(".");
+ auto result = inode.remove_child(".");
if (result.is_error())
return result;
- result = inode->remove_child("..");
+ result = inode.remove_child("..");
if (result.is_error())
return result;
- return parent_inode->remove_child(FileSystemPath(path).basename());
+ return parent_inode.remove_child(FileSystemPath(path).basename());
}
KResultOr<InodeIdentifier> VFS::resolve_symbolic_link(InodeIdentifier base, Inode& symlink_inode)
@@ -748,7 +771,7 @@ Custody& VFS::root_custody()
return *m_root_custody;
}
-KResultOr<Retained<Custody>> VFS::resolve_path_to_custody(StringView path, Custody& base, int options)
+KResultOr<Retained<Custody>> VFS::resolve_path_to_custody(StringView path, Custody& base, RetainPtr<Custody>* parent_custody, int options)
{
if (path.is_empty())
return KResult(-EINVAL);
@@ -759,7 +782,7 @@ KResultOr<Retained<Custody>> VFS::resolve_path_to_custody(StringView path, Custo
Vector<Retained<Custody>, 32> custody_chain;
if (path[0] == '/') {
- custody_chain.append(Retained<Custody>(base));
+ custody_chain.append(root_custody());
crumb_id = root_inode_id();
} else {
for (auto* custody = &base; custody; custody = custody->parent()) {
@@ -769,6 +792,9 @@ KResultOr<Retained<Custody>> VFS::resolve_path_to_custody(StringView path, Custo
crumb_id = base.inode().identifier();
}
+ if (parent_custody)
+ *parent_custody = custody_chain.last();
+
for (int i = 0; i < parts.size(); ++i) {
bool inode_was_root_at_head_of_loop = crumb_id.is_root_inode();
auto& part = parts[i];
@@ -798,6 +824,12 @@ KResultOr<Retained<Custody>> VFS::resolve_path_to_custody(StringView path, Custo
ASSERT(crumb_inode);
custody_chain.append(Custody::create(custody_chain.last().ptr(), part, *crumb_inode));
metadata = crumb_inode->metadata();
+ if (metadata.is_directory()) {
+ if (i != parts.size() - 1) {
+ if (parent_custody)
+ *parent_custody = custody_chain.last();
+ }
+ }
if (metadata.is_symlink()) {
if (i == parts.size() - 1) {
if (options & O_NOFOLLOW)
diff --git a/Kernel/FileSystem/VirtualFileSystem.h b/Kernel/FileSystem/VirtualFileSystem.h
index 0dbef2bb36..16cd257ac7 100644
--- a/Kernel/FileSystem/VirtualFileSystem.h
+++ b/Kernel/FileSystem/VirtualFileSystem.h
@@ -63,22 +63,22 @@ public:
bool mount(RetainPtr<FS>&&, StringView path);
KResultOr<Retained<FileDescriptor>> open(RetainPtr<Device>&&, int options);
- KResultOr<Retained<FileDescriptor>> open(StringView path, int options, mode_t mode, Inode& base);
- KResultOr<Retained<FileDescriptor>> create(StringView path, int options, mode_t mode, Inode& base);
- KResult mkdir(StringView path, mode_t mode, Inode& base);
- KResult link(StringView old_path, StringView new_path, Inode& base);
- KResult unlink(StringView path, Inode& base);
- KResult symlink(StringView target, StringView linkpath, Inode& base);
- KResult rmdir(StringView path, Inode& base);
- KResult chmod(StringView path, mode_t, Inode& base);
- KResult chmod(Inode&, mode_t);
- KResult chown(StringView path, uid_t, gid_t, Inode& base);
- KResult access(StringView path, int mode, Inode& base);
- KResult stat(StringView path, int options, Inode& base, struct stat&);
- KResult utime(StringView path, Inode& base, time_t atime, time_t mtime);
- KResult rename(StringView oldpath, StringView newpath, Inode& base);
- KResult mknod(StringView path, mode_t, dev_t, Inode& base);
- KResultOr<Retained<Inode>> open_directory(StringView path, Inode& base);
+ KResultOr<Retained<FileDescriptor>> open(StringView path, int options, mode_t mode, Custody& base);
+ KResultOr<Retained<FileDescriptor>> create(StringView path, int options, mode_t mode, Custody& base);
+ KResult mkdir(StringView path, mode_t mode, Custody& base);
+ KResult link(StringView old_path, StringView new_path, Custody& base);
+ KResult unlink(StringView path, Custody& base);
+ KResult symlink(StringView target, StringView linkpath, Custody& base);
+ KResult rmdir(StringView path, Custody& base);
+ KResult chmod(StringView path, mode_t, Custody& base);
+ KResult fchmod(Inode&, mode_t);
+ KResult chown(StringView path, uid_t, gid_t, Custody& base);
+ KResult access(StringView path, int mode, Custody& base);
+ KResult stat(StringView path, int options, Custody& base, struct stat&);
+ KResult utime(StringView path, Custody& base, time_t atime, time_t mtime);
+ KResult rename(StringView oldpath, StringView newpath, Custody& base);
+ KResult mknod(StringView path, mode_t, dev_t, Custody& base);
+ KResultOr<Retained<Custody>> open_directory(StringView path, Custody& base);
void register_device(Device&);
void unregister_device(Device&);
@@ -98,7 +98,7 @@ public:
Device* get_device(unsigned major, unsigned minor);
Custody& root_custody();
- KResultOr<Retained<Custody>> resolve_path_to_custody(StringView path, Custody& base, int options = 0);
+ KResultOr<Retained<Custody>> resolve_path_to_custody(StringView path, Custody& base, RetainPtr<Custody>* parent = nullptr, int options = 0);
private:
friend class FileDescriptor;
diff --git a/Kernel/KSyms.cpp b/Kernel/KSyms.cpp
index 6b6ae5c24b..6ee0a3ac23 100644
--- a/Kernel/KSyms.cpp
+++ b/Kernel/KSyms.cpp
@@ -154,7 +154,7 @@ void init_ksyms()
void load_ksyms()
{
- auto result = VFS::the().open("/kernel.map", 0, 0, *VFS::the().root_inode());
+ auto result = VFS::the().open("/kernel.map", 0, 0, VFS::the().root_custody());
ASSERT(!result.is_error());
auto descriptor = result.value();
auto buffer = descriptor->read_entire_file();
diff --git a/Kernel/Net/LocalSocket.cpp b/Kernel/Net/LocalSocket.cpp
index 17ee5fc2cf..689aaba593 100644
--- a/Kernel/Net/LocalSocket.cpp
+++ b/Kernel/Net/LocalSocket.cpp
@@ -55,7 +55,7 @@ KResult LocalSocket::bind(const sockaddr* address, socklen_t address_size)
kprintf("%s(%u) LocalSocket{%p} bind(%s)\n", current->process().name().characters(), current->pid(), this, safe_address);
#endif
- auto result = VFS::the().open(safe_address, O_CREAT | O_EXCL, S_IFSOCK | 0666, current->process().cwd_inode());
+ auto result = VFS::the().open(safe_address, O_CREAT | O_EXCL, S_IFSOCK | 0666, current->process().cwd_custody());
if (result.is_error()) {
if (result.error() == -EEXIST)
return KResult(-EADDRINUSE);
@@ -87,7 +87,7 @@ KResult LocalSocket::connect(FileDescriptor& descriptor, const sockaddr* address
kprintf("%s(%u) LocalSocket{%p} connect(%s)\n", current->process().name().characters(), current->pid(), this, safe_address);
#endif
- auto descriptor_or_error = VFS::the().open(safe_address, 0, 0, current->process().cwd_inode());
+ auto descriptor_or_error = VFS::the().open(safe_address, 0, 0, current->process().cwd_custody());
if (descriptor_or_error.is_error())
return KResult(-ECONNREFUSED);
m_file = move(descriptor_or_error.value());
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp
index 07d5b23c3b..704818a033 100644
--- a/Kernel/Process.cpp
+++ b/Kernel/Process.cpp
@@ -24,6 +24,7 @@
#include <AK/Time.h>
#include <Kernel/SharedMemory.h>
#include <Kernel/ProcessTracer.h>
+#include <Kernel/FileSystem/Custody.h>
//#define DEBUG_POLL_SELECT
//#define DEBUG_IO
@@ -227,7 +228,7 @@ int Process::sys$gethostname(char* buffer, ssize_t size)
Process* Process::fork(RegisterDump& regs)
{
- auto* child = new Process(String(m_name), m_uid, m_gid, m_pid, m_ring, m_cwd.copy_ref(), m_executable.copy_ref(), m_tty, this);
+ auto* child = new Process(String(m_name), m_uid, m_gid, m_pid, m_ring, m_cwd_custody.copy_ref(), m_executable_custody.copy_ref(), m_tty, this);
if (!child)
return nullptr;
@@ -310,7 +311,7 @@ int Process::do_exec(String path, Vector<String> arguments, Vector<String> envir
if (parts.is_empty())
return -ENOENT;
- auto result = VFS::the().open(path.view(), 0, 0, cwd_inode());
+ auto result = VFS::the().open(path.view(), 0, 0, cwd_custody());
if (result.is_error())
return result.error();
auto descriptor = result.value();
@@ -434,7 +435,7 @@ int Process::do_exec(String path, Vector<String> arguments, Vector<String> envir
main_thread().m_tss.esp0 = old_esp0;
main_thread().m_tss.ss2 = m_pid;
- m_executable = descriptor->inode();
+ m_executable_custody = descriptor->custody();
if (descriptor->metadata().is_setuid())
m_euid = descriptor->metadata().uid;
@@ -520,15 +521,15 @@ Process* Process::create_user_process(const String& path, uid_t uid, gid_t gid,
if (arguments.is_empty()) {
arguments.append(parts.last());
}
- RetainPtr<Inode> cwd;
+ RetainPtr<Custody> cwd;
{
InterruptDisabler disabler;
if (auto* parent = Process::from_pid(parent_pid))
- cwd = parent->m_cwd.copy_ref();
+ cwd = parent->m_cwd_custody.copy_ref();
}
if (!cwd)
- cwd = VFS::the().root_inode();
+ cwd = VFS::the().root_custody();
auto* process = new Process(parts.take_last(), uid, gid, parent_pid, Ring3, move(cwd), nullptr, tty);
@@ -566,7 +567,7 @@ Process* Process::create_kernel_process(String&& name, void (*e)())
return process;
}
-Process::Process(String&& name, uid_t uid, gid_t gid, pid_t ppid, RingLevel ring, RetainPtr<Inode>&& cwd, RetainPtr<Inode>&& executable, TTY* tty, Process* fork_parent)
+Process::Process(String&& name, uid_t uid, gid_t gid, pid_t ppid, RingLevel ring, RetainPtr<Custody>&& cwd, RetainPtr<Custody>&& executable, TTY* tty, Process* fork_parent)
: m_name(move(name))
, m_pid(next_pid++) // FIXME: RACE: This variable looks racy!
, m_uid(uid)
@@ -574,8 +575,8 @@ Process::Process(String&& name, uid_t uid, gid_t gid, pid_t ppid, RingLevel ring
, m_euid(uid)
, m_egid(gid)
, m_ring(ring)
- , m_cwd(move(cwd))
- , m_executable(move(executable))
+ , m_executable_custody(move(executable))
+ , m_cwd_custody(move(cwd))
, m_tty(tty)
, m_ppid(ppid)
{
@@ -997,14 +998,14 @@ int Process::sys$utime(const char* pathname, const utimbuf* buf)
mtime = now.tv_sec;
atime = now.tv_sec;
}
- return VFS::the().utime(StringView(pathname), cwd_inode(), atime, mtime);
+ return VFS::the().utime(StringView(pathname), cwd_custody(), atime, mtime);
}
int Process::sys$access(const char* pathname, int mode)
{
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().access(StringView(pathname), mode, cwd_inode());
+ return VFS::the().access(StringView(pathname), mode, cwd_custody());
}
int Process::sys$fcntl(int fd, int cmd, dword arg)
@@ -1058,14 +1059,14 @@ int Process::sys$lstat(const char* path, stat* statbuf)
{
if (!validate_write_typed(statbuf))
return -EFAULT;
- return VFS::the().stat(StringView(path), O_NOFOLLOW_NOERROR, cwd_inode(), *statbuf);
+ return VFS::the().stat(StringView(path), O_NOFOLLOW_NOERROR, cwd_custody(), *statbuf);
}
int Process::sys$stat(const char* path, stat* statbuf)
{
if (!validate_write_typed(statbuf))
return -EFAULT;
- return VFS::the().stat(StringView(path), O_NOFOLLOW_NOERROR, cwd_inode(), *statbuf);
+ return VFS::the().stat(StringView(path), O_NOFOLLOW_NOERROR, cwd_custody(), *statbuf);
}
int Process::sys$readlink(const char* path, char* buffer, ssize_t size)
@@ -1077,7 +1078,7 @@ int Process::sys$readlink(const char* path, char* buffer, ssize_t size)
if (!validate_write(buffer, size))
return -EFAULT;
- auto result = VFS::the().open(path, O_RDONLY | O_NOFOLLOW_NOERROR, 0, cwd_inode());
+ auto result = VFS::the().open(path, O_RDONLY | O_NOFOLLOW_NOERROR, 0, cwd_custody());
if (result.is_error())
return result.error();
auto descriptor = result.value();
@@ -1099,10 +1100,10 @@ int Process::sys$chdir(const char* path)
{
if (!validate_read_str(path))
return -EFAULT;
- auto directory_or_error = VFS::the().open_directory(StringView(path), cwd_inode());
+ auto directory_or_error = VFS::the().open_directory(StringView(path), cwd_custody());
if (directory_or_error.is_error())
return directory_or_error.error();
- m_cwd = *directory_or_error.value();
+ m_cwd_custody = *directory_or_error.value();
return 0;
}
@@ -1112,10 +1113,7 @@ int Process::sys$getcwd(char* buffer, ssize_t size)
return -EINVAL;
if (!validate_write(buffer, size))
return -EFAULT;
- auto path_or_error = VFS::the().absolute_path(cwd_inode());
- if (path_or_error.is_error())
- return path_or_error.error();
- auto path = path_or_error.value();
+ auto path = cwd_custody().absolute_path();
if (size < path.length() + 1)
return -ERANGE;
strcpy(buffer, path.characters());
@@ -1142,7 +1140,7 @@ int Process::sys$open(const char* path, int options, mode_t mode)
int fd = alloc_fd();
if (fd < 0)
return fd;
- auto result = VFS::the().open(path, options, mode & ~umask(), cwd_inode());
+ auto result = VFS::the().open(path, options, mode & ~umask(), cwd_custody());
if (result.is_error())
return result.error();
auto descriptor = result.value();
@@ -1321,6 +1319,15 @@ uid_t Process::sys$getuid()
gid_t Process::sys$getgid()
{
+ auto result = VFS::the().resolve_path_to_custody("/home/anon", VFS::the().root_custody());
+ if (result.is_error()) {
+ dbgprintf("resolve_path_to_custody failed\n");
+ } else {
+ for (auto* custody = result.value().ptr(); custody; custody = custody->parent()) {
+ dbgprintf("Custody{%p} name=%s, inode=%u:%u\n", custody, custody->name().characters(), custody->inode().fsid(), custody->inode().index());
+ }
+ }
+
return m_gid;
}
@@ -1755,7 +1762,7 @@ int Process::sys$mkdir(const char* pathname, mode_t mode)
return -EINVAL;
if (pathname_length >= 255)
return -ENAMETOOLONG;
- return VFS::the().mkdir(StringView(pathname, pathname_length), mode & ~umask(), cwd_inode());
+ return VFS::the().mkdir(StringView(pathname, pathname_length), mode & ~umask(), cwd_custody());
}
clock_t Process::sys$times(tms* times)
@@ -1934,12 +1941,11 @@ int Process::sys$poll(pollfd* fds, int nfds, int timeout)
return fds_with_revents;
}
-Inode& Process::cwd_inode()
+Custody& Process::cwd_custody()
{
- // FIXME: This is retarded factoring.
- if (!m_cwd)
- m_cwd = VFS::the().root_inode();
- return *m_cwd;
+ if (!m_cwd_custody)
+ m_cwd_custody = VFS::the().root_custody();
+ return *m_cwd_custody;
}
int Process::sys$link(const char* old_path, const char* new_path)
@@ -1948,14 +1954,14 @@ int Process::sys$link(const char* old_path, const char* new_path)
return -EFAULT;
if (!validate_read_str(new_path))
return -EFAULT;
- return VFS::the().link(StringView(old_path), StringView(new_path), cwd_inode());
+ return VFS::the().link(StringView(old_path), StringView(new_path), cwd_custody());
}
int Process::sys$unlink(const char* pathname)
{
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().unlink(StringView(pathname), cwd_inode());
+ return VFS::the().unlink(StringView(pathname), cwd_custody());
}
int Process::sys$symlink(const char* target, const char* linkpath)
@@ -1964,14 +1970,14 @@ int Process::sys$symlink(const char* target, const char* linkpath)
return -EFAULT;
if (!validate_read_str(linkpath))
return -EFAULT;
- return VFS::the().symlink(StringView(target), StringView(linkpath), cwd_inode());
+ return VFS::the().symlink(StringView(target), StringView(linkpath), cwd_custody());
}
int Process::sys$rmdir(const char* pathname)
{
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().rmdir(StringView(pathname), cwd_inode());
+ return VFS::the().rmdir(StringView(pathname), cwd_custody());
}
int Process::sys$read_tsc(dword* lsw, dword* msw)
@@ -1988,7 +1994,7 @@ int Process::sys$chmod(const char* pathname, mode_t mode)
{
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().chmod(StringView(pathname), mode, cwd_inode());
+ return VFS::the().chmod(StringView(pathname), mode, cwd_custody());
}
int Process::sys$fchmod(int fd, mode_t mode)
@@ -2003,7 +2009,7 @@ int Process::sys$chown(const char* pathname, uid_t uid, gid_t gid)
{
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().chown(StringView(pathname), uid, gid, cwd_inode());
+ return VFS::the().chown(StringView(pathname), uid, gid, cwd_custody());
}
void Process::finalize()
@@ -2706,7 +2712,7 @@ int Process::sys$rename(const char* oldpath, const char* newpath)
return -EFAULT;
if (!validate_read_str(newpath))
return -EFAULT;
- return VFS::the().rename(StringView(oldpath), StringView(newpath), cwd_inode());
+ return VFS::the().rename(StringView(oldpath), StringView(newpath), cwd_custody());
}
int Process::sys$shm_open(const char* name, int flags, mode_t mode)
@@ -2780,5 +2786,5 @@ int Process::sys$mknod(const char* pathname, mode_t mode, dev_t dev)
if (!validate_read_str(pathname))
return -EFAULT;
- return VFS::the().mknod(StringView(pathname), mode, dev, cwd_inode());
+ return VFS::the().mknod(StringView(pathname), mode, dev, cwd_custody());
}
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 1ba4ea7f61..38f05a6fb1 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -233,8 +233,8 @@ public:
template<typename T>
bool validate_write_typed(T* value, size_t count = 1) { return validate_write(value, sizeof(T) * count); }
- Inode& cwd_inode();
- Inode* executable_inode() { return m_executable.ptr(); }
+ Custody& cwd_custody();
+ Custody* executable_custody() { return m_executable_custody.ptr(); }
int number_of_open_file_descriptors() const;
int max_open_file_descriptors() const { return m_max_open_file_descriptors; }
@@ -273,7 +273,7 @@ private:
friend class Scheduler;
friend class Region;
- Process(String&& name, uid_t, gid_t, pid_t ppid, RingLevel, RetainPtr<Inode>&& cwd = nullptr, RetainPtr<Inode>&& executable = nullptr, TTY* = nullptr, Process* fork_parent = nullptr);
+ Process(String&& name, uid_t, gid_t, pid_t ppid, RingLevel, RetainPtr<Custody>&& cwd = nullptr, RetainPtr<Custody>&& executable = nullptr, TTY* = nullptr, Process* fork_parent = nullptr);
Range allocate_range(LinearAddress, size_t);
@@ -319,8 +319,8 @@ private:
byte m_termination_status { 0 };
byte m_termination_signal { 0 };
- RetainPtr<Inode> m_cwd;
- RetainPtr<Inode> m_executable;
+ RetainPtr<Custody> m_executable_custody;
+ RetainPtr<Custody> m_cwd_custody;
TTY* m_tty { nullptr };