2018-10-17 17:15:50 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-07-19 01:06:45 +00:00
|
|
|
using System;
|
2018-02-28 03:31:52 +00:00
|
|
|
using System.Collections.Generic;
|
2018-07-19 01:06:45 +00:00
|
|
|
using System.Linq;
|
|
|
|
using System.Net;
|
|
|
|
using System.Net.NetworkInformation;
|
2018-08-16 23:47:36 +00:00
|
|
|
using System.Net.Sockets;
|
|
|
|
|
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nifm
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IGeneralService : IpcService
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
public IGeneralService()
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-07-19 01:06:45 +00:00
|
|
|
{ 4, CreateRequest },
|
|
|
|
{ 12, GetCurrentIpAddress }
|
2018-02-28 03:31:52 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long CreateRequest(ServiceCtx context)
|
2018-02-28 03:31:52 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
int unknown = context.RequestData.ReadInt32();
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
MakeObject(context, new IRequest(context.Device.System));
|
2018-02-28 03:31:52 +00:00
|
|
|
|
2018-10-17 17:15:50 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceNifm, "Stubbed.");
|
2018-02-28 03:31:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-19 01:06:45 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetCurrentIpAddress(ServiceCtx context)
|
2018-07-19 01:06:45 +00:00
|
|
|
{
|
|
|
|
if (!NetworkInterface.GetIsNetworkAvailable())
|
|
|
|
{
|
2018-08-16 23:47:36 +00:00
|
|
|
return MakeError(ErrorModule.Nifm, NifmErr.NoInternetConnection);
|
2018-07-19 01:06:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
IPAddress address = host.AddressList.FirstOrDefault(a => a.AddressFamily == AddressFamily.InterNetwork);
|
2018-07-19 01:06:45 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write(BitConverter.ToUInt32(address.GetAddressBytes()));
|
2018-07-19 01:06:45 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintInfo(LogClass.ServiceNifm, $"Console's local IP is \"{address}\".");
|
2018-07-19 01:06:45 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 03:31:52 +00:00
|
|
|
}
|
2018-07-19 01:06:45 +00:00
|
|
|
}
|