305f06eb71
* Make all title id instances unsigned * Replace address and size with ulong instead of signed types Long overdue change. Also change some logics here and there to optimize with the new memory manager. * Address Ac_K's comments * Remove uneeded cast all around * Fixes some others misalignment
77 lines
No EOL
2.6 KiB
C#
77 lines
No EOL
2.6 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Services.Ssl.Types;
|
|
using System.Text;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ssl.SslService
|
|
{
|
|
class ISslContext : IpcService
|
|
{
|
|
private uint _connectionCount;
|
|
|
|
private ulong _serverCertificateId;
|
|
private ulong _clientCertificateId;
|
|
|
|
public ISslContext(ServiceCtx context) { }
|
|
|
|
[CommandHipc(2)]
|
|
// CreateConnection() -> object<nn::ssl::sf::ISslConnection>
|
|
public ResultCode CreateConnection(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new ISslConnection());
|
|
|
|
_connectionCount++;
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(3)]
|
|
// GetConnectionCount() -> u32 count
|
|
public ResultCode GetConnectionCount(ServiceCtx context)
|
|
{
|
|
context.ResponseData.Write(_connectionCount);
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { _connectionCount });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(4)]
|
|
// ImportServerPki(nn::ssl::sf::CertificateFormat certificateFormat, buffer<bytes, 5> certificate) -> u64 certificateId
|
|
public ResultCode ImportServerPki(ServiceCtx context)
|
|
{
|
|
CertificateFormat certificateFormat = (CertificateFormat)context.RequestData.ReadUInt32();
|
|
|
|
ulong certificateDataPosition = context.Request.SendBuff[0].Position;
|
|
ulong certificateDataSize = context.Request.SendBuff[0].Size;
|
|
|
|
context.ResponseData.Write(_serverCertificateId++);
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { certificateFormat });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[CommandHipc(5)]
|
|
// ImportClientPki(buffer<bytes, 5> certificate, buffer<bytes, 5> ascii_password) -> u64 certificateId
|
|
public ResultCode ImportClientPki(ServiceCtx context)
|
|
{
|
|
ulong certificateDataPosition = context.Request.SendBuff[0].Position;
|
|
ulong certificateDataSize = context.Request.SendBuff[0].Size;
|
|
|
|
ulong asciiPasswordDataPosition = context.Request.SendBuff[1].Position;
|
|
ulong asciiPasswordDataSize = context.Request.SendBuff[1].Size;
|
|
|
|
byte[] asciiPasswordData = new byte[asciiPasswordDataSize];
|
|
|
|
context.Memory.Read(asciiPasswordDataPosition, asciiPasswordData);
|
|
|
|
string asciiPassword = Encoding.ASCII.GetString(asciiPasswordData).Trim('\0');
|
|
|
|
context.ResponseData.Write(_clientCertificateId++);
|
|
|
|
Logger.Stub?.PrintStub(LogClass.ServiceSsl, new { asciiPassword });
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |