2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-09-19 02:45:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.SslService;
|
2021-04-13 03:04:18 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.Types;
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ssl
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
[Service("ssl")]
|
2018-04-06 06:01:52 +02:00
|
|
|
class ISslService : IpcService
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2021-04-13 03:04:18 +02:00
|
|
|
// NOTE: The SSL service is used by games to connect it to various official online services, which we do not intend to support.
|
|
|
|
// In this case it is acceptable to stub all calls of the service.
|
2019-07-12 03:13:43 +02:00
|
|
|
public ISslService(ServiceCtx context) { }
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2018-10-07 00:16:42 +02:00
|
|
|
// CreateContext(nn::ssl::sf::SslVersion, u64, pid) -> object<nn::ssl::sf::ISslContext>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateContext(ServiceCtx context)
|
2018-10-07 00:16:42 +02:00
|
|
|
{
|
2021-04-13 03:04:18 +02:00
|
|
|
SslVersion sslVersion = (SslVersion)context.RequestData.ReadUInt32();
|
|
|
|
ulong pidPlaceholder = context.RequestData.ReadUInt64();
|
2018-10-07 00:16:42 +02:00
|
|
|
|
2020-06-06 13:04:30 +02:00
|
|
|
MakeObject(context, new ISslContext(context));
|
2018-10-07 00:16:42 +02:00
|
|
|
|
2021-04-13 03:04:18 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { sslVersion });
|
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-10-07 00:16:42 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(5)]
|
2018-10-07 00:16:42 +02:00
|
|
|
// SetInterfaceVersion(u32)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode SetInterfaceVersion(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2021-04-13 03:04:18 +02:00
|
|
|
// 1 = 3.0.0+, 2 = 5.0.0+, 3 = 6.0.0+
|
|
|
|
uint interfaceVersion = context.RequestData.ReadUInt32();
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2021-04-13 03:04:18 +02:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { interfaceVersion });
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
|
|
|
}
|