521751795a
* Some style fixes and nits on ITimeZoneService * Remove some unneeded usings * Remove the Ryujinx.HLE.OsHle.Handles namespace * Remove hbmenu automatic load on process exit * Rename Ns to Device, rename Os to System, rename SystemState to State * Move Exceptions and Utilities out of OsHle * Rename OsHle to HOS * Rename OsHle folder to HOS * IManagerDisplayService and ISystemDisplayService style fixes * BsdError shouldn't be public * Add a empty new line before using static * Remove unused file * Some style fixes on NPDM * Exit gracefully when the application is closed * Code style fixes on IGeneralService * Add 0x prefix on values printed as hex * Small improvements on finalization code * Move ProcessId and ThreadId out of AThreadState * Rename VFs to FileSystem * FsAccessHeader shouldn't be public. Also fix file names casing * More case changes on NPDM * Remove unused files * Move using to the correct place on NPDM * Use properties on KernelAccessControlMmio * Address PR feedback
373 lines
12 KiB
C#
373 lines
12 KiB
C#
using ChocolArm64.Memory;
|
|
using ChocolArm64.State;
|
|
using Ryujinx.HLE.Exceptions;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Services;
|
|
using Ryujinx.HLE.Logging;
|
|
using System;
|
|
using System.Threading;
|
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
|
{
|
|
partial class SvcHandler
|
|
{
|
|
private const int AllowedCpuIdBitmask = 0b1111;
|
|
|
|
private const bool EnableProcessDebugging = false;
|
|
|
|
private void SvcExitProcess(AThreadState ThreadState)
|
|
{
|
|
Device.System.ExitProcess(Process.ProcessId);
|
|
}
|
|
|
|
private void SvcClearEvent(AThreadState ThreadState)
|
|
{
|
|
int Handle = (int)ThreadState.X0;
|
|
|
|
//TODO: Implement events.
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
|
|
private void SvcCloseHandle(AThreadState ThreadState)
|
|
{
|
|
int Handle = (int)ThreadState.X0;
|
|
|
|
object Obj = Process.HandleTable.CloseHandle(Handle);
|
|
|
|
if (Obj == null)
|
|
{
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, $"Invalid handle 0x{Handle:x8}!");
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
return;
|
|
}
|
|
|
|
if (Obj is KSession Session)
|
|
{
|
|
Session.Dispose();
|
|
}
|
|
else if (Obj is KTransferMemory TransferMemory)
|
|
{
|
|
Process.MemoryManager.ResetTransferMemory(
|
|
TransferMemory.Position,
|
|
TransferMemory.Size);
|
|
}
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
|
|
private void SvcResetSignal(AThreadState ThreadState)
|
|
{
|
|
int Handle = (int)ThreadState.X0;
|
|
|
|
KEvent Event = Process.HandleTable.GetData<KEvent>(Handle);
|
|
|
|
if (Event != null)
|
|
{
|
|
Event.WaitEvent.Reset();
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
else
|
|
{
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, $"Invalid event handle 0x{Handle:x8}!");
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
}
|
|
}
|
|
|
|
private void SvcWaitSynchronization(AThreadState ThreadState)
|
|
{
|
|
long HandlesPtr = (long)ThreadState.X1;
|
|
int HandlesCount = (int)ThreadState.X2;
|
|
ulong Timeout = ThreadState.X3;
|
|
|
|
Device.Log.PrintDebug(LogClass.KernelSvc,
|
|
"HandlesPtr = 0x" + HandlesPtr .ToString("x16") + ", " +
|
|
"HandlesCount = 0x" + HandlesCount.ToString("x8") + ", " +
|
|
"Timeout = 0x" + Timeout .ToString("x16"));
|
|
|
|
if ((uint)HandlesCount > 0x40)
|
|
{
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.CountOutOfRange);
|
|
|
|
return;
|
|
}
|
|
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
|
|
|
WaitHandle[] Handles = new WaitHandle[HandlesCount + 1];
|
|
|
|
for (int Index = 0; Index < HandlesCount; Index++)
|
|
{
|
|
int Handle = Memory.ReadInt32(HandlesPtr + Index * 4);
|
|
|
|
KSynchronizationObject SyncObj = Process.HandleTable.GetData<KSynchronizationObject>(Handle);
|
|
|
|
if (SyncObj == null)
|
|
{
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, $"Invalid handle 0x{Handle:x8}!");
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
return;
|
|
}
|
|
|
|
Handles[Index] = SyncObj.WaitEvent;
|
|
}
|
|
|
|
using (AutoResetEvent WaitEvent = new AutoResetEvent(false))
|
|
{
|
|
if (!SyncWaits.TryAdd(CurrThread, WaitEvent))
|
|
{
|
|
throw new InvalidOperationException();
|
|
}
|
|
|
|
Handles[HandlesCount] = WaitEvent;
|
|
|
|
Process.Scheduler.Suspend(CurrThread);
|
|
|
|
int HandleIndex;
|
|
|
|
ulong Result = 0;
|
|
|
|
if (Timeout != ulong.MaxValue)
|
|
{
|
|
HandleIndex = WaitHandle.WaitAny(Handles, NsTimeConverter.GetTimeMs(Timeout));
|
|
}
|
|
else
|
|
{
|
|
HandleIndex = WaitHandle.WaitAny(Handles);
|
|
}
|
|
|
|
if (HandleIndex == WaitHandle.WaitTimeout)
|
|
{
|
|
Result = MakeError(ErrorModule.Kernel, KernelErr.Timeout);
|
|
}
|
|
else if (HandleIndex == HandlesCount)
|
|
{
|
|
Result = MakeError(ErrorModule.Kernel, KernelErr.Canceled);
|
|
}
|
|
|
|
SyncWaits.TryRemove(CurrThread, out _);
|
|
|
|
Process.Scheduler.Resume(CurrThread);
|
|
|
|
ThreadState.X0 = Result;
|
|
|
|
if (Result == 0)
|
|
{
|
|
ThreadState.X1 = (ulong)HandleIndex;
|
|
}
|
|
}
|
|
}
|
|
|
|
private void SvcCancelSynchronization(AThreadState ThreadState)
|
|
{
|
|
int ThreadHandle = (int)ThreadState.X0;
|
|
|
|
KThread Thread = GetThread(ThreadState.Tpidr, ThreadHandle);
|
|
|
|
if (Thread == null)
|
|
{
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{ThreadHandle:x8}!");
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
return;
|
|
}
|
|
|
|
if (SyncWaits.TryRemove(Thread, out AutoResetEvent WaitEvent))
|
|
{
|
|
WaitEvent.Set();
|
|
}
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
|
|
private void SvcGetSystemTick(AThreadState ThreadState)
|
|
{
|
|
ThreadState.X0 = ThreadState.CntpctEl0;
|
|
}
|
|
|
|
private void SvcConnectToNamedPort(AThreadState ThreadState)
|
|
{
|
|
long StackPtr = (long)ThreadState.X0;
|
|
long NamePtr = (long)ThreadState.X1;
|
|
|
|
string Name = AMemoryHelper.ReadAsciiString(Memory, NamePtr, 8);
|
|
|
|
//TODO: Validate that app has perms to access the service, and that the service
|
|
//actually exists, return error codes otherwise.
|
|
KSession Session = new KSession(ServiceFactory.MakeService(Name), Name);
|
|
|
|
ulong Handle = (ulong)Process.HandleTable.OpenHandle(Session);
|
|
|
|
ThreadState.X0 = 0;
|
|
ThreadState.X1 = Handle;
|
|
}
|
|
|
|
private void SvcSendSyncRequest(AThreadState ThreadState)
|
|
{
|
|
SendSyncRequest(ThreadState, ThreadState.Tpidr, 0x100, (int)ThreadState.X0);
|
|
}
|
|
|
|
private void SvcSendSyncRequestWithUserBuffer(AThreadState ThreadState)
|
|
{
|
|
SendSyncRequest(
|
|
ThreadState,
|
|
(long)ThreadState.X0,
|
|
(long)ThreadState.X1,
|
|
(int)ThreadState.X2);
|
|
}
|
|
|
|
private void SendSyncRequest(AThreadState ThreadState, long CmdPtr, long Size, int Handle)
|
|
{
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
|
|
|
byte[] CmdData = Memory.ReadBytes(CmdPtr, Size);
|
|
|
|
KSession Session = Process.HandleTable.GetData<KSession>(Handle);
|
|
|
|
if (Session != null)
|
|
{
|
|
Process.Scheduler.Suspend(CurrThread);
|
|
|
|
IpcMessage Cmd = new IpcMessage(CmdData, CmdPtr);
|
|
|
|
long Result = IpcHandler.IpcCall(Device, Process, Memory, Session, Cmd, CmdPtr);
|
|
|
|
Thread.Yield();
|
|
|
|
Process.Scheduler.Resume(CurrThread);
|
|
|
|
ThreadState.X0 = (ulong)Result;
|
|
}
|
|
else
|
|
{
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, $"Invalid session handle 0x{Handle:x8}!");
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
}
|
|
}
|
|
|
|
private void SvcBreak(AThreadState ThreadState)
|
|
{
|
|
long Reason = (long)ThreadState.X0;
|
|
long Unknown = (long)ThreadState.X1;
|
|
long Info = (long)ThreadState.X2;
|
|
|
|
Process.PrintStackTrace(ThreadState);
|
|
|
|
throw new GuestBrokeExecutionException();
|
|
}
|
|
|
|
private void SvcOutputDebugString(AThreadState ThreadState)
|
|
{
|
|
long Position = (long)ThreadState.X0;
|
|
long Size = (long)ThreadState.X1;
|
|
|
|
string Str = AMemoryHelper.ReadAsciiString(Memory, Position, Size);
|
|
|
|
Device.Log.PrintWarning(LogClass.KernelSvc, Str);
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
|
|
private void SvcGetInfo(AThreadState ThreadState)
|
|
{
|
|
long StackPtr = (long)ThreadState.X0;
|
|
int InfoType = (int)ThreadState.X1;
|
|
long Handle = (long)ThreadState.X2;
|
|
int InfoId = (int)ThreadState.X3;
|
|
|
|
//Fail for info not available on older Kernel versions.
|
|
if (InfoType == 18 ||
|
|
InfoType == 19 ||
|
|
InfoType == 20)
|
|
{
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidEnumValue);
|
|
|
|
return;
|
|
}
|
|
|
|
switch (InfoType)
|
|
{
|
|
case 0:
|
|
ThreadState.X1 = AllowedCpuIdBitmask;
|
|
break;
|
|
|
|
case 2:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.MapRegionStart;
|
|
break;
|
|
|
|
case 3:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.MapRegionEnd -
|
|
(ulong)Process.MemoryManager.MapRegionStart;
|
|
break;
|
|
|
|
case 4:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.HeapRegionStart;
|
|
break;
|
|
|
|
case 5:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.HeapRegionEnd -
|
|
(ulong)Process.MemoryManager.HeapRegionStart;
|
|
break;
|
|
|
|
case 6:
|
|
ThreadState.X1 = (ulong)Process.Device.Memory.Allocator.TotalAvailableSize;
|
|
break;
|
|
|
|
case 7:
|
|
ThreadState.X1 = (ulong)Process.Device.Memory.Allocator.TotalUsedSize;
|
|
break;
|
|
|
|
case 8:
|
|
ThreadState.X1 = EnableProcessDebugging ? 1 : 0;
|
|
break;
|
|
|
|
case 11:
|
|
ThreadState.X1 = (ulong)Rng.Next() + ((ulong)Rng.Next() << 32);
|
|
break;
|
|
|
|
case 12:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.AddrSpaceStart;
|
|
break;
|
|
|
|
case 13:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.AddrSpaceEnd -
|
|
(ulong)Process.MemoryManager.AddrSpaceStart;
|
|
break;
|
|
|
|
case 14:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.NewMapRegionStart;
|
|
break;
|
|
|
|
case 15:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.NewMapRegionEnd -
|
|
(ulong)Process.MemoryManager.NewMapRegionStart;
|
|
break;
|
|
|
|
case 16:
|
|
ThreadState.X1 = (ulong)(Process.MetaData?.SystemResourceSize ?? 0);
|
|
break;
|
|
|
|
case 17:
|
|
ThreadState.X1 = (ulong)Process.MemoryManager.PersonalMmHeapUsage;
|
|
break;
|
|
|
|
default:
|
|
Process.PrintStackTrace(ThreadState);
|
|
|
|
throw new NotImplementedException($"SvcGetInfo: {InfoType} 0x{Handle:x8} {InfoId}");
|
|
}
|
|
|
|
ThreadState.X0 = 0;
|
|
}
|
|
}
|
|
}
|