| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192 |
- using Ryujinx.Common.Logging;
- using Ryujinx.HLE.HOS.Ipc;
- using Ryujinx.HLE.Utilities;
- using System.Collections.Generic;
- using System.Net;
- using System.Net.Sockets;
- using System.Text;
- namespace Ryujinx.HLE.HOS.Services.Bsd
- {
- class IClient : IpcService
- {
- private static Dictionary<WsaError, LinuxError> _errorMap = new Dictionary<WsaError, LinuxError>
- {
- // 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 Dictionary<int, ServiceProcessRequest> _commands;
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
- private bool _isPrivileged;
- private List<BsdSocket> _sockets = new List<BsdSocket>();
- public IClient(bool isPrivileged)
- {
- _commands = new Dictionary<int, ServiceProcessRequest>
- {
- { 0, RegisterClient },
- { 1, StartMonitoring },
- { 2, Socket },
- { 3, SocketExempt },
- { 4, Open },
- { 5, Select },
- { 6, Poll },
- { 7, Sysctl },
- { 8, Recv },
- { 9, RecvFrom },
- { 10, Send },
- { 11, SendTo },
- { 12, Accept },
- { 13, Bind },
- { 14, Connect },
- { 15, GetPeerName },
- { 16, GetSockName },
- { 17, GetSockOpt },
- { 18, Listen },
- { 19, Ioctl },
- { 20, Fcntl },
- { 21, SetSockOpt },
- { 22, Shutdown },
- { 23, ShutdownAllSockets },
- { 24, Write },
- { 25, Read },
- { 26, Close },
- { 27, DuplicateSocket }
- };
- _isPrivileged = isPrivileged;
- }
- private LinuxError ConvertError(WsaError errorCode)
- {
- LinuxError errno;
- if (!_errorMap.TryGetValue(errorCode, out errno))
- {
- errno = (LinuxError)errorCode;
- }
- return errno;
- }
- private long WriteWinSock2Error(ServiceCtx context, WsaError errorCode)
- {
- return WriteBsdResult(context, -1, ConvertError(errorCode));
- }
- private long WriteBsdResult(ServiceCtx context, int result, LinuxError errorCode = 0)
- {
- if (errorCode != LinuxError.SUCCESS)
- {
- result = -1;
- }
- context.ResponseData.Write(result);
- context.ResponseData.Write((int)errorCode);
- return 0;
- }
- private BsdSocket RetrieveSocket(int socketFd)
- {
- if (socketFd >= 0 && _sockets.Count > socketFd)
- {
- return _sockets[socketFd];
- }
- return null;
- }
- private LinuxError SetResultErrno(Socket socket, int result)
- {
- return result == 0 && !socket.Blocking ? LinuxError.EWOULDBLOCK : LinuxError.SUCCESS;
- }
- private AddressFamily ConvertFromBsd(int domain)
- {
- if (domain == 2)
- {
- return AddressFamily.InterNetwork;
- }
- // FIXME: AF_ROUTE ignored, is that really needed?
- return AddressFamily.Unknown;
- }
- private long SocketInternal(ServiceCtx context, bool exempt)
- {
- AddressFamily domain = (AddressFamily)context.RequestData.ReadInt32();
- SocketType type = (SocketType)context.RequestData.ReadInt32();
- ProtocolType protocol = (ProtocolType)context.RequestData.ReadInt32();
- if (domain == AddressFamily.Unknown)
- {
- return WriteBsdResult(context, -1, LinuxError.EPROTONOSUPPORT);
- }
- else if ((type == SocketType.Seqpacket || type == SocketType.Raw) && !_isPrivileged)
- {
- if (domain != AddressFamily.InterNetwork || type != SocketType.Raw || protocol != ProtocolType.Icmp)
- {
- return WriteBsdResult(context, -1, LinuxError.ENOENT);
- }
- }
- BsdSocket newBsdSocket = new BsdSocket
- {
- Family = (int)domain,
- Type = (int)type,
- Protocol = (int)protocol,
- Handle = new Socket(domain, type, protocol)
- };
- _sockets.Add(newBsdSocket);
- if (exempt)
- {
- newBsdSocket.Handle.Disconnect(true);
- }
- return WriteBsdResult(context, _sockets.Count - 1);
- }
- private IPEndPoint ParseSockAddr(ServiceCtx context, long bufferPosition, long bufferSize)
- {
- int size = context.Memory.ReadByte(bufferPosition);
- int family = context.Memory.ReadByte(bufferPosition + 1);
- int port = EndianSwap.Swap16(context.Memory.ReadUInt16(bufferPosition + 2));
- byte[] rawIp = context.Memory.ReadBytes(bufferPosition + 4, 4);
- return new IPEndPoint(new IPAddress(rawIp), port);
- }
- private void WriteSockAddr(ServiceCtx context, long bufferPosition, IPEndPoint endPoint)
- {
- context.Memory.WriteByte(bufferPosition, 0);
- context.Memory.WriteByte(bufferPosition + 1, (byte)endPoint.AddressFamily);
- context.Memory.WriteUInt16(bufferPosition + 2, EndianSwap.Swap16((ushort)endPoint.Port));
- context.Memory.WriteBytes(bufferPosition + 4, endPoint.Address.GetAddressBytes());
- }
- private void WriteSockAddr(ServiceCtx context, long bufferPosition, BsdSocket socket, bool isRemote)
- {
- IPEndPoint endPoint = (isRemote ? socket.Handle.RemoteEndPoint : socket.Handle.LocalEndPoint) as IPEndPoint;
- WriteSockAddr(context, bufferPosition, endPoint);
- }
- // Initialize(nn::socket::BsdBufferConfig config, u64 pid, u64 transferMemorySize, KObject<copy, transfer_memory>, pid) -> u32 bsd_errno
- public long RegisterClient(ServiceCtx context)
- {
- /*
- typedef struct {
- u32 version; // Observed 1 on 2.0 LibAppletWeb, 2 on 3.0.
- u32 tcp_tx_buf_size; // Size of the TCP transfer (send) buffer (initial or fixed).
- u32 tcp_rx_buf_size; // Size of the TCP recieve buffer (initial or fixed).
- u32 tcp_tx_buf_max_size; // Maximum size of the TCP transfer (send) buffer. If it is 0, the size of the buffer is fixed to its initial value.
- u32 tcp_rx_buf_max_size; // Maximum size of the TCP receive buffer. If it is 0, the size of the buffer is fixed to its initial value.
- u32 udp_tx_buf_size; // Size of the UDP transfer (send) buffer (typically 0x2400 bytes).
- u32 udp_rx_buf_size; // Size of the UDP receive buffer (typically 0xA500 bytes).
- u32 sb_efficiency; // Number of buffers for each socket (standard values range from 1 to 8).
- } BsdBufferConfig;
- */
- // bsd_error
- context.ResponseData.Write(0);
- Logger.PrintStub(LogClass.ServiceBsd, "Stubbed.");
- return 0;
- }
- // StartMonitoring(u64, pid)
- public long StartMonitoring(ServiceCtx context)
- {
- ulong unknown0 = context.RequestData.ReadUInt64();
- Logger.PrintStub(LogClass.ServiceBsd, $"Stubbed. Unknown0: {unknown0}");
- return 0;
- }
- // Socket(u32 domain, u32 type, u32 protocol) -> (i32 ret, u32 bsd_errno)
- public long Socket(ServiceCtx context)
- {
- return SocketInternal(context, false);
- }
- // SocketExempt(u32 domain, u32 type, u32 protocol) -> (i32 ret, u32 bsd_errno)
- public long SocketExempt(ServiceCtx context)
- {
- return SocketInternal(context, true);
- }
- // Open(u32 flags, array<unknown, 0x21> path) -> (i32 ret, u32 bsd_errno)
- public long Open(ServiceCtx context)
- {
- (long bufferPosition, long bufferSize) = context.Request.GetBufferType0x21();
- int flags = context.RequestData.ReadInt32();
- byte[] rawPath = context.Memory.ReadBytes(bufferPosition, bufferSize);
- string path = Encoding.ASCII.GetString(rawPath);
- WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- Logger.PrintStub(LogClass.ServiceBsd, $"Stubbed. Path: {path} - " +
- $"Flags: {flags}");
- return 0;
- }
- // Select(u32 nfds, nn::socket::timeout timeout, buffer<nn::socket::fd_set, 0x21, 0> readfds_in, buffer<nn::socket::fd_set, 0x21, 0> writefds_in, buffer<nn::socket::fd_set, 0x21, 0> errorfds_in) -> (i32 ret, u32 bsd_errno, buffer<nn::socket::fd_set, 0x22, 0> readfds_out, buffer<nn::socket::fd_set, 0x22, 0> writefds_out, buffer<nn::socket::fd_set, 0x22, 0> errorfds_out)
- public long Select(ServiceCtx context)
- {
- WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- Logger.PrintStub(LogClass.ServiceBsd, $"Stubbed.");
- return 0;
- }
- // Poll(u32 nfds, u32 timeout, buffer<unknown, 0x21, 0> fds) -> (i32 ret, u32 bsd_errno, buffer<unknown, 0x22, 0>)
- public long Poll(ServiceCtx context)
- {
- int fdsCount = context.RequestData.ReadInt32();
- int timeout = context.RequestData.ReadInt32();
- (long bufferPosition, long bufferSize) = context.Request.GetBufferType0x21();
- if (timeout < -1 || fdsCount < 0 || (fdsCount * 8) > bufferSize)
- {
- return WriteBsdResult(context, -1, LinuxError.EINVAL);
- }
- PollEvent[] events = new PollEvent[fdsCount];
- for (int i = 0; i < fdsCount; i++)
- {
- int socketFd = context.Memory.ReadInt32(bufferPosition + i * 8);
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket == null)
- {
- return WriteBsdResult(context, -1, LinuxError.EBADF);}
- PollEvent.EventTypeMask inputEvents = (PollEvent.EventTypeMask)context.Memory.ReadInt16(bufferPosition + i * 8 + 4);
- PollEvent.EventTypeMask outputEvents = (PollEvent.EventTypeMask)context.Memory.ReadInt16(bufferPosition + i * 8 + 6);
- events[i] = new PollEvent(socketFd, socket, inputEvents, outputEvents);
- }
- List<Socket> readEvents = new List<Socket>();
- List<Socket> writeEvents = new List<Socket>();
- List<Socket> errorEvents = new List<Socket>();
- foreach (PollEvent Event in events)
- {
- bool isValidEvent = false;
- if ((Event.InputEvents & PollEvent.EventTypeMask.Input) != 0)
- {
- readEvents.Add(Event.Socket.Handle);
- errorEvents.Add(Event.Socket.Handle);
- isValidEvent = true;
- }
- if ((Event.InputEvents & PollEvent.EventTypeMask.UrgentInput) != 0)
- {
- readEvents.Add(Event.Socket.Handle);
- errorEvents.Add(Event.Socket.Handle);
- isValidEvent = true;
- }
- if ((Event.InputEvents & PollEvent.EventTypeMask.Output) != 0)
- {
- writeEvents.Add(Event.Socket.Handle);
- errorEvents.Add(Event.Socket.Handle);
- isValidEvent = true;
- }
- if ((Event.InputEvents & PollEvent.EventTypeMask.Error) != 0)
- {
- errorEvents.Add(Event.Socket.Handle);
- isValidEvent = true;
- }
- if (!isValidEvent)
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Poll input event type: {Event.InputEvents}");
- return WriteBsdResult(context, -1, LinuxError.EINVAL);
- }
- }
- try
- {
- System.Net.Sockets.Socket.Select(readEvents, writeEvents, errorEvents, timeout);
- }
- catch (SocketException exception)
- {
- return WriteWinSock2Error(context, (WsaError)exception.ErrorCode);
- }
- for (int i = 0; i < fdsCount; i++)
- {
- PollEvent Event = events[i];
- context.Memory.WriteInt32(bufferPosition + i * 8, Event.SocketFd);
- context.Memory.WriteInt16(bufferPosition + i * 8 + 4, (short)Event.InputEvents);
- PollEvent.EventTypeMask outputEvents = 0;
- Socket socket = Event.Socket.Handle;
- if (errorEvents.Contains(socket))
- {
- outputEvents |= PollEvent.EventTypeMask.Error;
- if (!socket.Connected || !socket.IsBound)
- {
- outputEvents |= PollEvent.EventTypeMask.Disconnected;
- }
- }
- if (readEvents.Contains(socket))
- {
- if ((Event.InputEvents & PollEvent.EventTypeMask.Input) != 0)
- {
- outputEvents |= PollEvent.EventTypeMask.Input;
- }
- }
- if (writeEvents.Contains(socket))
- {
- outputEvents |= PollEvent.EventTypeMask.Output;
- }
- context.Memory.WriteInt16(bufferPosition + i * 8 + 6, (short)outputEvents);
- }
- return WriteBsdResult(context, readEvents.Count + writeEvents.Count + errorEvents.Count, LinuxError.SUCCESS);
- }
- // Sysctl(buffer<unknown, 0x21, 0>, buffer<unknown, 0x21, 0>) -> (i32 ret, u32 bsd_errno, u32, buffer<unknown, 0x22, 0>)
- public long Sysctl(ServiceCtx context)
- {
- WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- Logger.PrintStub(LogClass.ServiceBsd, $"Stubbed.");
- return 0;
- }
- // Recv(u32 socket, u32 flags) -> (i32 ret, u32 bsd_errno, array<i8, 0x22> message)
- public long Recv(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- SocketFlags socketFlags = (SocketFlags)context.RequestData.ReadInt32();
- (long receivePosition, long receiveLength) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- if (socketFlags != SocketFlags.None && (socketFlags & SocketFlags.OutOfBand) == 0
- && (socketFlags & SocketFlags.Peek) == 0)
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Recv flags: {socketFlags}");
- return WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- }
- byte[] receivedBuffer = new byte[receiveLength];
- try
- {
- result = socket.Handle.Receive(receivedBuffer, socketFlags);
- errno = SetResultErrno(socket.Handle, result);
- context.Memory.WriteBytes(receivePosition, receivedBuffer);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // RecvFrom(u32 sock, u32 flags) -> (i32 ret, u32 bsd_errno, u32 addrlen, buffer<i8, 0x22, 0> message, buffer<nn::socket::sockaddr_in, 0x22, 0x10>)
- public long RecvFrom(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- SocketFlags socketFlags = (SocketFlags)context.RequestData.ReadInt32();
- (long receivePosition, long receiveLength) = context.Request.GetBufferType0x22();
- (long sockAddrInPosition, long sockAddrInSize) = context.Request.GetBufferType0x21();
- (long sockAddrOutPosition, long sockAddrOutSize) = context.Request.GetBufferType0x22(1);
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- if (socketFlags != SocketFlags.None && (socketFlags & SocketFlags.OutOfBand) == 0
- && (socketFlags & SocketFlags.Peek) == 0)
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Recv flags: {socketFlags}");
- return WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- }
- byte[] receivedBuffer = new byte[receiveLength];
- EndPoint endPoint = ParseSockAddr(context, sockAddrInPosition, sockAddrInSize);
- try
- {
- result = socket.Handle.ReceiveFrom(receivedBuffer, receivedBuffer.Length, socketFlags, ref endPoint);
- errno = SetResultErrno(socket.Handle, result);
- context.Memory.WriteBytes(receivePosition, receivedBuffer);
- WriteSockAddr(context, sockAddrOutPosition, (IPEndPoint)endPoint);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // Send(u32 socket, u32 flags, buffer<i8, 0x21, 0>) -> (i32 ret, u32 bsd_errno)
- public long Send(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- SocketFlags socketFlags = (SocketFlags)context.RequestData.ReadInt32();
- (long sendPosition, long sendSize) = context.Request.GetBufferType0x21();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- if (socketFlags != SocketFlags.None && socketFlags != SocketFlags.OutOfBand
- && socketFlags != SocketFlags.Peek && socketFlags != SocketFlags.DontRoute)
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Send flags: {socketFlags}");
- return WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- }
- byte[] sendBuffer = context.Memory.ReadBytes(sendPosition, sendSize);
- try
- {
- result = socket.Handle.Send(sendBuffer, socketFlags);
- errno = SetResultErrno(socket.Handle, result);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // SendTo(u32 socket, u32 flags, buffer<i8, 0x21, 0>, buffer<nn::socket::sockaddr_in, 0x21, 0x10>) -> (i32 ret, u32 bsd_errno)
- public long SendTo(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- SocketFlags socketFlags = (SocketFlags)context.RequestData.ReadInt32();
- (long sendPosition, long sendSize) = context.Request.GetBufferType0x21();
- (long bufferPosition, long bufferSize) = context.Request.GetBufferType0x21(1);
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- if (socketFlags != SocketFlags.None && socketFlags != SocketFlags.OutOfBand
- && socketFlags != SocketFlags.Peek && socketFlags != SocketFlags.DontRoute)
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Send flags: {socketFlags}");
- return WriteBsdResult(context, -1, LinuxError.EOPNOTSUPP);
- }
- byte[] sendBuffer = context.Memory.ReadBytes(sendPosition, sendSize);
- EndPoint endPoint = ParseSockAddr(context, bufferPosition, bufferSize);
- try
- {
- result = socket.Handle.SendTo(sendBuffer, sendBuffer.Length, socketFlags, endPoint);
- errno = SetResultErrno(socket.Handle, result);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // Accept(u32 socket) -> (i32 ret, u32 bsd_errno, u32 addrlen, buffer<nn::socket::sockaddr_in, 0x22, 0x10> addr)
- public long Accept(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- Socket newSocket = null;
- try
- {
- newSocket = socket.Handle.Accept();
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- if (newSocket == null && errno == LinuxError.SUCCESS)
- {
- errno = LinuxError.EWOULDBLOCK;
- }
- else if (errno == LinuxError.SUCCESS)
- {
- BsdSocket newBsdSocket = new BsdSocket
- {
- Family = (int)newSocket.AddressFamily,
- Type = (int)newSocket.SocketType,
- Protocol = (int)newSocket.ProtocolType,
- Handle = newSocket
- };
- _sockets.Add(newBsdSocket);
- WriteSockAddr(context, bufferPos, newBsdSocket, true);
- WriteBsdResult(context, _sockets.Count - 1, errno);
- context.ResponseData.Write(0x10);
- return 0;
- }
- }
- return WriteBsdResult(context, -1, errno);
- }
- // Bind(u32 socket, buffer<nn::socket::sockaddr_in, 0x21, 0x10> addr) -> (i32 ret, u32 bsd_errno)
- public long Bind(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x21();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- try
- {
- IPEndPoint endPoint = ParseSockAddr(context, bufferPos, bufferSize);
- socket.Handle.Bind(endPoint);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Connect(u32 socket, buffer<nn::socket::sockaddr_in, 0x21, 0x10>) -> (i32 ret, u32 bsd_errno)
- public long Connect(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x21();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- try
- {
- IPEndPoint endPoint = ParseSockAddr(context, bufferPos, bufferSize);
- socket.Handle.Connect(endPoint);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // GetPeerName(u32 socket) -> (i32 ret, u32 bsd_errno, u32 addrlen, buffer<nn::socket::sockaddr_in, 0x22, 0x10> addr)
- public long GetPeerName(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- WriteSockAddr(context, bufferPos, socket, true);
- WriteBsdResult(context, 0, errno);
- context.ResponseData.Write(0x10);
- }
- return WriteBsdResult(context, 0, errno);
- }
- // GetSockName(u32 socket) -> (i32 ret, u32 bsd_errno, u32 addrlen, buffer<nn::socket::sockaddr_in, 0x22, 0x10> addr)
- public long GetSockName(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- WriteSockAddr(context, bufferPos, socket, false);
- WriteBsdResult(context, 0, errno);
- context.ResponseData.Write(0x10);
- }
- return WriteBsdResult(context, 0, errno);
- }
- // GetSockOpt(u32 socket, u32 level, u32 option_name) -> (i32 ret, u32 bsd_errno, u32, buffer<unknown, 0x22, 0>)
- public long GetSockOpt(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- int level = context.RequestData.ReadInt32();
- int optionName = context.RequestData.ReadInt32();
- (long bufferPosition, long bufferSize) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.ENOPROTOOPT;
- if (level == 0xFFFF)
- {
- errno = HandleGetSocketOption(context, socket, (SocketOptionName)optionName, bufferPosition, bufferSize);
- }
- else
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported GetSockOpt Level: {(SocketOptionLevel)level}");
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Listen(u32 socket, u32 backlog) -> (i32 ret, u32 bsd_errno)
- public long Listen(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- int backlog = context.RequestData.ReadInt32();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- try
- {
- socket.Handle.Listen(backlog);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Ioctl(u32 fd, u32 request, u32 bufcount, buffer<unknown, 0x21, 0>, buffer<unknown, 0x21, 0>, buffer<unknown, 0x21, 0>, buffer<unknown, 0x21, 0>) -> (i32 ret, u32 bsd_errno, buffer<unknown, 0x22, 0>, buffer<unknown, 0x22, 0>, buffer<unknown, 0x22, 0>, buffer<unknown, 0x22, 0>)
- public long Ioctl(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- BsdIoctl cmd = (BsdIoctl)context.RequestData.ReadInt32();
- int bufferCount = context.RequestData.ReadInt32();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- switch (cmd)
- {
- case BsdIoctl.AtMark:
- errno = LinuxError.SUCCESS;
- (long bufferPosition, long bufferSize) = context.Request.GetBufferType0x22();
- // FIXME: OOB not implemented.
- context.Memory.WriteInt32(bufferPosition, 0);
- break;
- default:
- errno = LinuxError.EOPNOTSUPP;
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported Ioctl Cmd: {cmd}");
- break;
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Fcntl(u32 socket, u32 cmd, u32 arg) -> (i32 ret, u32 bsd_errno)
- public long Fcntl(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- int cmd = context.RequestData.ReadInt32();
- int arg = context.RequestData.ReadInt32();
- int result = 0;
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.SUCCESS;
- if (cmd == 0x3)
- {
- result = !socket.Handle.Blocking ? 0x800 : 0;
- }
- else if (cmd == 0x4 && arg == 0x800)
- {
- socket.Handle.Blocking = false;
- result = 0;
- }
- else
- {
- errno = LinuxError.EOPNOTSUPP;
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- private LinuxError HandleGetSocketOption(ServiceCtx context, BsdSocket socket, SocketOptionName optionName, long optionValuePosition, long optionValueSize)
- {
- try
- {
- byte[] optionValue = new byte[optionValueSize];
- switch (optionName)
- {
- case SocketOptionName.Broadcast:
- case SocketOptionName.DontLinger:
- case SocketOptionName.Debug:
- case SocketOptionName.Error:
- case SocketOptionName.KeepAlive:
- case SocketOptionName.OutOfBandInline:
- case SocketOptionName.ReceiveBuffer:
- case SocketOptionName.ReceiveTimeout:
- case SocketOptionName.SendBuffer:
- case SocketOptionName.SendTimeout:
- case SocketOptionName.Type:
- case SocketOptionName.Linger:
- socket.Handle.GetSocketOption(SocketOptionLevel.Socket, optionName, optionValue);
- context.Memory.WriteBytes(optionValuePosition, optionValue);
- return LinuxError.SUCCESS;
- case (SocketOptionName)0x200:
- socket.Handle.GetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, optionValue);
- context.Memory.WriteBytes(optionValuePosition, optionValue);
- return LinuxError.SUCCESS;
- default:
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported SetSockOpt OptionName: {optionName}");
- return LinuxError.EOPNOTSUPP;
- }
- }
- catch (SocketException exception)
- {
- return ConvertError((WsaError)exception.ErrorCode);
- }
- }
- private LinuxError HandleSetSocketOption(ServiceCtx context, BsdSocket socket, SocketOptionName optionName, long optionValuePosition, long optionValueSize)
- {
- try
- {
- switch (optionName)
- {
- case SocketOptionName.Broadcast:
- case SocketOptionName.DontLinger:
- case SocketOptionName.Debug:
- case SocketOptionName.Error:
- case SocketOptionName.KeepAlive:
- case SocketOptionName.OutOfBandInline:
- case SocketOptionName.ReceiveBuffer:
- case SocketOptionName.ReceiveTimeout:
- case SocketOptionName.SendBuffer:
- case SocketOptionName.SendTimeout:
- case SocketOptionName.Type:
- case SocketOptionName.ReuseAddress:
- socket.Handle.SetSocketOption(SocketOptionLevel.Socket, optionName, context.Memory.ReadInt32(optionValuePosition));
- return LinuxError.SUCCESS;
- case (SocketOptionName)0x200:
- socket.Handle.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, context.Memory.ReadInt32(optionValuePosition));
- return LinuxError.SUCCESS;
- case SocketOptionName.Linger:
- socket.Handle.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Linger,
- new LingerOption(context.Memory.ReadInt32(optionValuePosition) != 0, context.Memory.ReadInt32(optionValuePosition + 4)));
- return LinuxError.SUCCESS;
- default:
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported SetSockOpt OptionName: {optionName}");
- return LinuxError.EOPNOTSUPP;
- }
- }
- catch (SocketException exception)
- {
- return ConvertError((WsaError)exception.ErrorCode);
- }
- }
- // SetSockOpt(u32 socket, u32 level, u32 option_name, buffer<unknown, 0x21, 0> option_value) -> (i32 ret, u32 bsd_errno)
- public long SetSockOpt(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- int level = context.RequestData.ReadInt32();
- int optionName = context.RequestData.ReadInt32();
- (long bufferPos, long bufferSize) = context.Request.GetBufferType0x21();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.ENOPROTOOPT;
- if (level == 0xFFFF)
- {
- errno = HandleSetSocketOption(context, socket, (SocketOptionName)optionName, bufferPos, bufferSize);
- }
- else
- {
- Logger.PrintWarning(LogClass.ServiceBsd, $"Unsupported SetSockOpt Level: {(SocketOptionLevel)level}");
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Shutdown(u32 socket, u32 how) -> (i32 ret, u32 bsd_errno)
- public long Shutdown(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- int how = context.RequestData.ReadInt32();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- errno = LinuxError.EINVAL;
- if (how >= 0 && how <= 2)
- {
- errno = LinuxError.SUCCESS;
- try
- {
- socket.Handle.Shutdown((SocketShutdown)how);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // ShutdownAllSockets(u32 how) -> (i32 ret, u32 bsd_errno)
- public long ShutdownAllSockets(ServiceCtx context)
- {
- int how = context.RequestData.ReadInt32();
- LinuxError errno = LinuxError.EINVAL;
- if (how >= 0 && how <= 2)
- {
- errno = LinuxError.SUCCESS;
- foreach (BsdSocket socket in _sockets)
- {
- if (socket != null)
- {
- try
- {
- socket.Handle.Shutdown((SocketShutdown)how);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- break;
- }
- }
- }
- }
- return WriteBsdResult(context, 0, errno);
- }
- // Write(u32 socket, buffer<i8, 0x21, 0> message) -> (i32 ret, u32 bsd_errno)
- public long Write(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long sendPosition, long sendSize) = context.Request.GetBufferType0x21();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- byte[] sendBuffer = context.Memory.ReadBytes(sendPosition, sendSize);
- try
- {
- result = socket.Handle.Send(sendBuffer);
- errno = SetResultErrno(socket.Handle, result);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // Read(u32 socket) -> (i32 ret, u32 bsd_errno, buffer<i8, 0x22, 0> message)
- public long Read(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- (long receivePosition, long receiveLength) = context.Request.GetBufferType0x22();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- int result = -1;
- if (socket != null)
- {
- byte[] receivedBuffer = new byte[receiveLength];
- try
- {
- result = socket.Handle.Receive(receivedBuffer);
- errno = SetResultErrno(socket.Handle, result);
- }
- catch (SocketException exception)
- {
- errno = ConvertError((WsaError)exception.ErrorCode);
- }
- }
- return WriteBsdResult(context, result, errno);
- }
- // Close(u32 socket) -> (i32 ret, u32 bsd_errno)
- public long Close(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- LinuxError errno = LinuxError.EBADF;
- BsdSocket socket = RetrieveSocket(socketFd);
- if (socket != null)
- {
- socket.Handle.Close();
- _sockets[socketFd] = null;
- errno = LinuxError.SUCCESS;
- }
- return WriteBsdResult(context, 0, errno);
- }
- // DuplicateSocket(u32 socket, u64 reserved) -> (i32 ret, u32 bsd_errno)
- public long DuplicateSocket(ServiceCtx context)
- {
- int socketFd = context.RequestData.ReadInt32();
- ulong reserved = context.RequestData.ReadUInt64();
- LinuxError errno = LinuxError.ENOENT;
- int newSockFd = -1;
- if (_isPrivileged)
- {
- errno = LinuxError.EBADF;
- BsdSocket oldSocket = RetrieveSocket(socketFd);
- if (oldSocket != null)
- {
- _sockets.Add(oldSocket);
- newSockFd = _sockets.Count - 1;
- }
- }
- return WriteBsdResult(context, newSockFd, errno);
- }
- }
- }
|