2019-07-10 12:20:01 -05:00
|
|
|
using LibHac;
|
2021-12-23 10:55:50 -06:00
|
|
|
using LibHac.Common;
|
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-12-23 10:55:50 -06:00
|
|
|
private SharedRef<LibHac.FsSrv.Sf.IStorage> _baseStorage;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2021-12-23 10:55:50 -06:00
|
|
|
public IStorage(ref SharedRef<LibHac.FsSrv.Sf.IStorage> baseStorage)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2021-12-23 10:55:50 -06:00
|
|
|
_baseStorage = SharedRef<LibHac.FsSrv.Sf.IStorage>.CreateMove(ref 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
|
|
|
{
|
2022-10-04 18:12:54 -05:00
|
|
|
ulong bufferAddress = context.Request.ReceiveBuff[0].Position;
|
|
|
|
ulong bufferLen = context.Request.ReceiveBuff[0].Size;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2019-07-01 21:39:22 -05:00
|
|
|
// Use smaller length to avoid overflows.
|
2022-10-04 18:12:54 -05:00
|
|
|
if (size > bufferLen)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2022-10-04 18:12:54 -05:00
|
|
|
size = bufferLen;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2022-10-04 18:12:54 -05: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 01:17:44 -05:00
|
|
|
|
2022-10-04 18:12:54 -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-12-23 10:55:50 -06:00
|
|
|
Result result = _baseStorage.Get.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
|
|
|
{
|
2021-12-23 10:55:50 -06:00
|
|
|
_baseStorage.Destroy();
|
2019-12-25 19:58:38 -06:00
|
|
|
}
|
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
2019-07-11 20:13:43 -05:00
|
|
|
}
|