00579927e4
* Initial implementation of KProcess * Some improvements to the memory manager, implement back guest stack trace printing * Better GetInfo implementation, improve checking in some places with information from process capabilities * Allow the cpu to read/write from the correct memory locations for accesses crossing a page boundary * Change long -> ulong for address/size on memory related methods to avoid unnecessary casts * Attempt at implementing ldr:ro with new KProcess * Allow BSS with size 0 on ldr:ro * Add checking for memory block slab heap usage, return errors if full, exit gracefully * Use KMemoryBlockSize const from KMemoryManager * Allow all methods to read from non-contiguous locations * Fix for TransactParcelAuto * Address PR feedback, additionally fix some small issues related to the KIP loader and implement SVCs GetProcessId, GetProcessList, GetSystemInfo, CreatePort and ManageNamedPort * Fix wrong check for source pages count from page list on MapPhysicalMemory * Fix some issues with UnloadNro on ldr:ro
143 lines
4.5 KiB
C#
143 lines
4.5 KiB
C#
using ChocolArm64.Memory;
|
|
using Ryujinx.HLE.HOS.Kernel;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Ipc
|
|
{
|
|
static class IpcHandler
|
|
{
|
|
public static long IpcCall(
|
|
Switch Device,
|
|
KProcess Process,
|
|
MemoryManager Memory,
|
|
KSession Session,
|
|
IpcMessage Request,
|
|
long CmdPtr)
|
|
{
|
|
IpcMessage Response = new IpcMessage();
|
|
|
|
using (MemoryStream Raw = new MemoryStream(Request.RawData))
|
|
{
|
|
BinaryReader ReqReader = new BinaryReader(Raw);
|
|
|
|
if (Request.Type == IpcMessageType.Request ||
|
|
Request.Type == IpcMessageType.RequestWithContext)
|
|
{
|
|
Response.Type = IpcMessageType.Response;
|
|
|
|
using (MemoryStream ResMS = new MemoryStream())
|
|
{
|
|
BinaryWriter ResWriter = new BinaryWriter(ResMS);
|
|
|
|
ServiceCtx Context = new ServiceCtx(
|
|
Device,
|
|
Process,
|
|
Memory,
|
|
Session,
|
|
Request,
|
|
Response,
|
|
ReqReader,
|
|
ResWriter);
|
|
|
|
Session.Service.CallMethod(Context);
|
|
|
|
Response.RawData = ResMS.ToArray();
|
|
}
|
|
}
|
|
else if (Request.Type == IpcMessageType.Control ||
|
|
Request.Type == IpcMessageType.ControlWithContext)
|
|
{
|
|
long Magic = ReqReader.ReadInt64();
|
|
long CmdId = ReqReader.ReadInt64();
|
|
|
|
switch (CmdId)
|
|
{
|
|
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;
|
|
}
|
|
|
|
default: throw new NotImplementedException(CmdId.ToString());
|
|
}
|
|
}
|
|
else if (Request.Type == IpcMessageType.CloseSession)
|
|
{
|
|
//TODO
|
|
}
|
|
else
|
|
{
|
|
throw new NotImplementedException(Request.Type.ToString());
|
|
}
|
|
|
|
Memory.WriteBytes(CmdPtr, Response.GetBytes(CmdPtr));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
private static IpcMessage FillResponse(IpcMessage Response, long Result, params int[] Values)
|
|
{
|
|
using (MemoryStream MS = new MemoryStream())
|
|
{
|
|
BinaryWriter Writer = new BinaryWriter(MS);
|
|
|
|
foreach (int Value in Values)
|
|
{
|
|
Writer.Write(Value);
|
|
}
|
|
|
|
return FillResponse(Response, Result, MS.ToArray());
|
|
}
|
|
}
|
|
|
|
private static IpcMessage FillResponse(IpcMessage Response, long Result, byte[] Data = null)
|
|
{
|
|
Response.Type = IpcMessageType.Response;
|
|
|
|
using (MemoryStream MS = new MemoryStream())
|
|
{
|
|
BinaryWriter Writer = new BinaryWriter(MS);
|
|
|
|
Writer.Write(IpcMagic.Sfco);
|
|
Writer.Write(Result);
|
|
|
|
if (Data != null)
|
|
{
|
|
Writer.Write(Data);
|
|
}
|
|
|
|
Response.RawData = MS.ToArray();
|
|
}
|
|
|
|
return Response;
|
|
}
|
|
}
|
|
}
|