2019-10-19 00:47:50 +02:00
|
|
|
using Ryujinx.Common;
|
2018-10-17 19:15:50 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-09-19 02:45:11 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService;
|
2019-10-19 00:47:50 +02:00
|
|
|
using Ryujinx.HLE.HOS.Services.Nifm.StaticService.Types;
|
2018-07-19 03:06:45 +02:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.NetworkInformation;
|
2018-08-17 01:47:36 +02:00
|
|
|
using System.Net.Sockets;
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2019-09-04 18:09:20 +02:00
|
|
|
class IGeneralService : IpcService, IDisposable
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2019-09-04 18:09:20 +02:00
|
|
|
private GeneralServiceDetail _generalServiceDetail;
|
|
|
|
|
|
|
|
public IGeneralService()
|
|
|
|
{
|
|
|
|
_generalServiceDetail = new GeneralServiceDetail
|
|
|
|
{
|
|
|
|
ClientId = GeneralServiceManager.Count,
|
|
|
|
IsAnyInternetRequestAccepted = true // NOTE: Why not accept any internet request?
|
|
|
|
};
|
|
|
|
|
|
|
|
GeneralServiceManager.Add(_generalServiceDetail);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Command(1)]
|
|
|
|
// GetClientId() -> buffer<nn::nifm::ClientId, 0x1a, 4>
|
|
|
|
public ResultCode GetClientId(ServiceCtx context)
|
|
|
|
{
|
|
|
|
long position = context.Request.RecvListBuff[0].Position;
|
|
|
|
long size = context.Request.RecvListBuff[0].Size;
|
|
|
|
|
|
|
|
context.Memory.WriteInt32(position, _generalServiceDetail.ClientId);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(4)]
|
2019-09-04 18:09:20 +02:00
|
|
|
// CreateRequest(u32 version) -> object<nn::nifm::detail::IRequest>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode CreateRequest(ServiceCtx context)
|
2018-02-28 04:31:52 +01:00
|
|
|
{
|
2019-09-04 18:09:20 +02:00
|
|
|
uint version = context.RequestData.ReadUInt32();
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-09-04 18:09:20 +02:00
|
|
|
MakeObject(context, new IRequest(context.Device.System, version));
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-09-04 18:09:20 +02:00
|
|
|
// Doesn't occur in our case.
|
|
|
|
// return ResultCode.ObjectIsNull;
|
|
|
|
|
|
|
|
Logger.PrintStub(LogClass.ServiceNifm, new { version });
|
2018-02-28 04:31:52 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
2018-07-19 03:06:45 +02:00
|
|
|
|
2019-07-12 03:13:43 +02:00
|
|
|
[Command(12)]
|
|
|
|
// GetCurrentIpAddress() -> nn::nifm::IpV4Address
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetCurrentIpAddress(ServiceCtx context)
|
2018-07-19 03:06:45 +02:00
|
|
|
{
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
{
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.NoInternetConnection;
|
2018-07-19 03:06:45 +02:00
|
|
|
}
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
|
2018-08-17 01:47:36 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
IPAddress address = host.AddressList.FirstOrDefault(a => a.AddressFamily == AddressFamily.InterNetwork);
|
2018-07-19 03:06:45 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write(BitConverter.ToUInt32(address.GetAddressBytes()));
|
2018-07-19 03:06:45 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintInfo(LogClass.ServiceNifm, $"Console's local IP is \"{address}\".");
|
2018-07-19 03:06:45 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-07-19 03:06:45 +02:00
|
|
|
}
|
2019-09-04 18:09:20 +02:00
|
|
|
|
2019-10-19 00:47:50 +02:00
|
|
|
[Command(18)]
|
|
|
|
// GetInternetConnectionStatus() -> nn::nifm::detail::sf::InternetConnectionStatus
|
|
|
|
public ResultCode GetInternetConnectionStatus(ServiceCtx context)
|
|
|
|
{
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
{
|
|
|
|
return ResultCode.NoInternetConnection;
|
|
|
|
}
|
|
|
|
|
|
|
|
InternetConnectionStatus internetConnectionStatus = new InternetConnectionStatus
|
|
|
|
{
|
|
|
|
Type = InternetConnectionType.WiFi,
|
|
|
|
WifiStrength = 3,
|
|
|
|
State = InternetConnectionState.Connected,
|
|
|
|
};
|
|
|
|
|
|
|
|
context.ResponseData.WriteStruct(internetConnectionStatus);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
2019-09-04 18:09:20 +02:00
|
|
|
[Command(21)]
|
|
|
|
// IsAnyInternetRequestAccepted(buffer<nn::nifm::ClientId, 0x19, 4>) -> bool
|
|
|
|
public ResultCode IsAnyInternetRequestAccepted(ServiceCtx context)
|
|
|
|
{
|
|
|
|
long position = context.Request.PtrBuff[0].Position;
|
|
|
|
long size = context.Request.PtrBuff[0].Size;
|
|
|
|
|
|
|
|
int clientId = context.Memory.ReadInt32(position);
|
|
|
|
|
|
|
|
context.ResponseData.Write(GeneralServiceManager.Get(clientId).IsAnyInternetRequestAccepted);
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
GeneralServiceManager.Remove(_generalServiceDetail.ClientId);
|
|
|
|
}
|
2018-02-28 04:31:52 +01:00
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
}
|