2021-04-13 03:04:18 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.HLE.HOS.Services.Ssl.Types;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ssl.SslService
|
|
|
|
{
|
|
|
|
class ISslConnection : IpcService
|
|
|
|
{
|
|
|
|
public ISslConnection() { }
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetSocketDescriptor(u32) -> u32
|
|
|
|
public ResultCode SetSocketDescriptor(ServiceCtx context)
|
|
|
|
{
|
|
|
|
uint socketFd = context.RequestData.ReadUInt32();
|
|
|
|
uint duplicateSocketFd = 0;
|
|
|
|
|
|
|
|
context.ResponseData.Write(duplicateSocketFd);
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { socketFd });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(1)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetHostName(buffer<bytes, 5>)
|
|
|
|
public ResultCode SetHostName(ServiceCtx context)
|
|
|
|
{
|
2021-04-24 12:16:01 +02:00
|
|
|
ulong hostNameDataPosition = context.Request.SendBuff[0].Position;
|
|
|
|
ulong hostNameDataSize = context.Request.SendBuff[0].Size;
|
2021-04-13 03:04:18 +02:00
|
|
|
|
|
|
|
byte[] hostNameData = new byte[hostNameDataSize];
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
context.Memory.Read(hostNameDataPosition, hostNameData);
|
2021-04-13 03:04:18 +02:00
|
|
|
|
|
|
|
string hostName = Encoding.ASCII.GetString(hostNameData).Trim('\0');
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { hostName });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(2)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetVerifyOption(nn::ssl::sf::VerifyOption)
|
|
|
|
public ResultCode SetVerifyOption(ServiceCtx context)
|
|
|
|
{
|
|
|
|
VerifyOption verifyOption = (VerifyOption)context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { verifyOption });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(3)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetIoMode(nn::ssl::sf::IoMode)
|
|
|
|
public ResultCode SetIoMode(ServiceCtx context)
|
|
|
|
{
|
|
|
|
IoMode ioMode = (IoMode)context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { ioMode });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(8)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// DoHandshake()
|
|
|
|
public ResultCode DoHandshake(ServiceCtx context)
|
|
|
|
{
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(11)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// Write(buffer<bytes, 5>) -> u32
|
|
|
|
public ResultCode Write(ServiceCtx context)
|
|
|
|
{
|
2021-04-24 12:16:01 +02:00
|
|
|
ulong inputDataPosition = context.Request.SendBuff[0].Position;
|
|
|
|
ulong inputDataSize = context.Request.SendBuff[0].Size;
|
2021-04-13 03:04:18 +02:00
|
|
|
|
2021-04-14 14:47:19 +02:00
|
|
|
byte[] data = new byte[inputDataSize];
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
context.Memory.Read(inputDataPosition, data);
|
2021-04-14 14:47:19 +02:00
|
|
|
|
|
|
|
// NOTE: Tell the guest everything is transferred.
|
|
|
|
uint transferredSize = (uint)inputDataSize;
|
2021-04-13 03:04:18 +02:00
|
|
|
|
|
|
|
context.ResponseData.Write(transferredSize);
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(17)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetSessionCacheMode(nn::ssl::sf::SessionCacheMode)
|
|
|
|
public ResultCode SetSessionCacheMode(ServiceCtx context)
|
|
|
|
{
|
|
|
|
SessionCacheMode sessionCacheMode = (SessionCacheMode)context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { sessionCacheMode });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(22)]
|
2021-04-13 03:04:18 +02:00
|
|
|
// SetOption(b8, nn::ssl::sf::OptionType)
|
|
|
|
public ResultCode SetOption(ServiceCtx context)
|
|
|
|
{
|
|
|
|
bool optionEnabled = context.RequestData.ReadBoolean();
|
|
|
|
OptionType optionType = (OptionType)context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { optionType, optionEnabled });
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|