2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2022-01-13 23:29:04 +01:00
|
|
|
using Ryujinx.HLE.Exceptions;
|
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;
|
2022-01-13 23:29:04 +01:00
|
|
|
using Ryujinx.Memory;
|
|
|
|
using System;
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
using System.Runtime.InteropServices;
|
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
|
|
|
|
2022-01-13 23:29:04 +01:00
|
|
|
MakeObject(context, new ISslContext(context.Request.HandleDesc.PId, sslVersion));
|
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
|
|
|
}
|
|
|
|
|
2022-01-13 23:29:04 +01:00
|
|
|
private uint ComputeCertificateBufferSizeRequired(ReadOnlySpan<BuiltInCertificateManager.CertStoreEntry> entries)
|
|
|
|
{
|
|
|
|
uint totalSize = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < entries.Length; i++)
|
|
|
|
{
|
|
|
|
totalSize += (uint)Unsafe.SizeOf<BuiltInCertificateInfo>();
|
|
|
|
totalSize += (uint)entries[i].Data.Length;
|
|
|
|
}
|
|
|
|
|
|
|
|
return totalSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
[CommandHipc(2)]
|
|
|
|
// GetCertificates(buffer<CaCertificateId, 5> ids) -> (u32 certificates_count, buffer<bytes, 6> certificates)
|
|
|
|
public ResultCode GetCertificates(ServiceCtx context)
|
|
|
|
{
|
|
|
|
ReadOnlySpan<CaCertificateId> ids = MemoryMarshal.Cast<byte, CaCertificateId>(context.Memory.GetSpan(context.Request.SendBuff[0].Position, (int)context.Request.SendBuff[0].Size));
|
|
|
|
|
|
|
|
if (!BuiltInCertificateManager.Instance.TryGetCertificates(ids, out BuiltInCertificateManager.CertStoreEntry[] entries))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ComputeCertificateBufferSizeRequired(entries) > context.Request.ReceiveBuff[0].Size)
|
|
|
|
{
|
|
|
|
return ResultCode.InvalidCertBufSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
using (WritableRegion region = context.Memory.GetWritableRegion(context.Request.ReceiveBuff[0].Position, (int)context.Request.ReceiveBuff[0].Size))
|
|
|
|
{
|
|
|
|
Span<byte> rawData = region.Memory.Span;
|
|
|
|
Span<BuiltInCertificateInfo> infos = MemoryMarshal.Cast<byte, BuiltInCertificateInfo>(rawData)[..entries.Length];
|
|
|
|
Span<byte> certificatesData = rawData[(Unsafe.SizeOf<BuiltInCertificateInfo>() * entries.Length)..];
|
|
|
|
|
|
|
|
for (int i = 0; i < infos.Length; i++)
|
|
|
|
{
|
|
|
|
entries[i].Data.CopyTo(certificatesData);
|
|
|
|
|
|
|
|
infos[i] = new BuiltInCertificateInfo
|
|
|
|
{
|
|
|
|
Id = entries[i].Id,
|
|
|
|
Status = entries[i].Status,
|
|
|
|
CertificateDataSize = (ulong)entries[i].Data.Length,
|
|
|
|
CertificateDataOffset = (ulong)(rawData.Length - certificatesData.Length)
|
|
|
|
};
|
|
|
|
|
|
|
|
certificatesData = certificatesData[entries[i].Data.Length..];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(entries.Length);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
[CommandHipc(3)]
|
|
|
|
// GetCertificateBufSize(buffer<CaCertificateId, 5> ids) -> u32 buffer_size;
|
|
|
|
public ResultCode GetCertificateBufSize(ServiceCtx context)
|
|
|
|
{
|
|
|
|
ReadOnlySpan<CaCertificateId> ids = MemoryMarshal.Cast<byte, CaCertificateId>(context.Memory.GetSpan(context.Request.SendBuff[0].Position, (int)context.Request.SendBuff[0].Size));
|
|
|
|
|
|
|
|
if (!BuiltInCertificateManager.Instance.TryGetCertificates(ids, out BuiltInCertificateManager.CertStoreEntry[] entries))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
}
|
|
|
|
|
|
|
|
context.ResponseData.Write(ComputeCertificateBufferSizeRequired(entries));
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|