| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- using Ryujinx.Common.Logging;
- using System;
- using System.Net;
- using System.Net.Sockets;
- using System.Runtime.InteropServices;
- namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd
- {
- class ManagedSocket : ISocket
- {
- public int Refcount { get; set; }
- public AddressFamily AddressFamily => Socket.AddressFamily;
- public SocketType SocketType => Socket.SocketType;
- public ProtocolType ProtocolType => Socket.ProtocolType;
- public bool Blocking { get => Socket.Blocking; set => Socket.Blocking = value; }
- public IntPtr Handle => Socket.Handle;
- public IPEndPoint RemoteEndPoint => Socket.RemoteEndPoint as IPEndPoint;
- public IPEndPoint LocalEndPoint => Socket.LocalEndPoint as IPEndPoint;
- public Socket Socket { get; }
- public ManagedSocket(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType)
- {
- Socket = new Socket(addressFamily, socketType, protocolType);
- Refcount = 1;
- }
- private ManagedSocket(Socket socket)
- {
- Socket = socket;
- Refcount = 1;
- }
- private static SocketFlags ConvertBsdSocketFlags(BsdSocketFlags bsdSocketFlags)
- {
- SocketFlags socketFlags = SocketFlags.None;
- if (bsdSocketFlags.HasFlag(BsdSocketFlags.Oob))
- {
- socketFlags |= SocketFlags.OutOfBand;
- }
- if (bsdSocketFlags.HasFlag(BsdSocketFlags.Peek))
- {
- socketFlags |= SocketFlags.Peek;
- }
- if (bsdSocketFlags.HasFlag(BsdSocketFlags.DontRoute))
- {
- socketFlags |= SocketFlags.DontRoute;
- }
- if (bsdSocketFlags.HasFlag(BsdSocketFlags.Trunc))
- {
- socketFlags |= SocketFlags.Truncated;
- }
- if (bsdSocketFlags.HasFlag(BsdSocketFlags.CTrunc))
- {
- socketFlags |= SocketFlags.ControlDataTruncated;
- }
- bsdSocketFlags &= ~(BsdSocketFlags.Oob |
- BsdSocketFlags.Peek |
- BsdSocketFlags.DontRoute |
- BsdSocketFlags.DontWait |
- BsdSocketFlags.Trunc |
- BsdSocketFlags.CTrunc);
- if (bsdSocketFlags != BsdSocketFlags.None)
- {
- Logger.Warning?.Print(LogClass.ServiceBsd, $"Unsupported socket flags: {bsdSocketFlags}");
- }
- return socketFlags;
- }
- public LinuxError Accept(out ISocket newSocket)
- {
- try
- {
- newSocket = new ManagedSocket(Socket.Accept());
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- newSocket = null;
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError Bind(IPEndPoint localEndPoint)
- {
- try
- {
- Socket.Bind(localEndPoint);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public void Close()
- {
- Socket.Close();
- }
- public LinuxError Connect(IPEndPoint remoteEndPoint)
- {
- try
- {
- Socket.Connect(remoteEndPoint);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- if (!Blocking && exception.ErrorCode == (int)WsaError.WSAEWOULDBLOCK)
- {
- return LinuxError.EINPROGRESS;
- }
- else
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- }
- public void Disconnect()
- {
- Socket.Disconnect(true);
- }
- public void Dispose()
- {
- Socket.Close();
- Socket.Dispose();
- }
- public LinuxError Listen(int backlog)
- {
- try
- {
- Socket.Listen(backlog);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public bool Poll(int microSeconds, SelectMode mode)
- {
- return Socket.Poll(microSeconds, mode);
- }
- public LinuxError Shutdown(BsdSocketShutdownFlags how)
- {
- try
- {
- Socket.Shutdown((SocketShutdown)how);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError Receive(out int receiveSize, Span<byte> buffer, BsdSocketFlags flags)
- {
- LinuxError result;
- bool shouldBlockAfterOperation = false;
- try
- {
- if (Blocking && flags.HasFlag(BsdSocketFlags.DontWait))
- {
- Blocking = false;
- shouldBlockAfterOperation = true;
- }
- receiveSize = Socket.Receive(buffer, ConvertBsdSocketFlags(flags));
- result = LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- receiveSize = -1;
- result = WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- if (shouldBlockAfterOperation)
- {
- Blocking = true;
- }
- return result;
- }
- public LinuxError ReceiveFrom(out int receiveSize, Span<byte> buffer, int size, BsdSocketFlags flags, out IPEndPoint remoteEndPoint)
- {
- remoteEndPoint = new IPEndPoint(IPAddress.Any, 0);
- LinuxError result;
- bool shouldBlockAfterOperation = false;
- try
- {
- EndPoint temp = new IPEndPoint(IPAddress.Any, 0);
- if (Blocking && flags.HasFlag(BsdSocketFlags.DontWait))
- {
- Blocking = false;
- shouldBlockAfterOperation = true;
- }
- receiveSize = Socket.ReceiveFrom(buffer[..size], ConvertBsdSocketFlags(flags), ref temp);
- remoteEndPoint = (IPEndPoint)temp;
- result = LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- receiveSize = -1;
- result = WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- if (shouldBlockAfterOperation)
- {
- Blocking = true;
- }
- return result;
- }
- public LinuxError Send(out int sendSize, ReadOnlySpan<byte> buffer, BsdSocketFlags flags)
- {
- try
- {
- sendSize = Socket.Send(buffer, ConvertBsdSocketFlags(flags));
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- sendSize = -1;
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError SendTo(out int sendSize, ReadOnlySpan<byte> buffer, int size, BsdSocketFlags flags, IPEndPoint remoteEndPoint)
- {
- try
- {
- sendSize = Socket.SendTo(buffer[..size], ConvertBsdSocketFlags(flags), remoteEndPoint);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- sendSize = -1;
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError GetSocketOption(BsdSocketOption option, SocketOptionLevel level, Span<byte> optionValue)
- {
- try
- {
- if (!WinSockHelper.TryConvertSocketOption(option, level, out SocketOptionName optionName))
- {
- Logger.Warning?.Print(LogClass.ServiceBsd, $"Unsupported GetSockOpt Option: {option} Level: {level}");
- return LinuxError.EOPNOTSUPP;
- }
- byte[] tempOptionValue = new byte[optionValue.Length];
- Socket.GetSocketOption(level, optionName, tempOptionValue);
- tempOptionValue.AsSpan().CopyTo(optionValue);
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError SetSocketOption(BsdSocketOption option, SocketOptionLevel level, ReadOnlySpan<byte> optionValue)
- {
- try
- {
- if (!WinSockHelper.TryConvertSocketOption(option, level, out SocketOptionName optionName))
- {
- Logger.Warning?.Print(LogClass.ServiceBsd, $"Unsupported SetSockOpt Option: {option} Level: {level}");
- return LinuxError.EOPNOTSUPP;
- }
- int value = optionValue.Length >= 4 ? MemoryMarshal.Read<int>(optionValue) : MemoryMarshal.Read<byte>(optionValue);
- if (option == BsdSocketOption.SoLinger)
- {
- int value2 = MemoryMarshal.Read<int>(optionValue[4..]);
- Socket.SetSocketOption(level, SocketOptionName.Linger, new LingerOption(value != 0, value2));
- }
- else
- {
- Socket.SetSocketOption(level, optionName, value);
- }
- return LinuxError.SUCCESS;
- }
- catch (SocketException exception)
- {
- return WinSockHelper.ConvertError((WsaError)exception.ErrorCode);
- }
- }
- public LinuxError Read(out int readSize, Span<byte> buffer)
- {
- return Receive(out readSize, buffer, BsdSocketFlags.None);
- }
- public LinuxError Write(out int writeSize, ReadOnlySpan<byte> buffer)
- {
- return Send(out writeSize, buffer, BsdSocketFlags.None);
- }
- }
- }
|