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