2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
|
2019-09-19 02:45:11 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-03-19 19:58:46 +01:00
|
|
|
class IStorageAccessor : IpcService
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private IStorage _storage;
|
2018-02-10 01:14:55 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public IStorageAccessor(IStorage storage)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_storage = storage;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(0)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetSize() -> u64
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetSize(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
context.ResponseData.Write((long)_storage.Data.Length);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(10)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// Write(u64, buffer<bytes, 0x21>)
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Write(ServiceCtx context)
|
2018-06-03 00:46:09 +02:00
|
|
|
{
|
2021-01-19 03:28:35 +01:00
|
|
|
if (_storage.IsReadOnly)
|
|
|
|
{
|
|
|
|
return ResultCode.ObjectInvalid;
|
|
|
|
}
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
ulong writePosition = context.RequestData.ReadUInt64();
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
if (writePosition > (ulong)_storage.Data.Length)
|
2019-11-18 12:16:26 +01:00
|
|
|
{
|
|
|
|
return ResultCode.OutOfBounds;
|
|
|
|
}
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
(ulong position, ulong size) = context.Request.GetBufferType0x21();
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
size = Math.Min(size, (ulong)_storage.Data.Length - writePosition);
|
2019-11-18 12:16:26 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (size > 0)
|
2018-06-04 07:09:41 +02:00
|
|
|
{
|
2021-04-24 12:16:01 +02:00
|
|
|
ulong maxSize = (ulong)_storage.Data.Length - writePosition;
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (size > maxSize)
|
2018-06-04 07:09:41 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
size = maxSize;
|
2018-06-04 07:09:41 +02:00
|
|
|
}
|
|
|
|
|
2020-05-04 00:54:50 +02:00
|
|
|
byte[] data = new byte[size];
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
context.Memory.Read(position, data);
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Buffer.BlockCopy(data, 0, _storage.Data, (int)writePosition, (int)size);
|
2018-06-04 07:09:41 +02:00
|
|
|
}
|
2018-06-03 00:46:09 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-06-03 00:46:09 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(11)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// Read(u64) -> buffer<bytes, 0x22>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode Read(ServiceCtx context)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2021-04-24 12:16:01 +02:00
|
|
|
ulong readPosition = context.RequestData.ReadUInt64();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
if (readPosition > (ulong)_storage.Data.Length)
|
2019-11-18 12:16:26 +01:00
|
|
|
{
|
|
|
|
return ResultCode.OutOfBounds;
|
|
|
|
}
|
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
(ulong position, ulong size) = context.Request.GetBufferType0x22();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
size = Math.Min(size, (ulong)_storage.Data.Length - readPosition);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-11-18 12:16:26 +01:00
|
|
|
byte[] data = new byte[size];
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2019-11-18 12:16:26 +01:00
|
|
|
Buffer.BlockCopy(_storage.Data, (int)readPosition, data, 0, (int)size);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2021-04-24 12:16:01 +02:00
|
|
|
context.Memory.Write(position, data);
|
2018-06-04 07:09:41 +02:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|