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