2019-07-10 18:20:01 +01:00
|
|
|
using LibHac;
|
2018-08-17 00:47:36 +01:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-09-19 01:45:11 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IStorage : IpcService
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-06-01 01:31:10 +01:00
|
|
|
private LibHac.Fs.IStorage _baseStorage;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-06-01 01:31:10 +01:00
|
|
|
public IStorage(LibHac.Fs.IStorage baseStorage)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2019-06-01 01:31:10 +01:00
|
|
|
_baseStorage = baseStorage;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(0)]
|
2018-11-18 19:37:41 +00:00
|
|
|
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
|
2019-07-14 20:04:38 +01:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
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 03:39:22 +01:00
|
|
|
// Use smaller length to avoid overflows.
|
2018-12-06 11:16:24 +00:00
|
|
|
if (size > buffDesc.Size)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
size = buffDesc.Size;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
byte[] data = new byte[size];
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2019-07-10 18:20:01 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_baseStorage.Read(data, offset);
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
2019-07-14 20:04:38 +01:00
|
|
|
return (ResultCode)ex.ResultValue.Value;
|
2019-07-10 18:20:01 +01:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
context.Memory.WriteBytes(buffDesc.Position, data);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
return ResultCode.Success;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-02-15 15:44:25 +00:00
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(4)]
|
2019-02-15 15:44:25 +00:00
|
|
|
// GetSize() -> u64 size
|
2019-07-14 20:04:38 +01:00
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
2019-02-15 15:44:25 +00:00
|
|
|
{
|
2019-07-10 18:20:01 +01:00
|
|
|
try
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_baseStorage.GetSize());
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
2019-07-14 20:04:38 +01:00
|
|
|
return (ResultCode)ex.ResultValue.Value;
|
2019-07-10 18:20:01 +01:00
|
|
|
}
|
2019-02-15 15:44:25 +00:00
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
return ResultCode.Success;
|
2019-02-15 15:44:25 +00:00
|
|
|
}
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
2019-07-12 02:13:43 +01:00
|
|
|
}
|