2020-01-18 08:38:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-07-25 13:21:50 +00:00
|
|
|
#include <AK/ScopedValueRollback.h>
|
2019-11-13 20:49:24 +00:00
|
|
|
#include <AK/String.h>
|
2019-06-07 09:49:03 +00:00
|
|
|
#include <AK/Vector.h>
|
2020-07-04 15:22:23 +00:00
|
|
|
#include <Kernel/API/Syscall.h>
|
2020-01-10 11:20:36 +00:00
|
|
|
#include <alloca.h>
|
2018-11-05 15:40:48 +00:00
|
|
|
#include <assert.h>
|
2019-06-07 09:49:03 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2018-11-07 00:38:51 +00:00
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
2019-06-07 09:49:03 +00:00
|
|
|
#include <stdarg.h>
|
2018-11-07 00:38:51 +00:00
|
|
|
#include <stdio.h>
|
2019-02-08 01:38:21 +00:00
|
|
|
#include <stdlib.h>
|
2019-06-07 09:49:03 +00:00
|
|
|
#include <string.h>
|
2018-11-16 12:11:21 +00:00
|
|
|
#include <sys/ioctl.h>
|
2020-04-12 18:23:18 +00:00
|
|
|
#include <sys/mman.h>
|
2019-01-21 23:58:13 +00:00
|
|
|
#include <sys/types.h>
|
2019-11-17 19:01:03 +00:00
|
|
|
#include <termios.h>
|
2019-06-07 09:49:03 +00:00
|
|
|
#include <unistd.h>
|
2018-10-22 11:57:25 +00:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2020-04-13 08:17:11 +00:00
|
|
|
static __thread int s_cached_tid = 0;
|
2020-07-27 16:05:48 +00:00
|
|
|
static int s_cached_pid = 0;
|
2020-04-13 08:17:11 +00:00
|
|
|
|
2019-02-27 11:32:53 +00:00
|
|
|
int chown(const char* pathname, uid_t uid, gid_t gid)
|
2019-02-23 16:24:50 +00:00
|
|
|
{
|
2020-01-11 09:17:08 +00:00
|
|
|
if (!pathname) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Syscall::SC_chown_params params { { pathname, strlen(pathname) }, uid, gid };
|
|
|
|
int rc = syscall(SC_chown, ¶ms);
|
2019-02-27 11:32:53 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2019-02-23 16:24:50 +00:00
|
|
|
}
|
|
|
|
|
2019-06-01 18:31:36 +00:00
|
|
|
int fchown(int fd, uid_t uid, gid_t gid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_fchown, fd, uid, gid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-02 19:41:58 +00:00
|
|
|
pid_t fork()
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_fork);
|
2020-07-21 16:45:06 +00:00
|
|
|
if (rc == 0) {
|
2020-04-13 08:17:11 +00:00
|
|
|
s_cached_tid = 0;
|
2020-07-21 16:45:06 +00:00
|
|
|
s_cached_pid = 0;
|
|
|
|
}
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:18:15 +00:00
|
|
|
int execv(const char* path, char* const argv[])
|
|
|
|
{
|
2019-03-27 00:39:13 +00:00
|
|
|
return execve(path, argv, environ);
|
2019-03-14 14:18:15 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 16:03:14 +00:00
|
|
|
int execve(const char* filename, char* const argv[], char* const envp[])
|
2018-11-03 00:49:40 +00:00
|
|
|
{
|
2020-01-10 11:20:36 +00:00
|
|
|
size_t arg_count = 0;
|
|
|
|
for (size_t i = 0; argv[i]; ++i)
|
|
|
|
++arg_count;
|
|
|
|
|
|
|
|
size_t env_count = 0;
|
|
|
|
for (size_t i = 0; envp[i]; ++i)
|
|
|
|
++env_count;
|
|
|
|
|
|
|
|
auto copy_strings = [&](auto& vec, size_t count, auto& output) {
|
|
|
|
output.length = count;
|
|
|
|
for (size_t i = 0; vec[i]; ++i) {
|
2020-08-09 19:11:13 +00:00
|
|
|
output.strings.ptr()[i].characters = vec[i];
|
|
|
|
output.strings.ptr()[i].length = strlen(vec[i]);
|
2020-01-10 11:20:36 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Syscall::SC_execve_params params;
|
2020-01-10 19:15:58 +00:00
|
|
|
params.arguments.strings = (Syscall::StringArgument*)alloca(arg_count * sizeof(Syscall::StringArgument));
|
|
|
|
params.environment.strings = (Syscall::StringArgument*)alloca(env_count * sizeof(Syscall::StringArgument));
|
2020-01-10 11:20:36 +00:00
|
|
|
|
|
|
|
params.path = { filename, strlen(filename) };
|
|
|
|
copy_strings(argv, arg_count, params.arguments);
|
|
|
|
copy_strings(envp, env_count, params.environment);
|
|
|
|
|
|
|
|
int rc = syscall(SC_execve, ¶ms);
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-02 19:41:58 +00:00
|
|
|
}
|
|
|
|
|
2019-04-26 01:16:26 +00:00
|
|
|
int execvpe(const char* filename, char* const argv[], char* const envp[])
|
2019-01-23 05:35:34 +00:00
|
|
|
{
|
2020-02-01 15:05:04 +00:00
|
|
|
if (strchr(filename, '/'))
|
|
|
|
return execve(filename, argv, envp);
|
|
|
|
|
2019-07-25 13:21:50 +00:00
|
|
|
ScopedValueRollback errno_rollback(errno);
|
|
|
|
String path = getenv("PATH");
|
|
|
|
if (path.is_empty())
|
|
|
|
path = "/bin:/usr/bin";
|
|
|
|
auto parts = path.split(':');
|
|
|
|
for (auto& part : parts) {
|
|
|
|
auto candidate = String::format("%s/%s", part.characters(), filename);
|
|
|
|
int rc = execve(candidate.characters(), argv, envp);
|
2019-03-27 00:39:13 +00:00
|
|
|
if (rc < 0 && errno != ENOENT) {
|
2019-07-25 13:21:50 +00:00
|
|
|
errno_rollback.set_override_rollback_value(errno);
|
|
|
|
dbg() << "execvpe() failed on attempt (" << candidate << ") with " << strerror(errno);
|
2019-03-27 00:39:13 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
2019-07-25 13:21:50 +00:00
|
|
|
errno_rollback.set_override_rollback_value(ENOENT);
|
|
|
|
dbg() << "execvpe() leaving :(";
|
2019-03-27 00:39:13 +00:00
|
|
|
return -1;
|
2019-01-23 05:35:34 +00:00
|
|
|
}
|
|
|
|
|
2019-04-26 01:16:26 +00:00
|
|
|
int execvp(const char* filename, char* const argv[])
|
|
|
|
{
|
2019-07-25 05:01:00 +00:00
|
|
|
int rc = execvpe(filename, argv, environ);
|
2020-05-15 09:08:39 +00:00
|
|
|
int saved_errno = errno;
|
|
|
|
dbg() << "execvp() about to return " << rc << " with errno=" << saved_errno;
|
|
|
|
errno = saved_errno;
|
2019-07-25 05:01:00 +00:00
|
|
|
return rc;
|
2019-04-26 01:16:26 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 03:32:31 +00:00
|
|
|
int execl(const char* filename, const char* arg0, ...)
|
|
|
|
{
|
2019-04-20 12:02:19 +00:00
|
|
|
Vector<const char*, 16> args;
|
2019-02-03 03:32:31 +00:00
|
|
|
args.append(arg0);
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, arg0);
|
|
|
|
for (;;) {
|
|
|
|
const char* arg = va_arg(ap, const char*);
|
|
|
|
if (!arg)
|
|
|
|
break;
|
|
|
|
args.append(arg);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
2019-02-07 23:12:12 +00:00
|
|
|
args.append(nullptr);
|
2019-04-23 11:00:53 +00:00
|
|
|
return execve(filename, const_cast<char* const*>(args.data()), environ);
|
2019-02-03 03:32:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-16 08:35:48 +00:00
|
|
|
int execlp(const char* filename, const char* arg0, ...)
|
|
|
|
{
|
|
|
|
Vector<const char*, 16> args;
|
|
|
|
args.append(arg0);
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, arg0);
|
|
|
|
for (;;) {
|
|
|
|
const char* arg = va_arg(ap, const char*);
|
|
|
|
if (!arg)
|
|
|
|
break;
|
|
|
|
args.append(arg);
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
args.append(nullptr);
|
|
|
|
return execvpe(filename, const_cast<char* const*>(args.data()), environ);
|
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
uid_t geteuid()
|
2018-10-22 11:57:25 +00:00
|
|
|
{
|
2020-06-17 12:58:00 +00:00
|
|
|
return syscall(SC_geteuid);
|
2018-10-22 11:57:25 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
gid_t getegid()
|
2018-10-22 11:57:25 +00:00
|
|
|
{
|
2020-06-17 12:58:00 +00:00
|
|
|
return syscall(SC_getegid);
|
2018-10-22 11:57:25 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
uid_t getuid()
|
2018-11-05 14:04:19 +00:00
|
|
|
{
|
2020-06-17 12:58:00 +00:00
|
|
|
return syscall(SC_getuid);
|
2018-11-05 14:04:19 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
gid_t getgid()
|
2018-11-05 14:04:19 +00:00
|
|
|
{
|
2020-06-17 12:58:00 +00:00
|
|
|
return syscall(SC_getgid);
|
2018-11-05 14:04:19 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 08:00:37 +00:00
|
|
|
pid_t getpid()
|
2018-10-22 11:57:25 +00:00
|
|
|
{
|
2020-07-23 07:27:33 +00:00
|
|
|
int cached_pid = s_cached_pid;
|
|
|
|
if (!cached_pid) {
|
|
|
|
cached_pid = syscall(SC_getpid);
|
|
|
|
s_cached_pid = cached_pid;
|
|
|
|
}
|
|
|
|
return cached_pid;
|
2018-10-22 11:57:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t getppid()
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
return syscall(SC_getppid);
|
2018-11-06 12:33:06 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
int getresuid(uid_t* ruid, uid_t* euid, uid_t* suid)
|
|
|
|
{
|
|
|
|
return syscall(SC_getresuid, ruid, euid, suid);
|
|
|
|
}
|
|
|
|
|
2020-06-30 23:34:20 +00:00
|
|
|
int getresgid(gid_t* rgid, gid_t* egid, gid_t* sgid)
|
2020-06-17 12:58:00 +00:00
|
|
|
{
|
|
|
|
return syscall(SC_getresgid, rgid, egid, sgid);
|
|
|
|
}
|
|
|
|
|
2020-02-03 15:52:23 +00:00
|
|
|
pid_t getsid(pid_t pid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_getsid, pid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t setsid()
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_setsid);
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-02 11:56:51 +00:00
|
|
|
}
|
|
|
|
|
2018-11-02 12:14:25 +00:00
|
|
|
pid_t tcgetpgrp(int fd)
|
2018-11-02 11:56:51 +00:00
|
|
|
{
|
2018-11-16 12:11:21 +00:00
|
|
|
return ioctl(fd, TIOCGPGRP);
|
2018-11-02 12:14:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int tcsetpgrp(int fd, pid_t pgid)
|
|
|
|
{
|
2018-11-16 12:11:21 +00:00
|
|
|
return ioctl(fd, TIOCSPGRP, pgid);
|
2018-11-02 11:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int setpgid(pid_t pid, pid_t pgid)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_setpgid, pid, pgid);
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-02 11:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pid_t getpgid(pid_t pid)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_getpgid, pid);
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-02 11:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pid_t getpgrp()
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_getpgrp);
|
2018-11-03 00:49:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-02 11:56:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 08:12:50 +00:00
|
|
|
ssize_t read(int fd, void* buf, size_t count)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_read, fd, buf, count);
|
2018-10-25 10:06:00 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-10-23 08:12:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 14:33:37 +00:00
|
|
|
ssize_t write(int fd, const void* buf, size_t count)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_write, fd, buf, count);
|
2018-10-30 14:33:37 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:03:02 +00:00
|
|
|
int ttyname_r(int fd, char* buffer, size_t size)
|
|
|
|
{
|
2020-08-04 14:27:52 +00:00
|
|
|
int rc = syscall(SC_ttyname, fd, buffer, size);
|
2018-10-30 21:03:02 +00:00
|
|
|
__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;
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:12:50 +00:00
|
|
|
int close(int fd)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_close, fd);
|
2018-10-25 10:06:00 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-10-23 08:12:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-26 12:24:11 +00:00
|
|
|
int chdir(const char* path)
|
|
|
|
{
|
2020-01-06 09:51:50 +00:00
|
|
|
if (!path) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
2020-01-05 21:06:25 +00:00
|
|
|
int rc = syscall(SC_chdir, path, strlen(path));
|
2018-10-26 12:24:11 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-09-11 23:18:25 +00:00
|
|
|
int fchdir(int fd)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_fchdir, fd);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-10-24 12:28:22 +00:00
|
|
|
char* getcwd(char* buffer, size_t size)
|
|
|
|
{
|
2019-02-08 01:38:21 +00:00
|
|
|
if (!buffer) {
|
|
|
|
size = size ? size : PATH_MAX;
|
|
|
|
buffer = (char*)malloc(size);
|
|
|
|
}
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_getcwd, buffer, size);
|
2018-10-25 10:06:00 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, buffer, nullptr);
|
2018-10-24 12:28:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:57 +00:00
|
|
|
char* getwd(char* buf)
|
|
|
|
{
|
2018-11-11 14:36:40 +00:00
|
|
|
auto* p = getcwd(buf, PATH_MAX);
|
|
|
|
return p;
|
2018-11-06 14:59:57 +00:00
|
|
|
}
|
|
|
|
|
2018-10-25 11:53:49 +00:00
|
|
|
int sleep(unsigned seconds)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
return syscall(SC_sleep, seconds);
|
2018-10-25 11:53:49 +00:00
|
|
|
}
|
|
|
|
|
2019-02-03 15:11:28 +00:00
|
|
|
int usleep(useconds_t usec)
|
|
|
|
{
|
|
|
|
return syscall(SC_usleep, usec);
|
|
|
|
}
|
|
|
|
|
2018-10-26 07:54:29 +00:00
|
|
|
int gethostname(char* buffer, size_t size)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_gethostname, buffer, size);
|
2018-10-26 07:54:29 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2020-04-26 05:59:47 +00:00
|
|
|
int sethostname(const char* hostname, ssize_t size)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_sethostname, hostname, size);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-10-28 13:11:51 +00:00
|
|
|
ssize_t readlink(const char* path, char* buffer, size_t size)
|
|
|
|
{
|
2020-01-10 19:13:23 +00:00
|
|
|
Syscall::SC_readlink_params params { { path, strlen(path) }, { buffer, size } };
|
|
|
|
int rc = syscall(SC_readlink, ¶ms);
|
2020-06-16 18:51:08 +00:00
|
|
|
// Return the number of bytes placed in the buffer, not the full path size.
|
|
|
|
__RETURN_WITH_ERRNO(rc, min((size_t)rc, size), -1);
|
2018-10-28 13:11:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-31 16:50:43 +00:00
|
|
|
off_t lseek(int fd, off_t offset, int whence)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_lseek, fd, offset, whence);
|
2018-10-31 16:50:43 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-02-21 12:26:40 +00:00
|
|
|
int link(const char* old_path, const char* new_path)
|
2018-11-05 15:40:48 +00:00
|
|
|
{
|
2020-01-10 20:26:47 +00:00
|
|
|
if (!old_path || !new_path) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Syscall::SC_link_params params { { old_path, strlen(old_path) }, { new_path, strlen(new_path) } };
|
|
|
|
int rc = syscall(SC_link, ¶ms);
|
2019-02-21 12:26:40 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-05 15:40:48 +00:00
|
|
|
}
|
|
|
|
|
2019-01-22 06:03:44 +00:00
|
|
|
int unlink(const char* pathname)
|
2018-11-05 15:40:48 +00:00
|
|
|
{
|
2020-01-09 11:41:15 +00:00
|
|
|
int rc = syscall(SC_unlink, pathname, strlen(pathname));
|
2019-01-22 06:03:44 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-05 15:40:48 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 00:50:34 +00:00
|
|
|
int symlink(const char* target, const char* linkpath)
|
|
|
|
{
|
2020-01-11 09:31:33 +00:00
|
|
|
if (!target || !linkpath) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Syscall::SC_symlink_params params { { target, strlen(target) }, { linkpath, strlen(linkpath) } };
|
|
|
|
int rc = syscall(SC_symlink, ¶ms);
|
2019-03-02 00:50:34 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-01-28 03:16:01 +00:00
|
|
|
int rmdir(const char* pathname)
|
|
|
|
{
|
2020-01-06 10:05:59 +00:00
|
|
|
if (!pathname) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
int rc = syscall(SC_rmdir, pathname, strlen(pathname));
|
2019-01-28 03:16:01 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-05 17:16:00 +00:00
|
|
|
int isatty(int fd)
|
|
|
|
{
|
2020-05-19 17:34:45 +00:00
|
|
|
return fcntl(fd, F_ISTTY);
|
2018-11-05 17:16:00 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 18:01:22 +00:00
|
|
|
int dup(int old_fd)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_dup, old_fd);
|
2018-11-05 18:01:22 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-10-22 11:57:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 18:01:22 +00:00
|
|
|
int dup2(int old_fd, int new_fd)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_dup2, old_fd, new_fd);
|
2018-11-05 18:01:22 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:38:51 +00:00
|
|
|
int setgroups(size_t size, const gid_t* list)
|
|
|
|
{
|
2020-01-04 12:00:50 +00:00
|
|
|
int rc = syscall(SC_setgroups, size, list);
|
2018-11-07 00:38:51 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int getgroups(int size, gid_t list[])
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_getgroups, size, list);
|
2018-11-07 00:38:51 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-10 23:20:53 +00:00
|
|
|
int pipe(int pipefd[2])
|
|
|
|
{
|
2019-08-05 12:29:05 +00:00
|
|
|
return pipe2(pipefd, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int pipe2(int pipefd[2], int flags)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_pipe, pipefd, flags);
|
2018-11-10 23:20:53 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int alarm(unsigned int seconds)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
return syscall(SC_alarm, seconds);
|
2018-11-10 23:20:53 +00:00
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
int seteuid(uid_t euid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_seteuid, euid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int setegid(gid_t egid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_setegid, egid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-10 23:20:53 +00:00
|
|
|
int setuid(uid_t uid)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_setuid, uid);
|
2018-11-10 23:20:53 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2020-06-17 12:59:08 +00:00
|
|
|
int setgid(gid_t gid)
|
2018-11-10 23:20:53 +00:00
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
int rc = syscall(SC_setgid, gid);
|
2018-11-10 23:20:53 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2020-06-17 12:58:00 +00:00
|
|
|
int setresuid(uid_t ruid, uid_t euid, uid_t suid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_setresuid, ruid, euid, suid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_setresgid, rgid, egid, sgid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2018-11-10 23:20:53 +00:00
|
|
|
int access(const char* pathname, int mode)
|
|
|
|
{
|
2020-01-06 09:43:53 +00:00
|
|
|
if (!pathname) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
int rc = syscall(SC_access, pathname, strlen(pathname), mode);
|
2018-11-10 23:20:53 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-05-03 20:59:58 +00:00
|
|
|
int mknod(const char* pathname, mode_t mode, dev_t dev)
|
2018-11-16 23:11:08 +00:00
|
|
|
{
|
2020-01-11 09:27:37 +00:00
|
|
|
if (!pathname) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
Syscall::SC_mknod_params params { { pathname, strlen(pathname) }, mode, dev };
|
|
|
|
int rc = syscall(SC_mknod, ¶ms);
|
2019-05-03 20:59:58 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-16 23:11:08 +00:00
|
|
|
}
|
|
|
|
|
2018-11-17 14:56:09 +00:00
|
|
|
long fpathconf(int fd, int name)
|
|
|
|
{
|
2019-06-07 09:49:03 +00:00
|
|
|
(void)fd;
|
|
|
|
(void)name;
|
2019-09-02 05:36:22 +00:00
|
|
|
|
|
|
|
switch (name) {
|
|
|
|
case _PC_PATH_MAX:
|
|
|
|
return PATH_MAX;
|
2019-12-01 10:34:34 +00:00
|
|
|
case _PC_VDISABLE:
|
|
|
|
return _POSIX_VDISABLE;
|
2019-09-02 05:36:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-23 19:52:02 +00:00
|
|
|
ASSERT_NOT_REACHED();
|
2018-11-17 14:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
long pathconf(const char* path, int name)
|
|
|
|
{
|
2019-06-07 09:49:03 +00:00
|
|
|
(void)path;
|
2019-09-02 05:36:22 +00:00
|
|
|
|
|
|
|
switch (name) {
|
|
|
|
case _PC_PATH_MAX:
|
|
|
|
return PATH_MAX;
|
2019-11-16 08:35:48 +00:00
|
|
|
case _PC_PIPE_BUF:
|
|
|
|
return PIPE_BUF;
|
2019-09-02 05:36:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-23 19:52:02 +00:00
|
|
|
ASSERT_NOT_REACHED();
|
2018-11-17 14:56:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _exit(int status)
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
syscall(SC_exit, status);
|
2019-04-23 19:52:02 +00:00
|
|
|
ASSERT_NOT_REACHED();
|
2018-11-17 14:56:09 +00:00
|
|
|
}
|
|
|
|
|
2018-12-19 23:39:29 +00:00
|
|
|
void sync()
|
|
|
|
{
|
2018-12-21 02:02:06 +00:00
|
|
|
syscall(SC_sync);
|
2018-12-19 23:39:29 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 05:26:01 +00:00
|
|
|
int set_process_icon(int icon_id)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_set_process_icon, icon_id);
|
2019-03-08 11:22:55 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-02-26 11:57:02 +00:00
|
|
|
char* getlogin()
|
|
|
|
{
|
2019-03-10 02:15:36 +00:00
|
|
|
static char __getlogin_buffer[256];
|
|
|
|
if (auto* passwd = getpwuid(getuid())) {
|
2020-04-13 09:58:00 +00:00
|
|
|
strncpy(__getlogin_buffer, passwd->pw_name, sizeof(__getlogin_buffer) - 1);
|
2020-01-08 15:01:51 +00:00
|
|
|
endpwent();
|
2019-03-10 02:15:36 +00:00
|
|
|
return __getlogin_buffer;
|
|
|
|
}
|
2020-01-08 15:01:51 +00:00
|
|
|
endpwent();
|
2019-03-10 02:15:36 +00:00
|
|
|
return nullptr;
|
2019-02-26 11:57:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-23 23:53:39 +00:00
|
|
|
int ftruncate(int fd, off_t length)
|
|
|
|
{
|
2019-04-08 23:10:00 +00:00
|
|
|
int rc = syscall(SC_ftruncate, fd, length);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2019-03-23 23:53:39 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 15:28:42 +00:00
|
|
|
int truncate(const char* path, off_t length)
|
|
|
|
{
|
|
|
|
int fd = open(path, O_RDWR | O_CREAT, 0666);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
int rc = ftruncate(fd, length);
|
|
|
|
int saved_errno = errno;
|
|
|
|
if (int close_rc = close(fd); close_rc < 0)
|
|
|
|
return close_rc;
|
|
|
|
errno = saved_errno;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2019-03-25 12:03:49 +00:00
|
|
|
int gettid()
|
|
|
|
{
|
2020-07-23 07:27:33 +00:00
|
|
|
int cached_tid = s_cached_tid;
|
|
|
|
if (!cached_tid) {
|
|
|
|
cached_tid = syscall(SC_gettid);
|
|
|
|
s_cached_tid = cached_tid;
|
|
|
|
}
|
|
|
|
return cached_tid;
|
2019-03-25 12:03:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int donate(int tid)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_donate, tid);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-05-17 12:32:53 +00:00
|
|
|
void sysbeep()
|
2019-05-15 19:40:41 +00:00
|
|
|
{
|
|
|
|
syscall(SC_beep);
|
|
|
|
}
|
|
|
|
|
2019-05-19 17:54:20 +00:00
|
|
|
int fsync(int fd)
|
|
|
|
{
|
|
|
|
UNUSED_PARAM(fd);
|
|
|
|
dbgprintf("FIXME: Implement fsync()\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2019-07-19 07:58:12 +00:00
|
|
|
|
2019-07-19 11:08:26 +00:00
|
|
|
int halt()
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_halt);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-07-19 07:58:12 +00:00
|
|
|
int reboot()
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_reboot);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
2019-07-21 07:59:17 +00:00
|
|
|
|
2020-04-06 08:55:08 +00:00
|
|
|
int mount(int source_fd, const char* target, const char* fs_type, int flags)
|
2019-08-02 13:18:47 +00:00
|
|
|
{
|
2020-04-06 08:55:08 +00:00
|
|
|
if (!target || !fs_type) {
|
2020-01-11 09:46:21 +00:00
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
2020-04-06 08:55:08 +00:00
|
|
|
|
2020-01-11 15:25:26 +00:00
|
|
|
Syscall::SC_mount_params params {
|
2020-04-06 08:55:08 +00:00
|
|
|
source_fd,
|
2020-01-11 15:25:26 +00:00
|
|
|
{ target, strlen(target) },
|
|
|
|
{ fs_type, strlen(fs_type) },
|
|
|
|
flags
|
|
|
|
};
|
2020-01-11 09:46:21 +00:00
|
|
|
int rc = syscall(SC_mount, ¶ms);
|
2019-08-02 13:18:47 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-08-11 13:56:39 +00:00
|
|
|
int umount(const char* mountpoint)
|
|
|
|
{
|
2020-01-09 11:41:15 +00:00
|
|
|
int rc = syscall(SC_umount, mountpoint, strlen(mountpoint));
|
2019-08-11 13:56:39 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2019-07-21 07:59:17 +00:00
|
|
|
void dump_backtrace()
|
|
|
|
{
|
|
|
|
syscall(SC_dump_backtrace);
|
|
|
|
}
|
2019-08-15 18:55:10 +00:00
|
|
|
|
|
|
|
int get_process_name(char* buffer, int buffer_size)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_get_process_name, buffer, buffer_size);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
2020-01-10 22:14:04 +00:00
|
|
|
|
2020-07-27 16:42:10 +00:00
|
|
|
int set_process_name(const char* name, size_t name_length)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_set_process_name, name, name_length);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
|
|
|
|
2020-01-10 22:14:04 +00:00
|
|
|
int chroot(const char* path)
|
2020-01-12 18:03:42 +00:00
|
|
|
{
|
|
|
|
return chroot_with_mount_flags(path, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int chroot_with_mount_flags(const char* path, int mount_flags)
|
2020-01-10 22:14:04 +00:00
|
|
|
{
|
|
|
|
if (!path) {
|
|
|
|
errno = EFAULT;
|
|
|
|
return -1;
|
|
|
|
}
|
2020-01-12 18:03:42 +00:00
|
|
|
int rc = syscall(SC_chroot, path, strlen(path), mount_flags);
|
2020-01-10 22:14:04 +00:00
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
2020-01-11 19:45:51 +00:00
|
|
|
|
|
|
|
int pledge(const char* promises, const char* execpromises)
|
|
|
|
{
|
|
|
|
Syscall::SC_pledge_params params {
|
|
|
|
{ promises, promises ? strlen(promises) : 0 },
|
|
|
|
{ execpromises, execpromises ? strlen(execpromises) : 0 }
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_pledge, ¶ms);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
2018-11-05 18:01:22 +00:00
|
|
|
}
|
2020-01-11 19:45:51 +00:00
|
|
|
|
Kernel: Add a basic implementation of unveil()
This syscall is a complement to pledge() and adds the same sort of
incremental relinquishing of capabilities for filesystem access.
The first call to unveil() will "drop a veil" on the process, and from
now on, only unveiled parts of the filesystem are visible to it.
Each call to unveil() specifies a path to either a directory or a file
along with permissions for that path. The permissions are a combination
of the following:
- r: Read access (like the "rpath" promise)
- w: Write access (like the "wpath" promise)
- x: Execute access
- c: Create/remove access (like the "cpath" promise)
Attempts to open a path that has not been unveiled with fail with
ENOENT. If the unveiled path lacks sufficient permissions, it will fail
with EACCES.
Like pledge(), subsequent calls to unveil() with the same path can only
remove permissions, not add them.
Once you call unveil(nullptr, nullptr), the veil is locked, and it's no
longer possible to unveil any more paths for the process, ever.
This concept comes from OpenBSD, and their implementation does various
things differently, I'm sure. This is just a first implementation for
SerenityOS, and we'll keep improving on it as we go. :^)
2020-01-20 21:12:04 +00:00
|
|
|
int unveil(const char* path, const char* permissions)
|
|
|
|
{
|
|
|
|
Syscall::SC_unveil_params params {
|
|
|
|
{ path, path ? strlen(path) : 0 },
|
|
|
|
{ permissions, permissions ? strlen(permissions) : 0 }
|
|
|
|
};
|
|
|
|
int rc = syscall(SC_unveil, ¶ms);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
2020-02-20 05:58:48 +00:00
|
|
|
|
2020-02-20 05:59:23 +00:00
|
|
|
ssize_t pread(int fd, void* buf, size_t count, off_t offset)
|
|
|
|
{
|
|
|
|
// FIXME: This is not thread safe and should be implemented in the kernel instead.
|
|
|
|
off_t old_offset = lseek(fd, 0, SEEK_CUR);
|
|
|
|
lseek(fd, offset, SEEK_SET);
|
|
|
|
ssize_t nread = read(fd, buf, count);
|
|
|
|
lseek(fd, old_offset, SEEK_SET);
|
|
|
|
return nread;
|
|
|
|
}
|
|
|
|
|
2020-02-20 05:58:48 +00:00
|
|
|
char* getpass(const char* prompt)
|
|
|
|
{
|
|
|
|
dbg() << "FIXME: getpass(\"" << prompt << "\")";
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
2020-07-14 20:41:59 +00:00
|
|
|
|
|
|
|
long sysconf(int name)
|
|
|
|
{
|
|
|
|
int rc = syscall(SC_sysconf, name);
|
|
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
|
|
}
|
2020-07-27 21:39:31 +00:00
|
|
|
|
|
|
|
int getpagesize()
|
|
|
|
{
|
|
|
|
return PAGE_SIZE;
|
|
|
|
}
|
2020-01-11 19:45:51 +00:00
|
|
|
}
|