2021-11-22 15:43:57 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
2022-06-30 16:19:03 +02: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>
|
2021-11-22 15:43:57 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Error.h>
|
2022-12-08 00:47:25 +01:00
|
|
|
#include <AK/Noncopyable.h>
|
2022-12-15 20:51:55 -07:00
|
|
|
#include <AK/OwnPtr.h>
|
2022-01-14 10:20:29 +01:00
|
|
|
#include <AK/StringView.h>
|
2022-12-08 00:47:25 +01:00
|
|
|
#include <AK/Vector.h>
|
2021-12-25 12:52:19 +00:00
|
|
|
#include <fcntl.h>
|
2021-11-22 16:11:03 +01:00
|
|
|
#include <signal.h>
|
2021-11-23 11:10:19 +01:00
|
|
|
#include <sys/stat.h>
|
2021-11-27 22:01:40 +01:00
|
|
|
#include <time.h>
|
2021-11-22 15:43:57 +01:00
|
|
|
|
2024-10-20 06:57:00 +05:00
|
|
|
#if !defined(AK_OS_WINDOWS)
|
|
|
|
# include <netdb.h>
|
|
|
|
# include <poll.h>
|
|
|
|
# include <pwd.h>
|
|
|
|
# include <spawn.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/resource.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <sys/utsname.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <termios.h>
|
|
|
|
# include <utime.h>
|
|
|
|
#else
|
|
|
|
# define O_CLOEXEC O_NOINHERIT
|
|
|
|
using sighandler_t = void (*)(int);
|
|
|
|
using socklen_t = int;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(AK_OS_BSD_GENERIC) && !defined(AK_OS_ANDROID) && !defined(AK_OS_WINDOWS)
|
2022-01-01 18:26:17 +01:00
|
|
|
# include <shadow.h>
|
|
|
|
#endif
|
|
|
|
|
2023-04-25 17:00:10 +02:00
|
|
|
#ifdef AK_OS_FREEBSD
|
|
|
|
# include <sys/ucred.h>
|
|
|
|
#endif
|
|
|
|
|
2023-02-25 18:53:46 +01:00
|
|
|
#ifdef AK_OS_SOLARIS
|
|
|
|
# include <sys/filio.h>
|
2023-02-25 18:58:53 +01:00
|
|
|
# include <ucred.h>
|
2023-02-25 18:53:46 +01:00
|
|
|
#endif
|
|
|
|
|
2021-11-23 10:59:50 +01:00
|
|
|
namespace Core::System {
|
2021-11-22 15:43:57 +01:00
|
|
|
|
2023-08-27 21:11:12 +02:00
|
|
|
#if !defined(AK_OS_MACOS) && !defined(AK_OS_HAIKU)
|
2021-12-25 12:52:19 +00:00
|
|
|
ErrorOr<int> accept4(int sockfd, struct sockaddr*, socklen_t*, int flags);
|
|
|
|
#endif
|
|
|
|
|
2021-11-22 16:11:03 +01:00
|
|
|
ErrorOr<void> sigaction(int signal, struct sigaction const* action, struct sigaction* old_action);
|
2023-02-25 18:50:03 +01:00
|
|
|
#if defined(AK_OS_SOLARIS)
|
|
|
|
ErrorOr<SIG_TYP> signal(int signal, SIG_TYP handler);
|
|
|
|
#elif defined(AK_OS_BSD_GENERIC)
|
2021-11-23 21:03:53 +01:00
|
|
|
ErrorOr<sig_t> signal(int signal, sig_t handler);
|
|
|
|
#else
|
|
|
|
ErrorOr<sighandler_t> signal(int signal, sighandler_t handler);
|
|
|
|
#endif
|
2021-11-23 11:10:19 +01:00
|
|
|
ErrorOr<struct stat> fstat(int fd);
|
2023-03-17 15:23:24 +00:00
|
|
|
ErrorOr<struct stat> fstatat(int fd, StringView path, int flags);
|
2021-11-23 11:10:19 +01:00
|
|
|
ErrorOr<int> fcntl(int fd, int command, ...);
|
2021-11-23 11:47:32 +01:00
|
|
|
ErrorOr<void*> mmap(void* address, size_t, int protection, int flags, int fd, off_t, size_t alignment = 0, StringView name = {});
|
2021-11-23 11:51:11 +01:00
|
|
|
ErrorOr<void> munmap(void* address, size_t);
|
2022-01-23 23:03:09 +01:00
|
|
|
ErrorOr<int> anon_create(size_t size, int options);
|
2022-04-10 18:25:22 +02:00
|
|
|
ErrorOr<int> open(StringView path, int options, mode_t mode = 0);
|
|
|
|
ErrorOr<int> openat(int fd, StringView path, int options, mode_t mode = 0);
|
2021-11-23 12:05:56 +01:00
|
|
|
ErrorOr<void> close(int fd);
|
2021-11-23 12:16:07 +01:00
|
|
|
ErrorOr<void> ftruncate(int fd, off_t length);
|
2021-11-23 12:22:21 +01:00
|
|
|
ErrorOr<struct stat> stat(StringView path);
|
2021-12-02 22:41:40 +01:00
|
|
|
ErrorOr<struct stat> lstat(StringView path);
|
2021-11-27 13:02:33 -08:00
|
|
|
ErrorOr<ssize_t> read(int fd, Bytes buffer);
|
|
|
|
ErrorOr<ssize_t> write(int fd, ReadonlyBytes buffer);
|
2021-11-28 12:08:28 +01:00
|
|
|
ErrorOr<int> dup(int source_fd);
|
2021-11-24 22:36:28 +01:00
|
|
|
ErrorOr<int> dup2(int source_fd, int destination_fd);
|
2023-12-16 17:49:34 +03:30
|
|
|
ErrorOr<ByteString> getcwd();
|
2021-11-29 23:07:33 +01:00
|
|
|
ErrorOr<void> ioctl(int fd, unsigned request, ...);
|
2021-11-29 23:28:10 +01:00
|
|
|
ErrorOr<struct termios> tcgetattr(int fd);
|
|
|
|
ErrorOr<void> tcsetattr(int fd, int optional_actions, struct termios const&);
|
2021-11-27 15:46:11 +01:00
|
|
|
ErrorOr<void> chmod(StringView pathname, mode_t mode);
|
2022-01-18 14:42:45 +00:00
|
|
|
ErrorOr<off_t> lseek(int fd, off_t, int whence);
|
2022-01-10 14:34:09 +01:00
|
|
|
|
2021-12-16 19:24:58 +01:00
|
|
|
ErrorOr<bool> isatty(int fd);
|
2022-07-25 16:03:51 +02:00
|
|
|
ErrorOr<void> link(StringView old_path, StringView new_path);
|
2021-12-16 20:23:21 +01:00
|
|
|
ErrorOr<void> symlink(StringView target, StringView link_path);
|
2021-12-16 20:27:25 +01:00
|
|
|
ErrorOr<void> mkdir(StringView path, mode_t);
|
2022-01-03 02:07:26 -07:00
|
|
|
ErrorOr<void> chdir(StringView path);
|
2022-02-12 18:35:38 -07:00
|
|
|
ErrorOr<void> rmdir(StringView path);
|
2021-12-16 21:10:59 +01:00
|
|
|
ErrorOr<int> mkstemp(Span<char> pattern);
|
2023-03-17 23:54:19 +00:00
|
|
|
ErrorOr<String> mkdtemp(Span<char> pattern);
|
2021-12-16 21:12:23 +01:00
|
|
|
ErrorOr<void> fchmod(int fd, mode_t mode);
|
2021-12-16 21:40:42 +01:00
|
|
|
ErrorOr<void> rename(StringView old_path, StringView new_path);
|
2021-12-29 21:47:38 +01:00
|
|
|
ErrorOr<void> unlink(StringView path);
|
2023-03-20 18:16:44 +11:00
|
|
|
ErrorOr<void> utimensat(int fd, StringView path, struct timespec const times[2], int flag);
|
2021-12-21 06:16:46 +03:30
|
|
|
ErrorOr<Array<int, 2>> pipe2(int flags);
|
2022-11-02 22:28:58 +02:00
|
|
|
|
2021-12-25 12:52:19 +00:00
|
|
|
ErrorOr<int> socket(int domain, int type, int protocol);
|
|
|
|
ErrorOr<void> bind(int sockfd, struct sockaddr const*, socklen_t);
|
|
|
|
ErrorOr<void> listen(int sockfd, int backlog);
|
|
|
|
ErrorOr<int> accept(int sockfd, struct sockaddr*, socklen_t*);
|
|
|
|
ErrorOr<void> connect(int sockfd, struct sockaddr const*, socklen_t);
|
|
|
|
ErrorOr<ssize_t> send(int sockfd, void const*, size_t, int flags);
|
|
|
|
ErrorOr<ssize_t> sendmsg(int sockfd, const struct msghdr*, int flags);
|
|
|
|
ErrorOr<ssize_t> sendto(int sockfd, void const*, size_t, int flags, struct sockaddr const*, socklen_t);
|
|
|
|
ErrorOr<ssize_t> recv(int sockfd, void*, size_t, int flags);
|
|
|
|
ErrorOr<ssize_t> recvmsg(int sockfd, struct msghdr*, int flags);
|
|
|
|
ErrorOr<ssize_t> recvfrom(int sockfd, void*, size_t, int flags, struct sockaddr*, socklen_t*);
|
|
|
|
ErrorOr<void> getsockopt(int sockfd, int level, int option, void* value, socklen_t* value_size);
|
|
|
|
ErrorOr<void> setsockopt(int sockfd, int level, int option, void const* value, socklen_t value_size);
|
|
|
|
ErrorOr<void> getsockname(int sockfd, struct sockaddr*, socklen_t*);
|
|
|
|
ErrorOr<void> getpeername(int sockfd, struct sockaddr*, socklen_t*);
|
|
|
|
ErrorOr<void> socketpair(int domain, int type, int protocol, int sv[2]);
|
2024-10-18 10:36:03 -04:00
|
|
|
|
2023-05-09 09:35:45 +02:00
|
|
|
ErrorOr<void> access(StringView pathname, int mode, int flags = 0);
|
2023-12-16 17:49:34 +03:30
|
|
|
ErrorOr<ByteString> readlink(StringView pathname);
|
2022-12-11 23:40:25 +01:00
|
|
|
ErrorOr<int> poll(Span<struct pollfd>, int timeout);
|
2022-03-01 23:43:55 +01:00
|
|
|
|
2024-10-20 06:57:00 +05:00
|
|
|
#if !defined(AK_OS_WINDOWS)
|
|
|
|
ErrorOr<void> kill(pid_t, int signal);
|
|
|
|
ErrorOr<void> chown(StringView pathname, uid_t uid, gid_t gid);
|
|
|
|
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[]);
|
|
|
|
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[]);
|
|
|
|
|
|
|
|
struct WaitPidResult {
|
|
|
|
pid_t pid;
|
|
|
|
int status;
|
|
|
|
};
|
|
|
|
ErrorOr<WaitPidResult> waitpid(pid_t waitee, int options = 0);
|
|
|
|
ErrorOr<void> fchown(int fd, uid_t, gid_t);
|
|
|
|
ErrorOr<struct utsname> uname();
|
|
|
|
|
2022-12-08 00:47:25 +01:00
|
|
|
class AddressInfoVector {
|
|
|
|
AK_MAKE_NONCOPYABLE(AddressInfoVector);
|
2023-06-16 16:15:15 +02:00
|
|
|
AK_MAKE_DEFAULT_MOVABLE(AddressInfoVector);
|
2022-12-08 00:47:25 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
~AddressInfoVector() = default;
|
|
|
|
|
2023-02-05 19:02:54 +00:00
|
|
|
ReadonlySpan<struct addrinfo> addresses() const { return m_addresses; }
|
2022-12-08 00:47:25 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
friend ErrorOr<AddressInfoVector> getaddrinfo(char const* nodename, char const* servname, struct addrinfo const& hints);
|
|
|
|
|
2022-12-15 20:51:55 -07:00
|
|
|
AddressInfoVector(Vector<struct addrinfo>&& addresses, struct addrinfo* ptr)
|
2022-12-08 00:47:25 +01:00
|
|
|
: m_addresses(move(addresses))
|
2022-12-15 20:51:55 -07:00
|
|
|
, m_ptr(adopt_own_if_nonnull(ptr))
|
2022-12-08 00:47:25 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-12-15 20:51:55 -07:00
|
|
|
struct AddrInfoDeleter {
|
2024-05-09 15:13:48 -06:00
|
|
|
void operator()(struct addrinfo* ptr)
|
|
|
|
{
|
|
|
|
if (ptr)
|
|
|
|
::freeaddrinfo(ptr);
|
|
|
|
}
|
2022-12-15 20:51:55 -07:00
|
|
|
};
|
|
|
|
|
2022-12-08 00:47:25 +01:00
|
|
|
Vector<struct addrinfo> m_addresses {};
|
2022-12-15 20:51:55 -07:00
|
|
|
OwnPtr<struct addrinfo, AddrInfoDeleter> m_ptr {};
|
2022-12-08 00:47:25 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
ErrorOr<AddressInfoVector> getaddrinfo(char const* nodename, char const* servname, struct addrinfo const& hints);
|
2024-10-20 06:57:00 +05:00
|
|
|
#endif
|
2022-12-08 00:47:25 +01:00
|
|
|
|
2024-04-05 20:43:45 +02:00
|
|
|
unsigned hardware_concurrency();
|
2024-10-08 15:48:17 +02:00
|
|
|
u64 physical_memory_bytes();
|
2024-04-05 20:43:45 +02:00
|
|
|
|
2023-12-16 17:49:34 +03:30
|
|
|
ErrorOr<ByteString> current_executable_path();
|
2023-08-02 16:56:53 -06:00
|
|
|
|
2024-10-20 06:57:00 +05:00
|
|
|
#if !defined(AK_OS_WINDOWS)
|
2024-07-22 10:11:18 -04:00
|
|
|
ErrorOr<rlimit> get_resource_limits(int resource);
|
|
|
|
ErrorOr<void> set_resource_limits(int resource, rlim_t limit);
|
2024-10-20 06:57:00 +05:00
|
|
|
#endif
|
2024-07-22 10:11:18 -04:00
|
|
|
|
2024-12-15 05:39:12 +05:00
|
|
|
int getpid();
|
|
|
|
|
2021-11-22 15:43:57 +01:00
|
|
|
}
|