2019-11-21 13:24:06 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Ldn.Types;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Net;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ldn.UserServiceCreator
|
|
|
|
|
{
|
|
|
|
|
class IUserLocalCommunicationService : IpcService
|
|
|
|
|
{
|
|
|
|
|
// TODO(Ac_K): Determine what the hardcoded unknown value is.
|
|
|
|
|
private const int UnknownValue = 90;
|
|
|
|
|
|
|
|
|
|
private NetworkInterface _networkInterface;
|
|
|
|
|
|
|
|
|
|
private int _stateChangeEventHandle = 0;
|
|
|
|
|
|
|
|
|
|
public IUserLocalCommunicationService(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
_networkInterface = new NetworkInterface(context.Device.System);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// GetState() -> s32 state
|
|
|
|
|
public ResultCode GetState(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
if (_networkInterface.NifmState != ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
context.ResponseData.Write((int)NetworkState.Error);
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResultCode result = _networkInterface.GetState(out NetworkState state);
|
|
|
|
|
|
|
|
|
|
if (result == ResultCode.Success)
|
|
|
|
|
{
|
|
|
|
|
context.ResponseData.Write((int)state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(100)]
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// AttachStateChangeEvent() -> handle<copy>
|
|
|
|
|
public ResultCode AttachStateChangeEvent(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
if (_stateChangeEventHandle == 0)
|
|
|
|
|
{
|
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_networkInterface.StateChangeEvent.ReadableEvent, out _stateChangeEventHandle) != KernelResult.Success)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Out of handles!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(_stateChangeEventHandle);
|
|
|
|
|
|
|
|
|
|
// Return ResultCode.InvalidArgument if handle is null, doesn't occur in our case since we already throw an Exception.
|
|
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(400)]
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// InitializeOld(u64, pid)
|
|
|
|
|
public ResultCode InitializeOld(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
return _networkInterface.Initialize(UnknownValue, 0, null, null);
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(401)]
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// Finalize()
|
|
|
|
|
public ResultCode Finalize(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
return _networkInterface.Finalize();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(402)] // 7.0.0+
|
2019-11-21 13:24:06 +01:00
|
|
|
|
// Initialize(u64 ip_addresses, u64, pid)
|
|
|
|
|
public ResultCode Initialize(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
// TODO(Ac_K): Determine what addresses are.
|
|
|
|
|
IPAddress unknownAddress1 = new IPAddress(context.RequestData.ReadUInt32());
|
|
|
|
|
IPAddress unknownAddress2 = new IPAddress(context.RequestData.ReadUInt32());
|
|
|
|
|
|
|
|
|
|
return _networkInterface.Initialize(UnknownValue, version: 1, unknownAddress1, unknownAddress2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|