2018-02-26 02:14:58 +01:00
|
|
|
using ChocolArm64.Events;
|
2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
2018-03-12 05:04:52 +01:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
2018-04-19 04:52:23 +02:00
|
|
|
namespace Ryujinx.Core.OsHle.Kernel
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-12 05:04:52 +01:00
|
|
|
partial class SvcHandler : IDisposable
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
private delegate void SvcFunc(AThreadState ThreadState);
|
2018-02-17 22:36:08 +01:00
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
private Dictionary<int, SvcFunc> SvcFuncs;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
private Switch Ns;
|
2018-02-14 03:43:08 +01:00
|
|
|
private Process Process;
|
2018-02-05 00:08:20 +01:00
|
|
|
private AMemory Memory;
|
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
private object CondVarLock;
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
private HashSet<(HSharedMem, long)> MappedSharedMems;
|
|
|
|
|
2018-02-28 00:45:07 +01:00
|
|
|
private ulong CurrentHeapSize;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
private static Random Rng;
|
|
|
|
|
2018-02-14 03:43:08 +01:00
|
|
|
public SvcHandler(Switch Ns, Process Process)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-14 03:43:08 +01:00
|
|
|
SvcFuncs = new Dictionary<int, SvcFunc>()
|
|
|
|
{
|
|
|
|
{ 0x01, SvcSetHeapSize },
|
|
|
|
{ 0x03, SvcSetMemoryAttribute },
|
|
|
|
{ 0x04, SvcMapMemory },
|
2018-02-28 00:45:07 +01:00
|
|
|
{ 0x05, SvcUnmapMemory },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x06, SvcQueryMemory },
|
2018-02-15 13:16:16 +01:00
|
|
|
{ 0x07, SvcExitProcess },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x08, SvcCreateThread },
|
|
|
|
{ 0x09, SvcStartThread },
|
2018-03-12 05:04:52 +01:00
|
|
|
{ 0x0a, SvcExitThread },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x0b, SvcSleepThread },
|
|
|
|
{ 0x0c, SvcGetThreadPriority },
|
2018-02-25 19:58:16 +01:00
|
|
|
{ 0x0d, SvcSetThreadPriority },
|
|
|
|
{ 0x0f, SvcSetThreadCoreMask },
|
2018-04-05 00:16:59 +02:00
|
|
|
{ 0x10, SvcGetCurrentProcessorNumber },
|
2018-03-05 16:58:19 +01:00
|
|
|
{ 0x12, SvcClearEvent },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x13, SvcMapSharedMemory },
|
|
|
|
{ 0x14, SvcUnmapSharedMemory },
|
|
|
|
{ 0x15, SvcCreateTransferMemory },
|
|
|
|
{ 0x16, SvcCloseHandle },
|
|
|
|
{ 0x17, SvcResetSignal },
|
|
|
|
{ 0x18, SvcWaitSynchronization },
|
|
|
|
{ 0x1a, SvcArbitrateLock },
|
|
|
|
{ 0x1b, SvcArbitrateUnlock },
|
|
|
|
{ 0x1c, SvcWaitProcessWideKeyAtomic },
|
|
|
|
{ 0x1d, SvcSignalProcessWideKey },
|
|
|
|
{ 0x1e, SvcGetSystemTick },
|
|
|
|
{ 0x1f, SvcConnectToNamedPort },
|
|
|
|
{ 0x21, SvcSendSyncRequest },
|
|
|
|
{ 0x22, SvcSendSyncRequestWithUserBuffer },
|
2018-02-25 19:58:16 +01:00
|
|
|
{ 0x25, SvcGetThreadId },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x26, SvcBreak },
|
|
|
|
{ 0x27, SvcOutputDebugString },
|
2018-04-19 21:18:30 +02:00
|
|
|
{ 0x29, SvcGetInfo },
|
|
|
|
{ 0x32, SvcSetThreadActivity }
|
2018-02-14 03:43:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
this.Ns = Ns;
|
|
|
|
this.Process = Process;
|
|
|
|
this.Memory = Process.Memory;
|
2018-03-12 05:04:52 +01:00
|
|
|
|
2018-04-21 21:07:16 +02:00
|
|
|
CondVarLock = new object();
|
2018-04-19 04:52:23 +02:00
|
|
|
|
2018-03-12 05:04:52 +01:00
|
|
|
MappedSharedMems = new HashSet<(HSharedMem, long)>();
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static SvcHandler()
|
|
|
|
{
|
|
|
|
Rng = new Random();
|
|
|
|
}
|
|
|
|
|
2018-02-26 02:14:58 +01:00
|
|
|
public void SvcCall(object sender, AInstExceptionEventArgs e)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-18 20:28:07 +01:00
|
|
|
AThreadState ThreadState = (AThreadState)sender;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
if (SvcFuncs.TryGetValue(e.Id, out SvcFunc Func))
|
|
|
|
{
|
2018-04-14 03:02:24 +02:00
|
|
|
Logging.Trace(LogClass.KernelSvc, $"(Thread {ThreadState.ThreadId}) {Func.Method.Name} called.");
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-02-18 20:28:07 +01:00
|
|
|
Func(ThreadState);
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-04-14 03:02:24 +02:00
|
|
|
Logging.Trace(LogClass.KernelSvc, $"(Thread {ThreadState.ThreadId}) {Func.Method.Name} ended.");
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-22 07:48:17 +02:00
|
|
|
Process.PrintStackTrace(ThreadState);
|
|
|
|
|
2018-02-10 14:24:16 +01:00
|
|
|
throw new NotImplementedException(e.Id.ToString("x4"));
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
2018-03-12 05:04:52 +01:00
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
Dispose(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool Disposing)
|
|
|
|
{
|
|
|
|
if (Disposing)
|
|
|
|
{
|
|
|
|
lock (MappedSharedMems)
|
|
|
|
{
|
|
|
|
foreach ((HSharedMem SharedMem, long Position) in MappedSharedMems)
|
|
|
|
{
|
|
|
|
SharedMem.RemoveVirtualPosition(Memory, Position);
|
|
|
|
}
|
|
|
|
|
|
|
|
MappedSharedMems.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|