2023-01-04 22:15:45 +00:00
|
|
|
using Ryujinx.Horizon.Common;
|
|
|
|
using Ryujinx.Horizon.Sdk.Sf.Cmif;
|
|
|
|
using Ryujinx.Horizon.Sdk.Sf.Hipc;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ryujinx.Horizon.Sdk
|
|
|
|
{
|
|
|
|
static class ServiceUtil
|
|
|
|
{
|
|
|
|
public static Result SendRequest(out CmifResponse response, int sessionHandle, uint requestId, bool sendPid, scoped ReadOnlySpan<byte> data)
|
|
|
|
{
|
|
|
|
ulong tlsAddress = HorizonStatic.ThreadContext.TlsAddress;
|
2023-01-08 12:13:39 +00:00
|
|
|
int tlsSize = Api.TlsMessageBufferSize;
|
2023-01-04 22:15:45 +00:00
|
|
|
|
|
|
|
using (var tlsRegion = HorizonStatic.AddressSpace.GetWritableRegion(tlsAddress, tlsSize))
|
|
|
|
{
|
|
|
|
CmifRequest request = CmifMessage.CreateRequest(tlsRegion.Memory.Span, new CmifRequestFormat()
|
|
|
|
{
|
2023-01-08 12:13:39 +00:00
|
|
|
DataSize = data.Length,
|
2023-01-04 22:15:45 +00:00
|
|
|
RequestId = requestId,
|
2023-01-08 12:13:39 +00:00
|
|
|
SendPid = sendPid
|
2023-01-04 22:15:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
data.CopyTo(request.Data);
|
|
|
|
}
|
|
|
|
|
|
|
|
Result result = HorizonStatic.Syscall.SendSyncRequest(sessionHandle);
|
|
|
|
|
|
|
|
if (result.IsFailure)
|
|
|
|
{
|
|
|
|
response = default;
|
2023-01-08 12:13:39 +00:00
|
|
|
|
2023-01-04 22:15:45 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CmifMessage.ParseResponse(out response, HorizonStatic.AddressSpace.GetWritableRegion(tlsAddress, tlsSize).Memory.Span, false, 0);
|
|
|
|
}
|
|
|
|
}
|
2023-01-08 12:13:39 +00:00
|
|
|
}
|