2022-12-12 14:59:31 +01:00
|
|
|
|
using Ryujinx.HLE.HOS.Services.Sockets.Bsd.Types;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
2022-01-12 19:31:08 +01:00
|
|
|
|
using System.Collections.Generic;
|
2022-12-12 14:59:31 +01:00
|
|
|
|
using System.Numerics;
|
2022-01-12 19:31:08 +01:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd
|
|
|
|
|
{
|
|
|
|
|
class BsdContext
|
|
|
|
|
{
|
2022-02-09 21:18:07 +01:00
|
|
|
|
private static ConcurrentDictionary<ulong, BsdContext> _registry = new ConcurrentDictionary<ulong, BsdContext>();
|
2022-01-12 19:31:08 +01:00
|
|
|
|
|
|
|
|
|
private readonly object _lock = new object();
|
|
|
|
|
|
|
|
|
|
private List<IFileDescriptor> _fds;
|
|
|
|
|
|
|
|
|
|
private BsdContext()
|
|
|
|
|
{
|
|
|
|
|
_fds = new List<IFileDescriptor>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ISocket RetrieveSocket(int socketFd)
|
|
|
|
|
{
|
|
|
|
|
IFileDescriptor file = RetrieveFileDescriptor(socketFd);
|
|
|
|
|
|
|
|
|
|
if (file is ISocket socket)
|
|
|
|
|
{
|
|
|
|
|
return socket;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IFileDescriptor RetrieveFileDescriptor(int fd)
|
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
if (fd >= 0 && _fds.Count > fd)
|
|
|
|
|
{
|
|
|
|
|
return _fds[fd];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-12 14:59:31 +01:00
|
|
|
|
public List<IFileDescriptor> RetrieveFileDescriptorsFromMask(ReadOnlySpan<byte> mask)
|
|
|
|
|
{
|
|
|
|
|
List<IFileDescriptor> fds = new();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < mask.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
byte current = mask[i];
|
|
|
|
|
|
|
|
|
|
while (current != 0)
|
|
|
|
|
{
|
|
|
|
|
int bit = BitOperations.TrailingZeroCount(current);
|
|
|
|
|
current &= (byte)~(1 << bit);
|
|
|
|
|
int fd = i * 8 + bit;
|
|
|
|
|
|
|
|
|
|
fds.Add(RetrieveFileDescriptor(fd));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fds;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 19:31:08 +01:00
|
|
|
|
public int RegisterFileDescriptor(IFileDescriptor file)
|
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
for (int fd = 0; fd < _fds.Count; fd++)
|
|
|
|
|
{
|
|
|
|
|
if (_fds[fd] == null)
|
|
|
|
|
{
|
|
|
|
|
_fds[fd] = file;
|
|
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_fds.Add(file);
|
|
|
|
|
|
|
|
|
|
return _fds.Count - 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-12 14:59:31 +01:00
|
|
|
|
public void BuildMask(List<IFileDescriptor> fds, Span<byte> mask)
|
|
|
|
|
{
|
|
|
|
|
foreach (IFileDescriptor descriptor in fds)
|
|
|
|
|
{
|
|
|
|
|
int fd = _fds.IndexOf(descriptor);
|
|
|
|
|
|
|
|
|
|
mask[fd >> 3] |= (byte)(1 << (fd & 7));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 19:31:08 +01:00
|
|
|
|
public int DuplicateFileDescriptor(int fd)
|
|
|
|
|
{
|
|
|
|
|
IFileDescriptor oldFile = RetrieveFileDescriptor(fd);
|
|
|
|
|
|
|
|
|
|
if (oldFile != null)
|
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
oldFile.Refcount++;
|
|
|
|
|
|
|
|
|
|
return RegisterFileDescriptor(oldFile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool CloseFileDescriptor(int fd)
|
|
|
|
|
{
|
|
|
|
|
IFileDescriptor file = RetrieveFileDescriptor(fd);
|
|
|
|
|
|
|
|
|
|
if (file != null)
|
|
|
|
|
{
|
|
|
|
|
file.Refcount--;
|
|
|
|
|
|
|
|
|
|
if (file.Refcount <= 0)
|
|
|
|
|
{
|
|
|
|
|
file.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
_fds[fd] = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public LinuxError ShutdownAllSockets(BsdSocketShutdownFlags how)
|
|
|
|
|
{
|
|
|
|
|
lock (_lock)
|
|
|
|
|
{
|
|
|
|
|
foreach (IFileDescriptor file in _fds)
|
|
|
|
|
{
|
|
|
|
|
if (file is ISocket socket)
|
|
|
|
|
{
|
|
|
|
|
LinuxError errno = socket.Shutdown(how);
|
|
|
|
|
|
|
|
|
|
if (errno != LinuxError.SUCCESS)
|
|
|
|
|
{
|
|
|
|
|
return errno;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return LinuxError.SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 21:18:07 +01:00
|
|
|
|
public static BsdContext GetOrRegister(ulong processId)
|
2022-01-12 19:31:08 +01:00
|
|
|
|
{
|
|
|
|
|
BsdContext context = GetContext(processId);
|
|
|
|
|
|
|
|
|
|
if (context == null)
|
|
|
|
|
{
|
|
|
|
|
context = new BsdContext();
|
|
|
|
|
|
|
|
|
|
_registry.TryAdd(processId, context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return context;
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 21:18:07 +01:00
|
|
|
|
public static BsdContext GetContext(ulong processId)
|
2022-01-12 19:31:08 +01:00
|
|
|
|
{
|
|
|
|
|
if (!_registry.TryGetValue(processId, out BsdContext processContext))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return processContext;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-12 14:59:31 +01:00
|
|
|
|
}
|