2015-05-04 03:01:16 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-01-01 19:38:34 +00:00
|
|
|
#include <algorithm>
|
2019-06-05 18:32:33 +00:00
|
|
|
#include <bitset>
|
2020-10-29 07:17:20 +00:00
|
|
|
#include <ctime>
|
2016-04-05 12:29:55 +00:00
|
|
|
#include <memory>
|
2018-11-20 22:46:17 +00:00
|
|
|
#include <random>
|
2019-03-28 22:24:56 +00:00
|
|
|
#include "common/alignment.h"
|
2015-05-04 03:01:16 +00:00
|
|
|
#include "common/assert.h"
|
2015-05-08 19:51:48 +00:00
|
|
|
#include "common/logging/log.h"
|
2018-09-21 06:06:47 +00:00
|
|
|
#include "core/core.h"
|
2020-04-09 02:19:12 +00:00
|
|
|
#include "core/device_memory.h"
|
2018-09-23 00:09:32 +00:00
|
|
|
#include "core/file_sys/program_metadata.h"
|
2019-03-20 16:40:09 +00:00
|
|
|
#include "core/hle/kernel/code_set.h"
|
2021-02-13 01:02:51 +00:00
|
|
|
#include "core/hle/kernel/k_memory_block_manager.h"
|
2021-02-13 01:58:31 +00:00
|
|
|
#include "core/hle/kernel/k_page_table.h"
|
2021-01-30 09:40:49 +00:00
|
|
|
#include "core/hle/kernel/k_resource_limit.h"
|
2020-12-03 02:08:35 +00:00
|
|
|
#include "core/hle/kernel/k_scheduler.h"
|
2021-02-05 01:06:54 +00:00
|
|
|
#include "core/hle/kernel/k_scoped_resource_reservation.h"
|
2021-02-13 01:02:51 +00:00
|
|
|
#include "core/hle/kernel/k_slab_heap.h"
|
2020-12-31 07:01:08 +00:00
|
|
|
#include "core/hle/kernel/k_thread.h"
|
2018-08-28 16:30:33 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2021-02-01 00:55:11 +00:00
|
|
|
#include "core/hle/kernel/svc_results.h"
|
2020-03-03 15:04:37 +00:00
|
|
|
#include "core/hle/lock.h"
|
2015-05-13 01:38:29 +00:00
|
|
|
#include "core/memory.h"
|
2018-11-13 17:25:43 +00:00
|
|
|
#include "core/settings.h"
|
2015-05-04 03:01:16 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
2018-12-28 01:28:15 +00:00
|
|
|
namespace {
|
|
|
|
/**
|
|
|
|
* Sets up the primary application thread
|
|
|
|
*
|
2020-02-25 02:04:12 +00:00
|
|
|
* @param system The system instance to create the main thread under.
|
2018-12-28 01:28:15 +00:00
|
|
|
* @param owner_process The parent process for the main thread
|
|
|
|
* @param priority The priority to give the main thread
|
|
|
|
*/
|
2020-02-25 02:04:12 +00:00
|
|
|
void SetupMainThread(Core::System& system, Process& owner_process, u32 priority, VAddr stack_top) {
|
2020-04-09 02:19:12 +00:00
|
|
|
const VAddr entry_point = owner_process.PageTable().GetCodeRegionStart();
|
2021-02-13 00:05:24 +00:00
|
|
|
ASSERT(owner_process.GetResourceLimit()->Reserve(LimitableResource::Threads, 1));
|
2021-03-05 08:13:29 +00:00
|
|
|
auto thread_res =
|
|
|
|
KThread::CreateUserThread(system, ThreadType::User, "main", entry_point, priority, 0,
|
|
|
|
owner_process.GetIdealCoreId(), stack_top, &owner_process);
|
2018-12-28 01:28:15 +00:00
|
|
|
|
2020-12-31 07:01:08 +00:00
|
|
|
std::shared_ptr<KThread> thread = std::move(thread_res).Unwrap();
|
2018-12-28 01:28:15 +00:00
|
|
|
|
|
|
|
// Register 1 must be a handle to the main thread
|
2019-04-14 10:06:04 +00:00
|
|
|
const Handle thread_handle = owner_process.GetHandleTable().Create(thread).Unwrap();
|
2020-03-21 02:39:07 +00:00
|
|
|
thread->GetContext32().cpu_registers[0] = 0;
|
|
|
|
thread->GetContext64().cpu_registers[0] = 0;
|
2020-03-02 04:46:10 +00:00
|
|
|
thread->GetContext32().cpu_registers[1] = thread_handle;
|
|
|
|
thread->GetContext64().cpu_registers[1] = thread_handle;
|
2018-12-28 01:28:15 +00:00
|
|
|
|
2020-02-25 02:04:12 +00:00
|
|
|
auto& kernel = system.Kernel();
|
2018-12-28 01:28:15 +00:00
|
|
|
// Threads by default are dormant, wake up the main thread so it runs when the scheduler fires
|
2020-02-25 02:04:12 +00:00
|
|
|
{
|
2020-12-04 06:26:42 +00:00
|
|
|
KScopedSchedulerLock lock{kernel};
|
2020-12-28 21:16:43 +00:00
|
|
|
thread->SetState(ThreadState::Runnable);
|
2020-02-25 02:04:12 +00:00
|
|
|
}
|
2018-12-28 01:28:15 +00:00
|
|
|
}
|
|
|
|
} // Anonymous namespace
|
2015-05-04 03:01:16 +00:00
|
|
|
|
2019-06-05 18:32:33 +00:00
|
|
|
// Represents a page used for thread-local storage.
|
|
|
|
//
|
|
|
|
// Each TLS page contains slots that may be used by processes and threads.
|
|
|
|
// Every process and thread is created with a slot in some arbitrary page
|
|
|
|
// (whichever page happens to have an available slot).
|
|
|
|
class TLSPage {
|
|
|
|
public:
|
2020-03-31 19:10:44 +00:00
|
|
|
static constexpr std::size_t num_slot_entries =
|
|
|
|
Core::Memory::PAGE_SIZE / Core::Memory::TLS_ENTRY_SIZE;
|
2019-06-05 18:32:33 +00:00
|
|
|
|
|
|
|
explicit TLSPage(VAddr address) : base_address{address} {}
|
|
|
|
|
|
|
|
bool HasAvailableSlots() const {
|
|
|
|
return !is_slot_used.all();
|
|
|
|
}
|
|
|
|
|
|
|
|
VAddr GetBaseAddress() const {
|
|
|
|
return base_address;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<VAddr> ReserveSlot() {
|
|
|
|
for (std::size_t i = 0; i < is_slot_used.size(); i++) {
|
|
|
|
if (is_slot_used[i]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
is_slot_used[i] = true;
|
2020-03-31 19:10:44 +00:00
|
|
|
return base_address + (i * Core::Memory::TLS_ENTRY_SIZE);
|
2019-06-05 18:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReleaseSlot(VAddr address) {
|
|
|
|
// Ensure that all given addresses are consistent with how TLS pages
|
|
|
|
// are intended to be used when releasing slots.
|
|
|
|
ASSERT(IsWithinPage(address));
|
2020-03-31 19:10:44 +00:00
|
|
|
ASSERT((address % Core::Memory::TLS_ENTRY_SIZE) == 0);
|
2019-06-05 18:32:33 +00:00
|
|
|
|
2020-03-31 19:10:44 +00:00
|
|
|
const std::size_t index = (address - base_address) / Core::Memory::TLS_ENTRY_SIZE;
|
2019-06-05 18:32:33 +00:00
|
|
|
is_slot_used[index] = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool IsWithinPage(VAddr address) const {
|
2020-03-31 19:10:44 +00:00
|
|
|
return base_address <= address && address < base_address + Core::Memory::PAGE_SIZE;
|
2019-06-05 18:32:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VAddr base_address;
|
|
|
|
std::bitset<num_slot_entries> is_slot_used;
|
|
|
|
};
|
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
std::shared_ptr<Process> Process::Create(Core::System& system, std::string name, ProcessType type) {
|
2019-03-07 23:48:14 +00:00
|
|
|
auto& kernel = system.Kernel();
|
2015-05-04 03:01:16 +00:00
|
|
|
|
2019-11-25 01:15:51 +00:00
|
|
|
std::shared_ptr<Process> process = std::make_shared<Process>(system);
|
2017-09-30 18:15:09 +00:00
|
|
|
process->name = std::move(name);
|
2021-02-05 01:06:54 +00:00
|
|
|
|
|
|
|
// TODO: This is inaccurate
|
|
|
|
// The process should hold a reference to the kernel-wide resource limit.
|
2021-01-30 09:40:49 +00:00
|
|
|
process->resource_limit = std::make_shared<KResourceLimit>(kernel, system);
|
2018-01-01 19:38:34 +00:00
|
|
|
process->status = ProcessStatus::Created;
|
2018-03-13 21:49:59 +00:00
|
|
|
process->program_id = 0;
|
2019-06-10 04:28:33 +00:00
|
|
|
process->process_id = type == ProcessType::KernelInternal ? kernel.CreateNewKernelProcessID()
|
|
|
|
: kernel.CreateNewUserProcessID();
|
2018-12-20 04:50:20 +00:00
|
|
|
process->capabilities.InitializeForMetadatalessProcess();
|
2015-05-08 20:53:19 +00:00
|
|
|
|
2020-10-27 01:42:11 +00:00
|
|
|
std::mt19937 rng(Settings::values.rng_seed.GetValue().value_or(std::time(nullptr)));
|
2018-11-13 17:25:43 +00:00
|
|
|
std::uniform_int_distribution<u64> distribution;
|
|
|
|
std::generate(process->random_entropy.begin(), process->random_entropy.end(),
|
|
|
|
[&] { return distribution(rng); });
|
|
|
|
|
2018-08-28 16:30:33 +00:00
|
|
|
kernel.AppendNewProcess(process);
|
2015-05-04 03:01:16 +00:00
|
|
|
return process;
|
|
|
|
}
|
|
|
|
|
2021-01-30 09:40:49 +00:00
|
|
|
std::shared_ptr<KResourceLimit> Process::GetResourceLimit() const {
|
2018-12-04 05:29:15 +00:00
|
|
|
return resource_limit;
|
|
|
|
}
|
|
|
|
|
2021-01-20 21:42:27 +00:00
|
|
|
void Process::IncrementThreadCount() {
|
|
|
|
ASSERT(num_threads >= 0);
|
2021-01-25 06:54:37 +00:00
|
|
|
num_created_threads++;
|
2021-01-20 21:42:27 +00:00
|
|
|
|
|
|
|
if (const auto count = ++num_threads; count > peak_num_threads) {
|
|
|
|
peak_num_threads = count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Process::DecrementThreadCount() {
|
|
|
|
ASSERT(num_threads > 0);
|
|
|
|
|
|
|
|
if (const auto count = --num_threads; count == 0) {
|
|
|
|
UNIMPLEMENTED_MSG("Process termination is not implemented!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-09 22:20:20 +00:00
|
|
|
u64 Process::GetTotalPhysicalMemoryAvailable() const {
|
2021-02-05 01:06:54 +00:00
|
|
|
// TODO: This is expected to always return the application memory pool size after accurately
|
|
|
|
// reserving kernel resources. The current workaround uses a process-local resource limit of
|
|
|
|
// application memory pool size, which is inaccurate.
|
2021-02-03 01:55:16 +00:00
|
|
|
const u64 capacity{resource_limit->GetFreeValue(LimitableResource::PhysicalMemory) +
|
2020-10-21 02:07:39 +00:00
|
|
|
page_table->GetTotalHeapSize() + GetSystemResourceSize() + image_size +
|
|
|
|
main_thread_stack_size};
|
2020-04-09 02:19:12 +00:00
|
|
|
|
|
|
|
if (capacity < memory_usage_capacity) {
|
|
|
|
return capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
return memory_usage_capacity;
|
2019-06-09 22:20:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 18:48:11 +00:00
|
|
|
u64 Process::GetTotalPhysicalMemoryAvailableWithoutSystemResource() const {
|
|
|
|
return GetTotalPhysicalMemoryAvailable() - GetSystemResourceSize();
|
2019-06-09 22:20:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 02:59:17 +00:00
|
|
|
u64 Process::GetTotalPhysicalMemoryUsed() const {
|
2020-06-10 04:49:00 +00:00
|
|
|
return image_size + main_thread_stack_size + page_table->GetTotalHeapSize() +
|
|
|
|
GetSystemResourceSize();
|
2019-03-29 02:59:17 +00:00
|
|
|
}
|
|
|
|
|
2019-07-07 18:48:11 +00:00
|
|
|
u64 Process::GetTotalPhysicalMemoryUsedWithoutSystemResource() const {
|
|
|
|
return GetTotalPhysicalMemoryUsed() - GetSystemResourceUsage();
|
2019-06-09 22:20:20 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 21:42:27 +00:00
|
|
|
bool Process::ReleaseUserException(KThread* thread) {
|
|
|
|
KScopedSchedulerLock sl{kernel};
|
|
|
|
|
|
|
|
if (exception_thread == thread) {
|
|
|
|
exception_thread = nullptr;
|
|
|
|
|
|
|
|
// Remove waiter thread.
|
|
|
|
s32 num_waiters{};
|
|
|
|
KThread* next = thread->RemoveWaiterByKey(
|
|
|
|
std::addressof(num_waiters),
|
|
|
|
reinterpret_cast<uintptr_t>(std::addressof(exception_thread)));
|
|
|
|
if (next != nullptr) {
|
|
|
|
if (next->GetState() == ThreadState::Waiting) {
|
|
|
|
next->SetState(ThreadState::Runnable);
|
|
|
|
} else {
|
|
|
|
KScheduler::SetSchedulerUpdateNeeded(kernel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Process::PinCurrentThread() {
|
|
|
|
ASSERT(kernel.GlobalSchedulerContext().IsLocked());
|
|
|
|
|
|
|
|
// Get the current thread.
|
|
|
|
const s32 core_id = GetCurrentCoreId(kernel);
|
|
|
|
KThread* cur_thread = GetCurrentThreadPointer(kernel);
|
|
|
|
|
|
|
|
// Pin it.
|
|
|
|
PinThread(core_id, cur_thread);
|
|
|
|
cur_thread->Pin();
|
|
|
|
|
|
|
|
// An update is needed.
|
|
|
|
KScheduler::SetSchedulerUpdateNeeded(kernel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Process::UnpinCurrentThread() {
|
|
|
|
ASSERT(kernel.GlobalSchedulerContext().IsLocked());
|
|
|
|
|
|
|
|
// Get the current thread.
|
|
|
|
const s32 core_id = GetCurrentCoreId(kernel);
|
|
|
|
KThread* cur_thread = GetCurrentThreadPointer(kernel);
|
|
|
|
|
|
|
|
// Unpin it.
|
|
|
|
cur_thread->Unpin();
|
|
|
|
UnpinThread(core_id, cur_thread);
|
|
|
|
|
|
|
|
// An update is needed.
|
|
|
|
KScheduler::SetSchedulerUpdateNeeded(kernel);
|
|
|
|
}
|
|
|
|
|
2020-12-31 07:01:08 +00:00
|
|
|
void Process::RegisterThread(const KThread* thread) {
|
2019-03-20 22:53:48 +00:00
|
|
|
thread_list.push_back(thread);
|
|
|
|
}
|
|
|
|
|
2020-12-31 07:01:08 +00:00
|
|
|
void Process::UnregisterThread(const KThread* thread) {
|
2019-03-20 22:53:48 +00:00
|
|
|
thread_list.remove(thread);
|
|
|
|
}
|
|
|
|
|
2021-02-01 00:55:11 +00:00
|
|
|
ResultCode Process::Reset() {
|
|
|
|
// Lock the process and the scheduler.
|
|
|
|
KScopedLightLock lk(state_lock);
|
|
|
|
KScopedSchedulerLock sl{kernel};
|
2018-12-05 00:08:56 +00:00
|
|
|
|
2021-02-01 00:55:11 +00:00
|
|
|
// Validate that we're in a state that we can reset.
|
2021-02-12 23:43:01 +00:00
|
|
|
R_UNLESS(status != ProcessStatus::Exited, ResultInvalidState);
|
|
|
|
R_UNLESS(is_signaled, ResultInvalidState);
|
2018-12-05 00:08:56 +00:00
|
|
|
|
2021-02-01 00:55:11 +00:00
|
|
|
// Clear signaled.
|
2018-12-05 00:08:56 +00:00
|
|
|
is_signaled = false;
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
ResultCode Process::LoadFromMetadata(const FileSys::ProgramMetadata& metadata,
|
|
|
|
std::size_t code_size) {
|
2018-09-23 00:09:32 +00:00
|
|
|
program_id = metadata.GetTitleID();
|
2018-12-28 02:14:59 +00:00
|
|
|
ideal_core = metadata.GetMainThreadCore();
|
2018-09-29 23:13:46 +00:00
|
|
|
is_64bit_process = metadata.Is64BitProgram();
|
2019-07-07 16:42:54 +00:00
|
|
|
system_resource_size = metadata.GetSystemResourceSize();
|
2020-04-09 02:19:12 +00:00
|
|
|
image_size = code_size;
|
|
|
|
|
2021-02-05 01:06:54 +00:00
|
|
|
// Set initial resource limits
|
|
|
|
resource_limit->SetLimitValue(
|
|
|
|
LimitableResource::PhysicalMemory,
|
2021-02-13 01:38:40 +00:00
|
|
|
kernel.MemoryManager().GetSize(KMemoryManager::Pool::Application));
|
2021-02-05 01:06:54 +00:00
|
|
|
KScopedResourceReservation memory_reservation(resource_limit, LimitableResource::PhysicalMemory,
|
|
|
|
code_size + system_resource_size);
|
|
|
|
if (!memory_reservation.Succeeded()) {
|
|
|
|
LOG_ERROR(Kernel, "Could not reserve process memory requirements of size {:X} bytes",
|
|
|
|
code_size + system_resource_size);
|
2021-02-13 00:05:24 +00:00
|
|
|
return ResultResourceLimitedExceeded;
|
2021-02-05 01:06:54 +00:00
|
|
|
}
|
2020-04-09 02:19:12 +00:00
|
|
|
// Initialize proces address space
|
|
|
|
if (const ResultCode result{
|
|
|
|
page_table->InitializeForProcess(metadata.GetAddressSpaceType(), false, 0x8000000,
|
2021-02-13 01:38:40 +00:00
|
|
|
code_size, KMemoryManager::Pool::Application)};
|
2020-04-09 02:19:12 +00:00
|
|
|
result.IsError()) {
|
|
|
|
return result;
|
|
|
|
}
|
2017-05-06 06:11:06 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
// Map process code region
|
2021-02-13 01:02:51 +00:00
|
|
|
if (const ResultCode result{page_table->MapProcessCode(page_table->GetCodeRegionStart(),
|
|
|
|
code_size / PageSize, KMemoryState::Code,
|
|
|
|
KMemoryPermission::None)};
|
2020-04-09 02:19:12 +00:00
|
|
|
result.IsError()) {
|
|
|
|
return result;
|
|
|
|
}
|
2015-07-19 18:18:57 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
// Initialize process capabilities
|
|
|
|
const auto& caps{metadata.GetKernelCapabilities()};
|
|
|
|
if (const ResultCode result{
|
|
|
|
capabilities.InitializeForUserProcess(caps.data(), caps.size(), *page_table)};
|
|
|
|
result.IsError()) {
|
|
|
|
return result;
|
2019-02-25 15:13:52 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
// Set memory usage capacity
|
|
|
|
switch (metadata.GetAddressSpaceType()) {
|
|
|
|
case FileSys::ProgramAddressSpaceType::Is32Bit:
|
|
|
|
case FileSys::ProgramAddressSpaceType::Is36Bit:
|
|
|
|
case FileSys::ProgramAddressSpaceType::Is39Bit:
|
|
|
|
memory_usage_capacity = page_table->GetHeapRegionEnd() - page_table->GetHeapRegionStart();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FileSys::ProgramAddressSpaceType::Is32BitNoMap:
|
|
|
|
memory_usage_capacity = page_table->GetHeapRegionEnd() - page_table->GetHeapRegionStart() +
|
|
|
|
page_table->GetAliasRegionEnd() - page_table->GetAliasRegionStart();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
|
2021-02-13 01:38:40 +00:00
|
|
|
// Set initial resource limits
|
|
|
|
resource_limit->SetLimitValue(
|
|
|
|
LimitableResource::PhysicalMemory,
|
|
|
|
kernel.MemoryManager().GetSize(KMemoryManager::Pool::Application));
|
|
|
|
|
2021-02-03 01:55:16 +00:00
|
|
|
resource_limit->SetLimitValue(LimitableResource::Threads, 608);
|
|
|
|
resource_limit->SetLimitValue(LimitableResource::Events, 700);
|
|
|
|
resource_limit->SetLimitValue(LimitableResource::TransferMemory, 128);
|
|
|
|
resource_limit->SetLimitValue(LimitableResource::Sessions, 894);
|
2020-04-09 02:19:12 +00:00
|
|
|
|
|
|
|
// Create TLS region
|
|
|
|
tls_region_address = CreateTLSRegion();
|
2021-02-05 01:06:54 +00:00
|
|
|
memory_reservation.Commit();
|
2020-04-09 02:19:12 +00:00
|
|
|
|
2019-02-25 15:13:52 +00:00
|
|
|
return handle_table.SetSize(capabilities.GetHandleTableSize());
|
2015-05-04 03:01:16 +00:00
|
|
|
}
|
|
|
|
|
2019-04-09 21:03:04 +00:00
|
|
|
void Process::Run(s32 main_thread_priority, u64 stack_size) {
|
2019-07-07 08:13:56 +00:00
|
|
|
AllocateMainThreadStack(stack_size);
|
2021-02-05 01:06:54 +00:00
|
|
|
resource_limit->Reserve(LimitableResource::Threads, 1);
|
|
|
|
resource_limit->Reserve(LimitableResource::PhysicalMemory, main_thread_stack_size);
|
2017-05-06 06:11:06 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
const std::size_t heap_capacity{memory_usage_capacity - main_thread_stack_size - image_size};
|
|
|
|
ASSERT(!page_table->SetHeapCapacity(heap_capacity).IsError());
|
2019-07-07 08:13:56 +00:00
|
|
|
|
2018-12-05 00:08:56 +00:00
|
|
|
ChangeStatus(ProcessStatus::Running);
|
2017-10-10 03:56:20 +00:00
|
|
|
|
2020-10-21 02:07:39 +00:00
|
|
|
SetupMainThread(system, *this, main_thread_priority, main_thread_stack_top);
|
2017-09-30 18:15:09 +00:00
|
|
|
}
|
2017-09-24 15:12:16 +00:00
|
|
|
|
2018-09-21 06:06:47 +00:00
|
|
|
void Process::PrepareForTermination() {
|
2018-12-05 00:08:56 +00:00
|
|
|
ChangeStatus(ProcessStatus::Exiting);
|
2018-09-21 06:06:47 +00:00
|
|
|
|
2020-12-31 07:01:08 +00:00
|
|
|
const auto stop_threads = [this](const std::vector<std::shared_ptr<KThread>>& thread_list) {
|
2018-09-21 06:06:47 +00:00
|
|
|
for (auto& thread : thread_list) {
|
2018-10-03 22:47:57 +00:00
|
|
|
if (thread->GetOwnerProcess() != this)
|
2018-09-21 06:06:47 +00:00
|
|
|
continue;
|
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
if (thread.get() == kernel.CurrentScheduler()->GetCurrentThread())
|
2018-09-21 06:06:47 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// TODO(Subv): When are the other running/ready threads terminated?
|
2020-12-28 21:16:43 +00:00
|
|
|
ASSERT_MSG(thread->GetState() == ThreadState::Waiting,
|
2018-09-21 06:06:47 +00:00
|
|
|
"Exiting processes with non-waiting threads is currently unimplemented");
|
|
|
|
|
2021-01-20 21:42:27 +00:00
|
|
|
thread->Exit();
|
2018-09-21 06:06:47 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-12-03 02:08:35 +00:00
|
|
|
stop_threads(system.GlobalSchedulerContext().GetThreadList());
|
2018-12-05 00:08:56 +00:00
|
|
|
|
2019-07-07 08:19:16 +00:00
|
|
|
FreeTLSRegion(tls_region_address);
|
|
|
|
tls_region_address = 0;
|
|
|
|
|
2021-02-05 01:06:54 +00:00
|
|
|
if (resource_limit) {
|
|
|
|
resource_limit->Release(LimitableResource::PhysicalMemory,
|
|
|
|
main_thread_stack_size + image_size);
|
|
|
|
}
|
|
|
|
|
2018-12-05 00:08:56 +00:00
|
|
|
ChangeStatus(ProcessStatus::Exited);
|
2018-09-21 06:06:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-21 05:26:29 +00:00
|
|
|
/**
|
2019-06-05 18:32:33 +00:00
|
|
|
* Attempts to find a TLS page that contains a free slot for
|
|
|
|
* use by a thread.
|
|
|
|
*
|
|
|
|
* @returns If a page with an available slot is found, then an iterator
|
|
|
|
* pointing to the page is returned. Otherwise the end iterator
|
|
|
|
* is returned instead.
|
2018-09-21 05:26:29 +00:00
|
|
|
*/
|
2019-06-05 18:32:33 +00:00
|
|
|
static auto FindTLSPageWithAvailableSlots(std::vector<TLSPage>& tls_pages) {
|
|
|
|
return std::find_if(tls_pages.begin(), tls_pages.end(),
|
|
|
|
[](const auto& page) { return page.HasAvailableSlots(); });
|
2018-09-21 05:26:29 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 18:32:33 +00:00
|
|
|
VAddr Process::CreateTLSRegion() {
|
2020-12-04 06:26:42 +00:00
|
|
|
KScopedSchedulerLock lock(system.Kernel());
|
2020-04-09 02:19:12 +00:00
|
|
|
if (auto tls_page_iter{FindTLSPageWithAvailableSlots(tls_pages)};
|
|
|
|
tls_page_iter != tls_pages.cend()) {
|
|
|
|
return *tls_page_iter->ReserveSlot();
|
|
|
|
}
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2021-02-13 01:02:51 +00:00
|
|
|
Page* const tls_page_ptr{kernel.GetUserSlabHeapPages().Allocate()};
|
2020-04-09 02:19:12 +00:00
|
|
|
ASSERT(tls_page_ptr);
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
const VAddr start{page_table->GetKernelMapRegionStart()};
|
|
|
|
const VAddr size{page_table->GetKernelMapRegionEnd() - start};
|
|
|
|
const PAddr tls_map_addr{system.DeviceMemory().GetPhysicalAddr(tls_page_ptr)};
|
2021-02-13 01:02:51 +00:00
|
|
|
const VAddr tls_page_addr{page_table
|
|
|
|
->AllocateAndMapMemory(1, PageSize, true, start, size / PageSize,
|
|
|
|
KMemoryState::ThreadLocal,
|
|
|
|
KMemoryPermission::ReadAndWrite,
|
|
|
|
tls_map_addr)
|
|
|
|
.ValueOr(0)};
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
ASSERT(tls_page_addr);
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2021-02-13 01:02:51 +00:00
|
|
|
std::memset(tls_page_ptr, 0, PageSize);
|
2020-04-09 02:19:12 +00:00
|
|
|
tls_pages.emplace_back(tls_page_addr);
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
const auto reserve_result{tls_pages.back().ReserveSlot()};
|
|
|
|
ASSERT(reserve_result.has_value());
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
return *reserve_result;
|
2018-09-21 05:26:29 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 18:32:33 +00:00
|
|
|
void Process::FreeTLSRegion(VAddr tls_address) {
|
2020-12-04 06:26:42 +00:00
|
|
|
KScopedSchedulerLock lock(system.Kernel());
|
2020-03-31 19:10:44 +00:00
|
|
|
const VAddr aligned_address = Common::AlignDown(tls_address, Core::Memory::PAGE_SIZE);
|
2019-06-05 18:32:33 +00:00
|
|
|
auto iter =
|
|
|
|
std::find_if(tls_pages.begin(), tls_pages.end(), [aligned_address](const auto& page) {
|
|
|
|
return page.GetBaseAddress() == aligned_address;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Something has gone very wrong if we're freeing a region
|
|
|
|
// with no actual page available.
|
|
|
|
ASSERT(iter != tls_pages.cend());
|
2018-09-21 05:26:29 +00:00
|
|
|
|
2019-06-05 18:32:33 +00:00
|
|
|
iter->ReleaseSlot(tls_address);
|
2018-09-21 05:26:29 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
void Process::LoadModule(CodeSet code_set, VAddr base_addr) {
|
2020-03-03 15:04:37 +00:00
|
|
|
std::lock_guard lock{HLE::g_hle_lock};
|
2020-04-09 02:19:12 +00:00
|
|
|
const auto ReprotectSegment = [&](const CodeSet::Segment& segment,
|
2021-02-13 01:02:51 +00:00
|
|
|
KMemoryPermission permission) {
|
2020-04-09 02:19:12 +00:00
|
|
|
page_table->SetCodeMemoryPermission(segment.addr + base_addr, segment.size, permission);
|
2017-09-24 15:12:16 +00:00
|
|
|
};
|
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
system.Memory().WriteBlock(*this, base_addr, code_set.memory.data(), code_set.memory.size());
|
|
|
|
|
2021-02-13 01:02:51 +00:00
|
|
|
ReprotectSegment(code_set.CodeSegment(), KMemoryPermission::ReadAndExecute);
|
|
|
|
ReprotectSegment(code_set.RODataSegment(), KMemoryPermission::Read);
|
|
|
|
ReprotectSegment(code_set.DataSegment(), KMemoryPermission::ReadAndWrite);
|
2015-05-04 03:01:16 +00:00
|
|
|
}
|
|
|
|
|
2020-12-22 06:36:53 +00:00
|
|
|
bool Process::IsSignaled() const {
|
|
|
|
ASSERT(kernel.GlobalSchedulerContext().IsLocked());
|
|
|
|
return is_signaled;
|
|
|
|
}
|
|
|
|
|
2019-03-12 23:03:26 +00:00
|
|
|
Process::Process(Core::System& system)
|
2021-02-13 01:58:31 +00:00
|
|
|
: KSynchronizationObject{system.Kernel()}, page_table{std::make_unique<KPageTable>(system)},
|
|
|
|
handle_table{system.Kernel()}, address_arbiter{system}, condition_var{system},
|
|
|
|
state_lock{system.Kernel()}, system{system} {}
|
2019-03-14 04:29:54 +00:00
|
|
|
|
2019-03-07 23:48:14 +00:00
|
|
|
Process::~Process() = default;
|
2015-05-04 03:01:16 +00:00
|
|
|
|
2018-12-05 00:08:56 +00:00
|
|
|
void Process::ChangeStatus(ProcessStatus new_status) {
|
|
|
|
if (status == new_status) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = new_status;
|
|
|
|
is_signaled = true;
|
2020-12-22 06:36:53 +00:00
|
|
|
NotifyAvailable();
|
2018-12-05 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2020-04-09 02:19:12 +00:00
|
|
|
ResultCode Process::AllocateMainThreadStack(std::size_t stack_size) {
|
|
|
|
ASSERT(stack_size);
|
|
|
|
|
2019-07-07 08:13:56 +00:00
|
|
|
// The kernel always ensures that the given stack size is page aligned.
|
2021-02-13 01:02:51 +00:00
|
|
|
main_thread_stack_size = Common::AlignUp(stack_size, PageSize);
|
2020-04-09 02:19:12 +00:00
|
|
|
|
|
|
|
const VAddr start{page_table->GetStackRegionStart()};
|
|
|
|
const std::size_t size{page_table->GetStackRegionEnd() - start};
|
|
|
|
|
|
|
|
CASCADE_RESULT(main_thread_stack_top,
|
|
|
|
page_table->AllocateAndMapMemory(
|
2021-02-13 01:02:51 +00:00
|
|
|
main_thread_stack_size / PageSize, PageSize, false, start, size / PageSize,
|
|
|
|
KMemoryState::Stack, KMemoryPermission::ReadAndWrite));
|
2020-04-09 02:19:12 +00:00
|
|
|
|
|
|
|
main_thread_stack_top += main_thread_stack_size;
|
|
|
|
|
|
|
|
return RESULT_SUCCESS;
|
2019-07-07 08:13:56 +00:00
|
|
|
}
|
|
|
|
|
2018-01-01 19:38:34 +00:00
|
|
|
} // namespace Kernel
|