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