2019-01-18 23:26:39 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-17 01:47:36 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2020-12-02 00:23:43 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel;
|
2018-12-18 06:33:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Ipc;
|
2023-01-04 23:15:45 +01:00
|
|
|
using Ryujinx.Horizon.Common;
|
2018-09-23 20:11:46 +02:00
|
|
|
using System;
|
2018-02-25 05:34:16 +01:00
|
|
|
using System.Collections.Generic;
|
2019-01-18 23:26:39 +01:00
|
|
|
using System.IO;
|
2019-07-10 17:59:54 +02:00
|
|
|
using System.Linq;
|
|
|
|
using System.Reflection;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sm
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-06 06:01:52 +02:00
|
|
|
class IUserInterface : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2021-05-05 23:44:26 +02:00
|
|
|
private static Dictionary<string, Type> _services;
|
2019-07-10 17:59:54 +02:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
private readonly SmRegistry _registry;
|
2020-09-22 06:50:40 +02:00
|
|
|
private readonly ServerBase _commonServer;
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private bool _isInitialized;
|
2018-02-25 05:34:16 +01:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
public IUserInterface(KernelContext context, SmRegistry registry)
|
2021-05-05 23:44:26 +02:00
|
|
|
{
|
|
|
|
_commonServer = new ServerBase(context, "CommonServer");
|
2022-05-05 20:23:30 +02:00
|
|
|
_registry = registry;
|
2021-05-05 23:44:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static IUserInterface()
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
_services = Assembly.GetExecutingAssembly().GetTypes()
|
|
|
|
.SelectMany(type => type.GetCustomAttributes(typeof(ServiceAttribute), true)
|
|
|
|
.Select(service => (((ServiceAttribute)service).Name, type)))
|
|
|
|
.ToDictionary(service => service.Name, service => service.type);
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(0)]
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandTipc(0)] // 12.0.0+
|
2019-07-12 03:13:43 +02:00
|
|
|
// Initialize(pid, u64 reserved)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Initialize(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_isInitialized = true;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandTipc(1)] // 12.0.0+
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetService(ServiceName name) -> handle<move, session>
|
2021-05-05 23:44:26 +02:00
|
|
|
public ResultCode GetServiceTipc(ServiceCtx context)
|
|
|
|
{
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(0);
|
|
|
|
|
|
|
|
return GetService(context);
|
|
|
|
}
|
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(1)]
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetService(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
if (!_isInitialized)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.NotInitialized;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
string name = ReadName(context);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
if (name == string.Empty)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.InvalidName;
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2020-05-04 05:41:29 +02:00
|
|
|
KSession session = new KSession(context.Device.System.KernelContext);
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
if (_registry.TryGetService(name, out KPort port))
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
2023-01-04 23:15:45 +01:00
|
|
|
Result result = port.EnqueueIncomingSession(session.ServerSession);
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2023-01-04 23:15:45 +01:00
|
|
|
if (result != Result.Success)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2019-01-18 23:26:39 +01:00
|
|
|
throw new InvalidOperationException($"Session enqueue on port returned error \"{result}\".");
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2022-05-05 20:23:30 +02:00
|
|
|
|
2023-01-04 23:15:45 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(session.ClientSession, out int handle) != Result.Success)
|
2022-05-05 20:23:30 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
|
|
|
|
|
|
|
session.ClientSession.DecrementReferenceCount();
|
|
|
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
else
|
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
if (_services.TryGetValue(name, out Type type))
|
|
|
|
{
|
|
|
|
ServiceAttribute serviceAttribute = (ServiceAttribute)type.GetCustomAttributes(typeof(ServiceAttribute)).First(service => ((ServiceAttribute)service).Name == name);
|
|
|
|
|
2020-09-22 06:50:40 +02:00
|
|
|
IpcService service = serviceAttribute.Parameter != null
|
|
|
|
? (IpcService)Activator.CreateInstance(type, context, serviceAttribute.Parameter)
|
|
|
|
: (IpcService)Activator.CreateInstance(type, context);
|
|
|
|
|
|
|
|
service.TrySetServer(_commonServer);
|
2020-12-02 00:23:43 +01:00
|
|
|
service.Server.AddSessionObj(session.ServerSession, service);
|
2019-07-10 17:59:54 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-05-16 17:12:14 +02:00
|
|
|
if (context.Device.Configuration.IgnoreMissingServices)
|
2019-07-10 17:59:54 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Warning?.Print(LogClass.Service, $"Missing service {name} ignored");
|
2019-07-10 17:59:54 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new NotImplementedException(name);
|
|
|
|
}
|
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2023-01-04 23:15:45 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(session.ClientSession, out int handle) != Result.Success)
|
2022-05-05 20:23:30 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
session.ServerSession.DecrementReferenceCount();
|
|
|
|
session.ClientSession.DecrementReferenceCount();
|
2020-07-19 20:24:18 +02:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
|
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(2)]
|
2021-04-14 00:01:24 +02:00
|
|
|
// RegisterService(ServiceName name, u8 isLight, u32 maxHandles) -> handle<move, port>
|
2023-04-15 01:00:34 +02:00
|
|
|
public ResultCode RegisterServiceCmif(ServiceCtx context)
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
|
|
|
if (!_isInitialized)
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.NotInitialized;
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
long namePosition = context.RequestData.BaseStream.Position;
|
|
|
|
|
|
|
|
string name = ReadName(context);
|
|
|
|
|
|
|
|
context.RequestData.BaseStream.Seek(namePosition + 8, SeekOrigin.Begin);
|
|
|
|
|
|
|
|
bool isLight = (context.RequestData.ReadInt32() & 1) != 0;
|
|
|
|
|
|
|
|
int maxSessions = context.RequestData.ReadInt32();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
return RegisterService(context, name, isLight, maxSessions);
|
|
|
|
}
|
|
|
|
|
|
|
|
[CommandTipc(2)] // 12.0.0+
|
|
|
|
// RegisterService(ServiceName name, u32 maxHandles, u8 isLight) -> handle<move, port>
|
|
|
|
public ResultCode RegisterServiceTipc(ServiceCtx context)
|
|
|
|
{
|
|
|
|
if (!_isInitialized)
|
|
|
|
{
|
2021-05-05 23:44:26 +02:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(0);
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
return ResultCode.NotInitialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
long namePosition = context.RequestData.BaseStream.Position;
|
|
|
|
|
|
|
|
string name = ReadName(context);
|
|
|
|
|
|
|
|
context.RequestData.BaseStream.Seek(namePosition + 8, SeekOrigin.Begin);
|
|
|
|
|
|
|
|
int maxSessions = context.RequestData.ReadInt32();
|
|
|
|
|
|
|
|
bool isLight = (context.RequestData.ReadInt32() & 1) != 0;
|
|
|
|
|
|
|
|
return RegisterService(context, name, isLight, maxSessions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private ResultCode RegisterService(ServiceCtx context, string name, bool isLight, int maxSessions)
|
|
|
|
{
|
2020-12-02 00:23:43 +01:00
|
|
|
if (string.IsNullOrEmpty(name))
|
2018-02-25 05:34:16 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.InvalidName;
|
2018-02-25 05:34:16 +01:00
|
|
|
}
|
|
|
|
|
2023-01-08 13:13:39 +01:00
|
|
|
Logger.Debug?.Print(LogClass.ServiceSm, $"Register \"{name}\".");
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2023-01-04 23:15:45 +01:00
|
|
|
KPort port = new KPort(context.Device.System.KernelContext, maxSessions, isLight, null);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
if (!_registry.TryRegister(name, port))
|
2019-01-18 23:26:39 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.AlreadyRegistered;
|
2019-01-18 23:26:39 +01:00
|
|
|
}
|
|
|
|
|
2023-01-04 23:15:45 +01:00
|
|
|
if (context.Process.HandleTable.GenerateHandle(port.ServerPort, out int handle) != Result.Success)
|
2018-09-23 20:11:46 +02:00
|
|
|
{
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeMove(handle);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
2019-01-18 23:26:39 +01:00
|
|
|
|
2023-04-15 01:00:34 +02:00
|
|
|
[CommandCmif(3)]
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandTipc(3)] // 12.0.0+
|
2019-07-12 03:13:43 +02:00
|
|
|
// UnregisterService(ServiceName name)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode UnregisterService(ServiceCtx context)
|
2019-02-14 01:44:39 +01:00
|
|
|
{
|
|
|
|
if (!_isInitialized)
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.NotInitialized;
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
long namePosition = context.RequestData.BaseStream.Position;
|
|
|
|
|
|
|
|
string name = ReadName(context);
|
|
|
|
|
|
|
|
context.RequestData.BaseStream.Seek(namePosition + 8, SeekOrigin.Begin);
|
|
|
|
|
|
|
|
bool isLight = (context.RequestData.ReadInt32() & 1) != 0;
|
|
|
|
|
|
|
|
int maxSessions = context.RequestData.ReadInt32();
|
|
|
|
|
2020-12-02 00:23:43 +01:00
|
|
|
if (string.IsNullOrEmpty(name))
|
2019-02-14 01:44:39 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.InvalidName;
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
|
|
|
|
2022-05-05 20:23:30 +02:00
|
|
|
if (!_registry.Unregister(name))
|
2019-02-14 01:44:39 +01:00
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.NotRegistered;
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
|
|
|
|
2019-01-18 23:26:39 +01:00
|
|
|
private static string ReadName(ServiceCtx context)
|
|
|
|
{
|
|
|
|
string name = string.Empty;
|
|
|
|
|
|
|
|
for (int index = 0; index < 8 &&
|
|
|
|
context.RequestData.BaseStream.Position <
|
|
|
|
context.RequestData.BaseStream.Length; index++)
|
|
|
|
{
|
|
|
|
byte chr = context.RequestData.ReadByte();
|
|
|
|
|
|
|
|
if (chr >= 0x20 && chr < 0x7f)
|
|
|
|
{
|
|
|
|
name += (char)chr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2021-06-29 19:37:13 +02:00
|
|
|
|
|
|
|
public override void DestroyAtExit()
|
|
|
|
{
|
|
|
|
_commonServer.Dispose();
|
|
|
|
|
|
|
|
base.DestroyAtExit();
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|