2014-04-11 00:58:28 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-11 00:58:28 +01:00
|
|
|
|
2014-04-11 23:44:21 +01:00
|
|
|
#include <map>
|
2014-05-18 22:52:02 +01:00
|
|
|
|
2015-05-06 08:06:12 +01:00
|
|
|
#include "common/logging/log.h"
|
2015-08-17 22:25:21 +01:00
|
|
|
#include "common/microprofile.h"
|
2015-05-06 04:04:25 +01:00
|
|
|
#include "common/profiler.h"
|
2014-08-17 19:28:36 +01:00
|
|
|
#include "common/string_util.h"
|
2014-05-18 22:52:02 +01:00
|
|
|
#include "common/symbols.h"
|
2014-04-11 23:44:21 +01:00
|
|
|
|
2015-03-16 16:16:59 +00:00
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/arm/arm_interface.h"
|
2014-04-18 04:05:31 +01:00
|
|
|
|
2014-07-07 04:15:40 +01:00
|
|
|
#include "core/hle/kernel/address_arbiter.h"
|
2014-05-28 03:41:09 +01:00
|
|
|
#include "core/hle/kernel/event.h"
|
2015-07-29 16:08:00 +01:00
|
|
|
#include "core/hle/kernel/memory.h"
|
2014-05-21 03:57:54 +01:00
|
|
|
#include "core/hle/kernel/mutex.h"
|
2015-05-11 15:15:10 +01:00
|
|
|
#include "core/hle/kernel/process.h"
|
2015-05-12 21:25:15 +01:00
|
|
|
#include "core/hle/kernel/resource_limit.h"
|
2014-12-03 23:49:51 +00:00
|
|
|
#include "core/hle/kernel/semaphore.h"
|
2014-07-05 05:59:58 +01:00
|
|
|
#include "core/hle/kernel/shared_memory.h"
|
2014-05-17 18:47:44 +01:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-12-04 19:45:47 +00:00
|
|
|
#include "core/hle/kernel/timer.h"
|
2015-07-17 07:23:22 +01:00
|
|
|
#include "core/hle/kernel/vm_manager.h"
|
2014-05-17 18:47:44 +01:00
|
|
|
|
2014-04-11 00:58:28 +01:00
|
|
|
#include "core/hle/function_wrappers.h"
|
2014-10-23 04:20:01 +01:00
|
|
|
#include "core/hle/result.h"
|
2014-04-13 02:55:36 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2014-04-11 00:58:28 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-05-20 23:28:38 +01:00
|
|
|
// Namespace SVC
|
2014-04-11 00:58:28 +01:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
using Kernel::SharedPtr;
|
2015-01-23 05:44:52 +00:00
|
|
|
using Kernel::ERR_INVALID_HANDLE;
|
2014-12-29 12:55:30 +00:00
|
|
|
|
2014-05-20 23:28:38 +01:00
|
|
|
namespace SVC {
|
2014-04-11 04:26:12 +01:00
|
|
|
|
2015-01-30 18:07:04 +00:00
|
|
|
const ResultCode ERR_NOT_FOUND(ErrorDescription::NotFound, ErrorModule::Kernel,
|
|
|
|
ErrorSummary::NotFound, ErrorLevel::Permanent); // 0xD88007FA
|
|
|
|
const ResultCode ERR_PORT_NAME_TOO_LONG(ErrorDescription(30), ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage); // 0xE0E0181E
|
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
const ResultCode ERR_MISALIGNED_ADDRESS{ // 0xE0E01BF1
|
|
|
|
ErrorDescription::MisalignedAddress, ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage};
|
|
|
|
const ResultCode ERR_MISALIGNED_SIZE{ // 0xE0E01BF2
|
|
|
|
ErrorDescription::MisalignedSize, ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage};
|
|
|
|
const ResultCode ERR_INVALID_COMBINATION{ // 0xE0E01BEE
|
|
|
|
ErrorDescription::InvalidCombination, ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage};
|
|
|
|
|
2014-04-25 04:56:06 +01:00
|
|
|
enum ControlMemoryOperation {
|
2015-07-18 03:19:16 +01:00
|
|
|
MEMOP_FREE = 1,
|
|
|
|
MEMOP_RESERVE = 2, // This operation seems to be unsupported in the kernel
|
|
|
|
MEMOP_COMMIT = 3,
|
|
|
|
MEMOP_MAP = 4,
|
|
|
|
MEMOP_UNMAP = 5,
|
|
|
|
MEMOP_PROTECT = 6,
|
|
|
|
MEMOP_OPERATION_MASK = 0xFF,
|
|
|
|
|
|
|
|
MEMOP_REGION_APP = 0x100,
|
|
|
|
MEMOP_REGION_SYSTEM = 0x200,
|
|
|
|
MEMOP_REGION_BASE = 0x300,
|
|
|
|
MEMOP_REGION_MASK = 0xF00,
|
|
|
|
|
|
|
|
MEMOP_LINEAR = 0x10000,
|
2014-04-25 04:56:06 +01:00
|
|
|
};
|
|
|
|
|
2014-04-18 04:05:31 +01:00
|
|
|
/// Map application or GSP heap memory
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ControlMemory(u32* out_addr, u32 operation, u32 addr0, u32 addr1, u32 size, u32 permissions) {
|
2015-07-18 03:19:16 +01:00
|
|
|
using namespace Kernel;
|
|
|
|
|
|
|
|
LOG_DEBUG(Kernel_SVC,"called operation=0x%08X, addr0=0x%08X, addr1=0x%08X, size=0x%X, permissions=0x%08X",
|
2014-05-07 04:34:20 +01:00
|
|
|
operation, addr0, addr1, size, permissions);
|
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
if ((addr0 & Memory::PAGE_MASK) != 0 || (addr1 & Memory::PAGE_MASK) != 0) {
|
|
|
|
return ERR_MISALIGNED_ADDRESS;
|
|
|
|
}
|
|
|
|
if ((size & Memory::PAGE_MASK) != 0) {
|
|
|
|
return ERR_MISALIGNED_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 region = operation & MEMOP_REGION_MASK;
|
|
|
|
operation &= ~MEMOP_REGION_MASK;
|
|
|
|
|
|
|
|
if (region != 0) {
|
|
|
|
LOG_WARNING(Kernel_SVC, "ControlMemory with specified region not supported, region=%X", region);
|
|
|
|
}
|
2014-04-18 04:05:31 +01:00
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
if ((permissions & (u32)MemoryPermission::ReadWrite) != permissions) {
|
|
|
|
return ERR_INVALID_COMBINATION;
|
|
|
|
}
|
|
|
|
VMAPermission vma_permissions = (VMAPermission)permissions;
|
|
|
|
|
|
|
|
auto& process = *g_current_process;
|
|
|
|
|
|
|
|
switch (operation & MEMOP_OPERATION_MASK) {
|
|
|
|
case MEMOP_FREE:
|
|
|
|
{
|
|
|
|
if (addr0 >= Memory::HEAP_VADDR && addr0 < Memory::HEAP_VADDR_END) {
|
|
|
|
ResultCode result = process.HeapFree(addr0, size);
|
|
|
|
if (result.IsError()) return result;
|
2015-08-06 01:26:52 +01:00
|
|
|
} else if (addr0 >= process.GetLinearHeapBase() && addr0 < process.GetLinearHeapLimit()) {
|
2015-07-18 03:19:16 +01:00
|
|
|
ResultCode result = process.LinearFree(addr0, size);
|
|
|
|
if (result.IsError()) return result;
|
|
|
|
} else {
|
|
|
|
return ERR_INVALID_ADDRESS;
|
|
|
|
}
|
|
|
|
*out_addr = addr0;
|
2014-04-25 04:56:06 +01:00
|
|
|
break;
|
2015-07-18 03:19:16 +01:00
|
|
|
}
|
2014-04-25 04:56:06 +01:00
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
case MEMOP_COMMIT:
|
|
|
|
{
|
|
|
|
if (operation & MEMOP_LINEAR) {
|
|
|
|
CASCADE_RESULT(*out_addr, process.LinearAllocate(addr0, size, vma_permissions));
|
|
|
|
} else {
|
|
|
|
CASCADE_RESULT(*out_addr, process.HeapAllocate(addr0, size, vma_permissions));
|
|
|
|
}
|
2014-04-18 04:05:31 +01:00
|
|
|
break;
|
2015-07-18 03:19:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
case MEMOP_MAP: // TODO: This is just a hack to avoid regressions until memory aliasing is implemented
|
|
|
|
{
|
|
|
|
CASCADE_RESULT(*out_addr, process.HeapAllocate(addr0, size, vma_permissions));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MEMOP_UNMAP: // TODO: This is just a hack to avoid regressions until memory aliasing is implemented
|
|
|
|
{
|
|
|
|
ResultCode result = process.HeapFree(addr0, size);
|
|
|
|
if (result.IsError()) return result;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MEMOP_PROTECT:
|
|
|
|
{
|
|
|
|
ResultCode result = process.vm_manager.ReprotectRange(addr0, size, vma_permissions);
|
|
|
|
if (result.IsError()) return result;
|
|
|
|
break;
|
|
|
|
}
|
2014-04-18 04:05:31 +01:00
|
|
|
|
|
|
|
default:
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Kernel_SVC, "unknown operation=0x%08X", operation);
|
2015-07-18 03:19:16 +01:00
|
|
|
return ERR_INVALID_COMBINATION;
|
2014-04-18 04:05:31 +01:00
|
|
|
}
|
2015-07-18 03:19:16 +01:00
|
|
|
|
|
|
|
process.vm_manager.LogLayout(Log::Level::Trace);
|
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-04-25 04:56:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Maps a memory block to specified address
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode MapMemoryBlock(Handle handle, u32 addr, u32 permissions, u32 other_permissions) {
|
2015-01-11 05:43:29 +00:00
|
|
|
using Kernel::SharedMemory;
|
|
|
|
using Kernel::MemoryPermission;
|
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called memblock=0x%08X, addr=0x%08X, mypermissions=0x%08X, otherpermission=%d",
|
2014-07-05 05:59:58 +01:00
|
|
|
handle, addr, permissions, other_permissions);
|
2014-07-05 15:22:03 +01:00
|
|
|
|
2015-01-11 05:43:29 +00:00
|
|
|
SharedPtr<SharedMemory> shared_memory = Kernel::g_handle_table.Get<SharedMemory>(handle);
|
|
|
|
if (shared_memory == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-11 05:43:29 +00:00
|
|
|
|
|
|
|
MemoryPermission permissions_type = static_cast<MemoryPermission>(permissions);
|
2014-07-05 15:22:03 +01:00
|
|
|
switch (permissions_type) {
|
2015-01-11 05:43:29 +00:00
|
|
|
case MemoryPermission::Read:
|
|
|
|
case MemoryPermission::Write:
|
|
|
|
case MemoryPermission::ReadWrite:
|
|
|
|
case MemoryPermission::Execute:
|
|
|
|
case MemoryPermission::ReadExecute:
|
|
|
|
case MemoryPermission::WriteExecute:
|
|
|
|
case MemoryPermission::ReadWriteExecute:
|
|
|
|
case MemoryPermission::DontCare:
|
|
|
|
shared_memory->Map(addr, permissions_type,
|
|
|
|
static_cast<MemoryPermission>(other_permissions));
|
2014-04-25 04:56:06 +01:00
|
|
|
break;
|
|
|
|
default:
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Kernel_SVC, "unknown permissions=0x%08X", permissions);
|
2014-04-25 04:56:06 +01:00
|
|
|
}
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-04-18 04:05:31 +01:00
|
|
|
}
|
|
|
|
|
2014-04-13 02:55:36 +01:00
|
|
|
/// Connect to an OS service given the port name, returns the handle to the port to out
|
2015-01-30 18:07:04 +00:00
|
|
|
static ResultCode ConnectToPort(Handle* out_handle, const char* port_name) {
|
|
|
|
if (port_name == nullptr)
|
|
|
|
return ERR_NOT_FOUND;
|
|
|
|
if (std::strlen(port_name) > 11)
|
|
|
|
return ERR_PORT_NAME_TOO_LONG;
|
2014-06-02 01:48:29 +01:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called port_name=%s", port_name);
|
2014-06-02 01:48:29 +01:00
|
|
|
|
2015-01-30 18:07:04 +00:00
|
|
|
auto it = Service::g_kernel_named_ports.find(port_name);
|
|
|
|
if (it == Service::g_kernel_named_ports.end()) {
|
|
|
|
LOG_WARNING(Kernel_SVC, "tried to connect to unknown port: %s", port_name);
|
|
|
|
return ERR_NOT_FOUND;
|
|
|
|
}
|
2014-06-02 01:48:29 +01:00
|
|
|
|
2015-01-30 18:07:04 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(it->second));
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-04-13 02:55:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Synchronize to an OS service
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode SendSyncRequest(Handle handle) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Kernel::Session> session = Kernel::g_handle_table.Get<Kernel::Session>(handle);
|
2014-12-14 05:30:11 +00:00
|
|
|
if (session == nullptr) {
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-10-23 04:20:01 +01:00
|
|
|
}
|
2014-05-27 03:12:46 +01:00
|
|
|
|
2014-12-14 05:30:11 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called handle=0x%08X(%s)", handle, session->GetName().c_str());
|
2014-05-27 03:12:46 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return session->SyncRequest().Code();
|
2014-04-11 00:58:28 +01:00
|
|
|
}
|
|
|
|
|
2014-04-17 01:41:33 +01:00
|
|
|
/// Close a handle
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode CloseHandle(Handle handle) {
|
2015-01-31 18:12:54 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "Closing handle 0x%08X", handle);
|
|
|
|
return Kernel::g_handle_table.Close(handle);
|
2014-04-17 01:41:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Wait for a handle to synchronize, timeout after the specified nanoseconds
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode WaitSynchronization1(Handle handle, s64 nano_seconds) {
|
2015-01-18 19:33:11 +00:00
|
|
|
auto object = Kernel::g_handle_table.GetWaitObject(handle);
|
2015-06-08 04:39:37 +01:00
|
|
|
Kernel::Thread* thread = Kernel::GetCurrentThread();
|
|
|
|
|
|
|
|
thread->waitsynch_waited = false;
|
|
|
|
|
2014-12-21 12:04:08 +00:00
|
|
|
if (object == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-05-28 03:41:09 +01:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called handle=0x%08X(%s:%s), nanoseconds=%lld", handle,
|
|
|
|
object->GetTypeName().c_str(), object->GetName().c_str(), nano_seconds);
|
2014-06-06 03:35:36 +01:00
|
|
|
|
2015-02-10 03:05:39 +00:00
|
|
|
HLE::Reschedule(__func__);
|
|
|
|
|
2014-06-06 03:35:36 +01:00
|
|
|
// Check for next thread to schedule
|
2015-01-20 23:16:45 +00:00
|
|
|
if (object->ShouldWait()) {
|
2015-01-18 18:25:51 +00:00
|
|
|
|
2015-06-08 04:39:37 +01:00
|
|
|
object->AddWaitingThread(thread);
|
2015-01-26 06:56:17 +00:00
|
|
|
Kernel::WaitCurrentThread_WaitSynchronization({ object }, false, false);
|
2015-01-18 18:25:51 +00:00
|
|
|
|
2015-01-10 16:34:50 +00:00
|
|
|
// Create an event to wake the thread up after the specified nanosecond delay has passed
|
2015-06-08 04:39:37 +01:00
|
|
|
thread->WakeAfterDelay(nano_seconds);
|
2015-01-17 07:03:44 +00:00
|
|
|
|
2015-01-21 23:27:01 +00:00
|
|
|
// NOTE: output of this SVC will be set later depending on how the thread resumes
|
2015-06-08 04:39:37 +01:00
|
|
|
return HLE::RESULT_INVALID;
|
2014-05-28 03:41:09 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 23:27:01 +00:00
|
|
|
object->Acquire();
|
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-18 04:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Wait for the given handles to synchronize, timeout after the specified nanoseconds
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode WaitSynchronizationN(s32* out, Handle* handles, s32 handle_count, bool wait_all, s64 nano_seconds) {
|
2015-01-18 06:27:46 +00:00
|
|
|
bool wait_thread = !wait_all;
|
2015-01-17 07:03:44 +00:00
|
|
|
int handle_index = 0;
|
2015-06-08 04:39:37 +01:00
|
|
|
Kernel::Thread* thread = Kernel::GetCurrentThread();
|
|
|
|
bool was_waiting = thread->waitsynch_waited;
|
|
|
|
thread->waitsynch_waited = false;
|
2014-05-23 00:32:45 +01:00
|
|
|
|
2015-01-18 07:16:54 +00:00
|
|
|
// Check if 'handles' is invalid
|
2015-01-17 19:04:54 +00:00
|
|
|
if (handles == nullptr)
|
2015-01-23 05:36:58 +00:00
|
|
|
return ResultCode(ErrorDescription::InvalidPointer, ErrorModule::Kernel, ErrorSummary::InvalidArgument, ErrorLevel::Permanent);
|
2015-01-17 19:04:54 +00:00
|
|
|
|
2015-01-18 07:16:54 +00:00
|
|
|
// NOTE: on real hardware, there is no nullptr check for 'out' (tested with firmware 4.4). If
|
|
|
|
// this happens, the running application will crash.
|
2015-01-21 01:16:47 +00:00
|
|
|
ASSERT_MSG(out != nullptr, "invalid output pointer specified!");
|
2015-01-18 07:16:54 +00:00
|
|
|
|
|
|
|
// Check if 'handle_count' is invalid
|
2015-01-17 17:35:55 +00:00
|
|
|
if (handle_count < 0)
|
2015-01-23 05:36:58 +00:00
|
|
|
return ResultCode(ErrorDescription::OutOfRange, ErrorModule::OS, ErrorSummary::InvalidArgument, ErrorLevel::Usage);
|
2015-01-17 17:35:55 +00:00
|
|
|
|
2015-01-18 07:16:54 +00:00
|
|
|
// If 'handle_count' is non-zero, iterate through each handle and wait the current thread if
|
|
|
|
// necessary
|
2015-01-17 17:35:55 +00:00
|
|
|
if (handle_count != 0) {
|
2015-01-18 06:27:46 +00:00
|
|
|
bool selected = false; // True once an object has been selected
|
2015-06-08 04:39:37 +01:00
|
|
|
|
|
|
|
Kernel::SharedPtr<Kernel::WaitObject> wait_object;
|
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
for (int i = 0; i < handle_count; ++i) {
|
2015-01-18 19:33:11 +00:00
|
|
|
auto object = Kernel::g_handle_table.GetWaitObject(handles[i]);
|
2015-01-17 17:17:36 +00:00
|
|
|
if (object == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-05-28 03:41:09 +01:00
|
|
|
|
2015-01-18 07:16:54 +00:00
|
|
|
// Check if the current thread should wait on this object...
|
2015-01-20 23:16:45 +00:00
|
|
|
if (object->ShouldWait()) {
|
2015-01-18 18:25:51 +00:00
|
|
|
|
2015-01-18 06:27:46 +00:00
|
|
|
// Check we are waiting on all objects...
|
|
|
|
if (wait_all)
|
|
|
|
// Wait the thread
|
|
|
|
wait_thread = true;
|
|
|
|
} else {
|
|
|
|
// Do not wait on this object, check if this object should be selected...
|
2015-06-08 04:39:37 +01:00
|
|
|
if (!wait_all && (!selected || (wait_object == object && was_waiting))) {
|
2015-01-18 06:27:46 +00:00
|
|
|
// Do not wait the thread
|
|
|
|
wait_thread = false;
|
|
|
|
handle_index = i;
|
2015-06-08 04:39:37 +01:00
|
|
|
wait_object = object;
|
2015-01-18 06:27:46 +00:00
|
|
|
selected = true;
|
|
|
|
}
|
|
|
|
}
|
2015-01-17 17:17:36 +00:00
|
|
|
}
|
2015-01-17 17:35:55 +00:00
|
|
|
} else {
|
2015-01-18 07:16:54 +00:00
|
|
|
// If no handles were passed in, put the thread to sleep only when 'wait_all' is false
|
|
|
|
// NOTE: This should deadlock the current thread if no timeout was specified
|
2015-01-17 17:17:36 +00:00
|
|
|
if (!wait_all) {
|
|
|
|
wait_thread = true;
|
|
|
|
}
|
2014-05-28 03:41:09 +01:00
|
|
|
}
|
|
|
|
|
2015-02-10 03:05:39 +00:00
|
|
|
HLE::Reschedule(__func__);
|
|
|
|
|
2015-01-18 07:16:54 +00:00
|
|
|
// If thread should wait, then set its state to waiting and then reschedule...
|
2015-01-18 06:27:46 +00:00
|
|
|
if (wait_thread) {
|
2015-01-18 18:25:51 +00:00
|
|
|
|
|
|
|
// Actually wait the current thread on each object if we decided to wait...
|
2015-01-26 06:56:17 +00:00
|
|
|
std::vector<SharedPtr<Kernel::WaitObject>> wait_objects;
|
|
|
|
wait_objects.reserve(handle_count);
|
2015-05-25 19:34:09 +01:00
|
|
|
|
2015-01-18 18:25:51 +00:00
|
|
|
for (int i = 0; i < handle_count; ++i) {
|
|
|
|
auto object = Kernel::g_handle_table.GetWaitObject(handles[i]);
|
|
|
|
object->AddWaitingThread(Kernel::GetCurrentThread());
|
2015-01-26 06:56:17 +00:00
|
|
|
wait_objects.push_back(object);
|
2015-01-18 18:25:51 +00:00
|
|
|
}
|
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
Kernel::WaitCurrentThread_WaitSynchronization(std::move(wait_objects), true, wait_all);
|
|
|
|
|
2015-01-17 07:03:44 +00:00
|
|
|
// Create an event to wake the thread up after the specified nanosecond delay has passed
|
2015-01-31 01:07:54 +00:00
|
|
|
Kernel::GetCurrentThread()->WakeAfterDelay(nano_seconds);
|
2015-01-17 07:03:44 +00:00
|
|
|
|
|
|
|
// NOTE: output of this SVC will be set later depending on how the thread resumes
|
2015-06-08 04:39:37 +01:00
|
|
|
return HLE::RESULT_INVALID;
|
2014-05-18 22:52:02 +01:00
|
|
|
}
|
2014-05-28 03:41:09 +01:00
|
|
|
|
2015-01-17 07:03:44 +00:00
|
|
|
// Acquire objects if we did not wait...
|
|
|
|
for (int i = 0; i < handle_count; ++i) {
|
|
|
|
auto object = Kernel::g_handle_table.GetWaitObject(handles[i]);
|
|
|
|
|
|
|
|
// Acquire the object if it is not waiting...
|
|
|
|
if (!object->ShouldWait()) {
|
|
|
|
object->Acquire();
|
|
|
|
|
|
|
|
// If this was the first non-waiting object and 'wait_all' is false, don't acquire
|
|
|
|
// any other objects
|
|
|
|
if (!wait_all)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(bunnei): If 'wait_all' is true, this is probably wrong. However, real hardware does
|
|
|
|
// not seem to set it to any meaningful value.
|
2015-06-08 04:39:37 +01:00
|
|
|
*out = handle_count != 0 ? (wait_all ? -1 : handle_index) : 0;
|
2014-05-28 03:41:09 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-04-17 01:41:33 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 23:50:36 +01:00
|
|
|
/// Create an address arbiter (to allocate access to shared resources)
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateAddressArbiter(Handle* out_handle) {
|
2015-01-11 16:46:49 +00:00
|
|
|
using Kernel::AddressArbiter;
|
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<AddressArbiter> arbiter = AddressArbiter::Create();
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(arbiter)));
|
|
|
|
LOG_TRACE(Kernel_SVC, "returned handle=0x%08X", *out_handle);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-01 23:50:36 +01:00
|
|
|
}
|
|
|
|
|
2014-05-30 01:24:51 +01:00
|
|
|
/// Arbitrate address
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ArbitrateAddress(Handle handle, u32 address, u32 type, u32 value, s64 nanoseconds) {
|
2015-01-11 16:46:49 +00:00
|
|
|
using Kernel::AddressArbiter;
|
|
|
|
|
|
|
|
LOG_TRACE(Kernel_SVC, "called handle=0x%08X, address=0x%08X, type=0x%08X, value=0x%08X", handle,
|
2014-11-26 05:35:20 +00:00
|
|
|
address, type, value);
|
2015-01-11 16:46:49 +00:00
|
|
|
|
|
|
|
SharedPtr<AddressArbiter> arbiter = Kernel::g_handle_table.Get<AddressArbiter>(handle);
|
|
|
|
if (arbiter == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-11 16:46:49 +00:00
|
|
|
|
2015-04-07 02:58:05 +01:00
|
|
|
auto res = arbiter->ArbitrateAddress(static_cast<Kernel::ArbitrationType>(type),
|
|
|
|
address, value, nanoseconds);
|
|
|
|
|
|
|
|
return res;
|
2014-05-30 01:24:51 +01:00
|
|
|
}
|
|
|
|
|
2015-05-17 06:06:59 +01:00
|
|
|
static void Break(u8 break_reason) {
|
|
|
|
LOG_CRITICAL(Debug_Emulated, "Emulated program broke execution!");
|
|
|
|
std::string reason_str;
|
|
|
|
switch (break_reason) {
|
|
|
|
case 0: reason_str = "PANIC"; break;
|
|
|
|
case 1: reason_str = "ASSERT"; break;
|
|
|
|
case 2: reason_str = "USER"; break;
|
|
|
|
default: reason_str = "UNKNOWN"; break;
|
|
|
|
}
|
|
|
|
LOG_CRITICAL(Debug_Emulated, "Break reason: %s", reason_str.c_str());
|
|
|
|
}
|
|
|
|
|
2014-05-01 23:50:36 +01:00
|
|
|
/// Used to output a message on a debug hardware unit - does nothing on a retail unit
|
2014-11-17 03:58:39 +00:00
|
|
|
static void OutputDebugString(const char* string) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Debug_Emulated, "%s", string);
|
2014-05-07 04:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get resource limit
|
2015-05-12 21:25:15 +01:00
|
|
|
static ResultCode GetResourceLimit(Handle* resource_limit, Handle process_handle) {
|
|
|
|
LOG_TRACE(Kernel_SVC, "called process=0x%08X", process_handle);
|
|
|
|
|
|
|
|
SharedPtr<Kernel::Process> process = Kernel::g_handle_table.Get<Kernel::Process>(process_handle);
|
|
|
|
if (process == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
CASCADE_RESULT(*resource_limit, Kernel::g_handle_table.Create(process->resource_limit));
|
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-07 04:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get resource limit current values
|
2015-05-12 21:25:15 +01:00
|
|
|
static ResultCode GetResourceLimitCurrentValues(s64* values, Handle resource_limit_handle, u32* names,
|
2015-06-27 05:48:08 +01:00
|
|
|
u32 name_count) {
|
2015-05-12 21:25:15 +01:00
|
|
|
LOG_TRACE(Kernel_SVC, "called resource_limit=%08X, names=%p, name_count=%d",
|
|
|
|
resource_limit_handle, names, name_count);
|
|
|
|
|
|
|
|
SharedPtr<Kernel::ResourceLimit> resource_limit = Kernel::g_handle_table.Get<Kernel::ResourceLimit>(resource_limit_handle);
|
|
|
|
if (resource_limit == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < name_count; ++i)
|
|
|
|
values[i] = resource_limit->GetCurrentResourceValue(names[i]);
|
|
|
|
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get resource limit max values
|
|
|
|
static ResultCode GetResourceLimitLimitValues(s64* values, Handle resource_limit_handle, u32* names,
|
2015-06-27 05:48:08 +01:00
|
|
|
u32 name_count) {
|
2015-05-12 21:25:15 +01:00
|
|
|
LOG_TRACE(Kernel_SVC, "called resource_limit=%08X, names=%p, name_count=%d",
|
|
|
|
resource_limit_handle, names, name_count);
|
|
|
|
|
|
|
|
SharedPtr<Kernel::ResourceLimit> resource_limit = Kernel::g_handle_table.Get<Kernel::ResourceLimit>(resource_limit_handle);
|
|
|
|
if (resource_limit == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < name_count; ++i)
|
|
|
|
values[i] = resource_limit->GetMaxResourceValue(names[i]);
|
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-01 23:50:36 +01:00
|
|
|
}
|
|
|
|
|
2014-05-21 03:57:54 +01:00
|
|
|
/// Creates a new thread
|
2015-03-24 03:55:21 +00:00
|
|
|
static ResultCode CreateThread(Handle* out_handle, s32 priority, u32 entry_point, u32 arg, u32 stack_top, s32 processor_id) {
|
2014-12-29 12:55:30 +00:00
|
|
|
using Kernel::Thread;
|
|
|
|
|
2014-05-17 18:47:44 +01:00
|
|
|
std::string name;
|
2014-05-15 23:25:56 +01:00
|
|
|
if (Symbols::HasSymbol(entry_point)) {
|
|
|
|
TSymbol symbol = Symbols::GetSymbol(entry_point);
|
2014-05-17 18:47:44 +01:00
|
|
|
name = symbol.name;
|
2014-05-15 23:25:56 +01:00
|
|
|
} else {
|
2014-09-07 19:50:43 +01:00
|
|
|
name = Common::StringFromFormat("unknown-%08x", entry_point);
|
2014-05-14 02:58:26 +01:00
|
|
|
}
|
2014-05-17 18:47:44 +01:00
|
|
|
|
2015-03-24 03:55:21 +00:00
|
|
|
// TODO(bunnei): Implement resource limits to return an error code instead of the below assert.
|
|
|
|
// The error code should be: Description::NotAuthorized, Module::OS, Summary::WrongArgument,
|
|
|
|
// Level::Permanent
|
|
|
|
ASSERT_MSG(priority >= THREADPRIO_USERLAND_MAX, "Unexpected thread priority!");
|
|
|
|
|
|
|
|
if (priority > THREADPRIO_LOWEST) {
|
|
|
|
return ResultCode(ErrorDescription::OutOfRange, ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage);
|
|
|
|
}
|
|
|
|
|
2015-04-10 03:55:18 +01:00
|
|
|
switch (processor_id) {
|
|
|
|
case THREADPROCESSORID_DEFAULT:
|
|
|
|
case THREADPROCESSORID_0:
|
|
|
|
case THREADPROCESSORID_1:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// TODO(bunnei): Implement support for other processor IDs
|
|
|
|
ASSERT_MSG(false, "Unsupported thread processor ID: %d", processor_id);
|
|
|
|
break;
|
2015-03-24 03:55:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(SharedPtr<Thread> thread, Kernel::Thread::Create(
|
2015-01-26 06:56:17 +00:00
|
|
|
name, entry_point, priority, arg, processor_id, stack_top));
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(thread)));
|
2014-05-22 02:41:40 +01:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called entrypoint=0x%08X (%s), arg=0x%08X, stacktop=0x%08X, "
|
2014-11-19 08:49:13 +00:00
|
|
|
"threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", entry_point,
|
2015-01-23 06:00:39 +00:00
|
|
|
name.c_str(), arg, stack_top, priority, processor_id, *out_handle);
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-14 02:58:26 +01:00
|
|
|
}
|
|
|
|
|
2014-06-06 03:35:36 +01:00
|
|
|
/// Called when a thread exits
|
2014-12-22 13:07:22 +00:00
|
|
|
static void ExitThread() {
|
|
|
|
LOG_TRACE(Kernel_SVC, "called, pc=0x%08X", Core::g_app_core->GetPC());
|
2014-06-06 03:35:36 +01:00
|
|
|
|
2015-01-26 06:56:17 +00:00
|
|
|
Kernel::GetCurrentThread()->Stop();
|
2014-06-06 03:35:36 +01:00
|
|
|
}
|
|
|
|
|
2014-06-02 03:12:54 +01:00
|
|
|
/// Gets the priority for the specified thread
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode GetThreadPriority(s32* priority, Handle handle) {
|
2014-12-29 12:55:30 +00:00
|
|
|
const SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(handle);
|
2014-12-22 13:07:22 +00:00
|
|
|
if (thread == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-12-22 13:07:22 +00:00
|
|
|
|
|
|
|
*priority = thread->GetPriority();
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-06-02 03:12:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the priority for the specified thread
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode SetThreadPriority(Handle handle, s32 priority) {
|
2014-12-29 12:55:30 +00:00
|
|
|
SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(handle);
|
2014-12-22 13:07:22 +00:00
|
|
|
if (thread == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-12-22 13:07:22 +00:00
|
|
|
|
|
|
|
thread->SetPriority(priority);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-06-02 03:12:54 +01:00
|
|
|
}
|
|
|
|
|
2014-05-21 03:57:54 +01:00
|
|
|
/// Create a mutex
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateMutex(Handle* out_handle, u32 initial_locked) {
|
2015-01-23 01:12:19 +00:00
|
|
|
using Kernel::Mutex;
|
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<Mutex> mutex = Mutex::Create(initial_locked != 0);
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(mutex)));
|
2015-01-23 01:12:19 +00:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called initial_locked=%s : created handle=0x%08X",
|
2015-01-23 06:00:39 +00:00
|
|
|
initial_locked ? "true" : "false", *out_handle);
|
2015-05-20 01:24:30 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-14 02:58:26 +01:00
|
|
|
}
|
|
|
|
|
2014-05-21 03:57:54 +01:00
|
|
|
/// Release a mutex
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ReleaseMutex(Handle handle) {
|
2015-01-23 01:12:19 +00:00
|
|
|
using Kernel::Mutex;
|
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called handle=0x%08X", handle);
|
2015-01-23 01:12:19 +00:00
|
|
|
|
|
|
|
SharedPtr<Mutex> mutex = Kernel::g_handle_table.Get<Mutex>(handle);
|
|
|
|
if (mutex == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 01:12:19 +00:00
|
|
|
|
|
|
|
mutex->Release();
|
2015-04-07 02:58:05 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-14 02:58:26 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 15:15:10 +01:00
|
|
|
/// Get the ID of the specified process
|
2015-05-12 00:23:45 +01:00
|
|
|
static ResultCode GetProcessId(u32* process_id, Handle process_handle) {
|
|
|
|
LOG_TRACE(Kernel_SVC, "called process=0x%08X", process_handle);
|
2015-05-11 15:15:10 +01:00
|
|
|
|
2015-05-12 00:23:45 +01:00
|
|
|
const SharedPtr<Kernel::Process> process = Kernel::g_handle_table.Get<Kernel::Process>(process_handle);
|
2015-05-11 15:15:10 +01:00
|
|
|
if (process == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
2015-05-12 00:23:45 +01:00
|
|
|
*process_id = process->process_id;
|
2015-05-11 15:15:10 +01:00
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the ID of the process that owns the specified thread
|
2015-05-12 00:23:45 +01:00
|
|
|
static ResultCode GetProcessIdOfThread(u32* process_id, Handle thread_handle) {
|
|
|
|
LOG_TRACE(Kernel_SVC, "called thread=0x%08X", thread_handle);
|
2015-05-11 15:15:10 +01:00
|
|
|
|
2015-05-12 00:23:45 +01:00
|
|
|
const SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(thread_handle);
|
2015-05-11 15:15:10 +01:00
|
|
|
if (thread == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
const SharedPtr<Kernel::Process> process = thread->owner_process;
|
2015-05-25 19:34:09 +01:00
|
|
|
|
2015-05-12 00:23:45 +01:00
|
|
|
ASSERT_MSG(process != nullptr, "Invalid parent process for thread=0x%08X", thread_handle);
|
2015-05-11 15:15:10 +01:00
|
|
|
|
|
|
|
*process_id = process->process_id;
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2014-12-04 04:22:06 +00:00
|
|
|
/// Get the ID for the specified thread.
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode GetThreadId(u32* thread_id, Handle handle) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called thread=0x%08X", handle);
|
2014-12-22 13:07:22 +00:00
|
|
|
|
2014-12-29 12:55:30 +00:00
|
|
|
const SharedPtr<Kernel::Thread> thread = Kernel::g_handle_table.Get<Kernel::Thread>(handle);
|
2014-12-22 13:07:22 +00:00
|
|
|
if (thread == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2014-12-22 13:07:22 +00:00
|
|
|
|
|
|
|
*thread_id = thread->GetThreadId();
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-16 01:17:30 +01:00
|
|
|
}
|
|
|
|
|
2014-12-03 23:49:51 +00:00
|
|
|
/// Creates a semaphore
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateSemaphore(Handle* out_handle, s32 initial_count, s32 max_count) {
|
2015-01-11 15:53:11 +00:00
|
|
|
using Kernel::Semaphore;
|
|
|
|
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(SharedPtr<Semaphore> semaphore, Semaphore::Create(initial_count, max_count));
|
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(semaphore)));
|
2015-01-11 15:53:11 +00:00
|
|
|
|
2014-12-13 18:43:01 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called initial_count=%d, max_count=%d, created handle=0x%08X",
|
2015-01-23 06:00:39 +00:00
|
|
|
initial_count, max_count, *out_handle);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-04 16:40:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Releases a certain number of slots in a semaphore
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ReleaseSemaphore(s32* count, Handle handle, s32 release_count) {
|
2015-01-11 15:53:11 +00:00
|
|
|
using Kernel::Semaphore;
|
|
|
|
|
|
|
|
LOG_TRACE(Kernel_SVC, "called release_count=%d, handle=0x%08X", release_count, handle);
|
|
|
|
|
|
|
|
SharedPtr<Semaphore> semaphore = Kernel::g_handle_table.Get<Semaphore>(handle);
|
|
|
|
if (semaphore == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-11 15:53:11 +00:00
|
|
|
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*count, semaphore->Release(release_count));
|
2015-04-07 02:58:05 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-03 23:49:51 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 20:45:12 +01:00
|
|
|
/// Query process memory
|
|
|
|
static ResultCode QueryProcessMemory(MemoryInfo* memory_info, PageInfo* page_info, Handle process_handle, u32 addr) {
|
|
|
|
using Kernel::Process;
|
|
|
|
Kernel::SharedPtr<Process> process = Kernel::g_handle_table.Get<Process>(process_handle);
|
|
|
|
if (process == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
auto vma = process->vm_manager.FindVMA(addr);
|
2015-07-17 07:23:22 +01:00
|
|
|
|
2015-07-18 03:19:16 +01:00
|
|
|
if (vma == Kernel::g_current_process->vm_manager.vma_map.end())
|
2015-07-17 07:23:22 +01:00
|
|
|
return ResultCode(ErrorDescription::InvalidAddress, ErrorModule::OS, ErrorSummary::InvalidArgument, ErrorLevel::Usage);
|
|
|
|
|
|
|
|
memory_info->base_address = vma->second.base;
|
|
|
|
memory_info->permission = static_cast<u32>(vma->second.permissions);
|
|
|
|
memory_info->size = vma->second.size;
|
|
|
|
memory_info->state = static_cast<u32>(vma->second.meminfo_state);
|
|
|
|
|
|
|
|
page_info->flags = 0;
|
2015-07-17 20:45:12 +01:00
|
|
|
LOG_TRACE(Kernel_SVC, "called process=0x%08X addr=0x%08X", process_handle, addr);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-16 01:17:30 +01:00
|
|
|
}
|
|
|
|
|
2015-07-17 20:45:12 +01:00
|
|
|
/// Query memory
|
|
|
|
static ResultCode QueryMemory(MemoryInfo* memory_info, PageInfo* page_info, u32 addr) {
|
|
|
|
return QueryProcessMemory(memory_info, page_info, Kernel::CurrentProcess, addr);
|
|
|
|
}
|
|
|
|
|
2014-05-21 03:57:54 +01:00
|
|
|
/// Create an event
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateEvent(Handle* out_handle, u32 reset_type) {
|
2015-02-01 02:14:40 +00:00
|
|
|
using Kernel::Event;
|
|
|
|
|
|
|
|
SharedPtr<Event> evt = Kernel::Event::Create(static_cast<ResetType>(reset_type));
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(evt)));
|
|
|
|
|
|
|
|
LOG_TRACE(Kernel_SVC, "called reset_type=0x%08X : created handle=0x%08X",
|
|
|
|
reset_type, *out_handle);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-18 22:52:02 +01:00
|
|
|
}
|
|
|
|
|
2014-05-27 01:55:48 +01:00
|
|
|
/// Duplicates a kernel handle
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode DuplicateHandle(Handle* out, Handle handle) {
|
2015-01-31 18:12:54 +00:00
|
|
|
CASCADE_RESULT(*out, Kernel::g_handle_table.Duplicate(handle));
|
|
|
|
LOG_TRACE(Kernel_SVC, "duplicated 0x%08X to 0x%08X", handle, *out);
|
|
|
|
return RESULT_SUCCESS;
|
2014-05-27 01:55:48 +01:00
|
|
|
}
|
|
|
|
|
2014-06-06 03:35:36 +01:00
|
|
|
/// Signals an event
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode SignalEvent(Handle handle) {
|
2015-02-01 02:14:40 +00:00
|
|
|
using Kernel::Event;
|
2015-01-23 05:11:25 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called event=0x%08X", handle);
|
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<Event> evt = Kernel::g_handle_table.Get<Kernel::Event>(handle);
|
2015-01-23 05:11:25 +00:00
|
|
|
if (evt == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 05:11:25 +00:00
|
|
|
|
|
|
|
evt->Signal();
|
2015-05-20 01:24:30 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-06-06 03:35:36 +01:00
|
|
|
}
|
|
|
|
|
2014-05-30 01:24:51 +01:00
|
|
|
/// Clears an event
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ClearEvent(Handle handle) {
|
2015-02-01 02:14:40 +00:00
|
|
|
using Kernel::Event;
|
2015-01-23 05:11:25 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called event=0x%08X", handle);
|
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<Event> evt = Kernel::g_handle_table.Get<Kernel::Event>(handle);
|
2015-01-23 05:11:25 +00:00
|
|
|
if (evt == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 05:11:25 +00:00
|
|
|
|
|
|
|
evt->Clear();
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-05-30 01:24:51 +01:00
|
|
|
}
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
/// Creates a timer
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateTimer(Handle* out_handle, u32 reset_type) {
|
2015-01-23 04:19:33 +00:00
|
|
|
using Kernel::Timer;
|
|
|
|
|
2015-02-01 02:14:40 +00:00
|
|
|
SharedPtr<Timer> timer = Timer::Create(static_cast<ResetType>(reset_type));
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(timer)));
|
2015-01-23 04:19:33 +00:00
|
|
|
|
2015-01-23 06:00:39 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called reset_type=0x%08X : created handle=0x%08X",
|
|
|
|
reset_type, *out_handle);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Clears a timer
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode ClearTimer(Handle handle) {
|
2015-01-23 04:19:33 +00:00
|
|
|
using Kernel::Timer;
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called timer=0x%08X", handle);
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
|
|
|
if (timer == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
timer->Clear();
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Starts a timer
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode SetTimer(Handle handle, s64 initial, s64 interval) {
|
2015-01-23 04:19:33 +00:00
|
|
|
using Kernel::Timer;
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called timer=0x%08X", handle);
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
|
|
|
if (timer == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
timer->Set(initial, interval);
|
2015-04-07 02:58:05 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Cancels a timer
|
2015-01-23 05:36:58 +00:00
|
|
|
static ResultCode CancelTimer(Handle handle) {
|
2015-01-23 04:19:33 +00:00
|
|
|
using Kernel::Timer;
|
|
|
|
|
2014-12-04 19:45:47 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called timer=0x%08X", handle);
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
SharedPtr<Timer> timer = Kernel::g_handle_table.Get<Timer>(handle);
|
|
|
|
if (timer == nullptr)
|
2015-01-23 05:44:52 +00:00
|
|
|
return ERR_INVALID_HANDLE;
|
2015-01-23 04:19:33 +00:00
|
|
|
|
|
|
|
timer->Cancel();
|
2015-04-07 02:58:05 +01:00
|
|
|
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-04 19:45:47 +00:00
|
|
|
}
|
|
|
|
|
2014-06-01 15:37:19 +01:00
|
|
|
/// Sleep the current thread
|
2014-11-17 03:58:39 +00:00
|
|
|
static void SleepThread(s64 nanoseconds) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_TRACE(Kernel_SVC, "called nanoseconds=%lld", nanoseconds);
|
2014-11-26 05:34:14 +00:00
|
|
|
|
2014-12-20 07:32:19 +00:00
|
|
|
// Sleep current thread and check for next thread to schedule
|
2015-01-18 18:56:40 +00:00
|
|
|
Kernel::WaitCurrentThread_Sleep();
|
2015-01-07 21:40:08 +00:00
|
|
|
|
|
|
|
// Create an event to wake the thread up after the specified nanosecond delay has passed
|
2015-01-31 01:07:54 +00:00
|
|
|
Kernel::GetCurrentThread()->WakeAfterDelay(nanoseconds);
|
2014-06-01 15:37:19 +01:00
|
|
|
}
|
|
|
|
|
2014-08-15 01:01:02 +01:00
|
|
|
/// This returns the total CPU ticks elapsed since the CPU was powered-on
|
2014-11-17 03:58:39 +00:00
|
|
|
static s64 GetSystemTick() {
|
2015-08-26 03:47:29 +01:00
|
|
|
s64 result = CoreTiming::GetTicks();
|
|
|
|
// Advance time to defeat dumb games (like Cubic Ninja) that busy-wait for the frame to end.
|
|
|
|
Core::g_app_core->AddTicks(150); // Measured time between two calls on a 9.2 o3DS with Ninjhax 1.1b
|
|
|
|
return result;
|
2014-08-15 01:01:02 +01:00
|
|
|
}
|
|
|
|
|
2014-12-09 04:52:27 +00:00
|
|
|
/// Creates a memory block at the specified address with the specified permissions and size
|
2015-01-23 06:00:39 +00:00
|
|
|
static ResultCode CreateMemoryBlock(Handle* out_handle, u32 addr, u32 size, u32 my_permission,
|
2015-01-11 05:43:29 +00:00
|
|
|
u32 other_permission) {
|
|
|
|
using Kernel::SharedMemory;
|
2014-12-09 04:52:27 +00:00
|
|
|
// TODO(Subv): Implement this function
|
|
|
|
|
2015-05-10 23:47:07 +01:00
|
|
|
using Kernel::MemoryPermission;
|
|
|
|
SharedPtr<SharedMemory> shared_memory = SharedMemory::Create(size,
|
|
|
|
(MemoryPermission)my_permission, (MemoryPermission)other_permission);
|
2015-05-25 22:17:26 +01:00
|
|
|
// Map the SharedMemory to the specified address
|
|
|
|
shared_memory->base_address = addr;
|
2015-01-23 06:00:39 +00:00
|
|
|
CASCADE_RESULT(*out_handle, Kernel::g_handle_table.Create(std::move(shared_memory)));
|
2015-01-11 05:43:29 +00:00
|
|
|
|
2014-12-09 04:52:27 +00:00
|
|
|
LOG_WARNING(Kernel_SVC, "(STUBBED) called addr=0x%08X", addr);
|
2015-01-23 05:36:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
2014-12-09 04:52:27 +00:00
|
|
|
}
|
|
|
|
|
2015-08-06 01:39:53 +01:00
|
|
|
static ResultCode GetProcessInfo(s64* out, Handle process_handle, u32 type) {
|
|
|
|
LOG_TRACE(Kernel_SVC, "called process=0x%08X type=%u", process_handle, type);
|
|
|
|
|
|
|
|
using Kernel::Process;
|
|
|
|
Kernel::SharedPtr<Process> process = Kernel::g_handle_table.Get<Process>(process_handle);
|
|
|
|
if (process == nullptr)
|
|
|
|
return ERR_INVALID_HANDLE;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case 0:
|
|
|
|
case 2:
|
|
|
|
// TODO(yuriks): Type 0 returns a slightly higher number than type 2, but I'm not sure
|
|
|
|
// what's the difference between them.
|
|
|
|
*out = process->heap_used + process->linear_heap_used + process->misc_memory_used;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
case 6:
|
|
|
|
case 7:
|
|
|
|
case 8:
|
|
|
|
// These are valid, but not implemented yet
|
|
|
|
LOG_ERROR(Kernel_SVC, "unimplemented GetProcessInfo type=%u", type);
|
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
*out = Memory::FCRAM_PADDR - process->GetLinearHeapBase();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG_ERROR(Kernel_SVC, "unknown GetProcessInfo type=%u", type);
|
|
|
|
|
|
|
|
if (type >= 21 && type <= 23) {
|
|
|
|
return ResultCode( // 0xE0E01BF4
|
|
|
|
ErrorDescription::NotImplemented, ErrorModule::OS,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Usage);
|
|
|
|
} else {
|
|
|
|
return ResultCode( // 0xD8E007ED
|
|
|
|
ErrorDescription::InvalidEnumValue, ErrorModule::Kernel,
|
|
|
|
ErrorSummary::InvalidArgument, ErrorLevel::Permanent);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2015-05-06 04:04:25 +01:00
|
|
|
namespace {
|
|
|
|
struct FunctionDef {
|
|
|
|
using Func = void();
|
|
|
|
|
|
|
|
u32 id;
|
|
|
|
Func* func;
|
|
|
|
const char* name;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static const FunctionDef SVC_Table[] = {
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x00, nullptr, "Unknown"},
|
|
|
|
{0x01, HLE::Wrap<ControlMemory>, "ControlMemory"},
|
|
|
|
{0x02, HLE::Wrap<QueryMemory>, "QueryMemory"},
|
|
|
|
{0x03, nullptr, "ExitProcess"},
|
|
|
|
{0x04, nullptr, "GetProcessAffinityMask"},
|
|
|
|
{0x05, nullptr, "SetProcessAffinityMask"},
|
|
|
|
{0x06, nullptr, "GetProcessIdealProcessor"},
|
|
|
|
{0x07, nullptr, "SetProcessIdealProcessor"},
|
|
|
|
{0x08, HLE::Wrap<CreateThread>, "CreateThread"},
|
2014-12-22 13:07:22 +00:00
|
|
|
{0x09, ExitThread, "ExitThread"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x0A, HLE::Wrap<SleepThread>, "SleepThread"},
|
|
|
|
{0x0B, HLE::Wrap<GetThreadPriority>, "GetThreadPriority"},
|
|
|
|
{0x0C, HLE::Wrap<SetThreadPriority>, "SetThreadPriority"},
|
|
|
|
{0x0D, nullptr, "GetThreadAffinityMask"},
|
|
|
|
{0x0E, nullptr, "SetThreadAffinityMask"},
|
|
|
|
{0x0F, nullptr, "GetThreadIdealProcessor"},
|
|
|
|
{0x10, nullptr, "SetThreadIdealProcessor"},
|
|
|
|
{0x11, nullptr, "GetCurrentProcessorNumber"},
|
|
|
|
{0x12, nullptr, "Run"},
|
|
|
|
{0x13, HLE::Wrap<CreateMutex>, "CreateMutex"},
|
|
|
|
{0x14, HLE::Wrap<ReleaseMutex>, "ReleaseMutex"},
|
2014-12-03 23:49:51 +00:00
|
|
|
{0x15, HLE::Wrap<CreateSemaphore>, "CreateSemaphore"},
|
2014-12-04 16:40:36 +00:00
|
|
|
{0x16, HLE::Wrap<ReleaseSemaphore>, "ReleaseSemaphore"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x17, HLE::Wrap<CreateEvent>, "CreateEvent"},
|
|
|
|
{0x18, HLE::Wrap<SignalEvent>, "SignalEvent"},
|
|
|
|
{0x19, HLE::Wrap<ClearEvent>, "ClearEvent"},
|
2014-12-04 19:45:47 +00:00
|
|
|
{0x1A, HLE::Wrap<CreateTimer>, "CreateTimer"},
|
|
|
|
{0x1B, HLE::Wrap<SetTimer>, "SetTimer"},
|
|
|
|
{0x1C, HLE::Wrap<CancelTimer>, "CancelTimer"},
|
|
|
|
{0x1D, HLE::Wrap<ClearTimer>, "ClearTimer"},
|
2014-12-09 04:52:27 +00:00
|
|
|
{0x1E, HLE::Wrap<CreateMemoryBlock>, "CreateMemoryBlock"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x1F, HLE::Wrap<MapMemoryBlock>, "MapMemoryBlock"},
|
|
|
|
{0x20, nullptr, "UnmapMemoryBlock"},
|
|
|
|
{0x21, HLE::Wrap<CreateAddressArbiter>, "CreateAddressArbiter"},
|
|
|
|
{0x22, HLE::Wrap<ArbitrateAddress>, "ArbitrateAddress"},
|
|
|
|
{0x23, HLE::Wrap<CloseHandle>, "CloseHandle"},
|
|
|
|
{0x24, HLE::Wrap<WaitSynchronization1>, "WaitSynchronization1"},
|
|
|
|
{0x25, HLE::Wrap<WaitSynchronizationN>, "WaitSynchronizationN"},
|
|
|
|
{0x26, nullptr, "SignalAndWait"},
|
|
|
|
{0x27, HLE::Wrap<DuplicateHandle>, "DuplicateHandle"},
|
2014-08-15 01:01:02 +01:00
|
|
|
{0x28, HLE::Wrap<GetSystemTick>, "GetSystemTick"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x29, nullptr, "GetHandleInfo"},
|
|
|
|
{0x2A, nullptr, "GetSystemInfo"},
|
2015-08-06 01:39:53 +01:00
|
|
|
{0x2B, HLE::Wrap<GetProcessInfo>, "GetProcessInfo"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x2C, nullptr, "GetThreadInfo"},
|
|
|
|
{0x2D, HLE::Wrap<ConnectToPort>, "ConnectToPort"},
|
|
|
|
{0x2E, nullptr, "SendSyncRequest1"},
|
|
|
|
{0x2F, nullptr, "SendSyncRequest2"},
|
|
|
|
{0x30, nullptr, "SendSyncRequest3"},
|
|
|
|
{0x31, nullptr, "SendSyncRequest4"},
|
|
|
|
{0x32, HLE::Wrap<SendSyncRequest>, "SendSyncRequest"},
|
|
|
|
{0x33, nullptr, "OpenProcess"},
|
|
|
|
{0x34, nullptr, "OpenThread"},
|
2015-05-11 15:15:10 +01:00
|
|
|
{0x35, HLE::Wrap<GetProcessId>, "GetProcessId"},
|
|
|
|
{0x36, HLE::Wrap<GetProcessIdOfThread>, "GetProcessIdOfThread"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x37, HLE::Wrap<GetThreadId>, "GetThreadId"},
|
|
|
|
{0x38, HLE::Wrap<GetResourceLimit>, "GetResourceLimit"},
|
2015-05-12 21:25:15 +01:00
|
|
|
{0x39, HLE::Wrap<GetResourceLimitLimitValues>, "GetResourceLimitLimitValues"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x3A, HLE::Wrap<GetResourceLimitCurrentValues>, "GetResourceLimitCurrentValues"},
|
|
|
|
{0x3B, nullptr, "GetThreadContext"},
|
2015-05-17 06:06:59 +01:00
|
|
|
{0x3C, HLE::Wrap<Break>, "Break"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x3D, HLE::Wrap<OutputDebugString>, "OutputDebugString"},
|
|
|
|
{0x3E, nullptr, "ControlPerformanceCounter"},
|
|
|
|
{0x3F, nullptr, "Unknown"},
|
|
|
|
{0x40, nullptr, "Unknown"},
|
|
|
|
{0x41, nullptr, "Unknown"},
|
|
|
|
{0x42, nullptr, "Unknown"},
|
|
|
|
{0x43, nullptr, "Unknown"},
|
|
|
|
{0x44, nullptr, "Unknown"},
|
|
|
|
{0x45, nullptr, "Unknown"},
|
|
|
|
{0x46, nullptr, "Unknown"},
|
|
|
|
{0x47, nullptr, "CreatePort"},
|
|
|
|
{0x48, nullptr, "CreateSessionToPort"},
|
|
|
|
{0x49, nullptr, "CreateSession"},
|
|
|
|
{0x4A, nullptr, "AcceptSession"},
|
|
|
|
{0x4B, nullptr, "ReplyAndReceive1"},
|
|
|
|
{0x4C, nullptr, "ReplyAndReceive2"},
|
|
|
|
{0x4D, nullptr, "ReplyAndReceive3"},
|
|
|
|
{0x4E, nullptr, "ReplyAndReceive4"},
|
|
|
|
{0x4F, nullptr, "ReplyAndReceive"},
|
|
|
|
{0x50, nullptr, "BindInterrupt"},
|
|
|
|
{0x51, nullptr, "UnbindInterrupt"},
|
|
|
|
{0x52, nullptr, "InvalidateProcessDataCache"},
|
|
|
|
{0x53, nullptr, "StoreProcessDataCache"},
|
|
|
|
{0x54, nullptr, "FlushProcessDataCache"},
|
|
|
|
{0x55, nullptr, "StartInterProcessDma"},
|
|
|
|
{0x56, nullptr, "StopDma"},
|
|
|
|
{0x57, nullptr, "GetDmaState"},
|
|
|
|
{0x58, nullptr, "RestartDma"},
|
|
|
|
{0x59, nullptr, "Unknown"},
|
|
|
|
{0x5A, nullptr, "Unknown"},
|
|
|
|
{0x5B, nullptr, "Unknown"},
|
|
|
|
{0x5C, nullptr, "Unknown"},
|
|
|
|
{0x5D, nullptr, "Unknown"},
|
|
|
|
{0x5E, nullptr, "Unknown"},
|
|
|
|
{0x5F, nullptr, "Unknown"},
|
|
|
|
{0x60, nullptr, "DebugActiveProcess"},
|
|
|
|
{0x61, nullptr, "BreakDebugProcess"},
|
|
|
|
{0x62, nullptr, "TerminateDebugProcess"},
|
|
|
|
{0x63, nullptr, "GetProcessDebugEvent"},
|
|
|
|
{0x64, nullptr, "ContinueDebugEvent"},
|
|
|
|
{0x65, nullptr, "GetProcessList"},
|
|
|
|
{0x66, nullptr, "GetThreadList"},
|
|
|
|
{0x67, nullptr, "GetDebugThreadContext"},
|
|
|
|
{0x68, nullptr, "SetDebugThreadContext"},
|
|
|
|
{0x69, nullptr, "QueryDebugProcessMemory"},
|
|
|
|
{0x6A, nullptr, "ReadProcessMemory"},
|
|
|
|
{0x6B, nullptr, "WriteProcessMemory"},
|
|
|
|
{0x6C, nullptr, "SetHardwareBreakPoint"},
|
|
|
|
{0x6D, nullptr, "GetDebugThreadParam"},
|
|
|
|
{0x6E, nullptr, "Unknown"},
|
|
|
|
{0x6F, nullptr, "Unknown"},
|
|
|
|
{0x70, nullptr, "ControlProcessMemory"},
|
|
|
|
{0x71, nullptr, "MapProcessMemory"},
|
|
|
|
{0x72, nullptr, "UnmapProcessMemory"},
|
2015-01-05 00:34:52 +00:00
|
|
|
{0x73, nullptr, "CreateCodeSet"},
|
|
|
|
{0x74, nullptr, "RandomStub"},
|
|
|
|
{0x75, nullptr, "CreateProcess"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x76, nullptr, "TerminateProcess"},
|
2015-01-05 00:34:52 +00:00
|
|
|
{0x77, nullptr, "SetProcessResourceLimits"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x78, nullptr, "CreateResourceLimit"},
|
2015-01-05 00:34:52 +00:00
|
|
|
{0x79, nullptr, "SetResourceLimitValues"},
|
|
|
|
{0x7A, nullptr, "AddCodeSegment"},
|
|
|
|
{0x7B, nullptr, "Backdoor"},
|
2014-06-10 03:30:39 +01:00
|
|
|
{0x7C, nullptr, "KernelSetState"},
|
2015-07-17 20:45:12 +01:00
|
|
|
{0x7D, HLE::Wrap<QueryProcessMemory>, "QueryProcessMemory"},
|
2014-04-11 00:58:28 +01:00
|
|
|
};
|
|
|
|
|
2015-05-06 04:04:25 +01:00
|
|
|
Common::Profiling::TimingCategory profiler_svc("SVC Calls");
|
|
|
|
|
2015-07-21 08:51:36 +01:00
|
|
|
static const FunctionDef* GetSVCInfo(u32 func_num) {
|
2015-05-06 04:04:25 +01:00
|
|
|
if (func_num >= ARRAY_SIZE(SVC_Table)) {
|
|
|
|
LOG_ERROR(Kernel_SVC, "unknown svc=0x%02X", func_num);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return &SVC_Table[func_num];
|
|
|
|
}
|
|
|
|
|
2015-08-17 22:25:21 +01:00
|
|
|
MICROPROFILE_DEFINE(Kernel_SVC, "Kernel", "SVC", MP_RGB(70, 200, 70));
|
|
|
|
|
2015-07-21 08:51:36 +01:00
|
|
|
void CallSVC(u32 immediate) {
|
2015-05-06 04:04:25 +01:00
|
|
|
Common::Profiling::ScopeTimer timer_svc(profiler_svc);
|
2015-08-17 22:25:21 +01:00
|
|
|
MICROPROFILE_SCOPE(Kernel_SVC);
|
2015-05-06 04:04:25 +01:00
|
|
|
|
2015-07-21 08:51:36 +01:00
|
|
|
const FunctionDef* info = GetSVCInfo(immediate);
|
2015-05-06 04:04:25 +01:00
|
|
|
if (info) {
|
|
|
|
if (info->func) {
|
|
|
|
info->func();
|
|
|
|
} else {
|
|
|
|
LOG_ERROR(Kernel_SVC, "unimplemented SVC function %s(..)", info->name);
|
|
|
|
}
|
|
|
|
}
|
2014-04-11 00:58:28 +01:00
|
|
|
}
|
2014-04-11 23:44:21 +01:00
|
|
|
|
|
|
|
} // namespace
|