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 02:11:18 +00:00
|
|
|
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2014-12-04 00:55:45 +00:00
|
|
|
#include <algorithm>
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2015-08-06 00:26:52 +00:00
|
|
|
#include "core/hle/config_mem.h"
|
|
|
|
#include "core/hle/kernel/memory.h"
|
2015-05-04 03:01:16 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2015-08-06 00:26:52 +00:00
|
|
|
#include "core/hle/kernel/resource_limit.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2015-08-06 00:26:52 +00:00
|
|
|
#include "core/hle/shared_page.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
namespace Kernel {
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2015-04-28 02:12:35 +00:00
|
|
|
unsigned int Object::next_object_id;
|
2014-12-13 23:16:13 +00:00
|
|
|
HandleTable g_handle_table;
|
2014-05-10 02:11:18 +00: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
|
|
|
}
|
|
|
|
|
2015-01-18 18:25:51 +00:00
|
|
|
void WaitObject::WakeupAllWaitingThreads() {
|
2015-06-08 03:39:37 +00:00
|
|
|
for (auto thread : waiting_threads)
|
|
|
|
thread->ResumeFromWait();
|
2015-01-15 00:22:50 +00:00
|
|
|
|
2015-06-08 03:39:37 +00:00
|
|
|
waiting_threads.clear();
|
2015-01-15 00:22:50 +00:00
|
|
|
|
2015-06-08 03:39:37 +00:00
|
|
|
HLE::Reschedule(__func__);
|
2015-01-15 00:22:50 +00:00
|
|
|
}
|
|
|
|
|
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 02:11:18 +00: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 02:11:18 +00:00
|
|
|
}
|
2014-12-21 12:04:08 +00:00
|
|
|
next_free_slot = generations[slot];
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
u16 generation = next_generation++;
|
2014-05-10 02:11:18 +00: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 00:38:01 +00: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 02:11:18 +00: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 02:11:18 +00:00
|
|
|
}
|
2014-12-29 12:55:30 +00:00
|
|
|
return Create(std::move(object));
|
2014-05-10 02:11:18 +00: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 02:11:18 +00: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 02:11:18 +00: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 14:15:10 +00: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 02:11:18 +00: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 02:11:18 +00:00
|
|
|
}
|
2014-05-14 01:57:12 +00:00
|
|
|
|
2014-06-11 02:43:50 +00:00
|
|
|
/// Initialize the kernel
|
2014-05-20 22:13:25 +00:00
|
|
|
void Init() {
|
2015-08-06 00:26:52 +00:00
|
|
|
ConfigMem::Init();
|
|
|
|
SharedPage::Init();
|
|
|
|
|
|
|
|
// TODO(yuriks): The memory type parameter needs to be determined by the ExHeader field instead
|
|
|
|
// For now it defaults to the one with a largest allocation to the app
|
|
|
|
Kernel::MemoryInit(2); // Allocates 96MB to the application
|
|
|
|
|
2015-05-12 20:25:15 +00:00
|
|
|
Kernel::ResourceLimitsInit();
|
2014-05-20 23:37:46 +00:00
|
|
|
Kernel::ThreadingInit();
|
2014-12-04 19:45:47 +00:00
|
|
|
Kernel::TimersInit();
|
2015-04-28 02:12:35 +00:00
|
|
|
|
|
|
|
Object::next_object_id = 0;
|
2015-05-11 23:23:45 +00: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 22:13:25 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 02:43:50 +00:00
|
|
|
/// Shutdown the kernel
|
2014-05-20 22:13:25 +00:00
|
|
|
void Shutdown() {
|
2015-08-06 00:26:52 +00:00
|
|
|
g_handle_table.Clear(); // Free all kernel objects
|
|
|
|
|
2014-05-20 23:37:46 +00:00
|
|
|
Kernel::ThreadingShutdown();
|
2015-08-06 00:26:52 +00:00
|
|
|
g_current_process = nullptr;
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
Kernel::TimersShutdown();
|
2015-05-12 20:25:15 +00:00
|
|
|
Kernel::ResourceLimitsShutdown();
|
2015-08-06 00:26:52 +00:00
|
|
|
Kernel::MemoryShutdown();
|
2014-05-14 01:57:12 +00:00
|
|
|
}
|
2014-05-22 23:06:12 +00:00
|
|
|
|
|
|
|
} // namespace
|