1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-01 06:42:05 +00:00
Ryujinx/Ryujinx.HLE/HOS/Services/IpcService.cs

186 lines
5.4 KiB
C#
Raw Normal View History

using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System;
using System.Collections.Generic;
using System.IO;
namespace Ryujinx.HLE.HOS.Services
{
abstract class IpcService : IIpcService
{
public abstract IReadOnlyDictionary<int, ServiceProcessRequest> Commands { get; }
2018-12-01 20:01:59 +00:00
private IdDictionary _domainObjects;
2018-12-01 20:01:59 +00:00
private int _selfId;
2018-12-01 20:01:59 +00:00
private bool _isDomain;
public IpcService()
{
2018-12-01 20:01:59 +00:00
_domainObjects = new IdDictionary();
2018-12-01 20:01:59 +00:00
_selfId = -1;
}
public int ConvertToDomain()
{
2018-12-01 20:01:59 +00:00
if (_selfId == -1)
{
2018-12-01 20:01:59 +00:00
_selfId = _domainObjects.Add(this);
}
2018-12-01 20:01:59 +00:00
_isDomain = true;
2018-12-01 20:01:59 +00:00
return _selfId;
}
public void ConvertToSession()
{
2018-12-01 20:01:59 +00:00
_isDomain = false;
}
2018-12-01 20:01:59 +00:00
public void CallMethod(ServiceCtx context)
{
2018-12-01 20:01:59 +00:00
IIpcService service = this;
2018-12-01 20:01:59 +00:00
if (_isDomain)
{
2018-12-01 20:01:59 +00:00
int domainWord0 = context.RequestData.ReadInt32();
int domainObjId = context.RequestData.ReadInt32();
2018-12-01 20:01:59 +00:00
int domainCmd = (domainWord0 >> 0) & 0xff;
int inputObjCount = (domainWord0 >> 8) & 0xff;
int dataPayloadSize = (domainWord0 >> 16) & 0xffff;
2018-12-01 20:01:59 +00:00
context.RequestData.BaseStream.Seek(0x10 + dataPayloadSize, SeekOrigin.Begin);
2018-12-01 20:01:59 +00:00
for (int index = 0; index < inputObjCount; index++)
{
2018-12-01 20:01:59 +00:00
context.Request.ObjectIds.Add(context.RequestData.ReadInt32());
}
2018-12-01 20:01:59 +00:00
context.RequestData.BaseStream.Seek(0x10, SeekOrigin.Begin);
2018-12-01 20:01:59 +00:00
if (domainCmd == 1)
{
2018-12-01 20:01:59 +00:00
service = GetObject(domainObjId);
2018-12-01 20:01:59 +00:00
context.ResponseData.Write(0L);
context.ResponseData.Write(0L);
}
2018-12-01 20:01:59 +00:00
else if (domainCmd == 2)
{
2018-12-01 20:01:59 +00:00
Delete(domainObjId);
2018-12-01 20:01:59 +00:00
context.ResponseData.Write(0L);
return;
}
else
{
2018-12-01 20:01:59 +00:00
throw new NotImplementedException($"Domain command: {domainCmd}");
}
}
2018-12-01 20:01:59 +00:00
long sfciMagic = context.RequestData.ReadInt64();
int commandId = (int)context.RequestData.ReadInt64();
2018-12-01 20:01:59 +00:00
if (service.Commands.TryGetValue(commandId, out ServiceProcessRequest processRequest))
{
2018-12-01 20:01:59 +00:00
context.ResponseData.BaseStream.Seek(_isDomain ? 0x20 : 0x10, SeekOrigin.Begin);
2018-12-01 20:01:59 +00:00
Logger.PrintDebug(LogClass.KernelIpc, $"{service.GetType().Name}: {processRequest.Method.Name}");
2018-12-01 20:01:59 +00:00
long result = processRequest(context);
2018-12-01 20:01:59 +00:00
if (_isDomain)
{
2018-12-01 20:01:59 +00:00
foreach (int id in context.Response.ObjectIds)
{
2018-12-01 20:01:59 +00:00
context.ResponseData.Write(id);
}
2018-12-01 20:01:59 +00:00
context.ResponseData.BaseStream.Seek(0, SeekOrigin.Begin);
2018-12-01 20:01:59 +00:00
context.ResponseData.Write(context.Response.ObjectIds.Count);
}
2018-12-01 20:01:59 +00:00
context.ResponseData.BaseStream.Seek(_isDomain ? 0x10 : 0, SeekOrigin.Begin);
2018-12-01 20:01:59 +00:00
context.ResponseData.Write(IpcMagic.Sfco);
context.ResponseData.Write(result);
}
else
{
2018-12-01 20:01:59 +00:00
string dbgMessage = $"{context.Session.ServiceName} {service.GetType().Name}: {commandId}";
2018-12-01 20:01:59 +00:00
throw new NotImplementedException(dbgMessage);
}
}
2018-12-01 20:01:59 +00:00
protected static void MakeObject(ServiceCtx context, IpcService obj)
{
2018-12-01 20:01:59 +00:00
IpcService service = context.Session.Service;
2018-12-01 20:01:59 +00:00
if (service._isDomain)
{
2018-12-01 20:01:59 +00:00
context.Response.ObjectIds.Add(service.Add(obj));
}
else
{
2018-12-01 20:01:59 +00:00
KSession session = new KSession(obj, context.Session.ServiceName);
2018-12-01 20:01:59 +00:00
if (context.Process.HandleTable.GenerateHandle(session, out int handle) != KernelResult.Success)
{
throw new InvalidOperationException("Out of handles!");
}
2018-12-01 20:01:59 +00:00
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
}
}
2018-12-01 20:01:59 +00:00
protected static T GetObject<T>(ServiceCtx context, int index) where T : IpcService
{
2018-12-01 20:01:59 +00:00
IpcService service = context.Session.Service;
2018-12-01 20:01:59 +00:00
if (!service._isDomain)
{
2018-12-01 20:01:59 +00:00
int handle = context.Request.HandleDesc.ToMove[index];
2018-12-01 20:01:59 +00:00
KSession session = context.Process.HandleTable.GetObject<KSession>(handle);
2018-12-01 20:01:59 +00:00
return session?.Service is T ? (T)session.Service : null;
}
2018-12-01 20:01:59 +00:00
int objId = context.Request.ObjectIds[index];
2018-12-01 20:01:59 +00:00
IIpcService obj = service.GetObject(objId);
2018-12-01 20:01:59 +00:00
return obj is T ? (T)obj : null;
}
2018-12-01 20:01:59 +00:00
private int Add(IIpcService obj)
{
2018-12-01 20:01:59 +00:00
return _domainObjects.Add(obj);
}
2018-12-01 20:01:59 +00:00
private bool Delete(int id)
{
2018-12-01 20:01:59 +00:00
object obj = _domainObjects.Delete(id);
2018-12-01 20:01:59 +00:00
if (obj is IDisposable disposableObj)
{
2018-12-01 20:01:59 +00:00
disposableObj.Dispose();
}
2018-12-01 20:01:59 +00:00
return obj != null;
}
2018-12-01 20:01:59 +00:00
private IIpcService GetObject(int id)
{
2018-12-01 20:01:59 +00:00
return _domainObjects.GetData<IIpcService>(id);
}
}
}