mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-20 01:12:41 +00:00
* dotnet format style --severity info Some changes were manually reverted. * dotnet format analyzers --serverity info Some changes have been minimally adapted. * Restore a few unused methods and variables * Silence dotnet format IDE0060 warnings * Silence dotnet format IDE0052 warnings * Address or silence dotnet format IDE1006 warnings * Address dotnet format CA1816 warnings * Address or silence dotnet format CA2208 warnings * Address or silence dotnet format CA1806 and a few CA1854 warnings * Address dotnet format CA2211 warnings * Address dotnet format CA1822 warnings * Address or silence dotnet format CA1069 warnings * Make dotnet format succeed in style mode * Address or silence dotnet format CA2211 warnings * Address review comments * Address dotnet format CA2208 warnings properly * Make ProcessResult readonly * Address most dotnet format whitespace warnings * Apply dotnet format whitespace formatting A few of them have been manually reverted and the corresponding warning was silenced * Add previously silenced warnings back I have no clue how these disappeared * Revert formatting changes for while and for-loops * Format if-blocks correctly * Run dotnet format style after rebase * Run dotnet format whitespace after rebase * Run dotnet format style after rebase * Run dotnet format analyzers after rebase * Run dotnet format after rebase and remove unused usings - analyzers - style - whitespace * Disable 'prefer switch expression' rule * Add comments to disabled warnings * Fix a few disabled warnings * Fix naming rule violation, Convert shader properties to auto-property and convert values to const * Simplify properties and array initialization, Use const when possible, Remove trailing commas * Start working on disabled warnings * Fix and silence a few dotnet-format warnings again * Run dotnet format after rebase * Use using declaration instead of block syntax * Address IDE0251 warnings * Address a few disabled IDE0060 warnings * Silence IDE0060 in .editorconfig * Revert "Simplify properties and array initialization, Use const when possible, Remove trailing commas" This reverts commit 9462e4136c0a2100dc28b20cf9542e06790aa67e. * dotnet format whitespace after rebase * First dotnet format pass * Fix naming rule violations * Fix typo * Add trailing commas, use targeted new and use array initializer * Fix build issues * Fix remaining build issues * Remove SuppressMessage for CA1069 where possible * Address dotnet format issues * Address formatting issues Co-authored-by: Ac_K <acoustik666@gmail.com> * Add GetHashCode implementation for RenderingSurfaceInfo * Explicitly silence CA1822 for every affected method in Syscall * Address formatting issues in Demangler.cs * Address review feedback Co-authored-by: Ac_K <acoustik666@gmail.com> * Revert marking service methods as static * Next dotnet format pass * Address review feedback --------- Co-authored-by: Ac_K <acoustik666@gmail.com>
226 lines
10 KiB
C#
226 lines
10 KiB
C#
using Ryujinx.HLE.HOS.Services.Sockets.Bsd.Types;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Sockets;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd.Impl
|
|
{
|
|
static class WinSockHelper
|
|
{
|
|
private static readonly Dictionary<WsaError, LinuxError> _errorMap = new()
|
|
{
|
|
// WSAEINTR
|
|
{ WsaError.WSAEINTR, LinuxError.EINTR },
|
|
// WSAEWOULDBLOCK
|
|
{ WsaError.WSAEWOULDBLOCK, LinuxError.EWOULDBLOCK },
|
|
// WSAEINPROGRESS
|
|
{ WsaError.WSAEINPROGRESS, LinuxError.EINPROGRESS },
|
|
// WSAEALREADY
|
|
{ WsaError.WSAEALREADY, LinuxError.EALREADY },
|
|
// WSAENOTSOCK
|
|
{ WsaError.WSAENOTSOCK, LinuxError.ENOTSOCK },
|
|
// WSAEDESTADDRREQ
|
|
{ WsaError.WSAEDESTADDRREQ, LinuxError.EDESTADDRREQ },
|
|
// WSAEMSGSIZE
|
|
{ WsaError.WSAEMSGSIZE, LinuxError.EMSGSIZE },
|
|
// WSAEPROTOTYPE
|
|
{ WsaError.WSAEPROTOTYPE, LinuxError.EPROTOTYPE },
|
|
// WSAENOPROTOOPT
|
|
{ WsaError.WSAENOPROTOOPT, LinuxError.ENOPROTOOPT },
|
|
// WSAEPROTONOSUPPORT
|
|
{ WsaError.WSAEPROTONOSUPPORT, LinuxError.EPROTONOSUPPORT },
|
|
// WSAESOCKTNOSUPPORT
|
|
{ WsaError.WSAESOCKTNOSUPPORT, LinuxError.ESOCKTNOSUPPORT },
|
|
// WSAEOPNOTSUPP
|
|
{ WsaError.WSAEOPNOTSUPP, LinuxError.EOPNOTSUPP },
|
|
// WSAEPFNOSUPPORT
|
|
{ WsaError.WSAEPFNOSUPPORT, LinuxError.EPFNOSUPPORT },
|
|
// WSAEAFNOSUPPORT
|
|
{ WsaError.WSAEAFNOSUPPORT, LinuxError.EAFNOSUPPORT },
|
|
// WSAEADDRINUSE
|
|
{ WsaError.WSAEADDRINUSE, LinuxError.EADDRINUSE },
|
|
// WSAEADDRNOTAVAIL
|
|
{ WsaError.WSAEADDRNOTAVAIL, LinuxError.EADDRNOTAVAIL },
|
|
// WSAENETDOWN
|
|
{ WsaError.WSAENETDOWN, LinuxError.ENETDOWN },
|
|
// WSAENETUNREACH
|
|
{ WsaError.WSAENETUNREACH, LinuxError.ENETUNREACH },
|
|
// WSAENETRESET
|
|
{ WsaError.WSAENETRESET, LinuxError.ENETRESET },
|
|
// WSAECONNABORTED
|
|
{ WsaError.WSAECONNABORTED, LinuxError.ECONNABORTED },
|
|
// WSAECONNRESET
|
|
{ WsaError.WSAECONNRESET, LinuxError.ECONNRESET },
|
|
// WSAENOBUFS
|
|
{ WsaError.WSAENOBUFS, LinuxError.ENOBUFS },
|
|
// WSAEISCONN
|
|
{ WsaError.WSAEISCONN, LinuxError.EISCONN },
|
|
// WSAENOTCONN
|
|
{ WsaError.WSAENOTCONN, LinuxError.ENOTCONN },
|
|
// WSAESHUTDOWN
|
|
{ WsaError.WSAESHUTDOWN, LinuxError.ESHUTDOWN },
|
|
// WSAETOOMANYREFS
|
|
{ WsaError.WSAETOOMANYREFS, LinuxError.ETOOMANYREFS },
|
|
// WSAETIMEDOUT
|
|
{ WsaError.WSAETIMEDOUT, LinuxError.ETIMEDOUT },
|
|
// WSAECONNREFUSED
|
|
{ WsaError.WSAECONNREFUSED, LinuxError.ECONNREFUSED },
|
|
// WSAELOOP
|
|
{ WsaError.WSAELOOP, LinuxError.ELOOP },
|
|
// WSAENAMETOOLONG
|
|
{ WsaError.WSAENAMETOOLONG, LinuxError.ENAMETOOLONG },
|
|
// WSAEHOSTDOWN
|
|
{ WsaError.WSAEHOSTDOWN, LinuxError.EHOSTDOWN },
|
|
// WSAEHOSTUNREACH
|
|
{ WsaError.WSAEHOSTUNREACH, LinuxError.EHOSTUNREACH },
|
|
// WSAENOTEMPTY
|
|
{ WsaError.WSAENOTEMPTY, LinuxError.ENOTEMPTY },
|
|
// WSAEUSERS
|
|
{ WsaError.WSAEUSERS, LinuxError.EUSERS },
|
|
// WSAEDQUOT
|
|
{ WsaError.WSAEDQUOT, LinuxError.EDQUOT },
|
|
// WSAESTALE
|
|
{ WsaError.WSAESTALE, LinuxError.ESTALE },
|
|
// WSAEREMOTE
|
|
{ WsaError.WSAEREMOTE, LinuxError.EREMOTE },
|
|
// WSAEINVAL
|
|
{ WsaError.WSAEINVAL, LinuxError.EINVAL },
|
|
// WSAEFAULT
|
|
{ WsaError.WSAEFAULT, LinuxError.EFAULT },
|
|
// NOERROR
|
|
{ 0, 0 },
|
|
};
|
|
|
|
private static readonly Dictionary<int, LinuxError> _errorMapMacOs = new()
|
|
{
|
|
{ 35, LinuxError.EAGAIN },
|
|
{ 11, LinuxError.EDEADLOCK },
|
|
{ 91, LinuxError.ENOMSG },
|
|
{ 90, LinuxError.EIDRM },
|
|
{ 77, LinuxError.ENOLCK },
|
|
{ 70, LinuxError.ESTALE },
|
|
{ 36, LinuxError.EINPROGRESS },
|
|
{ 37, LinuxError.EALREADY },
|
|
{ 38, LinuxError.ENOTSOCK },
|
|
{ 39, LinuxError.EDESTADDRREQ },
|
|
{ 40, LinuxError.EMSGSIZE },
|
|
{ 41, LinuxError.EPROTOTYPE },
|
|
{ 42, LinuxError.ENOPROTOOPT },
|
|
{ 43, LinuxError.EPROTONOSUPPORT },
|
|
{ 44, LinuxError.ESOCKTNOSUPPORT },
|
|
{ 45, LinuxError.EOPNOTSUPP },
|
|
{ 46, LinuxError.EPFNOSUPPORT },
|
|
{ 47, LinuxError.EAFNOSUPPORT },
|
|
{ 48, LinuxError.EADDRINUSE },
|
|
{ 49, LinuxError.EADDRNOTAVAIL },
|
|
{ 50, LinuxError.ENETDOWN },
|
|
{ 51, LinuxError.ENETUNREACH },
|
|
{ 52, LinuxError.ENETRESET },
|
|
{ 53, LinuxError.ECONNABORTED },
|
|
{ 54, LinuxError.ECONNRESET },
|
|
{ 55, LinuxError.ENOBUFS },
|
|
{ 56, LinuxError.EISCONN },
|
|
{ 57, LinuxError.ENOTCONN },
|
|
{ 58, LinuxError.ESHUTDOWN },
|
|
{ 60, LinuxError.ETIMEDOUT },
|
|
{ 61, LinuxError.ECONNREFUSED },
|
|
{ 64, LinuxError.EHOSTDOWN },
|
|
{ 65, LinuxError.EHOSTUNREACH },
|
|
{ 68, LinuxError.EUSERS },
|
|
{ 62, LinuxError.ELOOP },
|
|
{ 63, LinuxError.ENAMETOOLONG },
|
|
{ 66, LinuxError.ENOTEMPTY },
|
|
{ 69, LinuxError.EDQUOT },
|
|
{ 71, LinuxError.EREMOTE },
|
|
{ 78, LinuxError.ENOSYS },
|
|
{ 59, LinuxError.ETOOMANYREFS },
|
|
{ 92, LinuxError.EILSEQ },
|
|
{ 89, LinuxError.ECANCELED },
|
|
{ 84, LinuxError.EOVERFLOW },
|
|
};
|
|
|
|
private static readonly Dictionary<BsdSocketOption, SocketOptionName> _soSocketOptionMap = new()
|
|
{
|
|
{ BsdSocketOption.SoDebug, SocketOptionName.Debug },
|
|
{ BsdSocketOption.SoReuseAddr, SocketOptionName.ReuseAddress },
|
|
{ BsdSocketOption.SoKeepAlive, SocketOptionName.KeepAlive },
|
|
{ BsdSocketOption.SoDontRoute, SocketOptionName.DontRoute },
|
|
{ BsdSocketOption.SoBroadcast, SocketOptionName.Broadcast },
|
|
{ BsdSocketOption.SoUseLoopBack, SocketOptionName.UseLoopback },
|
|
{ BsdSocketOption.SoLinger, SocketOptionName.Linger },
|
|
{ BsdSocketOption.SoOobInline, SocketOptionName.OutOfBandInline },
|
|
{ BsdSocketOption.SoReusePort, SocketOptionName.ReuseAddress },
|
|
{ BsdSocketOption.SoSndBuf, SocketOptionName.SendBuffer },
|
|
{ BsdSocketOption.SoRcvBuf, SocketOptionName.ReceiveBuffer },
|
|
{ BsdSocketOption.SoSndLoWat, SocketOptionName.SendLowWater },
|
|
{ BsdSocketOption.SoRcvLoWat, SocketOptionName.ReceiveLowWater },
|
|
{ BsdSocketOption.SoSndTimeo, SocketOptionName.SendTimeout },
|
|
{ BsdSocketOption.SoRcvTimeo, SocketOptionName.ReceiveTimeout },
|
|
{ BsdSocketOption.SoError, SocketOptionName.Error },
|
|
{ BsdSocketOption.SoType, SocketOptionName.Type },
|
|
};
|
|
|
|
private static readonly Dictionary<BsdSocketOption, SocketOptionName> _ipSocketOptionMap = new()
|
|
{
|
|
{ BsdSocketOption.IpOptions, SocketOptionName.IPOptions },
|
|
{ BsdSocketOption.IpHdrIncl, SocketOptionName.HeaderIncluded },
|
|
{ BsdSocketOption.IpTtl, SocketOptionName.IpTimeToLive },
|
|
{ BsdSocketOption.IpMulticastIf, SocketOptionName.MulticastInterface },
|
|
{ BsdSocketOption.IpMulticastTtl, SocketOptionName.MulticastTimeToLive },
|
|
{ BsdSocketOption.IpMulticastLoop, SocketOptionName.MulticastLoopback },
|
|
{ BsdSocketOption.IpAddMembership, SocketOptionName.AddMembership },
|
|
{ BsdSocketOption.IpDropMembership, SocketOptionName.DropMembership },
|
|
{ BsdSocketOption.IpDontFrag, SocketOptionName.DontFragment },
|
|
{ BsdSocketOption.IpAddSourceMembership, SocketOptionName.AddSourceMembership },
|
|
{ BsdSocketOption.IpDropSourceMembership, SocketOptionName.DropSourceMembership },
|
|
};
|
|
|
|
private static readonly Dictionary<BsdSocketOption, SocketOptionName> _tcpSocketOptionMap = new()
|
|
{
|
|
{ BsdSocketOption.TcpNoDelay, SocketOptionName.NoDelay },
|
|
{ BsdSocketOption.TcpKeepIdle, SocketOptionName.TcpKeepAliveTime },
|
|
{ BsdSocketOption.TcpKeepIntvl, SocketOptionName.TcpKeepAliveInterval },
|
|
{ BsdSocketOption.TcpKeepCnt, SocketOptionName.TcpKeepAliveRetryCount },
|
|
};
|
|
|
|
public static LinuxError ConvertError(WsaError errorCode)
|
|
{
|
|
if (OperatingSystem.IsMacOS())
|
|
{
|
|
if (_errorMapMacOs.TryGetValue((int)errorCode, out LinuxError errno))
|
|
{
|
|
return errno;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (_errorMap.TryGetValue(errorCode, out LinuxError errno))
|
|
{
|
|
return errno;
|
|
}
|
|
}
|
|
|
|
return (LinuxError)errorCode;
|
|
}
|
|
|
|
public static bool TryConvertSocketOption(BsdSocketOption option, SocketOptionLevel level, out SocketOptionName name)
|
|
{
|
|
var table = level switch
|
|
{
|
|
SocketOptionLevel.Socket => _soSocketOptionMap,
|
|
SocketOptionLevel.IP => _ipSocketOptionMap,
|
|
SocketOptionLevel.Tcp => _tcpSocketOptionMap,
|
|
_ => null,
|
|
};
|
|
|
|
if (table == null)
|
|
{
|
|
name = default;
|
|
return false;
|
|
}
|
|
|
|
return table.TryGetValue(option, out name);
|
|
}
|
|
}
|
|
}
|