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-10-09 23:15:07 +00:00
|
|
|
using System;
|
2018-02-28 20:58:04 +00:00
|
|
|
using System.Collections.Generic;
|
2018-10-09 23:15:07 +00:00
|
|
|
using System.Net;
|
|
|
|
using System.Net.Sockets;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
using static Ryujinx.HLE.HOS.ErrorCode;
|
2018-02-28 20:58:04 +00:00
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sfdnsres
|
2018-02-28 20:58:04 +00:00
|
|
|
{
|
2018-04-06 04:01:52 +00:00
|
|
|
class IResolver : IpcService
|
2018-02-28 20:58:04 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-28 20:58:04 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-28 20:58:04 +00:00
|
|
|
|
2018-04-06 04:01:52 +00:00
|
|
|
public IResolver()
|
2018-02-28 20:58:04 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-28 20:58:04 +00:00
|
|
|
{
|
2018-10-09 23:15:07 +00:00
|
|
|
{ 0, SetDnsAddressesPrivate },
|
|
|
|
{ 1, GetDnsAddressesPrivate },
|
|
|
|
{ 2, GetHostByName },
|
|
|
|
{ 3, GetHostByAddress },
|
|
|
|
{ 4, GetHostStringError },
|
|
|
|
{ 5, GetGaiStringError },
|
|
|
|
{ 8, RequestCancelHandle },
|
|
|
|
{ 9, CancelSocketCall },
|
2018-12-04 20:23:37 +00:00
|
|
|
{ 11, ClearDnsAddresses }
|
2018-02-28 20:58:04 +00:00
|
|
|
};
|
|
|
|
}
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private long SerializeHostEnt(ServiceCtx context, IPHostEntry hostEntry, List<IPAddress> addresses = null)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
long originalBufferPosition = context.Request.ReceiveBuff[0].Position;
|
|
|
|
long bufferPosition = originalBufferPosition;
|
|
|
|
long bufferSize = context.Request.ReceiveBuff[0].Size;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
string hostName = hostEntry.HostName + '\0';
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// h_name
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteBytes(bufferPosition, Encoding.ASCII.GetBytes(hostName));
|
|
|
|
bufferPosition += hostName.Length;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// h_aliases list size
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteInt32(bufferPosition, IPAddress.HostToNetworkOrder(hostEntry.Aliases.Length));
|
|
|
|
bufferPosition += 4;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// Actual aliases
|
2018-12-04 20:23:37 +00:00
|
|
|
foreach (string alias in hostEntry.Aliases)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteBytes(bufferPosition, Encoding.ASCII.GetBytes(alias + '\0'));
|
|
|
|
bufferPosition += alias.Length + 1;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// h_addrtype but it's a short (also only support IPv4)
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteInt16(bufferPosition, IPAddress.HostToNetworkOrder((short)2));
|
|
|
|
bufferPosition += 2;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// h_length but it's a short
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteInt16(bufferPosition, IPAddress.HostToNetworkOrder((short)4));
|
|
|
|
bufferPosition += 2;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// Ip address count, we can only support ipv4 (blame Nintendo)
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteInt32(bufferPosition, addresses != null ? IPAddress.HostToNetworkOrder(addresses.Count) : 0);
|
|
|
|
bufferPosition += 4;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (addresses != null)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
foreach (IPAddress ip in addresses)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
context.Memory.WriteInt32(bufferPosition, IPAddress.HostToNetworkOrder(BitConverter.ToInt32(ip.GetAddressBytes(), 0)));
|
|
|
|
bufferPosition += 4;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
return bufferPosition - originalBufferPosition;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private string GetGaiStringErrorFromErrorCode(GaiError errorCode)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
if (errorCode > GaiError.Max)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errorCode = GaiError.Max;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
switch (errorCode)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
|
|
|
case GaiError.AddressFamily:
|
|
|
|
return "Address family for hostname not supported";
|
|
|
|
case GaiError.Again:
|
|
|
|
return "Temporary failure in name resolution";
|
|
|
|
case GaiError.BadFlags:
|
|
|
|
return "Invalid value for ai_flags";
|
|
|
|
case GaiError.Fail:
|
|
|
|
return "Non-recoverable failure in name resolution";
|
|
|
|
case GaiError.Family:
|
|
|
|
return "ai_family not supported";
|
|
|
|
case GaiError.Memory:
|
|
|
|
return "Memory allocation failure";
|
|
|
|
case GaiError.NoData:
|
|
|
|
return "No address associated with hostname";
|
|
|
|
case GaiError.NoName:
|
|
|
|
return "hostname nor servname provided, or not known";
|
|
|
|
case GaiError.Service:
|
|
|
|
return "servname not supported for ai_socktype";
|
|
|
|
case GaiError.SocketType:
|
|
|
|
return "ai_socktype not supported";
|
|
|
|
case GaiError.System:
|
|
|
|
return "System error returned in errno";
|
|
|
|
case GaiError.BadHints:
|
|
|
|
return "Invalid value for hints";
|
|
|
|
case GaiError.Protocol:
|
|
|
|
return "Resolved protocol is unknown";
|
|
|
|
case GaiError.Overflow:
|
|
|
|
return "Argument buffer overflow";
|
|
|
|
case GaiError.Max:
|
|
|
|
return "Unknown error";
|
|
|
|
default:
|
|
|
|
return "Success";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private string GetHostStringErrorFromErrorCode(NetDbError errorCode)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
if (errorCode <= NetDbError.Internal)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
|
|
|
return "Resolver internal error";
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
switch (errorCode)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
case NetDbError.Success:
|
2018-10-09 23:15:07 +00:00
|
|
|
return "Resolver Error 0 (no error)";
|
2018-12-04 20:23:37 +00:00
|
|
|
case NetDbError.HostNotFound:
|
2018-10-09 23:15:07 +00:00
|
|
|
return "Unknown host";
|
2018-12-04 20:23:37 +00:00
|
|
|
case NetDbError.TryAgain:
|
2018-10-09 23:15:07 +00:00
|
|
|
return "Host name lookup failure";
|
2018-12-04 20:23:37 +00:00
|
|
|
case NetDbError.NoRecovery:
|
2018-10-09 23:15:07 +00:00
|
|
|
return "Unknown server error";
|
2018-12-04 20:23:37 +00:00
|
|
|
case NetDbError.NoData:
|
2018-10-09 23:15:07 +00:00
|
|
|
return "No address associated with name";
|
|
|
|
default:
|
|
|
|
return "Unknown resolver error";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
private List<IPAddress> GetIpv4Addresses(IPHostEntry hostEntry)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
List<IPAddress> result = new List<IPAddress>();
|
|
|
|
foreach (IPAddress ip in hostEntry.AddressList)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
if (ip.AddressFamily == AddressFamily.InterNetwork)
|
|
|
|
result.Add(ip);
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
return result;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetDnsAddressesPrivate(u32, buffer<unknown, 5, 0>)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long SetDnsAddressesPrivate(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
uint unknown0 = context.RequestData.ReadUInt32();
|
|
|
|
long bufferPosition = context.Request.SendBuff[0].Position;
|
|
|
|
long bufferSize = context.Request.SendBuff[0].Size;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// TODO: This is stubbed in 2.0.0+, reverse 1.0.0 version for the sake completeness.
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSfdnsres, $"Stubbed. Unknown0: {unknown0}");
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return MakeError(ErrorModule.Os, 1023);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDnsAddressPrivate(u32) -> buffer<unknown, 6, 0>
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetDnsAddressesPrivate(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
uint unknown0 = context.RequestData.ReadUInt32();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// TODO: This is stubbed in 2.0.0+, reverse 1.0.0 version for the sake completeness.
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSfdnsres, $"Stubbed. Unknown0: {unknown0}");
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return MakeError(ErrorModule.Os, 1023);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHostByName(u8, u32, u64, pid, buffer<unknown, 5, 0>) -> (u32, u32, u32, buffer<unknown, 6, 0>)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetHostByName(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
byte[] rawName = context.Memory.ReadBytes(context.Request.SendBuff[0].Position, context.Request.SendBuff[0].Size);
|
|
|
|
string name = Encoding.ASCII.GetString(rawName).TrimEnd('\0');
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// TODO: use params
|
2018-12-04 20:23:37 +00:00
|
|
|
bool enableNsdResolve = context.RequestData.ReadInt32() == 1;
|
|
|
|
int timeOut = context.RequestData.ReadInt32();
|
|
|
|
ulong pidPlaceholder = context.RequestData.ReadUInt64();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
IPHostEntry hostEntry = null;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
NetDbError netDbErrorCode = NetDbError.Success;
|
|
|
|
GaiError errno = GaiError.Overflow;
|
|
|
|
long serializedSize = 0;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (name.Length <= 255)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
hostEntry = Dns.GetHostEntry(name);
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
catch (SocketException exception)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.Internal;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (exception.ErrorCode == 11001)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.HostNotFound;
|
|
|
|
errno = GaiError.NoData;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11002)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.TryAgain;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11003)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.NoRecovery;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11004)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.NoData;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 10060)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errno = GaiError.Again;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.HostNotFound;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (hostEntry != null)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errno = GaiError.Success;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
List<IPAddress> addresses = GetIpv4Addresses(hostEntry);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (addresses.Count == 0)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errno = GaiError.NoData;
|
|
|
|
netDbErrorCode = NetDbError.NoAddress;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
serializedSize = SerializeHostEnt(context, hostEntry, addresses);
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write((int)netDbErrorCode);
|
|
|
|
context.ResponseData.Write((int)errno);
|
|
|
|
context.ResponseData.Write(serializedSize);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHostByAddr(u32, u32, u32, u64, pid, buffer<unknown, 5, 0>) -> (u32, u32, u32, buffer<unknown, 6, 0>)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetHostByAddress(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
byte[] rawIp = context.Memory.ReadBytes(context.Request.SendBuff[0].Position, context.Request.SendBuff[0].Size);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
// TODO: use params
|
2018-12-04 20:23:37 +00:00
|
|
|
uint socketLength = context.RequestData.ReadUInt32();
|
|
|
|
uint type = context.RequestData.ReadUInt32();
|
|
|
|
int timeOut = context.RequestData.ReadInt32();
|
|
|
|
ulong pidPlaceholder = context.RequestData.ReadUInt64();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
IPHostEntry hostEntry = null;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
NetDbError netDbErrorCode = NetDbError.Success;
|
|
|
|
GaiError errno = GaiError.AddressFamily;
|
|
|
|
long serializedSize = 0;
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (rawIp.Length == 4)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
IPAddress address = new IPAddress(rawIp);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
hostEntry = Dns.GetHostEntry(address);
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
catch (SocketException exception)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.Internal;
|
|
|
|
if (exception.ErrorCode == 11001)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.HostNotFound;
|
|
|
|
errno = GaiError.NoData;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11002)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.TryAgain;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11003)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.NoRecovery;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 11004)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.NoData;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
2018-12-04 20:23:37 +00:00
|
|
|
else if (exception.ErrorCode == 10060)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errno = GaiError.Again;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
netDbErrorCode = NetDbError.NoAddress;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (hostEntry != null)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
errno = GaiError.Success;
|
|
|
|
serializedSize = SerializeHostEnt(context, hostEntry, GetIpv4Addresses(hostEntry));
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write((int)netDbErrorCode);
|
|
|
|
context.ResponseData.Write((int)errno);
|
|
|
|
context.ResponseData.Write(serializedSize);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetHostStringError(u32) -> buffer<unknown, 6, 0>
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetHostStringError(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
long resultCode = MakeError(ErrorModule.Os, 1023);
|
|
|
|
NetDbError errorCode = (NetDbError)context.RequestData.ReadInt32();
|
|
|
|
string errorString = GetHostStringErrorFromErrorCode(errorCode);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (errorString.Length + 1 <= context.Request.ReceiveBuff[0].Size)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
resultCode = 0;
|
|
|
|
context.Memory.WriteBytes(context.Request.ReceiveBuff[0].Position, Encoding.ASCII.GetBytes(errorString + '\0'));
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
return resultCode;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetGaiStringError(u32) -> buffer<unknown, 6, 0>
|
2018-12-04 20:23:37 +00:00
|
|
|
public long GetGaiStringError(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
long resultCode = MakeError(ErrorModule.Os, 1023);
|
|
|
|
GaiError errorCode = (GaiError)context.RequestData.ReadInt32();
|
|
|
|
string errorString = GetGaiStringErrorFromErrorCode(errorCode);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
if (errorString.Length + 1 <= context.Request.ReceiveBuff[0].Size)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
resultCode = 0;
|
|
|
|
context.Memory.WriteBytes(context.Request.ReceiveBuff[0].Position, Encoding.ASCII.GetBytes(errorString + '\0'));
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
return resultCode;
|
2018-10-09 23:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// RequestCancelHandle(u64, pid) -> u32
|
2018-12-04 20:23:37 +00:00
|
|
|
public long RequestCancelHandle(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
ulong unknown0 = context.RequestData.ReadUInt64();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
context.ResponseData.Write(0);
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSfdnsres, $"Stubbed. Unknown0: {unknown0}");
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// CancelSocketCall(u32, u64, pid)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long CancelSocketCall(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
uint unknown0 = context.RequestData.ReadUInt32();
|
|
|
|
ulong unknown1 = context.RequestData.ReadUInt64();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSfdnsres, $"Stubbed. Unknown0: {unknown0} - " +
|
|
|
|
$"Unknown1: {unknown1}");
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ClearDnsAddresses(u32)
|
2018-12-04 20:23:37 +00:00
|
|
|
public long ClearDnsAddresses(ServiceCtx context)
|
2018-10-09 23:15:07 +00:00
|
|
|
{
|
2018-12-04 20:23:37 +00:00
|
|
|
uint unknown0 = context.RequestData.ReadUInt32();
|
2018-10-09 23:15:07 +00:00
|
|
|
|
2018-12-04 20:23:37 +00:00
|
|
|
Logger.PrintStub(LogClass.ServiceSfdnsres, $"Stubbed. Unknown0: {unknown0}");
|
2018-10-09 23:15:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-28 20:58:04 +00:00
|
|
|
}
|
|
|
|
}
|