2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-12-04 00:55:45 +00:00
|
|
|
#include <algorithm>
|
2016-12-07 00:31:53 +00:00
|
|
|
#include <boost/range/algorithm_ext/erase.hpp>
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2015-08-06 01:26:52 +01:00
|
|
|
#include "core/hle/config_mem.h"
|
2016-09-21 07:52:38 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2015-08-06 01:26:52 +01:00
|
|
|
#include "core/hle/kernel/memory.h"
|
2015-05-04 04:01:16 +01:00
|
|
|
#include "core/hle/kernel/process.h"
|
2015-08-06 01:26:52 +01:00
|
|
|
#include "core/hle/kernel/resource_limit.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2015-08-06 01:26:52 +01:00
|
|
|
#include "core/hle/shared_page.h"
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-05-20 23:13:25 +01:00
|
|
|
namespace Kernel {
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2015-04-28 03:12:35 +01:00
|
|
|
unsigned int Object::next_object_id;
|
2014-12-13 23:16:13 +00:00
|
|
|
HandleTable g_handle_table;
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2015-02-01 01:26:16 +00:00
|
|
|
void WaitObject::AddWaitingThread(SharedPtr<Thread> thread) {
|
2015-01-15 04:19:22 +00:00
|
|
|
auto itr = std::find(waiting_threads.begin(), waiting_threads.end(), thread);
|
|
|
|
if (itr == waiting_threads.end())
|
2015-02-01 01:26:16 +00:00
|
|
|
waiting_threads.push_back(std::move(thread));
|
2015-01-15 04:19:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WaitObject::RemoveWaitingThread(Thread* thread) {
|
|
|
|
auto itr = std::find(waiting_threads.begin(), waiting_threads.end(), thread);
|
|
|
|
if (itr != waiting_threads.end())
|
|
|
|
waiting_threads.erase(itr);
|
2015-01-15 00:22:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-04 03:38:14 +00:00
|
|
|
SharedPtr<Thread> WaitObject::GetHighestPriorityReadyThread() {
|
|
|
|
// Remove the threads that are ready or already running from our waitlist
|
2016-12-08 15:34:53 +00:00
|
|
|
boost::range::remove_erase_if(waiting_threads, [](const SharedPtr<Thread>& thread) {
|
2016-12-04 03:38:14 +00:00
|
|
|
return thread->status == THREADSTATUS_RUNNING || thread->status == THREADSTATUS_READY;
|
2016-12-07 00:31:53 +00:00
|
|
|
});
|
2016-12-04 03:38:14 +00:00
|
|
|
|
2016-12-10 18:29:31 +00:00
|
|
|
// TODO(Subv): This call should be performed inside the loop below to check if an object can be
|
|
|
|
// acquired by a particular thread. This is useful for things like recursive locking of Mutexes.
|
|
|
|
if (ShouldWait())
|
|
|
|
return nullptr;
|
|
|
|
|
2016-12-08 15:34:53 +00:00
|
|
|
Thread* candidate = nullptr;
|
2016-12-07 00:15:32 +00:00
|
|
|
s32 candidate_priority = THREADPRIO_LOWEST + 1;
|
2016-12-04 03:38:14 +00:00
|
|
|
|
2016-12-07 00:15:32 +00:00
|
|
|
for (const auto& thread : waiting_threads) {
|
|
|
|
if (thread->current_priority >= candidate_priority)
|
|
|
|
continue;
|
|
|
|
|
2016-12-14 17:13:02 +00:00
|
|
|
bool ready_to_run =
|
|
|
|
std::none_of(thread->wait_objects.begin(), thread->wait_objects.end(),
|
|
|
|
[](const SharedPtr<WaitObject>& object) { return object->ShouldWait(); });
|
2016-12-07 00:15:32 +00:00
|
|
|
if (ready_to_run) {
|
2016-12-08 15:34:53 +00:00
|
|
|
candidate = thread.get();
|
2016-12-07 00:15:32 +00:00
|
|
|
candidate_priority = thread->current_priority;
|
|
|
|
}
|
|
|
|
}
|
2016-12-04 03:38:14 +00:00
|
|
|
|
2016-12-07 00:15:32 +00:00
|
|
|
return candidate;
|
2016-12-04 03:38:14 +00:00
|
|
|
}
|
|
|
|
|
2015-01-18 18:25:51 +00:00
|
|
|
void WaitObject::WakeupAllWaitingThreads() {
|
2016-12-04 03:38:14 +00:00
|
|
|
while (auto thread = GetHighestPriorityReadyThread()) {
|
2016-12-08 15:34:53 +00:00
|
|
|
if (!thread->IsSleepingOnWaitAll()) {
|
2016-12-04 03:38:14 +00:00
|
|
|
Acquire();
|
|
|
|
// Set the output index of the WaitSynchronizationN call to the index of this object.
|
|
|
|
if (thread->wait_set_output) {
|
|
|
|
thread->SetWaitSynchronizationOutput(thread->GetWaitObjectIndex(this));
|
|
|
|
thread->wait_set_output = false;
|
|
|
|
}
|
|
|
|
} else {
|
2016-12-10 18:29:31 +00:00
|
|
|
for (auto& object : thread->wait_objects) {
|
2016-12-04 03:38:14 +00:00
|
|
|
object->Acquire();
|
|
|
|
object->RemoveWaitingThread(thread.get());
|
|
|
|
}
|
|
|
|
// Note: This case doesn't update the output index of WaitSynchronizationN.
|
|
|
|
// Clear the thread's waitlist
|
|
|
|
thread->wait_objects.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
thread->SetWaitSynchronizationResult(RESULT_SUCCESS);
|
2015-06-08 04:39:37 +01:00
|
|
|
thread->ResumeFromWait();
|
2016-12-14 17:13:02 +00:00
|
|
|
// Note: Removing the thread from the object's waitlist will be
|
|
|
|
// done by GetHighestPriorityReadyThread.
|
2016-12-04 03:38:14 +00:00
|
|
|
}
|
2015-01-15 00:22:50 +00:00
|
|
|
}
|
|
|
|
|
2016-04-08 17:28:54 +01:00
|
|
|
const std::vector<SharedPtr<Thread>>& WaitObject::GetWaitingThreads() const {
|
|
|
|
return waiting_threads;
|
|
|
|
}
|
|
|
|
|
2014-12-13 23:16:13 +00:00
|
|
|
HandleTable::HandleTable() {
|
2014-12-21 12:04:08 +00:00
|
|
|
next_generation = 1;
|
|
|
|
Clear();
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
ResultVal<Handle> HandleTable::Create(SharedPtr<Object> obj) {
|
2015-01-21 01:16:47 +00:00
|
|
|
DEBUG_ASSERT(obj != nullptr);
|
2014-12-21 12:04:08 +00:00
|
|
|
|
|
|
|
u16 slot = next_free_slot;
|
|
|
|
if (slot >= generations.size()) {
|
|
|
|
LOG_ERROR(Kernel, "Unable to allocate Handle, too many slots in use.");
|
|
|
|
return ERR_OUT_OF_HANDLES;
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
2014-12-21 12:04:08 +00:00
|
|
|
next_free_slot = generations[slot];
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
u16 generation = next_generation++;
|
2014-05-10 03:11:18 +01:00
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
// Overflow count so it fits in the 15 bits dedicated to the generation in the handle.
|
|
|
|
// CTR-OS doesn't use generation 0, so skip straight to 1.
|
2016-09-18 01:38:01 +01:00
|
|
|
if (next_generation >= (1 << 15))
|
|
|
|
next_generation = 1;
|
2014-12-21 12:04:08 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
generations[slot] = generation;
|
|
|
|
objects[slot] = std::move(obj);
|
|
|
|
|
2015-01-31 16:57:32 +00:00
|
|
|
Handle handle = generation | (slot << 15);
|
2014-12-21 12:04:08 +00:00
|
|
|
return MakeResult<Handle>(handle);
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
ResultVal<Handle> HandleTable::Duplicate(Handle handle) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Object> object = GetGeneric(handle);
|
2014-12-21 12:04:08 +00:00
|
|
|
if (object == nullptr) {
|
|
|
|
LOG_ERROR(Kernel, "Tried to duplicate invalid handle: %08X", handle);
|
|
|
|
return ERR_INVALID_HANDLE;
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
2014-12-29 12:55:30 +00:00
|
|
|
return Create(std::move(object));
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
ResultCode HandleTable::Close(Handle handle) {
|
|
|
|
if (!IsValid(handle))
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
2015-02-01 20:31:21 +00:00
|
|
|
u16 slot = GetSlot(handle);
|
2014-12-21 12:04:08 +00:00
|
|
|
|
|
|
|
objects[slot] = nullptr;
|
|
|
|
|
2015-01-31 18:12:20 +00:00
|
|
|
generations[slot] = next_free_slot;
|
2014-12-21 12:04:08 +00:00
|
|
|
next_free_slot = slot;
|
|
|
|
return RESULT_SUCCESS;
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
bool HandleTable::IsValid(Handle handle) const {
|
|
|
|
size_t slot = GetSlot(handle);
|
|
|
|
u16 generation = GetGeneration(handle);
|
|
|
|
|
|
|
|
return slot < MAX_COUNT && objects[slot] != nullptr && generations[slot] == generation;
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Object> HandleTable::GetGeneric(Handle handle) const {
|
2014-12-21 12:04:08 +00:00
|
|
|
if (handle == CurrentThread) {
|
2014-12-22 06:32:03 +00:00
|
|
|
return GetCurrentThread();
|
2014-12-21 12:04:08 +00:00
|
|
|
} else if (handle == CurrentProcess) {
|
2015-05-11 15:15:10 +01:00
|
|
|
return g_current_process;
|
2014-12-21 12:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsValid(handle)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return objects[GetSlot(handle)];
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
void HandleTable::Clear() {
|
2015-02-01 20:31:21 +00:00
|
|
|
for (u16 i = 0; i < MAX_COUNT; ++i) {
|
2014-12-21 12:04:08 +00:00
|
|
|
generations[i] = i + 1;
|
|
|
|
objects[i] = nullptr;
|
|
|
|
}
|
|
|
|
next_free_slot = 0;
|
2014-05-10 03:11:18 +01:00
|
|
|
}
|
2014-05-14 02:57:12 +01:00
|
|
|
|
2014-06-11 03:43:50 +01:00
|
|
|
/// Initialize the kernel
|
2016-11-20 01:40:04 +00:00
|
|
|
void Init(u32 system_mode) {
|
2015-08-06 01:26:52 +01:00
|
|
|
ConfigMem::Init();
|
|
|
|
SharedPage::Init();
|
|
|
|
|
2016-11-20 01:40:04 +00:00
|
|
|
Kernel::MemoryInit(system_mode);
|
2015-08-06 01:26:52 +01:00
|
|
|
|
2015-05-12 21:25:15 +01:00
|
|
|
Kernel::ResourceLimitsInit();
|
2014-05-21 00:37:46 +01:00
|
|
|
Kernel::ThreadingInit();
|
2014-12-04 19:45:47 +00:00
|
|
|
Kernel::TimersInit();
|
2015-04-28 03:12:35 +01:00
|
|
|
|
|
|
|
Object::next_object_id = 0;
|
2015-05-12 00:23:45 +01:00
|
|
|
// TODO(Subv): Start the process ids from 10 for now, as lower PIDs are
|
|
|
|
// reserved for low-level services
|
|
|
|
Process::next_process_id = 10;
|
2014-05-20 23:13:25 +01:00
|
|
|
}
|
|
|
|
|
2014-06-11 03:43:50 +01:00
|
|
|
/// Shutdown the kernel
|
2014-05-20 23:13:25 +01:00
|
|
|
void Shutdown() {
|
2015-08-06 01:26:52 +01:00
|
|
|
g_handle_table.Clear(); // Free all kernel objects
|
|
|
|
|
2014-05-21 00:37:46 +01:00
|
|
|
Kernel::ThreadingShutdown();
|
2015-08-06 01:26:52 +01:00
|
|
|
g_current_process = nullptr;
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
Kernel::TimersShutdown();
|
2015-05-12 21:25:15 +01:00
|
|
|
Kernel::ResourceLimitsShutdown();
|
2015-08-06 01:26:52 +01:00
|
|
|
Kernel::MemoryShutdown();
|
2014-05-14 02:57:12 +01:00
|
|
|
}
|
2014-05-23 00:06:12 +01:00
|
|
|
|
|
|
|
} // namespace
|