2019-07-10 10:20:01 -07:00
|
|
|
using LibHac;
|
2018-08-16 16:47:36 -07:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-09 16:14:55 -08:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-03-19 11:58:46 -07:00
|
|
|
class IStorage : IpcService
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
private Dictionary<int, ServiceProcessRequest> _commands;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
|
2018-02-09 16:14:55 -08:00
|
|
|
|
2019-05-31 17:31:10 -07:00
|
|
|
private LibHac.Fs.IStorage _baseStorage;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2019-05-31 17:31:10 -07:00
|
|
|
public IStorage(LibHac.Fs.IStorage baseStorage)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
_commands = new Dictionary<int, ServiceProcessRequest>
|
2018-02-09 16:14:55 -08:00
|
|
|
{
|
2019-02-15 07:44:25 -08:00
|
|
|
{ 0, Read },
|
|
|
|
{ 4, GetSize }
|
2018-02-09 16:14:55 -08:00
|
|
|
};
|
|
|
|
|
2019-05-31 17:31:10 -07:00
|
|
|
_baseStorage = baseStorage;
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
|
2018-11-18 11:37:41 -08:00
|
|
|
// Read(u64 offset, u64 length) -> buffer<u8, 0x46, 0> buffer
|
2018-12-06 03:16:24 -08:00
|
|
|
public long Read(ServiceCtx context)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
long offset = context.RequestData.ReadInt64();
|
|
|
|
long size = context.RequestData.ReadInt64();
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
if (context.Request.ReceiveBuff.Count > 0)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
IpcBuffDesc buffDesc = context.Request.ReceiveBuff[0];
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2019-07-01 19:39:22 -07:00
|
|
|
// Use smaller length to avoid overflows.
|
2018-12-06 03:16:24 -08:00
|
|
|
if (size > buffDesc.Size)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-12-06 03:16:24 -08:00
|
|
|
size = buffDesc.Size;
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
byte[] data = new byte[size];
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2019-07-10 10:20:01 -07:00
|
|
|
try
|
|
|
|
{
|
|
|
|
_baseStorage.Read(data, offset);
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
context.Memory.WriteBytes(buffDesc.Position, data);
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-02-15 07:44:25 -08:00
|
|
|
|
|
|
|
// GetSize() -> u64 size
|
|
|
|
public long GetSize(ServiceCtx context)
|
|
|
|
{
|
2019-07-10 10:20:01 -07:00
|
|
|
try
|
|
|
|
{
|
|
|
|
context.ResponseData.Write(_baseStorage.GetSize());
|
|
|
|
}
|
|
|
|
catch (HorizonResultException ex)
|
|
|
|
{
|
|
|
|
return ex.ResultValue.Value;
|
|
|
|
}
|
2019-02-15 07:44:25 -08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
2018-09-13 04:45:59 -07:00
|
|
|
}
|