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