mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 03:02:27 -05:00
9f2b9c82bf
Implemented some syscalls: dup(), dup2(), getdtablesize(). FileHandle is now a retainable, since that's needed for dup()'ed fd's. I didn't really test any of this beyond a basic smoke check.
211 lines
4.6 KiB
C++
211 lines
4.6 KiB
C++
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <stdarg.h>
|
|
#include <assert.h>
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
pid_t fork()
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixFork);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int execve(const char* filename, const char** argv, const char** envp)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixExecve, (dword)filename, (dword)argv, (dword)envp);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
uid_t getuid()
|
|
{
|
|
return Syscall::invoke(Syscall::PosixGetuid);
|
|
}
|
|
|
|
gid_t getgid()
|
|
{
|
|
return Syscall::invoke(Syscall::PosixGetgid);
|
|
}
|
|
|
|
uid_t geteuid()
|
|
{
|
|
return Syscall::invoke(Syscall::PosixGeteuid);
|
|
}
|
|
|
|
gid_t getegid()
|
|
{
|
|
return Syscall::invoke(Syscall::PosixGetegid);
|
|
}
|
|
|
|
pid_t getpid()
|
|
{
|
|
return Syscall::invoke(Syscall::PosixGetpid);
|
|
}
|
|
|
|
pid_t setsid()
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixSetsid);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
pid_t tcgetpgrp(int fd)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixTcgetpgrp, (dword)fd);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int tcsetpgrp(int fd, pid_t pgid)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixTcsetpgrp, (dword)fd, (dword)pgid);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int setpgid(pid_t pid, pid_t pgid)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixSetpgid, (dword)pid, (dword)pgid);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
pid_t getpgid(pid_t pid)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixGetpgid, (dword)pid);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
pid_t getpgrp()
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixGetpgrp);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int open(const char* path, int options, ...)
|
|
{
|
|
va_list ap;
|
|
va_start(ap, options);
|
|
int rc = Syscall::invoke(Syscall::PosixOpen, (dword)path, (dword)options, (dword)ap);
|
|
va_end(ap);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
ssize_t read(int fd, void* buf, size_t count)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixRead, (dword)fd, (dword)buf, (dword)count);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
ssize_t write(int fd, const void* buf, size_t count)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixWrite, (dword)fd, (dword)buf, (dword)count);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int ttyname_r(int fd, char* buffer, size_t size)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixTtynameR, (dword)fd, (dword)buffer, (dword)size);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
static char ttyname_buf[32];
|
|
char* ttyname(int fd)
|
|
{
|
|
if (ttyname_r(fd, ttyname_buf, sizeof(ttyname_buf)) < 0)
|
|
return nullptr;
|
|
return ttyname_buf;
|
|
}
|
|
|
|
int close(int fd)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixClose, fd);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
pid_t waitpid(pid_t waitee, int* wstatus, int options)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixWaitpid, waitee, (dword)wstatus);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int lstat(const char* path, struct stat* statbuf)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixLstat, (dword)path, (dword)statbuf);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int stat(const char* path, struct stat* statbuf)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixStat, (dword)path, (dword)statbuf);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int chdir(const char* path)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixChdir, (dword)path);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
char* getcwd(char* buffer, size_t size)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixGetcwd, (dword)buffer, (dword)size);
|
|
__RETURN_WITH_ERRNO(rc, buffer, nullptr);
|
|
}
|
|
|
|
int sleep(unsigned seconds)
|
|
{
|
|
return Syscall::invoke(Syscall::Sleep, (dword)seconds);
|
|
}
|
|
|
|
int gethostname(char* buffer, size_t size)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixGethostname, (dword)buffer, (dword)size);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
ssize_t readlink(const char* path, char* buffer, size_t size)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixReadlink, (dword)path, (dword)buffer, (dword)size);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
off_t lseek(int fd, off_t offset, int whence)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixLseek, (dword)fd, (dword)offset, (dword)whence);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int link(const char*, const char*)
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
int unlink(const char*)
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
int isatty(int fd)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixIsatty, (dword)fd);
|
|
__RETURN_WITH_ERRNO(rc, 1, 0);
|
|
}
|
|
|
|
int getdtablesize()
|
|
{
|
|
int rc = Syscall::invoke(Syscall::Getdtablesize);
|
|
__RETURN_WITH_ERRNO(rc, 1, 0);
|
|
}
|
|
|
|
int dup(int old_fd)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::Dup, (dword)old_fd);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
int dup2(int old_fd, int new_fd)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::Dup2, (dword)old_fd, (dword)new_fd);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|