2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.SslService;
|
2021-04-13 01:04:18 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.Types;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ssl
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("ssl")]
|
2018-04-06 04:01:52 +00:00
|
|
|
class ISslService : IpcService
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2021-04-13 01:04:18 +00: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 01:13:43 +00:00
|
|
|
public ISslService(ServiceCtx context) { }
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
2018-10-06 22:16:42 +00:00
|
|
|
// CreateContext(nn::ssl::sf::SslVersion, u64, pid) -> object<nn::ssl::sf::ISslContext>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateContext(ServiceCtx context)
|
2018-10-06 22:16:42 +00:00
|
|
|
{
|
2021-04-13 01:04:18 +00:00
|
|
|
SslVersion sslVersion = (SslVersion)context.RequestData.ReadUInt32();
|
|
|
|
ulong pidPlaceholder = context.RequestData.ReadUInt64();
|
2018-10-06 22:16:42 +00:00
|
|
|
|
2020-06-06 11:04:30 +00:00
|
|
|
MakeObject(context, new ISslContext(context));
|
2018-10-06 22:16:42 +00:00
|
|
|
|
2021-04-13 01:04:18 +00:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { sslVersion });
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-10-06 22:16:42 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(5)]
|
2018-10-06 22:16:42 +00:00
|
|
|
// SetInterfaceVersion(u32)
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode SetInterfaceVersion(ServiceCtx context)
|
2018-06-02 22:46:09 +00:00
|
|
|
{
|
2021-04-13 01:04:18 +00:00
|
|
|
// 1 = 3.0.0+, 2 = 5.0.0+, 3 = 6.0.0+
|
|
|
|
uint interfaceVersion = context.RequestData.ReadUInt32();
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2021-04-13 01:04:18 +00:00
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { interfaceVersion });
|
2018-06-02 22:46:09 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-06-02 22:46:09 +00:00
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
|
|
|
}
|