2021-11-22 14:43:57 +00:00
|
|
|
/*
|
2022-01-01 15:19:51 +00:00
|
|
|
* Copyright (c) 2021-2022, Andreas Kling <kling@serenityos.org>
|
2022-06-30 14:19:03 +00:00
|
|
|
* Copyright (c) 2021-2022, Kenneth Myhra <kennethmyhra@serenityos.org>
|
2024-01-30 18:30:22 +00:00
|
|
|
* Copyright (c) 2021-2024, Sam Atkins <atkinssj@serenityos.org>
|
2022-01-17 00:25:26 +00:00
|
|
|
* Copyright (c) 2022, Matthias Zimmerman <matthias291999@gmail.com>
|
2021-11-22 14:43:57 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
#include <AK/ByteString.h>
|
2022-03-12 20:23:43 +00:00
|
|
|
#include <AK/FixedArray.h>
|
2023-08-25 16:48:46 +00:00
|
|
|
#include <AK/ScopeGuard.h>
|
2022-03-12 20:23:43 +00:00
|
|
|
#include <AK/ScopedValueRollback.h>
|
2022-01-23 22:03:09 +00:00
|
|
|
#include <AK/StdLibExtras.h>
|
2023-03-17 23:54:19 +00:00
|
|
|
#include <AK/String.h>
|
2022-01-01 15:19:51 +00:00
|
|
|
#include <AK/Vector.h>
|
2023-08-25 16:48:46 +00:00
|
|
|
#include <Kernel/API/BeepInstruction.h>
|
2024-01-30 16:38:56 +00:00
|
|
|
#include <LibCore/Environment.h>
|
2022-09-06 06:04:06 +00:00
|
|
|
#include <LibCore/SessionManagement.h>
|
2021-11-23 09:59:50 +00:00
|
|
|
#include <LibCore/System.h>
|
2022-01-13 23:32:55 +00:00
|
|
|
#include <limits.h>
|
2021-11-23 10:10:19 +00:00
|
|
|
#include <stdarg.h>
|
2022-03-01 22:43:55 +00:00
|
|
|
#include <stdlib.h>
|
2021-11-29 22:07:33 +00:00
|
|
|
#include <sys/ioctl.h>
|
2021-11-23 10:47:32 +00:00
|
|
|
#include <sys/mman.h>
|
2022-01-17 00:25:26 +00:00
|
|
|
#include <sys/time.h>
|
2023-06-25 10:07:58 +00:00
|
|
|
#include <sys/types.h>
|
2021-11-29 22:28:10 +00:00
|
|
|
#include <termios.h>
|
2021-11-23 11:05:56 +00:00
|
|
|
#include <unistd.h>
|
2021-11-22 14:43:57 +00:00
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-11-04 17:20:11 +00:00
|
|
|
# include <Kernel/API/Unveil.h>
|
2022-09-22 13:46:01 +00:00
|
|
|
# include <LibCore/Account.h>
|
2021-12-29 15:22:22 +00:00
|
|
|
# include <serenity.h>
|
2022-11-20 03:23:14 +00:00
|
|
|
# include <sys/ptrace.h>
|
2023-06-25 10:07:58 +00:00
|
|
|
# include <sys/sysmacros.h>
|
2021-12-29 15:22:22 +00:00
|
|
|
#endif
|
|
|
|
|
2022-10-09 22:45:59 +00:00
|
|
|
#if defined(AK_OS_LINUX) && !defined(MFD_CLOEXEC)
|
2022-01-23 22:03:09 +00:00
|
|
|
# include <linux/memfd.h>
|
|
|
|
# include <sys/syscall.h>
|
|
|
|
|
2022-04-01 17:58:27 +00:00
|
|
|
static int memfd_create(char const* name, unsigned int flags)
|
2022-01-23 22:03:09 +00:00
|
|
|
{
|
|
|
|
return syscall(SYS_memfd_create, name, flags);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-02-27 13:32:29 +00:00
|
|
|
#if defined(AK_OS_MACOS) || defined(AK_OS_IOS)
|
2023-08-02 22:56:53 +00:00
|
|
|
# include <mach-o/dyld.h>
|
2022-02-12 23:28:43 +00:00
|
|
|
# include <sys/mman.h>
|
2023-07-17 04:41:43 +00:00
|
|
|
#else
|
|
|
|
extern char** environ;
|
2022-02-12 23:28:43 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-24 17:09:09 +00:00
|
|
|
#if defined(AK_OS_BSD_GENERIC) && !defined(AK_OS_SOLARIS)
|
2023-08-02 22:56:53 +00:00
|
|
|
# include <sys/sysctl.h>
|
|
|
|
#endif
|
|
|
|
|
2023-09-03 19:41:16 +00:00
|
|
|
#if defined(AK_OS_GNU_HURD)
|
|
|
|
extern "C" {
|
|
|
|
# include <hurd.h>
|
|
|
|
}
|
|
|
|
# include <LibCore/File.h>
|
|
|
|
#endif
|
|
|
|
|
2023-08-27 19:31:55 +00:00
|
|
|
#if defined(AK_OS_HAIKU)
|
|
|
|
# include <image.h>
|
|
|
|
#endif
|
|
|
|
|
2021-11-23 09:48:22 +00:00
|
|
|
#define HANDLE_SYSCALL_RETURN_VALUE(syscall_name, rc, success_value) \
|
|
|
|
if ((rc) < 0) { \
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall(syscall_name##sv, rc); \
|
2021-11-23 09:48:22 +00:00
|
|
|
} \
|
|
|
|
return success_value;
|
2021-11-22 15:00:53 +00:00
|
|
|
|
2022-12-13 19:49:32 +00:00
|
|
|
template<typename T>
|
2023-07-08 02:59:01 +00:00
|
|
|
concept SupportsReentrantGetpwent = requires(T passwd, T* ptr) {
|
2022-12-13 19:49:32 +00:00
|
|
|
getpwent_r(&passwd, nullptr, 0, &ptr);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Note: This has to be in the global namespace for the extern declaration to trick the compiler
|
|
|
|
// into finding a declaration of getpwent_r when it doesn't actually exist.
|
|
|
|
static ErrorOr<Optional<struct passwd>> getpwent_impl(Span<char> buffer)
|
|
|
|
{
|
|
|
|
if constexpr (SupportsReentrantGetpwent<struct passwd>) {
|
|
|
|
struct passwd passwd;
|
|
|
|
struct passwd* ptr = nullptr;
|
|
|
|
|
|
|
|
extern int getpwent_r(struct passwd*, char*, size_t, struct passwd**);
|
|
|
|
auto result = getpwent_r(&passwd, buffer.data(), buffer.size(), &ptr);
|
|
|
|
|
|
|
|
if (result == 0 && ptr)
|
|
|
|
return passwd;
|
|
|
|
if (result != 0 && result != ENOENT)
|
|
|
|
return Error::from_errno(result);
|
|
|
|
} else {
|
|
|
|
errno = 0;
|
|
|
|
if (auto const* passwd = ::getpwent())
|
|
|
|
return *passwd;
|
|
|
|
if (errno)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Optional<struct passwd> {};
|
|
|
|
}
|
|
|
|
|
2022-12-13 20:08:58 +00:00
|
|
|
template<typename T>
|
2023-07-08 02:59:01 +00:00
|
|
|
concept SupportsReentrantGetgrent = requires(T group, T* ptr) {
|
2022-12-13 20:08:58 +00:00
|
|
|
getgrent_r(&group, nullptr, 0, &ptr);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Note: This has to be in the global namespace for the extern declaration to trick the compiler
|
|
|
|
// into finding a declaration of getgrent_r when it doesn't actually exist.
|
|
|
|
static ErrorOr<Optional<struct group>> getgrent_impl(Span<char> buffer)
|
|
|
|
{
|
|
|
|
if constexpr (SupportsReentrantGetgrent<struct group>) {
|
|
|
|
struct group group;
|
|
|
|
struct group* ptr = nullptr;
|
|
|
|
|
|
|
|
extern int getgrent_r(struct group*, char*, size_t, struct group**);
|
|
|
|
auto result = getgrent_r(&group, buffer.data(), buffer.size(), &ptr);
|
|
|
|
|
|
|
|
if (result == 0 && ptr)
|
|
|
|
return group;
|
|
|
|
if (result != 0 && result != ENOENT)
|
|
|
|
return Error::from_errno(result);
|
|
|
|
} else {
|
|
|
|
errno = 0;
|
|
|
|
if (auto const* group = ::getgrent())
|
|
|
|
return *group;
|
|
|
|
if (errno)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Optional<struct group> {};
|
|
|
|
}
|
|
|
|
|
2021-11-23 09:59:50 +00:00
|
|
|
namespace Core::System {
|
2021-11-22 14:43:57 +00:00
|
|
|
|
2022-01-13 23:32:55 +00:00
|
|
|
#ifndef HOST_NAME_MAX
|
2024-02-27 13:32:29 +00:00
|
|
|
# if defined(AK_OS_MACOS) || defined(AK_OS_IOS)
|
2022-01-13 23:32:55 +00:00
|
|
|
# define HOST_NAME_MAX 255
|
|
|
|
# else
|
|
|
|
# define HOST_NAME_MAX 64
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-01-09 05:14:43 +00:00
|
|
|
|
2023-08-25 17:26:18 +00:00
|
|
|
ErrorOr<void> beep(u16 tone, u16 milliseconds_duration)
|
2022-01-09 05:14:43 +00:00
|
|
|
{
|
2023-08-25 16:48:46 +00:00
|
|
|
static Optional<int> beep_fd;
|
|
|
|
if (!beep_fd.has_value())
|
|
|
|
beep_fd = TRY(Core::System::open("/dev/beep"sv, O_RDWR));
|
2023-08-25 17:26:18 +00:00
|
|
|
BeepInstruction instruction { tone, milliseconds_duration };
|
2023-08-25 16:48:46 +00:00
|
|
|
TRY(Core::System::write(beep_fd.value(), Span<u8 const>(&instruction, sizeof(BeepInstruction))));
|
2022-01-09 05:14:43 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-22 14:43:57 +00:00
|
|
|
ErrorOr<void> pledge(StringView promises, StringView execpromises)
|
|
|
|
{
|
|
|
|
Syscall::SC_pledge_params params {
|
|
|
|
{ promises.characters_without_null_termination(), promises.length() },
|
|
|
|
{ execpromises.characters_without_null_termination(), execpromises.length() },
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_pledge, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("pledge", rc, {});
|
2021-11-22 14:43:57 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:59:56 +00:00
|
|
|
static ErrorOr<void> unveil_dynamic_loader()
|
|
|
|
{
|
|
|
|
static bool dynamic_loader_unveiled { false };
|
|
|
|
if (dynamic_loader_unveiled)
|
|
|
|
return {};
|
|
|
|
// FIXME: Try to find a way to not hardcode the dynamic loader path.
|
|
|
|
constexpr auto dynamic_loader_path = "/usr/lib/Loader.so"sv;
|
|
|
|
constexpr auto dynamic_loader_permissions = "x"sv;
|
|
|
|
|
|
|
|
Syscall::SC_unveil_params params {
|
2022-11-04 17:20:11 +00:00
|
|
|
static_cast<int>(UnveilFlags::CurrentProgram),
|
2022-10-24 14:59:56 +00:00
|
|
|
{ dynamic_loader_path.characters_without_null_termination(), dynamic_loader_path.length() },
|
|
|
|
{ dynamic_loader_permissions.characters_without_null_termination(), dynamic_loader_permissions.length() },
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_unveil, ¶ms);
|
|
|
|
if (rc < 0) {
|
|
|
|
return Error::from_syscall("unveil (DynamicLoader @ /usr/lib/Loader.so)"sv, rc);
|
|
|
|
}
|
|
|
|
dynamic_loader_unveiled = true;
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-22 14:43:57 +00:00
|
|
|
ErrorOr<void> unveil(StringView path, StringView permissions)
|
|
|
|
{
|
2022-10-24 14:59:56 +00:00
|
|
|
if (permissions.contains('x'))
|
|
|
|
TRY(unveil_dynamic_loader());
|
|
|
|
|
2021-11-22 14:43:57 +00:00
|
|
|
Syscall::SC_unveil_params params {
|
2022-11-04 17:20:11 +00:00
|
|
|
static_cast<int>(UnveilFlags::CurrentProgram),
|
2023-10-10 11:30:58 +00:00
|
|
|
{ nullptr, 0 },
|
|
|
|
{ nullptr, 0 },
|
2022-11-04 17:20:11 +00:00
|
|
|
};
|
2023-10-10 11:30:58 +00:00
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString parsed_path;
|
2023-10-10 11:30:58 +00:00
|
|
|
if (!path.is_null()) {
|
|
|
|
parsed_path = TRY(Core::SessionManagement::parse_path_with_sid(path));
|
|
|
|
params.path = { parsed_path.characters(), parsed_path.length() };
|
|
|
|
params.permissions = { permissions.characters_without_null_termination(), permissions.length() };
|
|
|
|
}
|
|
|
|
|
2022-11-04 17:20:11 +00:00
|
|
|
int rc = syscall(SC_unveil, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("unveil", rc, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> unveil_after_exec(StringView path, StringView permissions)
|
|
|
|
{
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString parsed_path;
|
2022-11-04 17:20:11 +00:00
|
|
|
Syscall::SC_unveil_params params {
|
|
|
|
static_cast<int>(UnveilFlags::AfterExec),
|
2023-10-10 11:30:58 +00:00
|
|
|
{ nullptr, 0 },
|
2021-11-22 14:43:57 +00:00
|
|
|
{ permissions.characters_without_null_termination(), permissions.length() },
|
|
|
|
};
|
2023-10-10 11:30:58 +00:00
|
|
|
|
|
|
|
if (!path.is_null()) {
|
|
|
|
parsed_path = TRY(Core::SessionManagement::parse_path_with_sid(path));
|
|
|
|
params.path = { parsed_path.characters(), parsed_path.length() };
|
|
|
|
}
|
|
|
|
|
2021-11-22 14:43:57 +00:00
|
|
|
int rc = syscall(SC_unveil, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("unveil", rc, {});
|
2021-11-22 14:43:57 +00:00
|
|
|
}
|
2021-11-24 21:36:13 +00:00
|
|
|
|
2021-11-28 08:12:29 +00:00
|
|
|
ErrorOr<void> sendfd(int sockfd, int fd)
|
|
|
|
{
|
|
|
|
if (::sendfd(sockfd, fd) < 0)
|
|
|
|
return Error::from_syscall("sendfd"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<int> recvfd(int sockfd, int options)
|
|
|
|
{
|
|
|
|
auto fd = ::recvfd(sockfd, options);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("recvfd"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
2021-11-25 22:04:52 +00:00
|
|
|
|
|
|
|
ErrorOr<void> ptrace_peekbuf(pid_t tid, void const* tracee_addr, Bytes destination_buf)
|
|
|
|
{
|
|
|
|
Syscall::SC_ptrace_buf_params buf_params {
|
|
|
|
{ destination_buf.data(), destination_buf.size() }
|
|
|
|
};
|
|
|
|
Syscall::SC_ptrace_params params {
|
|
|
|
PT_PEEKBUF,
|
|
|
|
tid,
|
|
|
|
const_cast<void*>(tracee_addr),
|
|
|
|
(FlatPtr)&buf_params,
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_ptrace, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("ptrace_peekbuf", rc, {});
|
|
|
|
}
|
2021-12-16 18:31:50 +00:00
|
|
|
|
2023-02-25 17:30:28 +00:00
|
|
|
ErrorOr<void> bindmount(int source_fd, StringView target, int flags)
|
|
|
|
{
|
|
|
|
if (target.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
Syscall::SC_bindmount_params params {
|
|
|
|
{ target.characters_without_null_termination(), target.length() },
|
|
|
|
source_fd,
|
|
|
|
flags,
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_bindmount, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("bindmount", rc, {});
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> remount(StringView target, int flags)
|
|
|
|
{
|
|
|
|
if (target.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
Syscall::SC_remount_params params {
|
|
|
|
{ target.characters_without_null_termination(), target.length() },
|
|
|
|
flags
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_remount, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("remount", rc, {});
|
|
|
|
}
|
|
|
|
|
2021-12-16 19:23:21 +00:00
|
|
|
ErrorOr<void> mount(int source_fd, StringView target, StringView fs_type, int flags)
|
|
|
|
{
|
|
|
|
if (target.is_null() || fs_type.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
2022-12-15 09:42:40 +00:00
|
|
|
if (flags & MS_REMOUNT) {
|
|
|
|
TRY(remount(target, flags));
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
if (flags & MS_BIND) {
|
|
|
|
TRY(bindmount(source_fd, target, flags));
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
int mount_fd = TRY(fsopen(fs_type, flags));
|
|
|
|
return fsmount(mount_fd, source_fd, target);
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<int> fsopen(StringView fs_type, int flags)
|
|
|
|
{
|
|
|
|
if (fs_type.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
Syscall::SC_fsopen_params params {
|
2021-12-16 19:23:21 +00:00
|
|
|
{ fs_type.characters_without_null_termination(), fs_type.length() },
|
2022-12-15 09:42:40 +00:00
|
|
|
flags,
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_fsopen, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("fsopen", rc, rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> fsmount(int mount_fd, int source_fd, StringView target)
|
|
|
|
{
|
|
|
|
if (target.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
Syscall::SC_fsmount_params params {
|
|
|
|
mount_fd,
|
|
|
|
{ target.characters_without_null_termination(), target.length() },
|
2021-12-16 19:23:21 +00:00
|
|
|
source_fd,
|
|
|
|
};
|
2022-12-15 09:42:40 +00:00
|
|
|
int rc = syscall(SC_fsmount, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("fsmount", rc, {});
|
2021-12-16 19:23:21 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 22:10:59 +00:00
|
|
|
ErrorOr<void> umount(StringView mount_point)
|
|
|
|
{
|
|
|
|
if (mount_point.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
int rc = syscall(SC_umount, mount_point.characters_without_null_termination(), mount_point.length());
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("umount", rc, {});
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:40 +00:00
|
|
|
ErrorOr<long> ptrace(int request, pid_t tid, void* address, void* data)
|
|
|
|
{
|
|
|
|
auto rc = ::ptrace(request, tid, address, data);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("ptrace"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
2021-12-29 15:22:22 +00:00
|
|
|
|
|
|
|
ErrorOr<void> disown(pid_t pid)
|
|
|
|
{
|
|
|
|
int rc = ::disown(pid);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("disown", rc, {});
|
|
|
|
}
|
2022-02-12 22:07:51 +00:00
|
|
|
|
|
|
|
ErrorOr<void> profiling_enable(pid_t pid, u64 event_mask)
|
|
|
|
{
|
|
|
|
int rc = ::profiling_enable(pid, event_mask);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("profiling_enable", rc, {});
|
|
|
|
}
|
2022-02-12 22:08:16 +00:00
|
|
|
|
|
|
|
ErrorOr<void> profiling_disable(pid_t pid)
|
|
|
|
{
|
|
|
|
int rc = ::profiling_disable(pid);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("profiling_disable", rc, {});
|
|
|
|
}
|
2022-02-12 22:08:37 +00:00
|
|
|
|
|
|
|
ErrorOr<void> profiling_free_buffer(pid_t pid)
|
|
|
|
{
|
|
|
|
int rc = ::profiling_free_buffer(pid);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("profiling_free_buffer", rc, {});
|
|
|
|
}
|
2021-11-23 09:59:50 +00:00
|
|
|
#endif
|
2021-11-22 14:43:57 +00:00
|
|
|
|
2022-07-11 07:06:29 +00:00
|
|
|
#if !defined(AK_OS_BSD_GENERIC) && !defined(AK_OS_ANDROID)
|
2022-01-01 17:26:17 +00:00
|
|
|
ErrorOr<Optional<struct spwd>> getspent()
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
if (auto* spwd = ::getspent())
|
|
|
|
return *spwd;
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getspent"sv, -errno);
|
|
|
|
return Optional<struct spwd> {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<Optional<struct spwd>> getspnam(StringView name)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
::setspent();
|
|
|
|
while (auto* spwd = ::getspent()) {
|
|
|
|
if (spwd->sp_namp == name)
|
|
|
|
return *spwd;
|
|
|
|
}
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getspnam"sv, -errno);
|
|
|
|
return Optional<struct spwd> {};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2024-02-27 13:32:29 +00:00
|
|
|
#if !defined(AK_OS_MACOS) && !defined(AK_OS_IOS) && !defined(AK_OS_HAIKU)
|
2021-12-25 12:52:19 +00:00
|
|
|
ErrorOr<int> accept4(int sockfd, sockaddr* address, socklen_t* address_length, int flags)
|
|
|
|
{
|
|
|
|
auto fd = ::accept4(sockfd, address, address_length, flags);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("accept4"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-11-22 15:11:03 +00:00
|
|
|
ErrorOr<void> sigaction(int signal, struct sigaction const* action, struct sigaction* old_action)
|
|
|
|
{
|
2021-11-23 09:59:50 +00:00
|
|
|
if (::sigaction(signal, action, old_action) < 0)
|
|
|
|
return Error::from_syscall("sigaction"sv, -errno);
|
|
|
|
return {};
|
2021-11-22 15:11:03 +00:00
|
|
|
}
|
|
|
|
|
2023-02-25 17:50:03 +00:00
|
|
|
#if defined(AK_OS_SOLARIS)
|
|
|
|
ErrorOr<SIG_TYP> signal(int signal, SIG_TYP handler)
|
|
|
|
#elif defined(AK_OS_BSD_GENERIC)
|
2021-11-23 20:03:53 +00:00
|
|
|
ErrorOr<sig_t> signal(int signal, sig_t handler)
|
|
|
|
#else
|
|
|
|
ErrorOr<sighandler_t> signal(int signal, sighandler_t handler)
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
auto old_handler = ::signal(signal, handler);
|
|
|
|
if (old_handler == SIG_ERR)
|
|
|
|
return Error::from_syscall("signal"sv, -errno);
|
|
|
|
return old_handler;
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:10:19 +00:00
|
|
|
ErrorOr<struct stat> fstat(int fd)
|
|
|
|
{
|
|
|
|
struct stat st = {};
|
|
|
|
if (::fstat(fd, &st) < 0)
|
|
|
|
return Error::from_syscall("fstat"sv, -errno);
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
2023-03-17 15:23:24 +00:00
|
|
|
ErrorOr<struct stat> fstatat(int fd, StringView path, int flags)
|
|
|
|
{
|
|
|
|
if (!path.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("fstatat"sv, -EFAULT);
|
|
|
|
|
|
|
|
struct stat st = {};
|
|
|
|
#ifdef AK_OS_SERENITY
|
|
|
|
Syscall::SC_stat_params params { { path.characters_without_null_termination(), path.length() }, &st, fd, !(flags & AT_SYMLINK_NOFOLLOW) };
|
|
|
|
int rc = syscall(SC_stat, ¶ms);
|
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2023-03-17 15:23:24 +00:00
|
|
|
int rc = ::fstatat(fd, path_string.characters(), &st, flags);
|
|
|
|
#endif
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("fstatat", rc, st);
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:10:19 +00:00
|
|
|
ErrorOr<int> fcntl(int fd, int command, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, command);
|
2022-07-02 23:02:45 +00:00
|
|
|
uintptr_t extra_arg = va_arg(ap, uintptr_t);
|
2021-11-23 10:10:19 +00:00
|
|
|
int rc = ::fcntl(fd, command, extra_arg);
|
|
|
|
va_end(ap);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("fcntl"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2023-06-25 10:07:58 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
|
|
|
ErrorOr<void> create_block_device(StringView name, mode_t mode, unsigned major, unsigned minor)
|
|
|
|
{
|
|
|
|
return Core::System::mknod(name, mode | S_IFBLK, makedev(major, minor));
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> create_char_device(StringView name, mode_t mode, unsigned major, unsigned minor)
|
|
|
|
{
|
|
|
|
return Core::System::mknod(name, mode | S_IFCHR, makedev(major, minor));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-11-23 10:47:32 +00:00
|
|
|
ErrorOr<void*> mmap(void* address, size_t size, int protection, int flags, int fd, off_t offset, [[maybe_unused]] size_t alignment, [[maybe_unused]] StringView name)
|
|
|
|
{
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-22 12:20:32 +00:00
|
|
|
Syscall::SC_mmap_params params { address, size, alignment, protection, flags, fd, offset, { name.characters_without_null_termination(), name.length() } };
|
2021-11-23 10:47:32 +00:00
|
|
|
ptrdiff_t rc = syscall(SC_mmap, ¶ms);
|
|
|
|
if (rc < 0 && rc > -EMAXERRNO)
|
|
|
|
return Error::from_syscall("mmap"sv, rc);
|
|
|
|
return reinterpret_cast<void*>(rc);
|
|
|
|
#else
|
|
|
|
// NOTE: Regular POSIX mmap() doesn't support custom alignment requests.
|
|
|
|
VERIFY(!alignment);
|
|
|
|
auto* ptr = ::mmap(address, size, protection, flags, fd, offset);
|
|
|
|
if (ptr == MAP_FAILED)
|
|
|
|
return Error::from_syscall("mmap"sv, -errno);
|
|
|
|
return ptr;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-23 10:51:11 +00:00
|
|
|
ErrorOr<void> munmap(void* address, size_t size)
|
|
|
|
{
|
|
|
|
if (::munmap(address, size) < 0)
|
|
|
|
return Error::from_syscall("munmap"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-01-23 22:03:09 +00:00
|
|
|
ErrorOr<int> anon_create([[maybe_unused]] size_t size, [[maybe_unused]] int options)
|
|
|
|
{
|
|
|
|
int fd = -1;
|
2022-10-09 21:23:23 +00:00
|
|
|
#if defined(AK_OS_SERENITY)
|
2022-01-23 22:03:09 +00:00
|
|
|
fd = ::anon_create(round_up_to_power_of_two(size, PAGE_SIZE), options);
|
2022-10-09 22:45:59 +00:00
|
|
|
#elif defined(AK_OS_LINUX) || defined(AK_OS_FREEBSD)
|
2022-01-23 22:03:09 +00:00
|
|
|
// FIXME: Support more options on Linux.
|
|
|
|
auto linux_options = ((options & O_CLOEXEC) > 0) ? MFD_CLOEXEC : 0;
|
|
|
|
fd = memfd_create("", linux_options);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
if (::ftruncate(fd, size) < 0) {
|
|
|
|
auto saved_errno = errno;
|
|
|
|
TRY(close(fd));
|
|
|
|
return Error::from_errno(saved_errno);
|
|
|
|
}
|
2023-09-03 19:34:26 +00:00
|
|
|
#elif defined(SHM_ANON)
|
|
|
|
fd = shm_open(SHM_ANON, O_RDWR | O_CREAT | options, 0600);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
if (::ftruncate(fd, size) < 0) {
|
|
|
|
auto saved_errno = errno;
|
|
|
|
TRY(close(fd));
|
|
|
|
return Error::from_errno(saved_errno);
|
|
|
|
}
|
2023-08-29 10:51:50 +00:00
|
|
|
#elif defined(AK_OS_BSD_GENERIC) || defined(AK_OS_EMSCRIPTEN) || defined(AK_OS_HAIKU)
|
2022-02-12 23:28:43 +00:00
|
|
|
struct timespec time;
|
|
|
|
clock_gettime(CLOCK_REALTIME, &time);
|
2023-12-16 14:19:34 +00:00
|
|
|
auto name = ByteString::formatted("/shm-{}{}", (unsigned long)time.tv_sec, (unsigned long)time.tv_nsec);
|
2022-02-12 23:28:43 +00:00
|
|
|
fd = shm_open(name.characters(), O_RDWR | O_CREAT | options, 0600);
|
|
|
|
|
|
|
|
if (shm_unlink(name.characters()) == -1) {
|
|
|
|
auto saved_errno = errno;
|
|
|
|
TRY(close(fd));
|
|
|
|
return Error::from_errno(saved_errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
|
|
|
|
if (::ftruncate(fd, size) < 0) {
|
|
|
|
auto saved_errno = errno;
|
|
|
|
TRY(close(fd));
|
|
|
|
return Error::from_errno(saved_errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* addr = ::mmap(NULL, size, PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
if (addr == MAP_FAILED) {
|
|
|
|
auto saved_errno = errno;
|
|
|
|
TRY(close(fd));
|
|
|
|
return Error::from_errno(saved_errno);
|
|
|
|
}
|
2022-01-23 22:03:09 +00:00
|
|
|
#endif
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2022-04-10 16:25:22 +00:00
|
|
|
ErrorOr<int> open(StringView path, int options, mode_t mode)
|
|
|
|
{
|
|
|
|
return openat(AT_FDCWD, path, options, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<int> openat(int fd, StringView path, int options, mode_t mode)
|
2021-11-23 10:59:16 +00:00
|
|
|
{
|
|
|
|
if (!path.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("open"sv, -EFAULT);
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-04-10 16:25:22 +00:00
|
|
|
Syscall::SC_open_params params { fd, { path.characters_without_null_termination(), path.length() }, options, mode };
|
2021-11-23 10:59:16 +00:00
|
|
|
int rc = syscall(SC_open, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("open", rc, rc);
|
2021-11-23 10:59:16 +00:00
|
|
|
#else
|
|
|
|
// NOTE: We have to ensure that the path is null-terminated.
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2022-04-10 16:25:22 +00:00
|
|
|
int rc = ::openat(fd, path_string.characters(), options, mode);
|
2021-11-23 10:59:16 +00:00
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("open"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-23 11:05:56 +00:00
|
|
|
ErrorOr<void> close(int fd)
|
|
|
|
{
|
|
|
|
if (::close(fd) < 0)
|
|
|
|
return Error::from_syscall("close"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-23 11:16:07 +00:00
|
|
|
ErrorOr<void> ftruncate(int fd, off_t length)
|
|
|
|
{
|
|
|
|
if (::ftruncate(fd, length) < 0)
|
|
|
|
return Error::from_syscall("ftruncate"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2024-03-27 05:53:09 +00:00
|
|
|
ErrorOr<void> fsync(int fd)
|
|
|
|
{
|
|
|
|
if (::fsync(fd) < 0)
|
|
|
|
return Error::from_syscall("fsync"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-23 11:22:21 +00:00
|
|
|
ErrorOr<struct stat> stat(StringView path)
|
|
|
|
{
|
|
|
|
if (!path.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("stat"sv, -EFAULT);
|
|
|
|
|
|
|
|
struct stat st = {};
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-11-23 11:22:21 +00:00
|
|
|
Syscall::SC_stat_params params { { path.characters_without_null_termination(), path.length() }, &st, AT_FDCWD, true };
|
|
|
|
int rc = syscall(SC_stat, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("stat", rc, st);
|
2021-11-23 11:22:21 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2021-11-23 11:22:21 +00:00
|
|
|
if (::stat(path_string.characters(), &st) < 0)
|
|
|
|
return Error::from_syscall("stat"sv, -errno);
|
|
|
|
return st;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-02 21:41:40 +00:00
|
|
|
ErrorOr<struct stat> lstat(StringView path)
|
|
|
|
{
|
|
|
|
if (!path.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("lstat"sv, -EFAULT);
|
|
|
|
|
|
|
|
struct stat st = {};
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-02 21:41:40 +00:00
|
|
|
Syscall::SC_stat_params params { { path.characters_without_null_termination(), path.length() }, &st, AT_FDCWD, false };
|
|
|
|
int rc = syscall(SC_stat, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("lstat", rc, st);
|
2021-12-02 21:41:40 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2023-02-10 20:11:37 +00:00
|
|
|
if (::lstat(path_string.characters(), &st) < 0)
|
2021-12-02 21:41:40 +00:00
|
|
|
return Error::from_syscall("lstat"sv, -errno);
|
|
|
|
return st;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-11-27 21:02:33 +00:00
|
|
|
ErrorOr<ssize_t> read(int fd, Bytes buffer)
|
2021-11-23 11:40:17 +00:00
|
|
|
{
|
2021-11-27 21:02:33 +00:00
|
|
|
ssize_t rc = ::read(fd, buffer.data(), buffer.size());
|
2021-11-23 11:40:17 +00:00
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("read"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2021-11-27 21:02:33 +00:00
|
|
|
ErrorOr<ssize_t> write(int fd, ReadonlyBytes buffer)
|
2021-11-23 11:40:17 +00:00
|
|
|
{
|
2021-11-27 21:02:33 +00:00
|
|
|
ssize_t rc = ::write(fd, buffer.data(), buffer.size());
|
2021-11-23 11:40:17 +00:00
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("write"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2021-11-23 15:06:56 +00:00
|
|
|
ErrorOr<void> kill(pid_t pid, int signal)
|
|
|
|
{
|
|
|
|
if (::kill(pid, signal) < 0)
|
|
|
|
return Error::from_syscall("kill"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-03-01 19:04:41 +00:00
|
|
|
ErrorOr<void> killpg(int pgrp, int signal)
|
|
|
|
{
|
|
|
|
if (::killpg(pgrp, signal) < 0)
|
|
|
|
return Error::from_syscall("killpg"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-28 11:08:28 +00:00
|
|
|
ErrorOr<int> dup(int source_fd)
|
|
|
|
{
|
|
|
|
int fd = ::dup(source_fd);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("dup"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2021-11-24 21:36:28 +00:00
|
|
|
ErrorOr<int> dup2(int source_fd, int destination_fd)
|
|
|
|
{
|
|
|
|
int fd = ::dup2(source_fd, destination_fd);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("dup2"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ErrorOr<ByteString> ptsname(int fd)
|
2021-11-24 22:24:53 +00:00
|
|
|
{
|
|
|
|
auto* name = ::ptsname(fd);
|
|
|
|
if (!name)
|
|
|
|
return Error::from_syscall("ptsname"sv, -errno);
|
2023-12-16 14:19:34 +00:00
|
|
|
return ByteString(name);
|
2021-11-24 22:24:53 +00:00
|
|
|
}
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ErrorOr<ByteString> gethostname()
|
2021-11-27 09:13:33 +00:00
|
|
|
{
|
2022-01-13 23:32:55 +00:00
|
|
|
char hostname[HOST_NAME_MAX];
|
2021-11-27 09:13:33 +00:00
|
|
|
int rc = ::gethostname(hostname, sizeof(hostname));
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("gethostname"sv, -errno);
|
2023-12-16 14:19:34 +00:00
|
|
|
return ByteString(&hostname[0]);
|
2021-11-27 09:13:33 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 09:20:29 +00:00
|
|
|
ErrorOr<void> sethostname(StringView hostname)
|
|
|
|
{
|
2023-02-25 18:03:40 +00:00
|
|
|
#if defined(AK_OS_SOLARIS)
|
|
|
|
int rc = ::sethostname(const_cast<char*>(hostname.characters_without_null_termination()), hostname.length());
|
|
|
|
#else
|
2022-01-14 09:20:29 +00:00
|
|
|
int rc = ::sethostname(hostname.characters_without_null_termination(), hostname.length());
|
2023-02-25 18:03:40 +00:00
|
|
|
#endif
|
2022-01-14 09:20:29 +00:00
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("sethostname"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ErrorOr<ByteString> getcwd()
|
2021-12-24 16:20:29 +00:00
|
|
|
{
|
|
|
|
auto* cwd = ::getcwd(nullptr, 0);
|
|
|
|
if (!cwd)
|
|
|
|
return Error::from_syscall("getcwd"sv, -errno);
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString string_cwd(cwd);
|
2021-12-24 16:20:29 +00:00
|
|
|
free(cwd);
|
|
|
|
return string_cwd;
|
|
|
|
}
|
|
|
|
|
2021-11-29 22:07:33 +00:00
|
|
|
ErrorOr<void> ioctl(int fd, unsigned request, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, request);
|
2023-08-27 19:34:42 +00:00
|
|
|
#ifdef AK_OS_HAIKU
|
|
|
|
void* arg = va_arg(ap, void*);
|
|
|
|
#else
|
2021-11-29 22:07:33 +00:00
|
|
|
FlatPtr arg = va_arg(ap, FlatPtr);
|
2023-08-27 19:34:42 +00:00
|
|
|
#endif
|
2021-11-29 22:07:33 +00:00
|
|
|
va_end(ap);
|
|
|
|
if (::ioctl(fd, request, arg) < 0)
|
|
|
|
return Error::from_syscall("ioctl"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-11-29 22:28:10 +00:00
|
|
|
ErrorOr<struct termios> tcgetattr(int fd)
|
|
|
|
{
|
|
|
|
struct termios ios = {};
|
|
|
|
if (::tcgetattr(fd, &ios) < 0)
|
|
|
|
return Error::from_syscall("tcgetattr"sv, -errno);
|
|
|
|
return ios;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> tcsetattr(int fd, int optional_actions, struct termios const& ios)
|
|
|
|
{
|
|
|
|
if (::tcsetattr(fd, optional_actions, &ios) < 0)
|
|
|
|
return Error::from_syscall("tcsetattr"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-03-01 19:05:14 +00:00
|
|
|
ErrorOr<int> tcsetpgrp(int fd, pid_t pgrp)
|
|
|
|
{
|
|
|
|
int rc = ::tcsetpgrp(fd, pgrp);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("tcsetpgrp"sv, -errno);
|
|
|
|
return { rc };
|
|
|
|
}
|
|
|
|
|
2021-11-27 14:46:11 +00:00
|
|
|
ErrorOr<void> chmod(StringView pathname, mode_t mode)
|
|
|
|
{
|
|
|
|
if (!pathname.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("chmod"sv, -EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-01-11 15:51:34 +00:00
|
|
|
Syscall::SC_chmod_params params {
|
|
|
|
AT_FDCWD,
|
|
|
|
{ pathname.characters_without_null_termination(), pathname.length() },
|
|
|
|
mode,
|
|
|
|
true
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_chmod, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("chmod", rc, {});
|
2021-11-27 14:46:11 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path = pathname;
|
2021-11-27 14:46:11 +00:00
|
|
|
if (::chmod(path.characters(), mode) < 0)
|
|
|
|
return Error::from_syscall("chmod"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-16 20:12:23 +00:00
|
|
|
ErrorOr<void> fchmod(int fd, mode_t mode)
|
|
|
|
{
|
|
|
|
if (::fchmod(fd, mode) < 0)
|
|
|
|
return Error::from_syscall("fchmod"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-02-06 17:54:15 +00:00
|
|
|
ErrorOr<void> fchown(int fd, uid_t uid, gid_t gid)
|
|
|
|
{
|
|
|
|
if (::fchown(fd, uid, gid) < 0)
|
|
|
|
return Error::from_syscall("fchown"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-12-31 18:20:17 +00:00
|
|
|
ErrorOr<void> lchown(StringView pathname, uid_t uid, gid_t gid)
|
2021-11-27 14:23:16 +00:00
|
|
|
{
|
|
|
|
if (!pathname.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("chown"sv, -EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-31 18:20:17 +00:00
|
|
|
Syscall::SC_chown_params params = { { pathname.characters_without_null_termination(), pathname.length() }, uid, gid, AT_FDCWD, false };
|
2021-11-27 14:23:16 +00:00
|
|
|
int rc = syscall(SC_chown, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("chown", rc, {});
|
2021-11-27 14:23:16 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path = pathname;
|
2021-11-27 14:23:16 +00:00
|
|
|
if (::chown(path.characters(), uid, gid) < 0)
|
|
|
|
return Error::from_syscall("chown"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-31 18:20:17 +00:00
|
|
|
ErrorOr<void> chown(StringView pathname, uid_t uid, gid_t gid)
|
|
|
|
{
|
|
|
|
if (!pathname.characters_without_null_termination())
|
|
|
|
return Error::from_syscall("chown"sv, -EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-31 18:20:17 +00:00
|
|
|
Syscall::SC_chown_params params = { { pathname.characters_without_null_termination(), pathname.length() }, uid, gid, AT_FDCWD, true };
|
|
|
|
int rc = syscall(SC_chown, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("chown", rc, {});
|
2021-12-31 18:20:17 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path = pathname;
|
2021-12-31 18:20:17 +00:00
|
|
|
if (::lchown(path.characters(), uid, gid) < 0)
|
|
|
|
return Error::from_syscall("lchown"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-12-13 19:49:32 +00:00
|
|
|
ErrorOr<Optional<struct passwd>> getpwent(Span<char> buffer)
|
|
|
|
{
|
|
|
|
return getpwent_impl(buffer);
|
|
|
|
}
|
|
|
|
|
2022-01-01 16:53:57 +00:00
|
|
|
ErrorOr<Optional<struct passwd>> getpwuid(uid_t uid)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
if (auto* pwd = ::getpwuid(uid))
|
|
|
|
return *pwd;
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getpwuid"sv, -errno);
|
|
|
|
return Optional<struct passwd> {};
|
|
|
|
}
|
|
|
|
|
2022-12-13 20:08:58 +00:00
|
|
|
ErrorOr<Optional<struct group>> getgrent(Span<char> buffer)
|
|
|
|
{
|
|
|
|
return getgrent_impl(buffer);
|
|
|
|
}
|
|
|
|
|
2022-01-01 16:53:57 +00:00
|
|
|
ErrorOr<Optional<struct group>> getgrgid(gid_t gid)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
if (auto* grp = ::getgrgid(gid))
|
|
|
|
return *grp;
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getgrgid"sv, -errno);
|
|
|
|
return Optional<struct group> {};
|
|
|
|
}
|
|
|
|
|
2021-12-23 08:41:00 +00:00
|
|
|
ErrorOr<Optional<struct passwd>> getpwnam(StringView name)
|
2021-11-29 21:03:19 +00:00
|
|
|
{
|
2022-01-01 15:05:21 +00:00
|
|
|
errno = 0;
|
|
|
|
|
2021-11-29 21:03:19 +00:00
|
|
|
::setpwent();
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getpwnam"sv, -errno);
|
|
|
|
|
|
|
|
while (auto* pw = ::getpwent()) {
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getpwnam"sv, -errno);
|
|
|
|
if (pw->pw_name == name)
|
|
|
|
return *pw;
|
|
|
|
}
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getpwnam"sv, -errno);
|
|
|
|
else
|
2021-12-23 08:41:00 +00:00
|
|
|
return Optional<struct passwd> {};
|
2021-11-29 21:03:19 +00:00
|
|
|
}
|
|
|
|
|
2021-12-23 08:41:00 +00:00
|
|
|
ErrorOr<Optional<struct group>> getgrnam(StringView name)
|
2021-12-06 20:24:18 +00:00
|
|
|
{
|
2022-01-01 15:05:21 +00:00
|
|
|
errno = 0;
|
|
|
|
|
2021-12-06 20:24:18 +00:00
|
|
|
::setgrent();
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getgrnam"sv, -errno);
|
|
|
|
|
|
|
|
while (auto* gr = ::getgrent()) {
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getgrnam"sv, -errno);
|
|
|
|
if (gr->gr_name == name)
|
|
|
|
return *gr;
|
|
|
|
}
|
|
|
|
if (errno)
|
|
|
|
return Error::from_syscall("getgrnam"sv, -errno);
|
|
|
|
else
|
2021-12-23 08:41:00 +00:00
|
|
|
return Optional<struct group> {};
|
2021-12-06 20:24:18 +00:00
|
|
|
}
|
|
|
|
|
2024-02-27 13:32:29 +00:00
|
|
|
#if !defined(AK_OS_IOS)
|
2021-11-27 21:01:40 +00:00
|
|
|
ErrorOr<void> clock_settime(clockid_t clock_id, struct timespec* ts)
|
|
|
|
{
|
2024-02-27 13:32:29 +00:00
|
|
|
# ifdef AK_OS_SERENITY
|
2021-11-27 21:01:40 +00:00
|
|
|
int rc = syscall(SC_clock_settime, clock_id, ts);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("clocksettime", rc, {});
|
2024-02-27 13:32:29 +00:00
|
|
|
# else
|
2021-11-27 21:01:40 +00:00
|
|
|
if (::clock_settime(clock_id, ts) < 0)
|
|
|
|
return Error::from_syscall("clocksettime"sv, -errno);
|
|
|
|
return {};
|
2024-02-27 13:32:29 +00:00
|
|
|
# endif
|
2021-11-27 21:01:40 +00:00
|
|
|
}
|
2024-02-27 13:32:29 +00:00
|
|
|
#endif
|
2021-11-27 21:01:40 +00:00
|
|
|
|
2022-05-11 19:24:39 +00:00
|
|
|
static ALWAYS_INLINE ErrorOr<pid_t> posix_spawn_wrapper(StringView path, posix_spawn_file_actions_t const* file_actions, posix_spawnattr_t const* attr, char* const arguments[], char* const envp[], StringView function_name, decltype(::posix_spawn) spawn_function)
|
2021-12-13 17:38:48 +00:00
|
|
|
{
|
|
|
|
pid_t child_pid;
|
2023-12-16 14:19:34 +00:00
|
|
|
if ((errno = spawn_function(&child_pid, path.to_byte_string().characters(), file_actions, attr, arguments, envp)))
|
2022-05-11 19:24:39 +00:00
|
|
|
return Error::from_syscall(function_name, -errno);
|
2021-12-13 17:38:48 +00:00
|
|
|
return child_pid;
|
|
|
|
}
|
|
|
|
|
2022-05-11 19:24:39 +00:00
|
|
|
ErrorOr<pid_t> posix_spawn(StringView path, posix_spawn_file_actions_t const* file_actions, posix_spawnattr_t const* attr, char* const arguments[], char* const envp[])
|
|
|
|
{
|
|
|
|
return posix_spawn_wrapper(path, file_actions, attr, arguments, envp, "posix_spawn"sv, ::posix_spawn);
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<pid_t> posix_spawnp(StringView path, posix_spawn_file_actions_t* const file_actions, posix_spawnattr_t* const attr, char* const arguments[], char* const envp[])
|
|
|
|
{
|
|
|
|
return posix_spawn_wrapper(path, file_actions, attr, arguments, envp, "posix_spawnp"sv, ::posix_spawnp);
|
|
|
|
}
|
|
|
|
|
2022-01-18 14:42:45 +00:00
|
|
|
ErrorOr<off_t> lseek(int fd, off_t offset, int whence)
|
|
|
|
{
|
|
|
|
off_t rc = ::lseek(fd, offset, whence);
|
|
|
|
if (rc < 0)
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall("lseek"sv, -errno);
|
2022-01-18 14:42:45 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2022-06-08 12:39:59 +00:00
|
|
|
ErrorOr<void> endgrent()
|
|
|
|
{
|
|
|
|
int old_errno = 0;
|
|
|
|
swap(old_errno, errno);
|
|
|
|
::endgrent();
|
|
|
|
if (errno != 0)
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall("endgrent"sv, -errno);
|
2022-06-08 12:39:59 +00:00
|
|
|
errno = old_errno;
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-01-10 13:34:09 +00:00
|
|
|
ErrorOr<WaitPidResult> waitpid(pid_t waitee, int options)
|
2021-12-13 17:43:39 +00:00
|
|
|
{
|
2022-01-10 13:34:09 +00:00
|
|
|
int wstatus;
|
|
|
|
pid_t pid = ::waitpid(waitee, &wstatus, options);
|
2021-12-13 17:43:39 +00:00
|
|
|
if (pid < 0)
|
|
|
|
return Error::from_syscall("waitpid"sv, -errno);
|
2022-01-10 13:34:09 +00:00
|
|
|
return WaitPidResult { pid, wstatus };
|
2021-12-13 17:43:39 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 18:17:44 +00:00
|
|
|
ErrorOr<void> setuid(uid_t uid)
|
|
|
|
{
|
|
|
|
if (::setuid(uid) < 0)
|
|
|
|
return Error::from_syscall("setuid"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> seteuid(uid_t uid)
|
|
|
|
{
|
2021-12-16 22:02:56 +00:00
|
|
|
if (::seteuid(uid) < 0)
|
2021-12-16 18:17:44 +00:00
|
|
|
return Error::from_syscall("seteuid"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> setgid(gid_t gid)
|
|
|
|
{
|
|
|
|
if (::setgid(gid) < 0)
|
|
|
|
return Error::from_syscall("setgid"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> setegid(gid_t gid)
|
|
|
|
{
|
2021-12-16 22:02:56 +00:00
|
|
|
if (::setegid(gid) < 0)
|
2021-12-16 18:17:44 +00:00
|
|
|
return Error::from_syscall("setegid"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-12-21 02:47:50 +00:00
|
|
|
ErrorOr<void> setpgid(pid_t pid, pid_t pgid)
|
|
|
|
{
|
|
|
|
if (::setpgid(pid, pgid) < 0)
|
|
|
|
return Error::from_syscall("setpgid"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-01-03 00:58:58 +00:00
|
|
|
ErrorOr<pid_t> setsid()
|
|
|
|
{
|
|
|
|
int rc = ::setsid();
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("setsid"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2022-09-06 04:12:58 +00:00
|
|
|
ErrorOr<pid_t> getsid(pid_t pid)
|
|
|
|
{
|
|
|
|
int rc = ::getsid(pid);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("getsid"sv, -errno);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2022-03-21 07:05:42 +00:00
|
|
|
ErrorOr<void> drop_privileges()
|
|
|
|
{
|
|
|
|
auto gid_result = setgid(getgid());
|
|
|
|
auto uid_result = setuid(getuid());
|
|
|
|
|
|
|
|
if (gid_result.is_error() || uid_result.is_error())
|
|
|
|
return Error::from_string_literal("Failed to drop privileges");
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-12-16 18:24:58 +00:00
|
|
|
ErrorOr<bool> isatty(int fd)
|
|
|
|
{
|
|
|
|
int rc = ::isatty(fd);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("isatty"sv, -errno);
|
|
|
|
return rc == 1;
|
|
|
|
}
|
|
|
|
|
2022-07-25 14:03:51 +00:00
|
|
|
ErrorOr<void> link(StringView old_path, StringView new_path)
|
|
|
|
{
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-07-25 14:03:51 +00:00
|
|
|
Syscall::SC_link_params params {
|
|
|
|
.old_path = { old_path.characters_without_null_termination(), old_path.length() },
|
|
|
|
.new_path = { new_path.characters_without_null_termination(), new_path.length() },
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_link, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("link", rc, {});
|
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString old_path_string = old_path;
|
|
|
|
ByteString new_path_string = new_path;
|
2022-07-25 14:03:51 +00:00
|
|
|
if (::link(old_path_string.characters(), new_path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("link"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-16 19:23:21 +00:00
|
|
|
ErrorOr<void> symlink(StringView target, StringView link_path)
|
|
|
|
{
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-16 19:23:21 +00:00
|
|
|
Syscall::SC_symlink_params params {
|
|
|
|
.target = { target.characters_without_null_termination(), target.length() },
|
|
|
|
.linkpath = { link_path.characters_without_null_termination(), link_path.length() },
|
2022-10-01 11:15:02 +00:00
|
|
|
.dirfd = AT_FDCWD,
|
2021-12-16 19:23:21 +00:00
|
|
|
};
|
|
|
|
int rc = syscall(SC_symlink, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("symlink", rc, {});
|
2021-12-16 19:23:21 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString target_string = target;
|
|
|
|
ByteString link_path_string = link_path;
|
2021-12-16 19:23:21 +00:00
|
|
|
if (::symlink(target_string.characters(), link_path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("symlink"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-16 19:27:25 +00:00
|
|
|
ErrorOr<void> mkdir(StringView path, mode_t mode)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-10-01 11:36:24 +00:00
|
|
|
int rc = syscall(SC_mkdir, AT_FDCWD, path.characters_without_null_termination(), path.length(), mode);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("mkdir", rc, {});
|
2021-12-16 19:27:25 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2021-12-16 19:27:25 +00:00
|
|
|
if (::mkdir(path_string.characters(), mode) < 0)
|
|
|
|
return Error::from_syscall("mkdir"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-01-03 09:07:26 +00:00
|
|
|
ErrorOr<void> chdir(StringView path)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-01-03 09:07:26 +00:00
|
|
|
int rc = syscall(SC_chdir, path.characters_without_null_termination(), path.length());
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("chdir", rc, {});
|
2022-01-03 09:07:26 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2022-01-03 09:07:26 +00:00
|
|
|
if (::chdir(path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("chdir"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-02-13 01:35:38 +00:00
|
|
|
ErrorOr<void> rmdir(StringView path)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-02-13 01:35:38 +00:00
|
|
|
int rc = syscall(SC_rmdir, path.characters_without_null_termination(), path.length());
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("rmdir", rc, {});
|
2022-02-13 01:35:38 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2022-02-13 01:35:38 +00:00
|
|
|
if (::rmdir(path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("rmdir"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-16 19:28:54 +00:00
|
|
|
ErrorOr<pid_t> fork()
|
|
|
|
{
|
|
|
|
pid_t pid = ::fork();
|
|
|
|
if (pid < 0)
|
|
|
|
return Error::from_syscall("fork"sv, -errno);
|
|
|
|
return pid;
|
|
|
|
}
|
|
|
|
|
2021-12-16 20:10:59 +00:00
|
|
|
ErrorOr<int> mkstemp(Span<char> pattern)
|
|
|
|
{
|
|
|
|
int fd = ::mkstemp(pattern.data());
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("mkstemp"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2023-03-17 23:54:19 +00:00
|
|
|
ErrorOr<String> mkdtemp(Span<char> pattern)
|
|
|
|
{
|
|
|
|
auto* path = ::mkdtemp(pattern.data());
|
|
|
|
if (path == nullptr) {
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
}
|
|
|
|
|
2023-06-11 17:49:02 +00:00
|
|
|
return String::from_utf8(StringView { path, strlen(path) });
|
2023-03-17 23:54:19 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 20:40:42 +00:00
|
|
|
ErrorOr<void> rename(StringView old_path, StringView new_path)
|
|
|
|
{
|
|
|
|
if (old_path.is_null() || new_path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-16 20:40:42 +00:00
|
|
|
Syscall::SC_rename_params params {
|
2022-10-01 11:42:25 +00:00
|
|
|
.olddirfd = AT_FDCWD,
|
2021-12-16 20:40:42 +00:00
|
|
|
.old_path = { old_path.characters_without_null_termination(), old_path.length() },
|
2022-10-01 11:42:25 +00:00
|
|
|
.newdirfd = AT_FDCWD,
|
2021-12-16 20:40:42 +00:00
|
|
|
.new_path = { new_path.characters_without_null_termination(), new_path.length() },
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_rename, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("rename", rc, {});
|
2021-12-16 20:40:42 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString old_path_string = old_path;
|
|
|
|
ByteString new_path_string = new_path;
|
2021-12-16 20:40:42 +00:00
|
|
|
if (::rename(old_path_string.characters(), new_path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("rename"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-29 20:47:38 +00:00
|
|
|
ErrorOr<void> unlink(StringView path)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-02-10 11:30:33 +00:00
|
|
|
int rc = syscall(SC_unlink, AT_FDCWD, path.characters_without_null_termination(), path.length(), 0);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("unlink", rc, {});
|
2021-12-29 20:47:38 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2021-12-29 20:47:38 +00:00
|
|
|
if (::unlink(path_string.characters()) < 0)
|
|
|
|
return Error::from_syscall("unlink"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-20 18:48:30 +00:00
|
|
|
ErrorOr<void> utime(StringView path, Optional<struct utimbuf> maybe_buf)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
struct utimbuf* buf = nullptr;
|
|
|
|
if (maybe_buf.has_value())
|
|
|
|
buf = &maybe_buf.value();
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2021-12-20 18:48:30 +00:00
|
|
|
int rc = syscall(SC_utime, path.characters_without_null_termination(), path.length(), buf);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("utime", rc, {});
|
2021-12-20 18:48:30 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = path;
|
2021-12-21 00:28:59 +00:00
|
|
|
if (::utime(path_string.characters(), buf) < 0)
|
2021-12-20 18:48:30 +00:00
|
|
|
return Error::from_syscall("utime"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-03-20 07:16:44 +00:00
|
|
|
ErrorOr<void> utimensat(int fd, StringView path, struct timespec const times[2], int flag)
|
|
|
|
{
|
|
|
|
if (path.is_null())
|
|
|
|
return Error::from_errno(EFAULT);
|
|
|
|
|
|
|
|
#ifdef AK_OS_SERENITY
|
|
|
|
// POSIX allows AT_SYMLINK_NOFOLLOW flag or no flags.
|
|
|
|
if (flag & ~AT_SYMLINK_NOFOLLOW)
|
|
|
|
return Error::from_errno(EINVAL);
|
|
|
|
|
|
|
|
// Return early without error since both changes are to be omitted.
|
|
|
|
if (times && times[0].tv_nsec == UTIME_OMIT && times[1].tv_nsec == UTIME_OMIT)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
// According to POSIX, when times is a nullptr, it's equivalent to setting
|
|
|
|
// both last access time and last modification time to the current time.
|
|
|
|
// Setting the times argument to nullptr if it matches this case prevents
|
|
|
|
// the need to copy it in the kernel.
|
|
|
|
if (times && times[0].tv_nsec == UTIME_NOW && times[1].tv_nsec == UTIME_NOW)
|
|
|
|
times = nullptr;
|
|
|
|
|
|
|
|
if (times) {
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
if ((times[i].tv_nsec != UTIME_NOW && times[i].tv_nsec != UTIME_OMIT)
|
|
|
|
&& (times[i].tv_nsec < 0 || times[i].tv_nsec >= 1'000'000'000L)) {
|
|
|
|
return Error::from_errno(EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Syscall::SC_utimensat_params params {
|
|
|
|
.dirfd = fd,
|
|
|
|
.path = { path.characters_without_null_termination(), path.length() },
|
|
|
|
.times = times,
|
|
|
|
.flag = flag,
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_utimensat, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("utimensat", rc, {});
|
|
|
|
#else
|
|
|
|
auto builder = TRY(StringBuilder::create());
|
|
|
|
TRY(builder.try_append(path));
|
|
|
|
TRY(builder.try_append('\0'));
|
|
|
|
|
|
|
|
// Note the explicit null terminators above.
|
|
|
|
if (::utimensat(fd, builder.string_view().characters_without_null_termination(), times, flag) < 0)
|
|
|
|
return Error::from_syscall("utimensat"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-01-04 02:56:28 +00:00
|
|
|
ErrorOr<struct utsname> uname()
|
|
|
|
{
|
2023-02-25 18:06:04 +00:00
|
|
|
struct utsname uts;
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-01-04 02:56:28 +00:00
|
|
|
int rc = syscall(SC_uname, &uts);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("uname", rc, uts);
|
2022-01-04 02:56:28 +00:00
|
|
|
#else
|
|
|
|
if (::uname(&uts) < 0)
|
|
|
|
return Error::from_syscall("uname"sv, -errno);
|
|
|
|
#endif
|
|
|
|
return uts;
|
|
|
|
}
|
|
|
|
|
2023-08-27 19:37:02 +00:00
|
|
|
#if !defined(AK_OS_ANDROID) && !defined(AK_OS_HAIKU)
|
2022-01-17 00:25:26 +00:00
|
|
|
ErrorOr<void> adjtime(const struct timeval* delta, struct timeval* old_delta)
|
|
|
|
{
|
2022-10-09 21:23:23 +00:00
|
|
|
# ifdef AK_OS_SERENITY
|
2022-01-17 00:25:26 +00:00
|
|
|
int rc = syscall(SC_adjtime, delta, old_delta);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("adjtime", rc, {});
|
2022-07-11 07:06:29 +00:00
|
|
|
# else
|
2022-01-17 00:25:26 +00:00
|
|
|
if (::adjtime(delta, old_delta) < 0)
|
|
|
|
return Error::from_syscall("adjtime"sv, -errno);
|
|
|
|
return {};
|
2022-07-11 07:06:29 +00:00
|
|
|
# endif
|
2022-01-17 00:25:26 +00:00
|
|
|
}
|
2022-07-11 07:06:29 +00:00
|
|
|
#endif
|
2022-01-17 00:25:26 +00:00
|
|
|
|
2022-11-04 09:50:40 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
|
|
|
ErrorOr<void> exec_command(Vector<StringView>& command, bool preserve_env)
|
|
|
|
{
|
|
|
|
Vector<StringView> exec_environment;
|
2024-01-30 16:38:56 +00:00
|
|
|
for (auto entry : Environment::entries()) {
|
2022-11-04 09:50:40 +00:00
|
|
|
// FIXME: Allow a custom selection of variables once ArgsParser supports options with optional parameters.
|
2024-01-30 16:38:56 +00:00
|
|
|
if (!preserve_env && entry.name != "TERM"sv)
|
2022-11-04 09:50:40 +00:00
|
|
|
continue;
|
|
|
|
|
2024-01-30 16:38:56 +00:00
|
|
|
exec_environment.append(entry.full_entry);
|
2022-11-04 09:50:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TRY(Core::System::exec(command.at(0), command, Core::System::SearchInPath::Yes, exec_environment));
|
|
|
|
return {};
|
|
|
|
}
|
2022-11-02 20:28:58 +00:00
|
|
|
|
|
|
|
ErrorOr<void> join_jail(u64 jail_index)
|
|
|
|
{
|
|
|
|
Syscall::SC_jail_attach_params params { jail_index };
|
|
|
|
int rc = syscall(SC_jail_attach, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("jail_attach", rc, {});
|
|
|
|
}
|
|
|
|
|
2023-01-12 20:47:09 +00:00
|
|
|
ErrorOr<u64> create_jail(StringView jail_name, JailIsolationFlags flags)
|
2022-11-02 20:28:58 +00:00
|
|
|
{
|
2023-01-12 20:47:09 +00:00
|
|
|
Syscall::SC_jail_create_params params { 0, { jail_name.characters_without_null_termination(), jail_name.length() }, static_cast<int>(flags) };
|
2022-11-02 20:28:58 +00:00
|
|
|
int rc = syscall(SC_jail_create, ¶ms);
|
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("jail_create", rc, static_cast<u64>(params.index));
|
|
|
|
}
|
2022-11-04 09:50:40 +00:00
|
|
|
#endif
|
|
|
|
|
2023-02-05 19:02:54 +00:00
|
|
|
ErrorOr<void> exec(StringView filename, ReadonlySpan<StringView> arguments, SearchInPath search_in_path, Optional<ReadonlySpan<StringView>> environment)
|
2022-03-12 20:23:43 +00:00
|
|
|
{
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-03-12 20:23:43 +00:00
|
|
|
Syscall::SC_execve_params params;
|
|
|
|
|
2023-01-28 20:12:17 +00:00
|
|
|
auto argument_strings = TRY(FixedArray<Syscall::StringArgument>::create(arguments.size()));
|
2022-03-12 20:23:43 +00:00
|
|
|
for (size_t i = 0; i < arguments.size(); ++i) {
|
|
|
|
argument_strings[i] = { arguments[i].characters_without_null_termination(), arguments[i].length() };
|
|
|
|
}
|
|
|
|
params.arguments.strings = argument_strings.data();
|
|
|
|
params.arguments.length = argument_strings.size();
|
|
|
|
|
|
|
|
size_t env_count = 0;
|
|
|
|
if (environment.has_value()) {
|
|
|
|
env_count = environment->size();
|
|
|
|
} else {
|
2024-01-30 16:38:56 +00:00
|
|
|
env_count = Core::Environment::size();
|
2022-03-12 20:23:43 +00:00
|
|
|
}
|
|
|
|
|
2023-01-28 20:12:17 +00:00
|
|
|
auto environment_strings = TRY(FixedArray<Syscall::StringArgument>::create(env_count));
|
2022-03-12 20:23:43 +00:00
|
|
|
if (environment.has_value()) {
|
|
|
|
for (size_t i = 0; i < env_count; ++i) {
|
|
|
|
environment_strings[i] = { environment->at(i).characters_without_null_termination(), environment->at(i).length() };
|
|
|
|
}
|
|
|
|
} else {
|
2024-01-30 16:38:56 +00:00
|
|
|
size_t i = 0;
|
|
|
|
for (auto entry : Core::Environment::entries()) {
|
|
|
|
environment_strings[i++] = { entry.full_entry.characters_without_null_termination(), entry.full_entry.length() };
|
2022-03-12 20:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
params.environment.strings = environment_strings.data();
|
|
|
|
params.environment.length = environment_strings.size();
|
|
|
|
|
|
|
|
auto run_exec = [](Syscall::SC_execve_params& params) -> ErrorOr<void> {
|
|
|
|
int rc = syscall(Syscall::SC_execve, ¶ms);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("exec"sv, rc);
|
|
|
|
return {};
|
|
|
|
};
|
|
|
|
|
2023-05-29 20:39:49 +00:00
|
|
|
StringView exec_filename;
|
2023-06-07 17:12:00 +00:00
|
|
|
String resolved_executable_path;
|
2022-08-20 16:31:03 +00:00
|
|
|
if (search_in_path == SearchInPath::Yes) {
|
2023-05-29 20:39:49 +00:00
|
|
|
auto executable_or_error = resolve_executable_from_environment(filename);
|
2022-08-20 16:31:03 +00:00
|
|
|
|
2023-05-29 20:39:49 +00:00
|
|
|
if (executable_or_error.is_error())
|
|
|
|
return executable_or_error.release_error();
|
2022-08-20 16:31:03 +00:00
|
|
|
|
2023-06-07 17:12:00 +00:00
|
|
|
resolved_executable_path = executable_or_error.release_value();
|
|
|
|
exec_filename = resolved_executable_path;
|
2022-08-20 16:31:03 +00:00
|
|
|
} else {
|
2023-05-29 20:39:49 +00:00
|
|
|
exec_filename = filename;
|
2022-08-20 16:31:03 +00:00
|
|
|
}
|
2022-03-12 20:23:43 +00:00
|
|
|
|
2023-05-29 20:39:49 +00:00
|
|
|
params.path = { exec_filename.characters_without_null_termination(), exec_filename.length() };
|
2022-03-12 20:23:43 +00:00
|
|
|
TRY(run_exec(params));
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString filename_string { filename };
|
2022-03-12 20:23:43 +00:00
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
auto argument_strings = TRY(FixedArray<ByteString>::create(arguments.size()));
|
2023-01-28 20:12:17 +00:00
|
|
|
auto argv = TRY(FixedArray<char*>::create(arguments.size() + 1));
|
2022-03-12 20:23:43 +00:00
|
|
|
for (size_t i = 0; i < arguments.size(); ++i) {
|
2023-12-16 14:19:34 +00:00
|
|
|
argument_strings[i] = arguments[i].to_byte_string();
|
2022-03-12 20:23:43 +00:00
|
|
|
argv[i] = const_cast<char*>(argument_strings[i].characters());
|
|
|
|
}
|
|
|
|
argv[arguments.size()] = nullptr;
|
|
|
|
|
|
|
|
int rc = 0;
|
|
|
|
if (environment.has_value()) {
|
2023-12-16 14:19:34 +00:00
|
|
|
auto environment_strings = TRY(FixedArray<ByteString>::create(environment->size()));
|
2023-01-28 20:12:17 +00:00
|
|
|
auto envp = TRY(FixedArray<char*>::create(environment->size() + 1));
|
2022-03-12 20:23:43 +00:00
|
|
|
for (size_t i = 0; i < environment->size(); ++i) {
|
2023-12-16 14:19:34 +00:00
|
|
|
environment_strings[i] = environment->at(i).to_byte_string();
|
2022-03-12 20:23:43 +00:00
|
|
|
envp[i] = const_cast<char*>(environment_strings[i].characters());
|
|
|
|
}
|
|
|
|
envp[environment->size()] = nullptr;
|
|
|
|
|
|
|
|
if (search_in_path == SearchInPath::Yes && !filename.contains('/')) {
|
2024-02-27 13:32:29 +00:00
|
|
|
# if defined(AK_OS_MACOS) || defined(AK_OS_IOS) || defined(AK_OS_FREEBSD) || defined(AK_OS_SOLARIS)
|
2022-03-12 20:23:43 +00:00
|
|
|
// These BSDs don't support execvpe(), so we'll have to manually search the PATH.
|
|
|
|
ScopedValueRollback errno_rollback(errno);
|
2022-08-20 16:31:03 +00:00
|
|
|
|
2023-05-29 20:39:49 +00:00
|
|
|
auto executable_or_error = resolve_executable_from_environment(filename_string);
|
2022-08-20 16:31:03 +00:00
|
|
|
|
2023-05-29 20:39:49 +00:00
|
|
|
if (executable_or_error.is_error()) {
|
|
|
|
errno_rollback.set_override_rollback_value(executable_or_error.error().code());
|
|
|
|
return executable_or_error.release_error();
|
2022-03-12 20:23:43 +00:00
|
|
|
}
|
2022-08-20 16:31:03 +00:00
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString executable = executable_or_error.release_value().to_byte_string();
|
2023-05-29 20:39:49 +00:00
|
|
|
rc = ::execve(executable.characters(), argv.data(), envp.data());
|
2022-03-12 20:23:43 +00:00
|
|
|
# else
|
|
|
|
rc = ::execvpe(filename_string.characters(), argv.data(), envp.data());
|
|
|
|
# endif
|
|
|
|
} else {
|
|
|
|
rc = ::execve(filename_string.characters(), argv.data(), envp.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
if (search_in_path == SearchInPath::Yes)
|
|
|
|
rc = ::execvp(filename_string.characters(), argv.data());
|
|
|
|
else
|
|
|
|
rc = ::execv(filename_string.characters(), argv.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("exec"sv, rc);
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-25 12:52:19 +00:00
|
|
|
ErrorOr<int> socket(int domain, int type, int protocol)
|
|
|
|
{
|
|
|
|
auto fd = ::socket(domain, type, protocol);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("socket"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> bind(int sockfd, struct sockaddr const* address, socklen_t address_length)
|
|
|
|
{
|
|
|
|
if (::bind(sockfd, address, address_length) < 0)
|
|
|
|
return Error::from_syscall("bind"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> listen(int sockfd, int backlog)
|
|
|
|
{
|
|
|
|
if (::listen(sockfd, backlog) < 0)
|
|
|
|
return Error::from_syscall("listen"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<int> accept(int sockfd, struct sockaddr* address, socklen_t* address_length)
|
|
|
|
{
|
|
|
|
auto fd = ::accept(sockfd, address, address_length);
|
|
|
|
if (fd < 0)
|
|
|
|
return Error::from_syscall("accept"sv, -errno);
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> connect(int sockfd, struct sockaddr const* address, socklen_t address_length)
|
|
|
|
{
|
|
|
|
if (::connect(sockfd, address, address_length) < 0)
|
|
|
|
return Error::from_syscall("connect"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> shutdown(int sockfd, int how)
|
|
|
|
{
|
|
|
|
if (::shutdown(sockfd, how) < 0)
|
|
|
|
return Error::from_syscall("shutdown"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> send(int sockfd, void const* buffer, size_t buffer_length, int flags)
|
|
|
|
{
|
|
|
|
auto sent = ::send(sockfd, buffer, buffer_length, flags);
|
|
|
|
if (sent < 0)
|
|
|
|
return Error::from_syscall("send"sv, -errno);
|
|
|
|
return sent;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> sendmsg(int sockfd, const struct msghdr* message, int flags)
|
|
|
|
{
|
|
|
|
auto sent = ::sendmsg(sockfd, message, flags);
|
|
|
|
if (sent < 0)
|
|
|
|
return Error::from_syscall("sendmsg"sv, -errno);
|
|
|
|
return sent;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> sendto(int sockfd, void const* source, size_t source_length, int flags, struct sockaddr const* destination, socklen_t destination_length)
|
|
|
|
{
|
|
|
|
auto sent = ::sendto(sockfd, source, source_length, flags, destination, destination_length);
|
|
|
|
if (sent < 0)
|
|
|
|
return Error::from_syscall("sendto"sv, -errno);
|
|
|
|
return sent;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> recv(int sockfd, void* buffer, size_t length, int flags)
|
|
|
|
{
|
|
|
|
auto received = ::recv(sockfd, buffer, length, flags);
|
|
|
|
if (received < 0)
|
|
|
|
return Error::from_syscall("recv"sv, -errno);
|
|
|
|
return received;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> recvmsg(int sockfd, struct msghdr* message, int flags)
|
|
|
|
{
|
|
|
|
auto received = ::recvmsg(sockfd, message, flags);
|
|
|
|
if (received < 0)
|
|
|
|
return Error::from_syscall("recvmsg"sv, -errno);
|
|
|
|
return received;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<ssize_t> recvfrom(int sockfd, void* buffer, size_t buffer_length, int flags, struct sockaddr* address, socklen_t* address_length)
|
|
|
|
{
|
|
|
|
auto received = ::recvfrom(sockfd, buffer, buffer_length, flags, address, address_length);
|
|
|
|
if (received < 0)
|
|
|
|
return Error::from_syscall("recvfrom"sv, -errno);
|
|
|
|
return received;
|
|
|
|
}
|
|
|
|
|
2022-12-07 23:47:25 +00:00
|
|
|
ErrorOr<AddressInfoVector> getaddrinfo(char const* nodename, char const* servname, struct addrinfo const& hints)
|
|
|
|
{
|
|
|
|
struct addrinfo* results = nullptr;
|
|
|
|
|
|
|
|
int const rc = ::getaddrinfo(nodename, servname, &hints, &results);
|
|
|
|
if (rc != 0) {
|
|
|
|
if (rc == EAI_SYSTEM) {
|
|
|
|
return Error::from_syscall("getaddrinfo"sv, -errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const* error_string = gai_strerror(rc);
|
|
|
|
return Error::from_string_view({ error_string, strlen(error_string) });
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<struct addrinfo> addresses;
|
|
|
|
|
|
|
|
for (auto* result = results; result != nullptr; result = result->ai_next)
|
|
|
|
TRY(addresses.try_append(*result));
|
|
|
|
|
2022-12-16 03:51:55 +00:00
|
|
|
return AddressInfoVector { move(addresses), results };
|
2022-12-07 23:47:25 +00:00
|
|
|
}
|
|
|
|
|
2021-12-25 12:52:19 +00:00
|
|
|
ErrorOr<void> getsockopt(int sockfd, int level, int option, void* value, socklen_t* value_size)
|
|
|
|
{
|
|
|
|
if (::getsockopt(sockfd, level, option, value, value_size) < 0)
|
|
|
|
return Error::from_syscall("getsockopt"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> setsockopt(int sockfd, int level, int option, void const* value, socklen_t value_size)
|
|
|
|
{
|
|
|
|
if (::setsockopt(sockfd, level, option, value, value_size) < 0)
|
|
|
|
return Error::from_syscall("setsockopt"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> getsockname(int sockfd, struct sockaddr* address, socklen_t* address_length)
|
|
|
|
{
|
|
|
|
if (::getsockname(sockfd, address, address_length) < 0)
|
|
|
|
return Error::from_syscall("getsockname"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> getpeername(int sockfd, struct sockaddr* address, socklen_t* address_length)
|
|
|
|
{
|
|
|
|
if (::getpeername(sockfd, address, address_length) < 0)
|
|
|
|
return Error::from_syscall("getpeername"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> socketpair(int domain, int type, int protocol, int sv[2])
|
|
|
|
{
|
|
|
|
if (::socketpair(domain, type, protocol, sv) < 0)
|
|
|
|
return Error::from_syscall("socketpair"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2024-03-12 18:50:21 +00:00
|
|
|
ErrorOr<Array<int, 2>> pipe2(int flags)
|
2021-12-21 02:46:46 +00:00
|
|
|
{
|
|
|
|
Array<int, 2> fds;
|
2024-03-12 18:50:21 +00:00
|
|
|
|
2021-12-21 02:46:46 +00:00
|
|
|
#if defined(__unix__)
|
|
|
|
if (::pipe2(fds.data(), flags) < 0)
|
|
|
|
return Error::from_syscall("pipe2"sv, -errno);
|
|
|
|
#else
|
|
|
|
if (::pipe(fds.data()) < 0)
|
|
|
|
return Error::from_syscall("pipe2"sv, -errno);
|
2024-03-12 18:50:21 +00:00
|
|
|
|
|
|
|
// Ensure we don't leak the fds if any of the system calls below fail.
|
|
|
|
AK::ArmedScopeGuard close_fds { [&]() {
|
|
|
|
MUST(close(fds[0]));
|
|
|
|
MUST(close(fds[1]));
|
|
|
|
} };
|
|
|
|
|
|
|
|
if ((flags & O_CLOEXEC) != 0) {
|
|
|
|
TRY(fcntl(fds[0], F_SETFD, FD_CLOEXEC));
|
|
|
|
TRY(fcntl(fds[1], F_SETFD, FD_CLOEXEC));
|
|
|
|
}
|
|
|
|
if ((flags & O_NONBLOCK) != 0) {
|
|
|
|
TRY(fcntl(fds[0], F_SETFL, TRY(fcntl(fds[0], F_GETFL)) | O_NONBLOCK));
|
|
|
|
TRY(fcntl(fds[1], F_SETFL, TRY(fcntl(fds[1], F_GETFL)) | O_NONBLOCK));
|
|
|
|
}
|
|
|
|
|
|
|
|
close_fds.disarm();
|
2021-12-21 02:46:46 +00:00
|
|
|
#endif
|
2024-03-12 18:50:21 +00:00
|
|
|
|
2021-12-21 02:46:46 +00:00
|
|
|
return fds;
|
|
|
|
}
|
|
|
|
|
2022-01-01 15:19:51 +00:00
|
|
|
ErrorOr<Vector<gid_t>> getgroups()
|
|
|
|
{
|
|
|
|
int count = ::getgroups(0, nullptr);
|
|
|
|
if (count < 0)
|
|
|
|
return Error::from_syscall("getgroups"sv, -errno);
|
|
|
|
if (count == 0)
|
|
|
|
return Vector<gid_t> {};
|
|
|
|
Vector<gid_t> groups;
|
|
|
|
TRY(groups.try_resize(count));
|
|
|
|
if (::getgroups(count, groups.data()) < 0)
|
|
|
|
return Error::from_syscall("getgroups"sv, -errno);
|
|
|
|
return groups;
|
|
|
|
}
|
|
|
|
|
2023-02-05 19:02:54 +00:00
|
|
|
ErrorOr<void> setgroups(ReadonlySpan<gid_t> gids)
|
2022-07-09 12:49:49 +00:00
|
|
|
{
|
|
|
|
if (::setgroups(gids.size(), gids.data()) < 0)
|
|
|
|
return Error::from_syscall("setgroups"sv, -errno);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2022-01-14 16:08:46 +00:00
|
|
|
ErrorOr<void> mknod(StringView pathname, mode_t mode, dev_t dev)
|
|
|
|
{
|
|
|
|
if (pathname.is_null())
|
|
|
|
return Error::from_syscall("mknod"sv, -EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2024-04-29 17:01:08 +00:00
|
|
|
Syscall::SC_mknod_params params { { pathname.characters_without_null_termination(), pathname.length() }, mode, dev, AT_FDCWD };
|
2022-01-14 16:08:46 +00:00
|
|
|
int rc = syscall(SC_mknod, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("mknod", rc, {});
|
2022-01-14 16:08:46 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = pathname;
|
2022-01-14 16:08:46 +00:00
|
|
|
if (::mknod(path_string.characters(), mode, dev) < 0)
|
|
|
|
return Error::from_syscall("mknod"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-01-17 09:04:00 +00:00
|
|
|
ErrorOr<void> mkfifo(StringView pathname, mode_t mode)
|
|
|
|
{
|
|
|
|
return mknod(pathname, mode | S_IFIFO, 0);
|
|
|
|
}
|
|
|
|
|
2022-03-01 22:44:53 +00:00
|
|
|
ErrorOr<int> posix_openpt(int flags)
|
|
|
|
{
|
|
|
|
int const rc = ::posix_openpt(flags);
|
|
|
|
if (rc < 0)
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall("posix_openpt"sv, -errno);
|
2022-03-01 22:44:53 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> grantpt(int fildes)
|
|
|
|
{
|
|
|
|
auto const rc = ::grantpt(fildes);
|
|
|
|
if (rc < 0)
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall("grantpt"sv, -errno);
|
2022-03-01 22:44:53 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorOr<void> unlockpt(int fildes)
|
|
|
|
{
|
|
|
|
auto const rc = ::unlockpt(fildes);
|
|
|
|
if (rc < 0)
|
2022-07-11 17:32:29 +00:00
|
|
|
return Error::from_syscall("unlockpt"sv, -errno);
|
2022-03-01 22:44:53 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2023-05-09 07:35:45 +00:00
|
|
|
ErrorOr<void> access(StringView pathname, int mode, int flags)
|
2022-03-29 17:24:06 +00:00
|
|
|
{
|
|
|
|
if (pathname.is_null())
|
|
|
|
return Error::from_syscall("access"sv, -EFAULT);
|
|
|
|
|
2022-10-09 21:23:23 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
2022-10-01 12:24:56 +00:00
|
|
|
Syscall::SC_faccessat_params params {
|
|
|
|
.dirfd = AT_FDCWD,
|
|
|
|
.pathname = { pathname.characters_without_null_termination(), pathname.length() },
|
|
|
|
.mode = mode,
|
2023-05-09 07:35:45 +00:00
|
|
|
.flags = flags,
|
2022-10-01 12:24:56 +00:00
|
|
|
};
|
|
|
|
int rc = ::syscall(Syscall::SC_faccessat, ¶ms);
|
2022-07-11 17:32:29 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("access", rc, {});
|
2022-03-29 17:24:06 +00:00
|
|
|
#else
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = pathname;
|
2023-05-09 07:35:45 +00:00
|
|
|
(void)flags;
|
2022-03-29 17:24:06 +00:00
|
|
|
if (::access(path_string.characters(), mode) < 0)
|
|
|
|
return Error::from_syscall("access"sv, -errno);
|
|
|
|
return {};
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ErrorOr<ByteString> readlink(StringView pathname)
|
2022-10-25 04:15:58 +00:00
|
|
|
{
|
|
|
|
// FIXME: Try again with a larger buffer.
|
|
|
|
#ifdef AK_OS_SERENITY
|
2023-09-03 19:41:16 +00:00
|
|
|
char data[PATH_MAX];
|
2022-10-25 04:15:58 +00:00
|
|
|
Syscall::SC_readlink_params small_params {
|
2022-10-01 11:20:08 +00:00
|
|
|
.path = { pathname.characters_without_null_termination(), pathname.length() },
|
|
|
|
.buffer = { data, sizeof(data) },
|
|
|
|
.dirfd = AT_FDCWD,
|
2022-10-25 04:15:58 +00:00
|
|
|
};
|
|
|
|
int rc = syscall(SC_readlink, &small_params);
|
2023-12-16 14:19:34 +00:00
|
|
|
HANDLE_SYSCALL_RETURN_VALUE("readlink", rc, ByteString(data, rc));
|
2023-09-03 19:41:16 +00:00
|
|
|
#elif defined(AK_OS_GNU_HURD)
|
|
|
|
// PATH_MAX is not defined, nor is there an upper limit on path lengths.
|
|
|
|
// Let's do this the right way.
|
|
|
|
int fd = TRY(open(pathname, O_READ | O_NOLINK));
|
|
|
|
auto file = TRY(File::adopt_fd(fd, File::OpenMode::Read));
|
|
|
|
auto buffer = TRY(file->read_until_eof());
|
|
|
|
// TODO: Get rid of this copy here.
|
2023-12-16 14:19:34 +00:00
|
|
|
return ByteString::copy(buffer);
|
2022-10-25 04:15:58 +00:00
|
|
|
#else
|
2023-09-03 19:41:16 +00:00
|
|
|
char data[PATH_MAX];
|
2023-12-16 14:19:34 +00:00
|
|
|
ByteString path_string = pathname;
|
2022-10-25 04:15:58 +00:00
|
|
|
int rc = ::readlink(path_string.characters(), data, sizeof(data));
|
|
|
|
if (rc == -1)
|
|
|
|
return Error::from_syscall("readlink"sv, -errno);
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
return ByteString(data, rc);
|
2022-10-25 04:15:58 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-12-11 22:40:25 +00:00
|
|
|
ErrorOr<int> poll(Span<struct pollfd> poll_fds, int timeout)
|
|
|
|
{
|
|
|
|
auto const rc = ::poll(poll_fds.data(), poll_fds.size(), timeout);
|
|
|
|
if (rc < 0)
|
|
|
|
return Error::from_syscall("poll"sv, -errno);
|
|
|
|
return { rc };
|
|
|
|
}
|
|
|
|
|
2022-11-27 18:46:03 +00:00
|
|
|
#ifdef AK_OS_SERENITY
|
|
|
|
ErrorOr<void> posix_fallocate(int fd, off_t offset, off_t length)
|
|
|
|
{
|
|
|
|
int rc = ::posix_fallocate(fd, offset, length);
|
|
|
|
if (rc != 0)
|
|
|
|
return Error::from_syscall("posix_fallocate"sv, -rc);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-05-29 20:15:13 +00:00
|
|
|
// This constant is copied from LibFileSystem. We cannot use or even include it directly,
|
|
|
|
// because that would cause a dependency of LibCore on LibFileSystem, effectively rendering
|
|
|
|
// the distinction between these libraries moot.
|
|
|
|
static constexpr StringView INTERNAL_DEFAULT_PATH_SV = "/usr/local/sbin:/usr/local/bin:/usr/bin:/bin"sv;
|
|
|
|
|
2024-04-05 18:43:45 +00:00
|
|
|
unsigned hardware_concurrency()
|
|
|
|
{
|
|
|
|
return sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
}
|
|
|
|
|
2023-05-29 20:15:13 +00:00
|
|
|
ErrorOr<String> resolve_executable_from_environment(StringView filename, int flags)
|
|
|
|
{
|
|
|
|
if (filename.is_empty())
|
|
|
|
return Error::from_errno(ENOENT);
|
|
|
|
|
|
|
|
// Paths that aren't just a file name generally count as already resolved.
|
|
|
|
if (filename.contains('/')) {
|
|
|
|
TRY(Core::System::access(filename, X_OK, flags));
|
|
|
|
return TRY(String::from_utf8(filename));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto const* path_str = ::getenv("PATH");
|
|
|
|
StringView path;
|
|
|
|
if (path_str)
|
|
|
|
path = { path_str, strlen(path_str) };
|
|
|
|
if (path.is_empty())
|
|
|
|
path = INTERNAL_DEFAULT_PATH_SV;
|
|
|
|
|
|
|
|
auto directories = path.split_view(':');
|
|
|
|
|
|
|
|
for (auto directory : directories) {
|
|
|
|
auto file = TRY(String::formatted("{}/{}", directory, filename));
|
|
|
|
|
|
|
|
if (!Core::System::access(file, X_OK, flags).is_error())
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Error::from_errno(ENOENT);
|
|
|
|
}
|
|
|
|
|
2023-12-16 14:19:34 +00:00
|
|
|
ErrorOr<ByteString> current_executable_path()
|
2023-08-02 22:56:53 +00:00
|
|
|
{
|
|
|
|
char path[4096] = {};
|
|
|
|
#if defined(AK_OS_LINUX) || defined(AK_OS_ANDROID) || defined(AK_OS_SERENITY)
|
|
|
|
auto ret = ::readlink("/proc/self/exe", path, sizeof(path) - 1);
|
|
|
|
// Ignore error if it wasn't a symlink
|
|
|
|
if (ret == -1 && errno != EINVAL)
|
|
|
|
return Error::from_syscall("readlink"sv, -errno);
|
2023-09-03 19:41:16 +00:00
|
|
|
#elif defined(AK_OS_GNU_HURD)
|
|
|
|
// We could read /proc/self/exe, but why rely on procfs being mounted
|
|
|
|
// if we can do the same thing procfs does and ask the proc server directly?
|
|
|
|
process_t proc = getproc();
|
|
|
|
if (!MACH_PORT_VALID(proc))
|
|
|
|
return Error::from_syscall("getproc"sv, -errno);
|
|
|
|
kern_return_t err = proc_get_exe(proc, getpid(), path);
|
|
|
|
mach_port_deallocate(mach_task_self(), proc);
|
|
|
|
if (err) {
|
|
|
|
__hurd_fail(static_cast<error_t>(err));
|
|
|
|
return Error::from_syscall("proc_get_exe"sv, -errno);
|
|
|
|
}
|
2023-08-02 22:56:53 +00:00
|
|
|
#elif defined(AK_OS_DRAGONFLY)
|
2023-11-06 18:49:18 +00:00
|
|
|
return TRY(readlink("/proc/curproc/file"sv));
|
2023-08-02 22:56:53 +00:00
|
|
|
#elif defined(AK_OS_SOLARIS)
|
2023-11-06 18:49:18 +00:00
|
|
|
return TRY(readlink("/proc/self/path/a.out"sv));
|
2023-08-02 22:56:53 +00:00
|
|
|
#elif defined(AK_OS_FREEBSD)
|
|
|
|
int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1 };
|
|
|
|
size_t len = sizeof(path);
|
|
|
|
if (sysctl(mib, 4, path, &len, nullptr, 0) < 0)
|
2023-08-20 16:25:08 +00:00
|
|
|
return Error::from_syscall("sysctl"sv, -errno);
|
2023-08-02 22:56:53 +00:00
|
|
|
#elif defined(AK_OS_NETBSD)
|
|
|
|
int mib[4] = { CTL_KERN, KERN_PROC_ARGS, -1, KERN_PROC_PATHNAME };
|
|
|
|
size_t len = sizeof(path);
|
|
|
|
if (sysctl(mib, 4, path, &len, nullptr, 0) < 0)
|
2023-08-20 16:25:08 +00:00
|
|
|
return Error::from_syscall("sysctl"sv, -errno);
|
2024-02-27 13:32:29 +00:00
|
|
|
#elif defined(AK_OS_MACOS) || defined(AK_OS_IOS)
|
2023-08-02 22:56:53 +00:00
|
|
|
u32 size = sizeof(path);
|
|
|
|
auto ret = _NSGetExecutablePath(path, &size);
|
|
|
|
if (ret != 0)
|
|
|
|
return Error::from_errno(ENAMETOOLONG);
|
2023-08-27 19:31:55 +00:00
|
|
|
#elif defined(AK_OS_HAIKU)
|
|
|
|
image_info info = {};
|
|
|
|
for (int32 cookie { 0 }; get_next_image_info(B_CURRENT_TEAM, &cookie, &info) == B_OK && info.type != B_APP_IMAGE;)
|
|
|
|
;
|
|
|
|
if (info.type != B_APP_IMAGE)
|
|
|
|
return Error::from_string_view("current_executable_path() failed"sv);
|
|
|
|
if (sizeof(info.name) > sizeof(path))
|
|
|
|
return Error::from_errno(ENAMETOOLONG);
|
|
|
|
strlcpy(path, info.name, sizeof(path) - 1);
|
2023-08-02 22:56:53 +00:00
|
|
|
#elif defined(AK_OS_EMSCRIPTEN)
|
|
|
|
return Error::from_string_view("current_executable_path() unknown on this platform"sv);
|
|
|
|
#else
|
|
|
|
# warning "Not sure how to get current_executable_path on this platform!"
|
|
|
|
// GetModuleFileName on Windows, unsure about OpenBSD.
|
|
|
|
return Error::from_string_view("current_executable_path unknown"sv);
|
|
|
|
#endif
|
|
|
|
path[sizeof(path) - 1] = '\0';
|
2023-12-16 14:19:34 +00:00
|
|
|
return ByteString { path, strlen(path) };
|
2023-08-02 22:56:53 +00:00
|
|
|
}
|
|
|
|
|
2023-10-06 15:13:42 +00:00
|
|
|
ErrorOr<Bytes> allocate(size_t count, size_t size)
|
|
|
|
{
|
|
|
|
auto* data = static_cast<u8*>(calloc(count, size));
|
|
|
|
if (!data)
|
|
|
|
return Error::from_errno(errno);
|
|
|
|
return Bytes { data, size * count };
|
|
|
|
}
|
|
|
|
|
2021-11-22 14:43:57 +00:00
|
|
|
}
|