2020-07-30 23:38:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 23:38:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/Custody.h>
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<FlatPtr> Process::sys$chdir(Userspace<const char*> user_path, size_t path_length)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2021-07-18 11:20:12 -07:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2021-12-29 01:11:45 -08:00
|
|
|
TRY(require_promise(Pledge::rpath));
|
2021-09-05 14:41:13 +02:00
|
|
|
auto path = TRY(get_syscall_path_argument(user_path, path_length));
|
2022-03-07 17:56:25 +01:00
|
|
|
return m_current_directory.with([&](auto& current_directory) -> ErrorOr<FlatPtr> {
|
|
|
|
current_directory = TRY(VirtualFileSystem::the().open_directory(path->view(), *current_directory));
|
|
|
|
return 0;
|
|
|
|
});
|
2020-07-30 23:38:15 +02:00
|
|
|
}
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<FlatPtr> Process::sys$fchdir(int fd)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2021-07-18 11:20:12 -07:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2021-12-29 01:11:45 -08:00
|
|
|
TRY(require_promise(Pledge::stdio));
|
2022-01-29 01:22:28 +01:00
|
|
|
auto description = TRY(open_file_description(fd));
|
2020-07-30 23:38:15 +02:00
|
|
|
if (!description->is_directory())
|
2021-03-01 13:49:16 +01:00
|
|
|
return ENOTDIR;
|
2020-07-30 23:38:15 +02:00
|
|
|
if (!description->metadata().may_execute(*this))
|
2021-03-01 13:49:16 +01:00
|
|
|
return EACCES;
|
2022-03-07 17:56:25 +01:00
|
|
|
m_current_directory.with([&](auto& current_directory) {
|
|
|
|
current_directory = description->custody();
|
|
|
|
});
|
2020-07-30 23:38:15 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-08 00:51:39 +01:00
|
|
|
ErrorOr<FlatPtr> Process::sys$getcwd(Userspace<char*> buffer, size_t size)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2021-07-18 11:20:12 -07:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2021-12-29 01:11:45 -08:00
|
|
|
TRY(require_promise(Pledge::rpath));
|
2021-01-16 15:48:56 +01:00
|
|
|
|
2021-06-16 16:44:15 +02:00
|
|
|
if (size > NumericLimits<ssize_t>::max())
|
|
|
|
return EINVAL;
|
|
|
|
|
2022-03-07 17:56:25 +01:00
|
|
|
auto path = TRY(current_directory()->try_serialize_absolute_path());
|
2021-09-06 12:24:36 +02:00
|
|
|
size_t ideal_size = path->length() + 1;
|
2021-01-16 15:48:56 +01:00
|
|
|
auto size_to_copy = min(ideal_size, size);
|
2021-09-06 12:24:36 +02:00
|
|
|
TRY(copy_to_user(buffer, path->characters(), size_to_copy));
|
2021-01-16 15:48:56 +01:00
|
|
|
// Note: we return the whole size here, not the copied size.
|
|
|
|
return ideal_size;
|
2020-07-30 23:38:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|