Ryujinx/Ryujinx.HLE/HOS/Ipc/IpcHandler.cs

144 lines
4.5 KiB
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using ChocolArm64.Memory;
using Ryujinx.HLE.HOS.Kernel;
2018-02-05 00:08:20 +01:00
using System;
using System.IO;
namespace Ryujinx.HLE.HOS.Ipc
2018-02-05 00:08:20 +01:00
{
static class IpcHandler
{
public static long IpcCall(
Switch Device,
KProcess Process,
MemoryManager Memory,
KSession Session,
IpcMessage Request,
long CmdPtr)
2018-02-05 00:08:20 +01:00
{
IpcMessage Response = new IpcMessage();
2018-02-05 00:08:20 +01:00
using (MemoryStream Raw = new MemoryStream(Request.RawData))
2018-02-05 00:08:20 +01:00
{
BinaryReader ReqReader = new BinaryReader(Raw);
2018-02-05 00:08:20 +01:00
if (Request.Type == IpcMessageType.Request ||
Request.Type == IpcMessageType.RequestWithContext)
2018-02-05 00:08:20 +01:00
{
Response.Type = IpcMessageType.Response;
2018-02-05 00:08:20 +01:00
using (MemoryStream ResMS = new MemoryStream())
2018-02-05 00:08:20 +01:00
{
BinaryWriter ResWriter = new BinaryWriter(ResMS);
2018-02-05 00:08:20 +01:00
ServiceCtx Context = new ServiceCtx(
Device,
Process,
Memory,
Session,
Request,
Response,
ReqReader,
ResWriter);
2018-02-05 00:08:20 +01:00
Session.Service.CallMethod(Context);
2018-02-05 00:08:20 +01:00
Response.RawData = ResMS.ToArray();
2018-02-05 00:08:20 +01:00
}
}
else if (Request.Type == IpcMessageType.Control ||
Request.Type == IpcMessageType.ControlWithContext)
2018-02-05 00:08:20 +01:00
{
long Magic = ReqReader.ReadInt64();
long CmdId = ReqReader.ReadInt64();
2018-02-05 00:08:20 +01:00
switch (CmdId)
2018-02-05 00:08:20 +01:00
{
case 0:
{
Request = FillResponse(Response, 0, Session.Service.ConvertToDomain());
break;
}
case 3:
{
Request = FillResponse(Response, 0, 0x500);
break;
}
//TODO: Whats the difference between IpcDuplicateSession/Ex?
case 2:
case 4:
{
int Unknown = ReqReader.ReadInt32();
if (Process.HandleTable.GenerateHandle(Session, out int Handle) != KernelResult.Success)
{
throw new InvalidOperationException("Out of handles!");
}
Response.HandleDesc = IpcHandleDesc.MakeMove(Handle);
Request = FillResponse(Response, 0);
break;
}
2018-02-05 00:08:20 +01:00
default: throw new NotImplementedException(CmdId.ToString());
2018-02-05 00:08:20 +01:00
}
}
else if (Request.Type == IpcMessageType.CloseSession)
2018-02-05 00:08:20 +01:00
{
//TODO
}
else
{
throw new NotImplementedException(Request.Type.ToString());
2018-02-05 00:08:20 +01:00
}
Memory.WriteBytes(CmdPtr, Response.GetBytes(CmdPtr));
2018-02-05 00:08:20 +01:00
}
return 0;
2018-02-05 00:08:20 +01:00
}
private static IpcMessage FillResponse(IpcMessage Response, long Result, params int[] Values)
2018-02-05 00:08:20 +01:00
{
using (MemoryStream MS = new MemoryStream())
2018-02-05 00:08:20 +01:00
{
BinaryWriter Writer = new BinaryWriter(MS);
2018-02-05 00:08:20 +01:00
foreach (int Value in Values)
2018-02-05 00:08:20 +01:00
{
Writer.Write(Value);
2018-02-05 00:08:20 +01:00
}
return FillResponse(Response, Result, MS.ToArray());
2018-02-05 00:08:20 +01:00
}
}
private static IpcMessage FillResponse(IpcMessage Response, long Result, byte[] Data = null)
2018-02-05 00:08:20 +01:00
{
Response.Type = IpcMessageType.Response;
2018-02-05 00:08:20 +01:00
using (MemoryStream MS = new MemoryStream())
2018-02-05 00:08:20 +01:00
{
BinaryWriter Writer = new BinaryWriter(MS);
2018-02-05 00:08:20 +01:00
Writer.Write(IpcMagic.Sfco);
Writer.Write(Result);
2018-02-05 00:08:20 +01:00
if (Data != null)
2018-02-05 00:08:20 +01:00
{
Writer.Write(Data);
2018-02-05 00:08:20 +01:00
}
Response.RawData = MS.ToArray();
2018-02-05 00:08:20 +01:00
}
return Response;
2018-02-05 00:08:20 +01:00
}
}
}