2020-04-22 06:10:27 +02:00
|
|
|
|
using Ryujinx.Common;
|
|
|
|
|
using Ryujinx.Common.Utilities;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.SurfaceFlinger.Types;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
using System;
|
2020-04-22 06:10:27 +02:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Text;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2019-11-03 18:26:29 +01:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
class Parcel
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
private readonly byte[] _rawData;
|
|
|
|
|
|
|
|
|
|
private Span<byte> Raw => new Span<byte>(_rawData);
|
|
|
|
|
|
|
|
|
|
private ref ParcelHeader Header => ref MemoryMarshal.Cast<byte, ParcelHeader>(_rawData)[0];
|
|
|
|
|
|
|
|
|
|
private Span<byte> Payload => Raw.Slice((int)Header.PayloadOffset, (int)Header.PayloadSize);
|
|
|
|
|
|
|
|
|
|
private Span<byte> Objects => Raw.Slice((int)Header.ObjectOffset, (int)Header.ObjectsSize);
|
|
|
|
|
|
|
|
|
|
private int _payloadPosition;
|
|
|
|
|
private int _objectPosition;
|
|
|
|
|
|
|
|
|
|
public Parcel(byte[] rawData)
|
|
|
|
|
{
|
|
|
|
|
_rawData = rawData;
|
|
|
|
|
|
|
|
|
|
_payloadPosition = 0;
|
|
|
|
|
_objectPosition = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Parcel(uint payloadSize, uint objectsSize)
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
uint headerSize = (uint)Unsafe.SizeOf<ParcelHeader>();
|
|
|
|
|
|
|
|
|
|
_rawData = new byte[BitUtils.AlignUp(headerSize + payloadSize + objectsSize, 4)];
|
|
|
|
|
|
|
|
|
|
Header.PayloadSize = payloadSize;
|
|
|
|
|
Header.ObjectsSize = objectsSize;
|
|
|
|
|
Header.PayloadOffset = headerSize;
|
|
|
|
|
Header.ObjectOffset = Header.PayloadOffset + Header.ObjectsSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ReadInterfaceToken()
|
|
|
|
|
{
|
|
|
|
|
// Ignore the policy flags
|
|
|
|
|
int strictPolicy = ReadInt32();
|
|
|
|
|
|
|
|
|
|
return ReadString16();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ReadString16()
|
|
|
|
|
{
|
|
|
|
|
int size = ReadInt32();
|
|
|
|
|
|
|
|
|
|
if (size < 0)
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
return "";
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
ReadOnlySpan<byte> data = ReadInPlace((size + 1) * 2);
|
|
|
|
|
|
|
|
|
|
// Return the unicode string without the last character (null terminator)
|
|
|
|
|
return Encoding.Unicode.GetString(data.Slice(0, size * 2));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int ReadInt32() => ReadUnmanagedType<int>();
|
|
|
|
|
public uint ReadUInt32() => ReadUnmanagedType<uint>();
|
|
|
|
|
public bool ReadBoolean() => ReadUnmanagedType<uint>() != 0;
|
|
|
|
|
public long ReadInt64() => ReadUnmanagedType<long>();
|
|
|
|
|
public ulong ReadUInt64() => ReadUnmanagedType<ulong>();
|
|
|
|
|
|
|
|
|
|
public T ReadFlattenable<T>() where T : unmanaged, IFlattenable
|
|
|
|
|
{
|
|
|
|
|
long flattenableSize = ReadInt64();
|
|
|
|
|
|
|
|
|
|
T result = new T();
|
|
|
|
|
|
|
|
|
|
Debug.Assert(flattenableSize == result.GetFlattenedSize());
|
|
|
|
|
|
|
|
|
|
result.Unflatten(this);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public T ReadUnmanagedType<T>() where T: unmanaged
|
|
|
|
|
{
|
|
|
|
|
ReadOnlySpan<byte> data = ReadInPlace(Unsafe.SizeOf<T>());
|
|
|
|
|
|
|
|
|
|
return MemoryMarshal.Cast<byte, T>(data)[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ReadOnlySpan<byte> ReadInPlace(int size)
|
|
|
|
|
{
|
|
|
|
|
ReadOnlySpan<byte> result = Payload.Slice(_payloadPosition, size);
|
|
|
|
|
|
|
|
|
|
_payloadPosition += BitUtils.AlignUp(size, 4);
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x28)]
|
|
|
|
|
private struct FlatBinderObject
|
|
|
|
|
{
|
|
|
|
|
public int Type;
|
|
|
|
|
public int Flags;
|
|
|
|
|
public long BinderId;
|
|
|
|
|
public long Cookie;
|
|
|
|
|
|
|
|
|
|
private byte _serviceNameStart;
|
|
|
|
|
|
|
|
|
|
public Span<byte> ServiceName => MemoryMarshal.CreateSpan(ref _serviceNameStart, 0x8);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WriteObject<T>(T obj, string serviceName) where T: IBinder
|
|
|
|
|
{
|
|
|
|
|
FlatBinderObject flatBinderObject = new FlatBinderObject
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
Type = 2,
|
|
|
|
|
Flags = 0,
|
|
|
|
|
BinderId = HOSBinderDriverServer.GetBinderId(obj),
|
|
|
|
|
};
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
Encoding.ASCII.GetBytes(serviceName).CopyTo(flatBinderObject.ServiceName);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
WriteUnmanagedType(ref flatBinderObject);
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
// TODO: figure out what this value is
|
|
|
|
|
|
|
|
|
|
WriteInplaceObject(new byte[4] { 0, 0, 0, 0 });
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
public AndroidStrongPointer<T> ReadStrongPointer<T>() where T : unmanaged, IFlattenable
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
bool hasObject = ReadBoolean();
|
|
|
|
|
|
|
|
|
|
if (hasObject)
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
T obj = ReadFlattenable<T>();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
return new AndroidStrongPointer<T>(obj);
|
|
|
|
|
}
|
|
|
|
|
else
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
return new AndroidStrongPointer<T>();
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
2020-04-22 06:10:27 +02:00
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
public void WriteStrongPointer<T>(ref AndroidStrongPointer<T> value) where T: unmanaged, IFlattenable
|
|
|
|
|
{
|
|
|
|
|
WriteBoolean(!value.IsNull);
|
|
|
|
|
|
|
|
|
|
if (!value.IsNull)
|
2018-02-05 00:08:20 +01:00
|
|
|
|
{
|
2020-04-22 06:10:27 +02:00
|
|
|
|
WriteFlattenable<T>(ref value.Object);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
public void WriteFlattenable<T>(ref T value) where T : unmanaged, IFlattenable
|
|
|
|
|
{
|
|
|
|
|
WriteInt64(value.GetFlattenedSize());
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
value.Flatten(this);
|
|
|
|
|
}
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
public void WriteStatus(Status status) => WriteUnmanagedType(ref status);
|
|
|
|
|
public void WriteBoolean(bool value) => WriteUnmanagedType(ref value);
|
|
|
|
|
public void WriteInt32(int value) => WriteUnmanagedType(ref value);
|
|
|
|
|
public void WriteUInt32(uint value) => WriteUnmanagedType(ref value);
|
|
|
|
|
public void WriteInt64(long value) => WriteUnmanagedType(ref value);
|
|
|
|
|
public void WriteUInt64(ulong value) => WriteUnmanagedType(ref value);
|
|
|
|
|
|
2020-05-15 03:30:08 +02:00
|
|
|
|
public void WriteUnmanagedSpan<T>(ReadOnlySpan<T> value) where T : unmanaged
|
|
|
|
|
{
|
|
|
|
|
WriteInplace(MemoryMarshal.Cast<T, byte>(value));
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 06:10:27 +02:00
|
|
|
|
public void WriteUnmanagedType<T>(ref T value) where T : unmanaged
|
|
|
|
|
{
|
|
|
|
|
WriteInplace(SpanHelpers.AsByteSpan(ref value));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WriteInplace(ReadOnlySpan<byte> data)
|
|
|
|
|
{
|
|
|
|
|
Span<byte> result = Payload.Slice(_payloadPosition, data.Length);
|
|
|
|
|
|
|
|
|
|
data.CopyTo(result);
|
|
|
|
|
|
|
|
|
|
_payloadPosition += BitUtils.AlignUp(data.Length, 4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WriteInplaceObject(ReadOnlySpan<byte> data)
|
|
|
|
|
{
|
|
|
|
|
Span<byte> result = Objects.Slice(_objectPosition, data.Length);
|
|
|
|
|
|
|
|
|
|
data.CopyTo(result);
|
|
|
|
|
|
|
|
|
|
_objectPosition += BitUtils.AlignUp(data.Length, 4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateHeader()
|
|
|
|
|
{
|
|
|
|
|
uint headerSize = (uint)Unsafe.SizeOf<ParcelHeader>();
|
|
|
|
|
|
|
|
|
|
Header.PayloadSize = (uint)_payloadPosition;
|
|
|
|
|
Header.ObjectsSize = (uint)_objectPosition;
|
|
|
|
|
Header.PayloadOffset = headerSize;
|
|
|
|
|
Header.ObjectOffset = Header.PayloadOffset + Header.PayloadSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ReadOnlySpan<byte> Finish()
|
|
|
|
|
{
|
|
|
|
|
UpdateHeader();
|
|
|
|
|
|
|
|
|
|
return Raw.Slice(0, (int)(Header.PayloadSize + Header.ObjectsSize + Unsafe.SizeOf<ParcelHeader>()));
|
2018-02-05 00:08:20 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-22 06:10:27 +02:00
|
|
|
|
}
|