2019-07-10 17:20:01 +00:00
|
|
|
using LibHac;
|
2021-12-23 05:40:51 +00:00
|
|
|
using LibHac.FsSystem;
|
2021-08-12 21:56:24 +00:00
|
|
|
using LibHac.Sf;
|
2021-12-23 05:40:51 +00:00
|
|
|
using Ryujinx.Common.Logging;
|
|
|
|
using Ryujinx.Common.Pools;
|
2018-08-16 23:47:36 +00:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2021-12-23 05:40:51 +00:00
|
|
|
using System;
|
|
|
|
using System.Threading.Tasks;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-06-29 17:37:13 +00:00
|
|
|
class IStorage : DisposableIpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-08-12 21:56:24 +00:00
|
|
|
private ReferenceCountedDisposable<LibHac.FsSrv.Sf.IStorage> _baseStorage;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-08-12 21:56:24 +00:00
|
|
|
public IStorage(ReferenceCountedDisposable<LibHac.FsSrv.Sf.IStorage> baseStorage)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-06-01 00:31:10 +00:00
|
|
|
_baseStorage = baseStorage;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(0)]
|
2018-11-18 19:37:41 +00:00
|
|
|
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-04-24 10:16:01 +00:00
|
|
|
ulong offset = context.RequestData.ReadUInt64();
|
|
|
|
ulong size = context.RequestData.ReadUInt64();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
if (context.Request.ReceiveBuff.Count > 0)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-02 02:39:22 +00:00
|
|
|
// Use smaller length to avoid overflows.
|
2021-12-23 05:40:51 +00:00
|
|
|
int actualSize = (int)Math.Min(size, 128 * 1024);
|
|
|
|
using (PooledBuffer<byte> scratch = BufferPool<byte>.Rent(actualSize))
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2021-12-23 05:40:51 +00:00
|
|
|
ulong bytesRead = 0;
|
|
|
|
Result result = Result.Success;
|
|
|
|
while (bytesRead < size)
|
|
|
|
{
|
|
|
|
int thisReadSize = (int)Math.Min((long)actualSize, (long)(size - bytesRead));
|
|
|
|
result = _baseStorage.Target.Read((long)(offset + bytesRead), new OutBuffer(scratch.AsSpan), (long)thisReadSize);
|
|
|
|
context.Memory.Write(buffDesc.Position + bytesRead, scratch.AsSpan.Slice(0, thisReadSize));
|
|
|
|
bytesRead += (ulong)thisReadSize;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2021-12-23 05:40:51 +00:00
|
|
|
return (ResultCode)result.Value;
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-02-15 15:44:25 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(4)]
|
2019-02-15 15:44:25 +00:00
|
|
|
// GetSize() -> u64 size
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
2019-02-15 15:44:25 +00:00
|
|
|
{
|
2021-08-12 21:56:24 +00:00
|
|
|
Result result = _baseStorage.Target.GetSize(out long size);
|
2019-02-15 15:44:25 +00:00
|
|
|
|
2019-10-17 06:17:44 +00:00
|
|
|
context.ResponseData.Write(size);
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
2019-02-15 15:44:25 +00:00
|
|
|
}
|
2019-12-26 01:58:38 +00:00
|
|
|
|
2021-06-29 17:37:13 +00:00
|
|
|
protected override void Dispose(bool isDisposing)
|
2019-12-26 01:58:38 +00:00
|
|
|
{
|
2021-06-29 17:37:13 +00:00
|
|
|
if (isDisposing)
|
2019-12-26 01:58:38 +00:00
|
|
|
{
|
|
|
|
_baseStorage?.Dispose();
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|