2020-01-18 11:38:21 +03:00
|
|
|
/*
|
2021-02-08 17:45:40 +03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 11:38:21 +03:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-05-31 21:56:17 +03:00
|
|
|
#include <AK/Checked.h>
|
2020-02-16 04:01:42 +03:00
|
|
|
#include <AK/HashMap.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <AK/InlineLinkedList.h>
|
2020-02-16 04:01:42 +03:00
|
|
|
#include <AK/NonnullOwnPtrVector.h>
|
2020-08-02 05:04:56 +03:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
2019-09-27 15:19:07 +03:00
|
|
|
#include <AK/String.h>
|
2020-07-31 17:28:37 +03:00
|
|
|
#include <AK/Userspace.h>
|
2020-02-24 15:24:30 +03:00
|
|
|
#include <AK/WeakPtr.h>
|
2020-08-06 12:17:53 +03:00
|
|
|
#include <AK/Weakable.h>
|
2020-07-05 02:37:36 +03:00
|
|
|
#include <Kernel/API/Syscall.h>
|
2020-02-16 04:01:42 +03:00
|
|
|
#include <Kernel/FileSystem/InodeMetadata.h>
|
2020-02-16 03:50:16 +03:00
|
|
|
#include <Kernel/Forward.h>
|
2020-12-22 09:21:58 +03:00
|
|
|
#include <Kernel/FutexQueue.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <Kernel/Lock.h>
|
2020-08-15 22:13:19 +03:00
|
|
|
#include <Kernel/ProcessGroup.h>
|
2020-06-18 23:18:44 +03:00
|
|
|
#include <Kernel/StdLib.h>
|
2019-03-24 00:03:17 +03:00
|
|
|
#include <Kernel/Thread.h>
|
2020-12-09 07:18:45 +03:00
|
|
|
#include <Kernel/ThreadTracer.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <Kernel/UnixTypes.h>
|
2020-12-26 13:24:34 +03:00
|
|
|
#include <Kernel/UnveilNode.h>
|
2020-09-06 00:52:14 +03:00
|
|
|
#include <Kernel/VM/AllocationStrategy.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <Kernel/VM/RangeAllocator.h>
|
2021-02-08 17:45:40 +03:00
|
|
|
#include <Kernel/VM/Space.h>
|
2019-05-26 03:08:51 +03:00
|
|
|
#include <LibC/signal_numbers.h>
|
2021-01-31 17:10:45 +03:00
|
|
|
#include <LibELF/exec_elf.h>
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-06-06 18:46:41 +03:00
|
|
|
timeval kgettimeofday();
|
2019-03-13 15:13:23 +03:00
|
|
|
void kgettimeofday(timeval&);
|
|
|
|
|
2020-06-18 23:18:44 +03:00
|
|
|
#define ENUMERATE_PLEDGE_PROMISES \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(stdio) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(rpath) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(wpath) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(cpath) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(dpath) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(inet) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(id) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(proc) \
|
2021-01-12 00:30:57 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(ptrace) \
|
2020-06-18 23:18:44 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(exec) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(unix) \
|
2020-06-24 23:57:37 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(recvfd) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(sendfd) \
|
2020-06-18 23:18:44 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(fattr) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(tty) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(chown) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(chroot) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(thread) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(video) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(accept) \
|
|
|
|
__ENUMERATE_PLEDGE_PROMISE(settime) \
|
2020-05-26 13:49:35 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(sigaction) \
|
2021-01-29 20:50:27 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(setkeymap) \
|
2021-02-01 00:50:17 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(prot_exec) \
|
2021-02-21 03:08:48 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(map_fixed) \
|
2021-02-01 00:50:17 +03:00
|
|
|
__ENUMERATE_PLEDGE_PROMISE(getkeymap)
|
2020-01-11 22:48:43 +03:00
|
|
|
|
|
|
|
enum class Pledge : u32 {
|
|
|
|
#define __ENUMERATE_PLEDGE_PROMISE(x) x,
|
|
|
|
ENUMERATE_PLEDGE_PROMISES
|
|
|
|
#undef __ENUMERATE_PLEDGE_PROMISE
|
|
|
|
};
|
|
|
|
|
2020-01-21 21:28:29 +03:00
|
|
|
enum class VeilState {
|
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-21 00:12:04 +03:00
|
|
|
None,
|
2020-01-21 21:28:29 +03:00
|
|
|
Dropped,
|
|
|
|
Locked,
|
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-21 00:12:04 +03:00
|
|
|
};
|
|
|
|
|
2020-12-22 09:21:58 +03:00
|
|
|
typedef HashMap<FlatPtr, RefPtr<FutexQueue>> FutexQueues;
|
|
|
|
|
2021-02-08 17:45:40 +03:00
|
|
|
struct LoadResult;
|
|
|
|
|
2020-08-06 12:17:53 +03:00
|
|
|
class Process
|
|
|
|
: public RefCounted<Process>
|
|
|
|
, public InlineLinkedListNode<Process>
|
|
|
|
, public Weakable<Process> {
|
|
|
|
|
2020-04-22 12:54:58 +03:00
|
|
|
AK_MAKE_NONCOPYABLE(Process);
|
|
|
|
AK_MAKE_NONMOVABLE(Process);
|
|
|
|
|
2018-11-01 15:15:46 +03:00
|
|
|
friend class InlineLinkedListNode<Process>;
|
2019-03-24 00:03:17 +03:00
|
|
|
friend class Thread;
|
2020-11-06 11:09:51 +03:00
|
|
|
friend class CoreDump;
|
2019-05-28 12:53:16 +03:00
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
public:
|
2020-06-29 00:34:31 +03:00
|
|
|
inline static Process* current()
|
|
|
|
{
|
2021-01-27 00:16:07 +03:00
|
|
|
auto current_thread = Processor::current_thread();
|
2020-06-29 00:34:31 +03:00
|
|
|
return current_thread ? ¤t_thread->process() : nullptr;
|
|
|
|
}
|
2020-02-17 17:04:27 +03:00
|
|
|
|
2020-11-17 06:51:34 +03:00
|
|
|
template<typename EntryFunction>
|
2020-09-06 00:52:14 +03:00
|
|
|
static RefPtr<Process> create_kernel_process(RefPtr<Thread>& first_thread, String&& name, EntryFunction entry, u32 affinity = THREAD_AFFINITY_DEFAULT)
|
2020-11-17 06:51:34 +03:00
|
|
|
{
|
|
|
|
auto* entry_func = new EntryFunction(move(entry));
|
2020-11-30 02:05:27 +03:00
|
|
|
return create_kernel_process(
|
|
|
|
first_thread, move(name), [](void* data) {
|
|
|
|
EntryFunction* func = reinterpret_cast<EntryFunction*>(data);
|
|
|
|
(*func)();
|
|
|
|
delete func;
|
|
|
|
},
|
|
|
|
entry_func, affinity);
|
2020-11-17 06:51:34 +03:00
|
|
|
}
|
|
|
|
|
2020-09-06 00:52:14 +03:00
|
|
|
static RefPtr<Process> create_kernel_process(RefPtr<Thread>& first_thread, String&& name, void (*entry)(void*), void* entry_data = nullptr, u32 affinity = THREAD_AFFINITY_DEFAULT);
|
2020-09-27 17:53:35 +03:00
|
|
|
static RefPtr<Process> create_user_process(RefPtr<Thread>& first_thread, const String& path, uid_t, gid_t, ProcessID ppid, int& error, Vector<String>&& arguments = Vector<String>(), Vector<String>&& environment = Vector<String>(), TTY* = nullptr);
|
2018-11-01 15:15:46 +03:00
|
|
|
~Process();
|
2018-10-23 13:44:46 +03:00
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
static Vector<ProcessID> all_pids();
|
2020-08-02 05:04:56 +03:00
|
|
|
static AK::NonnullRefPtrVector<Process> all_processes();
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2020-11-17 06:51:34 +03:00
|
|
|
template<typename EntryFunction>
|
|
|
|
RefPtr<Thread> create_kernel_thread(EntryFunction entry, u32 priority, const String& name, u32 affinity = THREAD_AFFINITY_DEFAULT, bool joinable = true)
|
|
|
|
{
|
|
|
|
auto* entry_func = new EntryFunction(move(entry));
|
|
|
|
return create_kernel_thread([](void* data) {
|
|
|
|
EntryFunction* func = reinterpret_cast<EntryFunction*>(data);
|
|
|
|
(*func)();
|
|
|
|
delete func;
|
2020-11-30 02:05:27 +03:00
|
|
|
},
|
|
|
|
priority, name, affinity, joinable);
|
2020-11-17 06:51:34 +03:00
|
|
|
}
|
|
|
|
RefPtr<Thread> create_kernel_thread(void (*entry)(void*), void* entry_data, u32 priority, const String& name, u32 affinity = THREAD_AFFINITY_DEFAULT, bool joinable = true);
|
2020-06-29 00:34:31 +03:00
|
|
|
|
2019-12-11 22:36:56 +03:00
|
|
|
bool is_profiling() const { return m_profiling; }
|
|
|
|
void set_profiling(bool profiling) { m_profiling = profiling; }
|
2020-11-06 11:09:51 +03:00
|
|
|
bool should_core_dump() const { return m_should_dump_core; }
|
|
|
|
void set_dump_core(bool dump_core) { m_should_dump_core = dump_core; }
|
2019-12-11 22:36:56 +03:00
|
|
|
|
2019-03-24 03:20:35 +03:00
|
|
|
bool is_dead() const { return m_dead; }
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2021-01-04 02:58:50 +03:00
|
|
|
bool is_stopped() const { return m_is_stopped; }
|
|
|
|
bool set_stopped(bool stopped) { return m_is_stopped.exchange(stopped); }
|
2020-12-09 07:18:45 +03:00
|
|
|
|
2020-09-10 18:46:24 +03:00
|
|
|
bool is_kernel_process() const { return m_is_kernel_process; }
|
|
|
|
bool is_user_process() const { return !m_is_kernel_process; }
|
2018-11-07 23:19:47 +03:00
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
static RefPtr<Process> from_pid(ProcessID);
|
2020-08-08 23:04:20 +03:00
|
|
|
static SessionID get_sid_from_pgid(ProcessGroupID pgid);
|
2018-10-16 12:01:38 +03:00
|
|
|
|
|
|
|
const String& name() const { return m_name; }
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID pid() const { return m_pid; }
|
2020-08-08 23:04:20 +03:00
|
|
|
SessionID sid() const { return m_sid; }
|
|
|
|
bool is_session_leader() const { return m_sid.value() == m_pid.value(); }
|
2020-08-15 22:13:19 +03:00
|
|
|
ProcessGroupID pgid() const { return m_pg ? m_pg->pgid() : 0; }
|
|
|
|
bool is_group_leader() const { return pgid().value() == m_pid.value(); }
|
2020-09-07 12:53:54 +03:00
|
|
|
Span<const gid_t> extra_gids() const { return m_extra_gids; }
|
2018-11-05 17:04:19 +03:00
|
|
|
uid_t euid() const { return m_euid; }
|
|
|
|
gid_t egid() const { return m_egid; }
|
2020-06-17 15:58:00 +03:00
|
|
|
uid_t uid() const { return m_uid; }
|
|
|
|
gid_t gid() const { return m_gid; }
|
|
|
|
uid_t suid() const { return m_suid; }
|
|
|
|
gid_t sgid() const { return m_sgid; }
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID ppid() const { return m_ppid; }
|
2018-10-25 11:15:13 +03:00
|
|
|
|
2020-12-25 20:27:42 +03:00
|
|
|
bool is_dumpable() const { return m_dumpable; }
|
|
|
|
void set_dumpable(bool dumpable) { m_dumpable = dumpable; }
|
|
|
|
|
2019-02-22 04:39:13 +03:00
|
|
|
mode_t umask() const { return m_umask; }
|
|
|
|
|
2019-02-27 14:32:53 +03:00
|
|
|
bool in_group(gid_t) const;
|
|
|
|
|
2020-01-07 17:53:42 +03:00
|
|
|
RefPtr<FileDescription> file_description(int fd) const;
|
2019-09-28 23:00:38 +03:00
|
|
|
int fd_flags(int fd) const;
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
template<typename Callback>
|
|
|
|
static void for_each(Callback);
|
|
|
|
template<typename Callback>
|
2020-08-08 23:04:20 +03:00
|
|
|
static void for_each_in_pgrp(ProcessGroupID, Callback);
|
2019-05-28 12:53:16 +03:00
|
|
|
template<typename Callback>
|
|
|
|
void for_each_child(Callback);
|
|
|
|
template<typename Callback>
|
2021-01-23 09:24:33 +03:00
|
|
|
IterationDecision for_each_thread(Callback) const;
|
2018-11-02 16:06:48 +03:00
|
|
|
|
2019-01-30 20:26:19 +03:00
|
|
|
void die();
|
2020-12-09 07:18:45 +03:00
|
|
|
void finalize();
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2020-12-09 07:18:45 +03:00
|
|
|
ThreadTracer* tracer() { return m_tracer.ptr(); }
|
|
|
|
bool is_traced() const { return !!m_tracer; }
|
|
|
|
void start_tracing_from(ProcessID tracer);
|
|
|
|
void stop_tracing();
|
|
|
|
void tracer_trap(Thread&, const RegisterState&);
|
|
|
|
|
2019-11-10 00:18:16 +03:00
|
|
|
int sys$yield();
|
|
|
|
int sys$sync();
|
|
|
|
int sys$beep();
|
2020-08-01 12:37:40 +03:00
|
|
|
int sys$get_process_name(Userspace<char*> buffer, size_t buffer_size);
|
|
|
|
int sys$set_process_name(Userspace<const char*> user_name, size_t user_name_length);
|
|
|
|
int sys$watch_file(Userspace<const char*> path, size_t path_length);
|
2019-07-21 20:45:31 +03:00
|
|
|
int sys$dbgputch(u8);
|
2020-08-01 12:37:40 +03:00
|
|
|
int sys$dbgputstr(Userspace<const u8*>, int length);
|
2019-07-21 10:59:17 +03:00
|
|
|
int sys$dump_backtrace();
|
2020-08-09 02:08:24 +03:00
|
|
|
pid_t sys$gettid();
|
|
|
|
int sys$donate(pid_t tid);
|
2019-04-09 02:10:00 +03:00
|
|
|
int sys$ftruncate(int fd, off_t);
|
2018-11-02 14:56:51 +03:00
|
|
|
pid_t sys$setsid();
|
|
|
|
pid_t sys$getsid(pid_t);
|
|
|
|
int sys$setpgid(pid_t pid, pid_t pgid);
|
|
|
|
pid_t sys$getpgrp();
|
|
|
|
pid_t sys$getpgid(pid_t);
|
2018-10-16 12:01:38 +03:00
|
|
|
uid_t sys$getuid();
|
2018-10-22 14:55:11 +03:00
|
|
|
gid_t sys$getgid();
|
2018-11-05 17:04:19 +03:00
|
|
|
uid_t sys$geteuid();
|
|
|
|
gid_t sys$getegid();
|
2018-10-22 14:55:11 +03:00
|
|
|
pid_t sys$getpid();
|
2018-11-06 15:33:06 +03:00
|
|
|
pid_t sys$getppid();
|
2020-08-09 22:34:08 +03:00
|
|
|
int sys$getresuid(Userspace<uid_t*>, Userspace<uid_t*>, Userspace<uid_t*>);
|
2020-08-09 22:37:47 +03:00
|
|
|
int sys$getresgid(Userspace<gid_t*>, Userspace<gid_t*>, Userspace<gid_t*>);
|
2018-11-06 15:40:23 +03:00
|
|
|
mode_t sys$umask(mode_t);
|
2020-08-05 08:16:59 +03:00
|
|
|
int sys$open(Userspace<const Syscall::SC_open_params*>);
|
2018-10-16 12:01:38 +03:00
|
|
|
int sys$close(int fd);
|
2020-07-31 17:28:37 +03:00
|
|
|
ssize_t sys$read(int fd, Userspace<u8*>, ssize_t);
|
2021-02-12 05:10:03 +03:00
|
|
|
ssize_t sys$readv(int fd, Userspace<const struct iovec*> iov, int iov_count);
|
2019-07-03 22:17:35 +03:00
|
|
|
ssize_t sys$write(int fd, const u8*, ssize_t);
|
2020-09-15 21:18:44 +03:00
|
|
|
ssize_t sys$writev(int fd, Userspace<const struct iovec*> iov, int iov_count);
|
2020-08-10 00:57:50 +03:00
|
|
|
int sys$fstat(int fd, Userspace<stat*>);
|
2020-07-31 17:28:37 +03:00
|
|
|
int sys$stat(Userspace<const Syscall::SC_stat_params*>);
|
2018-10-31 19:50:43 +03:00
|
|
|
int sys$lseek(int fd, off_t, int whence);
|
2020-08-08 18:32:34 +03:00
|
|
|
int sys$kill(pid_t pid_or_pgid, int sig);
|
2019-02-15 14:30:48 +03:00
|
|
|
[[noreturn]] void sys$exit(int status);
|
2020-02-16 02:15:37 +03:00
|
|
|
int sys$sigreturn(RegisterState& registers);
|
2020-08-05 08:29:28 +03:00
|
|
|
pid_t sys$waitid(Userspace<const Syscall::SC_waitid_params*>);
|
2021-02-25 18:18:36 +03:00
|
|
|
FlatPtr sys$mmap(Userspace<const Syscall::SC_mmap_params*>);
|
|
|
|
FlatPtr sys$mremap(Userspace<const Syscall::SC_mremap_params*>);
|
2018-10-24 10:48:24 +03:00
|
|
|
int sys$munmap(void*, size_t size);
|
2020-08-05 08:38:00 +03:00
|
|
|
int sys$set_mmap_name(Userspace<const Syscall::SC_set_mmap_name_params*>);
|
2019-08-12 20:33:24 +03:00
|
|
|
int sys$mprotect(void*, size_t, int prot);
|
2019-12-09 21:12:38 +03:00
|
|
|
int sys$madvise(void*, size_t, int advice);
|
2021-02-02 21:56:11 +03:00
|
|
|
int sys$msyscall(void*);
|
2019-12-29 15:16:53 +03:00
|
|
|
int sys$purge(int mode);
|
2019-01-16 01:12:20 +03:00
|
|
|
int sys$select(const Syscall::SC_select_params*);
|
2020-08-05 09:15:42 +03:00
|
|
|
int sys$poll(Userspace<const Syscall::SC_poll_params*>);
|
2019-02-25 23:19:57 +03:00
|
|
|
ssize_t sys$get_dir_entries(int fd, void*, ssize_t);
|
2021-01-16 17:48:56 +03:00
|
|
|
int sys$getcwd(Userspace<char*>, size_t);
|
2020-07-31 17:34:47 +03:00
|
|
|
int sys$chdir(Userspace<const char*>, size_t);
|
2019-09-12 02:18:25 +03:00
|
|
|
int sys$fchdir(int fd);
|
Kernel+LibC: Add adjtime(2)
Most systems (Linux, OpenBSD) adjust 0.5 ms per second, or 0.5 us per
1 ms tick. That is, the clock is sped up or slowed down by at most
0.05%. This means adjusting the clock by 1 s takes 2000 s, and the
clock an be adjusted by at most 1.8 s per hour.
FreeBSD adjusts 5 ms per second if the remaining time adjustment is
>= 1 s (0.5%) , else it adjusts by 0.5 ms as well. This allows adjusting
by (almost) 18 s per hour.
Since Serenity OS can lose more than 22 s per hour (#3429), this
picks an adjustment rate up to 1% for now. This allows us to
adjust up to 36s per hour, which should be sufficient to adjust
the clock fast enough to keep up with how much time the clock
currently loses. Once we have a fancier NTP implementation that can
adjust tick rate in addition to offset, we can think about reducing
this.
adjtime is a bit old-school and most current POSIX-y OSs instead
implement adjtimex/ntp_adjtime, but a) we have to start somewhere
b) ntp_adjtime() is a fairly gnarly API. OpenBSD's adjfreq looks
like it might provide similar functionality with a nicer API. But
before worrying about all this, it's probably a good idea to get
to a place where the kernel APIs are (barely) good enough so that
we can write an ntp service, and once we have that we should write
a way to automatically evaluate how well it keeps the time adjusted,
and only then should we add improvements ot the adjustment mechanism.
2020-11-06 00:00:51 +03:00
|
|
|
int sys$adjtime(Userspace<const timeval*>, Userspace<timeval*>);
|
2020-08-05 08:18:51 +03:00
|
|
|
int sys$gettimeofday(Userspace<timeval*>);
|
2020-08-09 22:42:51 +03:00
|
|
|
int sys$clock_gettime(clockid_t, Userspace<timespec*>);
|
2020-08-09 22:48:49 +03:00
|
|
|
int sys$clock_settime(clockid_t, Userspace<const timespec*>);
|
2020-08-05 08:24:45 +03:00
|
|
|
int sys$clock_nanosleep(Userspace<const Syscall::SC_clock_nanosleep_params*>);
|
2020-08-09 22:51:41 +03:00
|
|
|
int sys$gethostname(Userspace<char*>, ssize_t);
|
2020-08-09 22:53:12 +03:00
|
|
|
int sys$sethostname(Userspace<const char*>, ssize_t);
|
2020-08-09 23:02:27 +03:00
|
|
|
int sys$uname(Userspace<utsname*>);
|
2020-08-05 08:32:19 +03:00
|
|
|
int sys$readlink(Userspace<const Syscall::SC_readlink_params*>);
|
2020-08-04 17:27:52 +03:00
|
|
|
int sys$ttyname(int fd, Userspace<char*>, size_t);
|
|
|
|
int sys$ptsname(int fd, Userspace<char*>, size_t);
|
2020-02-16 02:15:37 +03:00
|
|
|
pid_t sys$fork(RegisterState&);
|
2020-08-09 22:11:13 +03:00
|
|
|
int sys$execve(Userspace<const Syscall::SC_execve_params*>);
|
2020-08-15 11:54:00 +03:00
|
|
|
int sys$dup2(int old_fd, int new_fd);
|
2019-01-23 08:53:01 +03:00
|
|
|
int sys$sigaction(int signum, const sigaction* act, sigaction* old_act);
|
2020-08-10 00:58:31 +03:00
|
|
|
int sys$sigprocmask(int how, Userspace<const sigset_t*> set, Userspace<sigset_t*> old_set);
|
2020-08-10 00:58:50 +03:00
|
|
|
int sys$sigpending(Userspace<sigset_t*>);
|
2020-08-09 22:20:04 +03:00
|
|
|
int sys$getgroups(ssize_t, Userspace<gid_t*>);
|
2020-08-09 22:17:12 +03:00
|
|
|
int sys$setgroups(ssize_t, Userspace<const gid_t*>);
|
2019-08-05 15:29:05 +03:00
|
|
|
int sys$pipe(int pipefd[2], int flags);
|
2020-08-08 18:32:34 +03:00
|
|
|
int sys$killpg(pid_t pgrp, int sig);
|
2020-06-17 15:58:00 +03:00
|
|
|
int sys$seteuid(uid_t);
|
|
|
|
int sys$setegid(gid_t);
|
2018-11-11 02:20:53 +03:00
|
|
|
int sys$setuid(uid_t);
|
2020-06-17 15:58:00 +03:00
|
|
|
int sys$setgid(gid_t);
|
|
|
|
int sys$setresuid(uid_t, uid_t, uid_t);
|
|
|
|
int sys$setresgid(gid_t, gid_t, gid_t);
|
2018-11-11 02:20:53 +03:00
|
|
|
unsigned sys$alarm(unsigned seconds);
|
2020-08-01 20:38:31 +03:00
|
|
|
int sys$access(Userspace<const char*> pathname, size_t path_length, int mode);
|
2019-07-03 22:17:35 +03:00
|
|
|
int sys$fcntl(int fd, int cmd, u32 extra_arg);
|
2020-05-23 14:17:58 +03:00
|
|
|
int sys$ioctl(int fd, unsigned request, FlatPtr arg);
|
2020-08-01 20:38:31 +03:00
|
|
|
int sys$mkdir(Userspace<const char*> pathname, size_t path_length, mode_t mode);
|
2020-08-09 22:26:56 +03:00
|
|
|
clock_t sys$times(Userspace<tms*>);
|
2020-07-31 17:38:47 +03:00
|
|
|
int sys$utime(Userspace<const char*> pathname, size_t path_length, Userspace<const struct utimbuf*>);
|
2020-08-03 19:40:28 +03:00
|
|
|
int sys$link(Userspace<const Syscall::SC_link_params*>);
|
2020-08-10 01:02:04 +03:00
|
|
|
int sys$unlink(Userspace<const char*> pathname, size_t path_length);
|
2020-08-03 19:40:28 +03:00
|
|
|
int sys$symlink(Userspace<const Syscall::SC_symlink_params*>);
|
2020-08-01 20:38:31 +03:00
|
|
|
int sys$rmdir(Userspace<const char*> pathname, size_t path_length);
|
2020-08-07 06:49:16 +03:00
|
|
|
int sys$mount(Userspace<const Syscall::SC_mount_params*>);
|
2020-08-10 01:08:07 +03:00
|
|
|
int sys$umount(Userspace<const char*> mountpoint, size_t mountpoint_length);
|
2020-08-10 01:09:10 +03:00
|
|
|
int sys$chmod(Userspace<const char*> pathname, size_t path_length, mode_t);
|
2019-03-01 12:39:19 +03:00
|
|
|
int sys$fchmod(int fd, mode_t);
|
2020-08-07 06:52:24 +03:00
|
|
|
int sys$chown(Userspace<const Syscall::SC_chown_params*>);
|
2019-06-01 21:31:36 +03:00
|
|
|
int sys$fchown(int fd, uid_t, gid_t);
|
2019-02-14 16:17:38 +03:00
|
|
|
int sys$socket(int domain, int type, int protocol);
|
2020-08-10 01:13:43 +03:00
|
|
|
int sys$bind(int sockfd, Userspace<const sockaddr*> addr, socklen_t);
|
2019-02-14 16:17:38 +03:00
|
|
|
int sys$listen(int sockfd, int backlog);
|
2020-08-10 01:23:13 +03:00
|
|
|
int sys$accept(int sockfd, Userspace<sockaddr*>, Userspace<socklen_t*>);
|
2020-08-10 01:25:53 +03:00
|
|
|
int sys$connect(int sockfd, Userspace<const sockaddr*>, socklen_t);
|
2020-02-08 02:52:33 +03:00
|
|
|
int sys$shutdown(int sockfd, int how);
|
2020-09-16 18:45:00 +03:00
|
|
|
ssize_t sys$sendmsg(int sockfd, Userspace<const struct msghdr*>, int flags);
|
|
|
|
ssize_t sys$recvmsg(int sockfd, Userspace<struct msghdr*>, int flags);
|
2020-08-07 12:29:05 +03:00
|
|
|
int sys$getsockopt(Userspace<const Syscall::SC_getsockopt_params*>);
|
2020-08-07 10:18:20 +03:00
|
|
|
int sys$setsockopt(Userspace<const Syscall::SC_setsockopt_params*>);
|
2020-08-07 10:03:37 +03:00
|
|
|
int sys$getsockname(Userspace<const Syscall::SC_getsockname_params*>);
|
2020-08-07 10:00:17 +03:00
|
|
|
int sys$getpeername(Userspace<const Syscall::SC_getpeername_params*>);
|
2020-08-02 04:06:29 +03:00
|
|
|
int sys$sched_setparam(pid_t pid, Userspace<const struct sched_param*>);
|
2020-08-02 03:55:28 +03:00
|
|
|
int sys$sched_getparam(pid_t pid, Userspace<struct sched_param*>);
|
2020-08-05 10:11:56 +03:00
|
|
|
int sys$create_thread(void* (*)(void*), Userspace<const Syscall::SC_create_thread_params*>);
|
2020-08-10 01:45:51 +03:00
|
|
|
void sys$exit_thread(Userspace<void*>);
|
2020-08-10 01:45:39 +03:00
|
|
|
int sys$join_thread(pid_t tid, Userspace<void**> exit_value);
|
2020-08-09 02:08:24 +03:00
|
|
|
int sys$detach_thread(pid_t tid);
|
2020-08-10 01:27:23 +03:00
|
|
|
int sys$set_thread_name(pid_t tid, Userspace<const char*> buffer, size_t buffer_size);
|
2020-08-10 01:29:55 +03:00
|
|
|
int sys$get_thread_name(pid_t tid, Userspace<char*> buffer, size_t buffer_size);
|
2020-08-05 10:05:08 +03:00
|
|
|
int sys$rename(Userspace<const Syscall::SC_rename_params*>);
|
2020-08-05 10:02:19 +03:00
|
|
|
int sys$mknod(Userspace<const Syscall::SC_mknod_params*>);
|
2019-07-19 14:08:26 +03:00
|
|
|
int sys$halt();
|
2019-07-19 10:58:12 +03:00
|
|
|
int sys$reboot();
|
2020-08-07 12:37:39 +03:00
|
|
|
int sys$realpath(Userspace<const Syscall::SC_realpath_params*>);
|
2020-08-10 01:35:06 +03:00
|
|
|
ssize_t sys$getrandom(Userspace<void*>, size_t, unsigned int);
|
2021-01-30 23:35:54 +03:00
|
|
|
int sys$getkeymap(Userspace<const Syscall::SC_getkeymap_params*>);
|
2020-08-02 02:34:01 +03:00
|
|
|
int sys$setkeymap(Userspace<const Syscall::SC_setkeymap_params*>);
|
2020-08-10 01:36:41 +03:00
|
|
|
int sys$module_load(Userspace<const char*> path, size_t path_length);
|
2020-08-10 01:37:45 +03:00
|
|
|
int sys$module_unload(Userspace<const char*> name, size_t name_length);
|
2019-12-11 22:36:56 +03:00
|
|
|
int sys$profiling_enable(pid_t);
|
|
|
|
int sys$profiling_disable(pid_t);
|
2020-08-05 09:53:23 +03:00
|
|
|
int sys$futex(Userspace<const Syscall::SC_futex_params*>);
|
2020-08-10 01:39:05 +03:00
|
|
|
int sys$chroot(Userspace<const char*> path, size_t path_length, int mount_flags);
|
2020-08-02 02:17:45 +03:00
|
|
|
int sys$pledge(Userspace<const Syscall::SC_pledge_params*>);
|
2020-08-02 02:12:09 +03:00
|
|
|
int sys$unveil(Userspace<const Syscall::SC_unveil_params*>);
|
2020-03-08 12:36:51 +03:00
|
|
|
int sys$perf_event(int type, FlatPtr arg1, FlatPtr arg2);
|
2020-03-16 21:06:33 +03:00
|
|
|
int sys$get_stack_bounds(FlatPtr* stack_base, size_t* stack_size);
|
2020-08-02 01:25:19 +03:00
|
|
|
int sys$ptrace(Userspace<const Syscall::SC_ptrace_params*>);
|
2020-06-24 23:57:37 +03:00
|
|
|
int sys$sendfd(int sockfd, int fd);
|
2021-02-14 12:38:22 +03:00
|
|
|
int sys$recvfd(int sockfd, int options);
|
2020-07-14 23:41:59 +03:00
|
|
|
long sys$sysconf(int name);
|
2020-08-08 18:32:34 +03:00
|
|
|
int sys$disown(ProcessID);
|
2021-02-25 18:18:36 +03:00
|
|
|
FlatPtr sys$allocate_tls(size_t);
|
2020-12-25 20:27:42 +03:00
|
|
|
int sys$prctl(int option, FlatPtr arg1, FlatPtr arg2);
|
2020-12-30 17:19:57 +03:00
|
|
|
int sys$set_coredump_metadata(Userspace<const Syscall::SC_set_coredump_metadata_params*>);
|
2021-01-04 23:26:32 +03:00
|
|
|
void sys$abort();
|
2021-01-15 13:28:07 +03:00
|
|
|
int sys$anon_create(size_t, int options);
|
2019-02-16 14:13:43 +03:00
|
|
|
|
2020-01-27 23:11:36 +03:00
|
|
|
template<bool sockname, typename Params>
|
|
|
|
int get_sock_or_peer_name(const Params&);
|
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
static void initialize();
|
|
|
|
|
2020-05-06 22:11:38 +03:00
|
|
|
[[noreturn]] void crash(int signal, u32 eip, bool out_of_memory = false);
|
2020-11-30 02:05:27 +03:00
|
|
|
[[nodiscard]] siginfo_t wait_info();
|
2018-10-18 01:26:30 +03:00
|
|
|
|
2018-10-30 17:33:37 +03:00
|
|
|
const TTY* tty() const { return m_tty; }
|
2020-02-16 04:01:42 +03:00
|
|
|
void set_tty(TTY*);
|
2018-10-30 17:33:37 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
u32 m_ticks_in_user { 0 };
|
|
|
|
u32 m_ticks_in_kernel { 0 };
|
2018-12-03 03:12:26 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
u32 m_ticks_in_user_for_dead_children { 0 };
|
|
|
|
u32 m_ticks_in_kernel_for_dead_children { 0 };
|
2018-12-03 03:12:26 +03:00
|
|
|
|
2019-05-30 21:23:50 +03:00
|
|
|
Custody& current_directory();
|
2020-12-27 02:54:13 +03:00
|
|
|
Custody* executable() { return m_executable.ptr(); }
|
|
|
|
const Custody* executable() const { return m_executable.ptr(); }
|
2018-10-28 14:20:25 +03:00
|
|
|
|
2021-01-15 22:21:03 +03:00
|
|
|
const Vector<String>& arguments() const { return m_arguments; };
|
|
|
|
const Vector<String>& environment() const { return m_environment; };
|
|
|
|
|
2019-03-07 00:30:13 +03:00
|
|
|
int number_of_open_file_descriptors() const;
|
2020-07-31 00:38:15 +03:00
|
|
|
int max_open_file_descriptors() const
|
|
|
|
{
|
|
|
|
return m_max_open_file_descriptors;
|
|
|
|
}
|
2018-11-01 15:39:28 +03:00
|
|
|
|
2021-02-18 10:51:06 +03:00
|
|
|
KResult exec(String path, Vector<String> arguments, Vector<String> environment, int recusion_depth = 0);
|
2018-11-02 22:41:58 +03:00
|
|
|
|
2021-01-10 22:07:08 +03:00
|
|
|
KResultOr<LoadResult> load(NonnullRefPtr<FileDescription> main_program_description, RefPtr<FileDescription> interpreter_description, const Elf32_Ehdr& main_program_header);
|
2020-10-10 12:13:21 +03:00
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
bool is_superuser() const
|
|
|
|
{
|
|
|
|
return m_euid == 0;
|
|
|
|
}
|
2018-11-07 03:38:51 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
void terminate_due_to_signal(u8 signal);
|
2020-05-16 13:33:48 +03:00
|
|
|
KResult send_signal(u8 signal, Process* sender);
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2021-01-03 23:46:38 +03:00
|
|
|
u8 termination_signal() const { return m_termination_signal; }
|
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
u16 thread_count() const
|
|
|
|
{
|
2020-11-30 02:05:27 +03:00
|
|
|
return m_thread_count.load(AK::MemoryOrder::memory_order_relaxed);
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
2019-12-22 13:35:02 +03:00
|
|
|
|
2021-02-09 01:01:53 +03:00
|
|
|
Lock& big_lock() { return m_big_lock; }
|
|
|
|
Lock& ptrace_lock() { return m_ptrace_lock; }
|
2019-04-01 21:02:05 +03:00
|
|
|
|
2020-01-11 01:14:04 +03:00
|
|
|
Custody& root_directory();
|
2020-01-12 21:42:01 +03:00
|
|
|
Custody& root_directory_relative_to_global_root();
|
2020-01-11 01:14:04 +03:00
|
|
|
void set_root_directory(const Custody&);
|
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
bool has_promises() const
|
|
|
|
{
|
2021-01-26 00:42:36 +03:00
|
|
|
return m_has_promises;
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
bool has_promised(Pledge pledge) const
|
|
|
|
{
|
|
|
|
return m_promises & (1u << (u32)pledge);
|
|
|
|
}
|
2020-01-11 22:48:43 +03:00
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
VeilState veil_state() const
|
|
|
|
{
|
|
|
|
return m_veil_state;
|
|
|
|
}
|
2020-12-26 13:24:34 +03:00
|
|
|
const UnveilNode& unveiled_paths() const
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
|
|
|
return m_unveiled_paths;
|
|
|
|
}
|
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-21 00:12:04 +03:00
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
bool wait_for_tracer_at_next_execve() const
|
|
|
|
{
|
|
|
|
return m_wait_for_tracer_at_next_execve;
|
|
|
|
}
|
|
|
|
void set_wait_for_tracer_at_next_execve(bool val)
|
|
|
|
{
|
|
|
|
m_wait_for_tracer_at_next_execve = val;
|
|
|
|
}
|
2020-04-07 18:23:37 +03:00
|
|
|
|
2020-08-02 01:25:19 +03:00
|
|
|
KResultOr<u32> peek_user_data(Userspace<const u32*> address);
|
|
|
|
KResult poke_user_data(Userspace<u32*> address, u32 data);
|
2020-04-07 18:23:37 +03:00
|
|
|
|
2020-12-09 05:04:05 +03:00
|
|
|
void disowned_by_waiter(Process& process);
|
2020-12-09 07:18:45 +03:00
|
|
|
void unblock_waiters(Thread::WaitBlocker::UnblockFlags, u8 signal = 0);
|
2020-11-30 02:05:27 +03:00
|
|
|
Thread::WaitBlockCondition& wait_block_condition() { return m_wait_block_condition; }
|
|
|
|
|
2021-01-20 22:10:13 +03:00
|
|
|
HashMap<String, String>& coredump_metadata() { return m_coredump_metadata; }
|
2020-12-30 17:19:57 +03:00
|
|
|
const HashMap<String, String>& coredump_metadata() const { return m_coredump_metadata; }
|
|
|
|
|
2021-01-28 10:41:18 +03:00
|
|
|
const NonnullRefPtrVector<Thread>& threads_for_coredump(Badge<CoreDump>) const { return m_threads_for_coredump; }
|
|
|
|
|
2021-01-11 11:52:18 +03:00
|
|
|
PerformanceEventBuffer* perf_events() { return m_perf_event_buffer; }
|
|
|
|
|
2021-02-08 17:45:40 +03:00
|
|
|
Space& space() { return *m_space; }
|
|
|
|
const Space& space() const { return *m_space; }
|
2021-02-02 21:56:11 +03:00
|
|
|
|
2021-02-14 02:53:53 +03:00
|
|
|
VirtualAddress signal_trampoline() const { return m_signal_trampoline; }
|
|
|
|
|
2018-10-16 12:01:38 +03:00
|
|
|
private:
|
2018-10-18 14:05:00 +03:00
|
|
|
friend class MemoryManager;
|
2018-11-08 00:15:02 +03:00
|
|
|
friend class Scheduler;
|
2018-11-08 16:35:30 +03:00
|
|
|
friend class Region;
|
2018-10-18 14:05:00 +03:00
|
|
|
|
2021-01-23 09:24:33 +03:00
|
|
|
bool add_thread(Thread&);
|
|
|
|
bool remove_thread(Thread&);
|
|
|
|
|
2021-01-11 11:52:18 +03:00
|
|
|
PerformanceEventBuffer& ensure_perf_events();
|
|
|
|
|
2020-09-27 17:53:35 +03:00
|
|
|
Process(RefPtr<Thread>& first_thread, const String& name, uid_t, gid_t, ProcessID ppid, bool is_kernel_process, RefPtr<Custody> cwd = nullptr, RefPtr<Custody> executable = nullptr, TTY* = nullptr, Process* fork_parent = nullptr);
|
2020-08-08 18:32:34 +03:00
|
|
|
static ProcessID allocate_pid();
|
2018-10-25 12:15:17 +03:00
|
|
|
|
Kernel: Allow process with multiple threads to call exec and exit
This allows a process wich has more than 1 thread to call exec, even
from a thread. This kills all the other threads, but it won't wait for
them to finish, just makes sure that they are not in a running/runable
state.
In the case where a thread does exec, the new program PID will be the
thread TID, to keep the PID == TID in the new process.
This introduces a new function inside the Process class,
kill_threads_except_self which is called on exit() too (exit with
multiple threads wasn't properly working either).
Inside the Lock class, there is the need for a new function,
clear_waiters, which removes all the waiters from the
Process::big_lock. This is needed since after a exit/exec, there should
be no other threads waiting for this lock, the threads should be simply
killed. Only queued threads should wait for this lock at this point,
since blocked threads are handled in set_should_die.
2020-02-18 15:28:28 +03:00
|
|
|
void kill_threads_except_self();
|
|
|
|
void kill_all_threads();
|
2021-01-11 20:53:45 +03:00
|
|
|
bool dump_core();
|
|
|
|
bool dump_perfcore();
|
Kernel: Allow process with multiple threads to call exec and exit
This allows a process wich has more than 1 thread to call exec, even
from a thread. This kills all the other threads, but it won't wait for
them to finish, just makes sure that they are not in a running/runable
state.
In the case where a thread does exec, the new program PID will be the
thread TID, to keep the PID == TID in the new process.
This introduces a new function inside the Process class,
kill_threads_except_self which is called on exit() too (exit with
multiple threads wasn't properly working either).
Inside the Lock class, there is the need for a new function,
clear_waiters, which removes all the waiters from the
Process::big_lock. This is needed since after a exit/exec, there should
be no other threads waiting for this lock, the threads should be simply
killed. Only queued threads should wait for this lock at this point,
since blocked threads are handled in set_should_die.
2020-02-18 15:28:28 +03:00
|
|
|
|
2021-02-18 10:51:06 +03:00
|
|
|
KResult do_exec(NonnullRefPtr<FileDescription> main_program_description, Vector<String> arguments, Vector<String> environment, RefPtr<FileDescription> interpreter_description, Thread*& new_main_thread, u32& prev_flags, const Elf32_Ehdr& main_program_header);
|
2020-09-12 06:11:07 +03:00
|
|
|
ssize_t do_write(FileDescription&, const UserOrKernelBuffer&, size_t);
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2021-01-10 22:07:08 +03:00
|
|
|
KResultOr<RefPtr<FileDescription>> find_elf_interpreter_for_executable(const String& path, const Elf32_Ehdr& elf_header, int nread, size_t file_size);
|
Kernel: Tighten up exec/do_exec and allow for PT_INTERP iterpreters
This patch changes how exec() figures out which program image to
actually load. Previously, we opened the path to our main executable in
find_shebang_interpreter_for_executable, read the first page (or less,
if the file was smaller) and then decided whether to recurse with the
interpreter instead. We then then re-opened the main executable in
do_exec.
However, since we now want to parse the ELF header and Program Headers
of an elf image before even doing any memory region work, we can change
the way this whole process works. We open the file and read (up to) the
first page in exec() itself, then pass just the page and the amount read
to find_shebang_interpreter_for_executable. Since we now have that page
and the FileDescription for the main executable handy, we can do a few
things. First, validate the ELF header and ELF program headers for any
shenanigans. ELF32 Little Endian i386 only, please. Second, we can grab
the PT_INTERP interpreter from any ET_DYN files, and open that guy right
away if it exists. Finally, we can pass the main executable's and
optionally the PT_INTERP interpreter's file descriptions down to do_exec
and not have to feel guilty about opening the file twice.
In do_exec, we now have a choice. Are we going to load the main
executable, or the interpreter? We could load both, but it'll be way
easier for the inital pass on the RTLD if we only load the interpreter.
Then it can load the main executable itself like any old shared object,
just, the one with main in it :). Later on we can load both of them
into memory and the RTLD can relocate itself before trying to do
anything. The way it's written now the RTLD will get dibs on its
requested virtual addresses being the actual virtual addresses.
2020-01-11 04:28:02 +03:00
|
|
|
|
2019-04-06 15:54:32 +03:00
|
|
|
int alloc_fd(int first_candidate_fd = 0);
|
2018-11-12 03:28:46 +03:00
|
|
|
|
2019-11-14 19:16:30 +03:00
|
|
|
KResult do_kill(Process&, int signal);
|
2020-08-09 02:08:24 +03:00
|
|
|
KResult do_killpg(ProcessGroupID pgrp, int signal);
|
2020-04-26 03:45:23 +03:00
|
|
|
KResult do_killall(int signal);
|
|
|
|
KResult do_killself(int signal);
|
2019-11-14 19:16:30 +03:00
|
|
|
|
2020-02-05 19:42:43 +03:00
|
|
|
KResultOr<siginfo_t> do_waitid(idtype_t idtype, int id, int options);
|
|
|
|
|
2020-01-11 14:47:47 +03:00
|
|
|
KResultOr<String> get_syscall_path_argument(const char* user_path, size_t path_length) const;
|
2020-07-31 17:28:37 +03:00
|
|
|
KResultOr<String> get_syscall_path_argument(Userspace<const char*> user_path, size_t path_length) const
|
|
|
|
{
|
2020-07-31 19:46:55 +03:00
|
|
|
return get_syscall_path_argument(user_path.unsafe_userspace_ptr(), path_length);
|
2020-07-31 17:28:37 +03:00
|
|
|
}
|
2020-01-11 14:47:47 +03:00
|
|
|
KResultOr<String> get_syscall_path_argument(const Syscall::StringArgument&) const;
|
2020-01-06 13:05:59 +03:00
|
|
|
|
2020-12-09 07:18:45 +03:00
|
|
|
bool has_tracee_thread(ProcessID tracer_pid);
|
2020-03-28 11:47:16 +03:00
|
|
|
|
2020-12-22 09:21:58 +03:00
|
|
|
void clear_futex_queues_on_exec();
|
|
|
|
|
2018-11-01 15:15:46 +03:00
|
|
|
Process* m_prev { nullptr };
|
|
|
|
Process* m_next { nullptr };
|
2018-10-16 12:01:38 +03:00
|
|
|
|
|
|
|
String m_name;
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2021-02-08 17:45:40 +03:00
|
|
|
OwnPtr<Space> m_space;
|
2021-02-14 02:53:53 +03:00
|
|
|
VirtualAddress m_signal_trampoline;
|
2021-02-08 17:45:40 +03:00
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID m_pid { 0 };
|
2020-08-08 23:04:20 +03:00
|
|
|
SessionID m_sid { 0 };
|
2020-08-15 22:13:19 +03:00
|
|
|
RefPtr<ProcessGroup> m_pg;
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2020-06-17 15:58:00 +03:00
|
|
|
uid_t m_euid { 0 };
|
|
|
|
gid_t m_egid { 0 };
|
|
|
|
uid_t m_uid { 0 };
|
|
|
|
gid_t m_gid { 0 };
|
|
|
|
uid_t m_suid { 0 };
|
|
|
|
gid_t m_sgid { 0 };
|
|
|
|
|
2020-12-09 07:18:45 +03:00
|
|
|
OwnPtr<ThreadTracer> m_tracer;
|
|
|
|
|
2019-08-08 15:56:50 +03:00
|
|
|
static const int m_max_open_file_descriptors { FD_SETSIZE };
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2020-07-31 00:50:31 +03:00
|
|
|
class FileDescriptionAndFlags {
|
|
|
|
public:
|
|
|
|
operator bool() const { return !!m_description; }
|
|
|
|
|
|
|
|
FileDescription* description() { return m_description; }
|
|
|
|
const FileDescription* description() const { return m_description; }
|
|
|
|
|
|
|
|
u32 flags() const { return m_flags; }
|
|
|
|
void set_flags(u32 flags) { m_flags = flags; }
|
|
|
|
|
2019-04-29 05:55:54 +03:00
|
|
|
void clear();
|
2020-07-31 00:50:31 +03:00
|
|
|
void set(NonnullRefPtr<FileDescription>&&, u32 flags = 0);
|
|
|
|
|
|
|
|
private:
|
|
|
|
RefPtr<FileDescription> m_description;
|
|
|
|
u32 m_flags { 0 };
|
2018-11-13 03:36:31 +03:00
|
|
|
};
|
2019-06-07 10:36:51 +03:00
|
|
|
Vector<FileDescriptionAndFlags> m_fds;
|
2018-11-07 20:30:59 +03:00
|
|
|
|
2019-07-03 22:17:35 +03:00
|
|
|
u8 m_termination_status { 0 };
|
|
|
|
u8 m_termination_signal { 0 };
|
2020-08-17 17:34:08 +03:00
|
|
|
Atomic<u32> m_thread_count { 0 };
|
2021-01-23 09:24:33 +03:00
|
|
|
mutable IntrusiveList<Thread, &Thread::m_process_thread_list_node> m_thread_list;
|
|
|
|
mutable RecursiveSpinLock m_thread_list_lock;
|
2018-10-18 14:05:00 +03:00
|
|
|
|
2020-09-10 18:46:24 +03:00
|
|
|
const bool m_is_kernel_process;
|
2019-08-08 15:56:50 +03:00
|
|
|
bool m_dead { false };
|
2019-12-11 22:36:56 +03:00
|
|
|
bool m_profiling { false };
|
2021-01-04 02:58:50 +03:00
|
|
|
Atomic<bool, AK::MemoryOrder::memory_order_relaxed> m_is_stopped { false };
|
2020-11-06 11:09:51 +03:00
|
|
|
bool m_should_dump_core { false };
|
2019-08-08 15:56:50 +03:00
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
RefPtr<Custody> m_executable;
|
|
|
|
RefPtr<Custody> m_cwd;
|
2020-01-11 01:14:04 +03:00
|
|
|
RefPtr<Custody> m_root_directory;
|
2020-01-12 21:42:01 +03:00
|
|
|
RefPtr<Custody> m_root_directory_relative_to_global_root;
|
2018-10-24 15:28:22 +03:00
|
|
|
|
2021-01-15 22:21:03 +03:00
|
|
|
Vector<String> m_arguments;
|
|
|
|
Vector<String> m_environment;
|
|
|
|
|
2019-11-06 18:52:54 +03:00
|
|
|
RefPtr<TTY> m_tty;
|
2018-10-30 15:59:29 +03:00
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID m_ppid { 0 };
|
2018-11-06 15:40:23 +03:00
|
|
|
mode_t m_umask { 022 };
|
2018-10-26 12:16:56 +03:00
|
|
|
|
2020-12-25 20:27:42 +03:00
|
|
|
bool m_dumpable { true };
|
|
|
|
|
2020-09-07 12:53:54 +03:00
|
|
|
Vector<gid_t> m_extra_gids;
|
2018-11-07 23:19:47 +03:00
|
|
|
|
2020-02-28 16:04:49 +03:00
|
|
|
WeakPtr<Region> m_master_tls_region;
|
2019-09-07 16:50:44 +03:00
|
|
|
size_t m_master_tls_size { 0 };
|
|
|
|
size_t m_master_tls_alignment { 0 };
|
|
|
|
|
2019-05-02 04:28:20 +03:00
|
|
|
Lock m_big_lock { "Process" };
|
2021-02-09 01:01:53 +03:00
|
|
|
Lock m_ptrace_lock { "ptrace" };
|
2019-06-07 12:30:07 +03:00
|
|
|
|
2020-12-02 01:44:52 +03:00
|
|
|
RefPtr<Timer> m_alarm_timer;
|
2019-07-29 08:26:01 +03:00
|
|
|
|
2021-01-26 00:42:36 +03:00
|
|
|
bool m_has_promises { false };
|
2020-01-11 22:48:43 +03:00
|
|
|
u32 m_promises { 0 };
|
2021-01-26 17:25:18 +03:00
|
|
|
bool m_has_execpromises { false };
|
2020-01-11 22:48:43 +03:00
|
|
|
u32 m_execpromises { 0 };
|
|
|
|
|
2020-01-21 21:28:29 +03:00
|
|
|
VeilState m_veil_state { VeilState::None };
|
2020-12-26 17:24:01 +03:00
|
|
|
UnveilNode m_unveiled_paths { "/", { .full_path = "/", .unveil_inherited_from_root = true } };
|
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-21 00:12:04 +03:00
|
|
|
|
2020-02-02 22:26:27 +03:00
|
|
|
OwnPtr<PerformanceEventBuffer> m_perf_event_buffer;
|
2020-02-17 15:29:49 +03:00
|
|
|
|
2020-12-22 09:21:58 +03:00
|
|
|
FutexQueues m_futex_queues;
|
|
|
|
SpinLock<u8> m_futex_lock;
|
|
|
|
|
2020-03-28 11:47:16 +03:00
|
|
|
// This member is used in the implementation of ptrace's PT_TRACEME flag.
|
|
|
|
// If it is set to true, the process will stop at the next execve syscall
|
|
|
|
// and wait for a tracer to attach.
|
|
|
|
bool m_wait_for_tracer_at_next_execve { false };
|
2020-11-30 02:05:27 +03:00
|
|
|
|
|
|
|
Thread::WaitBlockCondition m_wait_block_condition;
|
2020-12-30 17:19:57 +03:00
|
|
|
|
|
|
|
HashMap<String, String> m_coredump_metadata;
|
2021-01-15 22:29:13 +03:00
|
|
|
|
2021-01-28 10:41:18 +03:00
|
|
|
NonnullRefPtrVector<Thread> m_threads_for_coredump;
|
2018-10-16 12:01:38 +03:00
|
|
|
};
|
|
|
|
|
2018-11-08 00:15:02 +03:00
|
|
|
extern InlineLinkedList<Process>* g_processes;
|
2020-06-29 00:34:31 +03:00
|
|
|
extern RecursiveSpinLock g_processes_lock;
|
2018-11-08 18:09:05 +03:00
|
|
|
|
|
|
|
template<typename Callback>
|
|
|
|
inline void Process::for_each(Callback callback)
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_INTERRUPTS_DISABLED();
|
2020-06-29 00:34:31 +03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2018-11-08 18:09:05 +03:00
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
2019-06-07 18:13:23 +03:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2018-11-08 18:09:05 +03:00
|
|
|
break;
|
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-11 17:36:40 +03:00
|
|
|
template<typename Callback>
|
|
|
|
inline void Process::for_each_child(Callback callback)
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_INTERRUPTS_DISABLED();
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID my_pid = pid();
|
2020-06-29 00:34:31 +03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2018-11-11 17:36:40 +03:00
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
2020-08-09 02:08:24 +03:00
|
|
|
if (process->ppid() == my_pid || process->has_tracee_thread(m_pid)) {
|
2019-07-14 12:35:49 +03:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2018-11-11 17:36:40 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-08 18:09:05 +03:00
|
|
|
template<typename Callback>
|
2021-01-23 09:24:33 +03:00
|
|
|
inline IterationDecision Process::for_each_thread(Callback callback) const
|
2018-11-08 18:09:05 +03:00
|
|
|
{
|
2021-01-28 08:29:17 +03:00
|
|
|
ScopedSpinLock thread_list_lock(m_thread_list_lock);
|
|
|
|
for (auto& thread : m_thread_list) {
|
|
|
|
IterationDecision decision = callback(thread);
|
|
|
|
if (decision != IterationDecision::Continue)
|
|
|
|
return decision;
|
2019-11-26 23:25:11 +03:00
|
|
|
}
|
2021-01-23 09:24:33 +03:00
|
|
|
return IterationDecision::Continue;
|
2018-11-08 18:09:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Callback>
|
2020-08-08 23:04:20 +03:00
|
|
|
inline void Process::for_each_in_pgrp(ProcessGroupID pgid, Callback callback)
|
2018-11-08 18:09:05 +03:00
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_INTERRUPTS_DISABLED();
|
2020-06-29 00:34:31 +03:00
|
|
|
ScopedSpinLock lock(g_processes_lock);
|
2018-11-08 18:09:05 +03:00
|
|
|
for (auto* process = g_processes->head(); process;) {
|
|
|
|
auto* next_process = process->next();
|
2019-12-27 00:20:39 +03:00
|
|
|
if (!process->is_dead() && process->pgid() == pgid) {
|
2019-08-22 22:12:55 +03:00
|
|
|
if (callback(*process) == IterationDecision::Break)
|
2019-03-24 00:03:17 +03:00
|
|
|
break;
|
|
|
|
}
|
2018-11-08 18:09:05 +03:00
|
|
|
process = next_process;
|
|
|
|
}
|
|
|
|
}
|
2019-02-21 17:45:31 +03:00
|
|
|
|
2020-01-07 21:17:35 +03:00
|
|
|
inline bool InodeMetadata::may_read(const Process& process) const
|
2019-02-21 17:45:31 +03:00
|
|
|
{
|
2020-01-03 01:45:52 +03:00
|
|
|
return may_read(process.euid(), process.egid(), process.extra_gids());
|
2019-02-21 17:45:31 +03:00
|
|
|
}
|
|
|
|
|
2020-01-07 21:17:35 +03:00
|
|
|
inline bool InodeMetadata::may_write(const Process& process) const
|
2019-02-21 17:45:31 +03:00
|
|
|
{
|
2020-01-03 01:45:52 +03:00
|
|
|
return may_write(process.euid(), process.egid(), process.extra_gids());
|
2019-02-21 17:45:31 +03:00
|
|
|
}
|
|
|
|
|
2020-01-07 21:17:35 +03:00
|
|
|
inline bool InodeMetadata::may_execute(const Process& process) const
|
2019-02-21 17:45:31 +03:00
|
|
|
{
|
2020-01-03 01:45:52 +03:00
|
|
|
return may_execute(process.euid(), process.egid(), process.extra_gids());
|
2019-02-21 17:45:31 +03:00
|
|
|
}
|
2019-03-24 00:03:17 +03:00
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
inline ProcessID Thread::pid() const
|
2019-03-24 00:03:17 +03:00
|
|
|
{
|
2020-08-02 05:04:56 +03:00
|
|
|
return m_process->pid();
|
2019-03-24 00:03:17 +03:00
|
|
|
}
|
2019-07-08 19:58:19 +03:00
|
|
|
|
|
|
|
inline const LogStream& operator<<(const LogStream& stream, const Process& process)
|
|
|
|
{
|
2020-08-08 18:32:34 +03:00
|
|
|
return stream << process.name() << '(' << process.pid().value() << ')';
|
2019-07-08 19:58:19 +03:00
|
|
|
}
|
2019-12-30 22:10:00 +03:00
|
|
|
|
2020-06-29 00:34:31 +03:00
|
|
|
#define REQUIRE_NO_PROMISES \
|
|
|
|
do { \
|
|
|
|
if (Process::current()->has_promises()) { \
|
2021-01-09 02:11:15 +03:00
|
|
|
dbgln("Has made a promise"); \
|
2020-06-29 00:34:31 +03:00
|
|
|
Process::current()->crash(SIGABRT, 0); \
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED(); \
|
2020-06-29 00:34:31 +03:00
|
|
|
} \
|
2020-01-12 04:17:30 +03:00
|
|
|
} while (0)
|
|
|
|
|
2020-06-29 00:34:31 +03:00
|
|
|
#define REQUIRE_PROMISE(promise) \
|
|
|
|
do { \
|
|
|
|
if (Process::current()->has_promises() \
|
|
|
|
&& !Process::current()->has_promised(Pledge::promise)) { \
|
2021-01-09 02:11:15 +03:00
|
|
|
dbgln("Has not pledged {}", #promise); \
|
2021-01-20 22:10:13 +03:00
|
|
|
Process::current()->coredump_metadata().set( \
|
|
|
|
"pledge_violation", #promise); \
|
2020-06-29 00:34:31 +03:00
|
|
|
Process::current()->crash(SIGABRT, 0); \
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED(); \
|
2020-06-29 00:34:31 +03:00
|
|
|
} \
|
2020-01-12 04:17:30 +03:00
|
|
|
} while (0)
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|
2020-09-12 06:11:07 +03:00
|
|
|
|
|
|
|
inline static String copy_string_from_user(const Kernel::Syscall::StringArgument& string)
|
|
|
|
{
|
|
|
|
return copy_string_from_user(string.characters, string.length);
|
|
|
|
}
|
2021-01-09 02:11:15 +03:00
|
|
|
|
|
|
|
template<>
|
|
|
|
struct AK::Formatter<Kernel::Process> : AK::Formatter<String> {
|
|
|
|
void format(FormatBuilder& builder, const Kernel::Process& value)
|
|
|
|
{
|
|
|
|
return AK::Formatter<String>::format(builder, String::formatted("{}({})", value.name(), value.pid().value()));
|
|
|
|
}
|
|
|
|
};
|