2020-07-31 00:38:15 +03:00
|
|
|
/*
|
2021-01-31 01:38:57 +03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-07-31 00:38:15 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 00:38:15 +03:00
|
|
|
*/
|
|
|
|
|
2021-02-24 17:02:51 +03:00
|
|
|
#include <AK/Checked.h>
|
2020-07-31 00:38:15 +03:00
|
|
|
#include <AK/String.h>
|
|
|
|
#include <AK/StringBuilder.h>
|
2021-08-06 11:45:34 +03:00
|
|
|
#include <Kernel/Memory/MemoryManager.h>
|
2021-05-07 08:29:19 +03:00
|
|
|
#include <Kernel/PerformanceManager.h>
|
2020-07-31 00:38:15 +03:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$create_thread(void* (*entry)(void*), Userspace<const Syscall::SC_create_thread_params*> user_params)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
2021-09-05 18:51:37 +03:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-07-01 12:20:27 +03:00
|
|
|
unsigned detach_state = params.detach_state;
|
|
|
|
int schedule_priority = params.schedule_priority;
|
|
|
|
unsigned stack_size = params.stack_size;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-07-01 12:20:27 +03:00
|
|
|
auto user_sp = Checked<FlatPtr>((FlatPtr)params.stack_location);
|
2021-06-29 18:48:10 +03:00
|
|
|
user_sp += stack_size;
|
|
|
|
if (user_sp.has_overflow())
|
2021-03-01 15:49:16 +03:00
|
|
|
return EOVERFLOW;
|
2021-02-24 17:02:51 +03:00
|
|
|
|
2021-08-06 14:59:22 +03:00
|
|
|
if (!MM.validate_user_stack(this->address_space(), VirtualAddress(user_sp.value() - 4)))
|
2021-03-01 15:49:16 +03:00
|
|
|
return EFAULT;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
// FIXME: return EAGAIN if Thread::all_threads().size() is greater than PTHREAD_THREADS_MAX
|
|
|
|
|
|
|
|
int requested_thread_priority = schedule_priority;
|
|
|
|
if (requested_thread_priority < THREAD_PRIORITY_MIN || requested_thread_priority > THREAD_PRIORITY_MAX)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EINVAL;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
bool is_thread_joinable = (0 == detach_state);
|
|
|
|
|
|
|
|
// FIXME: Do something with guard pages?
|
|
|
|
|
2021-09-05 19:12:10 +03:00
|
|
|
auto thread = TRY(Thread::try_create(*this));
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-09-06 13:44:27 +03:00
|
|
|
// FIXME: Don't make a temporary String here
|
|
|
|
auto new_thread_name = KString::try_create(String::formatted("{} [{}]", m_name, thread->tid().value()));
|
|
|
|
if (!new_thread_name)
|
|
|
|
return ENOMEM;
|
|
|
|
|
2020-07-31 00:38:15 +03:00
|
|
|
// We know this thread is not the main_thread,
|
|
|
|
// So give it a unique name until the user calls $set_thread_name on it
|
|
|
|
// length + 4 to give space for our extra junk at the end
|
|
|
|
StringBuilder builder(m_name.length() + 4);
|
2021-09-06 13:44:27 +03:00
|
|
|
thread->set_name(new_thread_name.release_nonnull());
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-09-26 06:44:43 +03:00
|
|
|
if (!is_thread_joinable)
|
|
|
|
thread->detach();
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-06-26 20:57:16 +03:00
|
|
|
auto& regs = thread->regs();
|
2021-08-19 22:53:53 +03:00
|
|
|
regs.set_ip((FlatPtr)entry);
|
|
|
|
regs.set_flags(0x0202);
|
|
|
|
regs.set_sp(user_sp.value());
|
|
|
|
#if ARCH(X86_64)
|
2021-07-01 12:15:00 +03:00
|
|
|
regs.rdi = params.rdi;
|
|
|
|
regs.rsi = params.rsi;
|
|
|
|
regs.rdx = params.rdx;
|
|
|
|
regs.rcx = params.rcx;
|
2021-06-23 22:54:41 +03:00
|
|
|
#endif
|
2021-08-06 14:59:22 +03:00
|
|
|
regs.cr3 = address_space().page_directory().cr3();
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-09-05 19:12:10 +03:00
|
|
|
TRY(thread->make_thread_specific_region({}));
|
2020-10-26 05:22:59 +03:00
|
|
|
|
2021-05-07 08:29:19 +03:00
|
|
|
PerformanceManager::add_thread_created_event(*thread);
|
2021-04-26 00:42:36 +03:00
|
|
|
|
2021-08-22 02:49:22 +03:00
|
|
|
SpinlockLocker lock(g_scheduler_lock);
|
2020-10-26 05:22:59 +03:00
|
|
|
thread->set_priority(requested_thread_priority);
|
2020-07-31 00:38:15 +03:00
|
|
|
thread->set_state(Thread::State::Runnable);
|
2020-08-08 18:32:34 +03:00
|
|
|
return thread->tid().value();
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
2021-05-28 12:20:22 +03:00
|
|
|
void Process::sys$exit_thread(Userspace<void*> exit_value, Userspace<void*> stack_location, size_t stack_size)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
2021-02-10 23:17:30 +03:00
|
|
|
|
|
|
|
if (this->thread_count() == 1) {
|
|
|
|
// If this is the last thread, instead kill the process.
|
|
|
|
this->sys$exit(0);
|
|
|
|
}
|
|
|
|
|
2021-05-07 08:29:19 +03:00
|
|
|
auto current_thread = Thread::current();
|
2021-05-30 17:24:53 +03:00
|
|
|
current_thread->set_profiling_suppressed();
|
2021-05-07 08:29:19 +03:00
|
|
|
PerformanceManager::add_thread_exit_event(*current_thread);
|
2021-04-26 00:42:36 +03:00
|
|
|
|
2021-05-28 12:20:22 +03:00
|
|
|
if (stack_location) {
|
2021-08-06 14:59:22 +03:00
|
|
|
auto unmap_result = address_space().unmap_mmap_range(VirtualAddress { stack_location }, stack_size);
|
2021-05-28 12:20:22 +03:00
|
|
|
if (unmap_result.is_error())
|
|
|
|
dbgln("Failed to unmap thread stack, terminating thread anyway. Error code: {}", unmap_result.error());
|
|
|
|
}
|
|
|
|
|
2021-05-07 08:29:19 +03:00
|
|
|
current_thread->exit(reinterpret_cast<void*>(exit_value.ptr()));
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$detach_thread(pid_t tid)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
2020-09-27 17:53:35 +03:00
|
|
|
auto thread = Thread::from_tid(tid);
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!thread || thread->pid() != pid())
|
2021-03-01 15:49:16 +03:00
|
|
|
return ESRCH;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
if (!thread->is_joinable())
|
2021-03-01 15:49:16 +03:00
|
|
|
return EINVAL;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-09-26 06:44:43 +03:00
|
|
|
thread->detach();
|
2020-07-31 00:38:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$join_thread(pid_t tid, Userspace<void**> exit_value)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
|
|
|
|
2020-09-27 17:53:35 +03:00
|
|
|
auto thread = Thread::from_tid(tid);
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!thread || thread->pid() != pid())
|
2021-03-01 15:49:16 +03:00
|
|
|
return ESRCH;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
auto current_thread = Thread::current();
|
|
|
|
if (thread == current_thread)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EDEADLK;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
void* joinee_exit_value = nullptr;
|
|
|
|
|
|
|
|
// NOTE: pthread_join() cannot be interrupted by signals. Only by death.
|
|
|
|
for (;;) {
|
2020-09-26 06:44:43 +03:00
|
|
|
KResult try_join_result(KSuccess);
|
2021-01-11 02:29:28 +03:00
|
|
|
auto result = current_thread->block<Thread::JoinBlocker>({}, *thread, try_join_result, joinee_exit_value);
|
2020-09-26 06:44:43 +03:00
|
|
|
if (result == Thread::BlockResult::NotBlocked) {
|
|
|
|
if (try_join_result.is_error())
|
|
|
|
return try_join_result.error();
|
|
|
|
break;
|
|
|
|
}
|
2020-09-27 17:53:35 +03:00
|
|
|
if (result == Thread::BlockResult::InterruptedByDeath)
|
2020-10-14 21:47:19 +03:00
|
|
|
break;
|
2021-01-09 20:51:44 +03:00
|
|
|
dbgln("join_thread: retrying");
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
2021-09-05 18:38:37 +03:00
|
|
|
if (exit_value)
|
|
|
|
TRY(copy_to_user(exit_value, &joinee_exit_value));
|
|
|
|
|
|
|
|
return KSuccess;
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
2021-07-09 04:56:29 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$kill_thread(pid_t tid, int signal)
|
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2021-07-09 04:56:29 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
|
|
|
|
|
|
|
if (signal < 0 || signal >= 32)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
auto thread = Thread::from_tid(tid);
|
|
|
|
if (!thread || thread->pid() != pid())
|
|
|
|
return ESRCH;
|
|
|
|
|
|
|
|
if (signal != 0)
|
2021-08-19 22:45:07 +03:00
|
|
|
thread->send_signal(signal, &Process::current());
|
2021-07-09 04:56:29 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$set_thread_name(pid_t tid, Userspace<const char*> user_name, size_t user_name_length)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2021-01-31 01:38:57 +03:00
|
|
|
REQUIRE_PROMISE(stdio);
|
2021-08-05 23:22:26 +03:00
|
|
|
|
2021-09-05 19:11:19 +03:00
|
|
|
auto name = TRY(try_copy_kstring_from_user(user_name, user_name_length));
|
2020-07-31 00:38:15 +03:00
|
|
|
|
|
|
|
const size_t max_thread_name_size = 64;
|
2021-08-05 23:22:26 +03:00
|
|
|
if (name->length() > max_thread_name_size)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EINVAL;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-09-27 17:53:35 +03:00
|
|
|
auto thread = Thread::from_tid(tid);
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!thread || thread->pid() != pid())
|
2021-03-01 15:49:16 +03:00
|
|
|
return ESRCH;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-09-12 06:11:07 +03:00
|
|
|
thread->set_name(move(name));
|
2020-07-31 00:38:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2020-08-10 01:27:23 +03:00
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$get_thread_name(pid_t tid, Userspace<char*> buffer, size_t buffer_size)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(thread);
|
|
|
|
if (buffer_size == 0)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EINVAL;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2020-09-27 17:53:35 +03:00
|
|
|
auto thread = Thread::from_tid(tid);
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!thread || thread->pid() != pid())
|
2021-03-01 15:49:16 +03:00
|
|
|
return ESRCH;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-08-22 02:49:22 +03:00
|
|
|
SpinlockLocker locker(thread->get_lock());
|
2020-09-27 17:53:35 +03:00
|
|
|
auto thread_name = thread->name();
|
2021-08-05 23:22:26 +03:00
|
|
|
|
|
|
|
if (thread_name.is_null()) {
|
|
|
|
char null_terminator = '\0';
|
2021-09-05 18:38:37 +03:00
|
|
|
TRY(copy_to_user(buffer, &null_terminator, sizeof(null_terminator)));
|
|
|
|
return KSuccess;
|
2021-08-05 23:22:26 +03:00
|
|
|
}
|
|
|
|
|
2021-06-17 12:15:55 +03:00
|
|
|
if (thread_name.length() + 1 > buffer_size)
|
2021-03-01 15:49:16 +03:00
|
|
|
return ENAMETOOLONG;
|
2020-07-31 00:38:15 +03:00
|
|
|
|
2021-09-05 18:38:37 +03:00
|
|
|
return copy_to_user(buffer, thread_name.characters_without_null_termination(), thread_name.length() + 1);
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$gettid()
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:33:35 +03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this)
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(stdio);
|
2020-08-08 18:32:34 +03:00
|
|
|
return Thread::current()->tid().value();
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|