2018-11-28 23:18:09 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
|
|
|
{
|
|
|
|
static class KernelTransfer
|
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
public static bool UserToKernelInt32(Horizon system, long address, out int value)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
KProcess currentProcess = system.Scheduler.GetCurrentProcess();
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
if (currentProcess.CpuMemory.IsMapped(address) &&
|
|
|
|
currentProcess.CpuMemory.IsMapped(address + 3))
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
value = currentProcess.CpuMemory.ReadInt32(address);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
value = 0;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
public static bool UserToKernelString(Horizon system, long address, int size, out string value)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
KProcess currentProcess = system.Scheduler.GetCurrentProcess();
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
if (currentProcess.CpuMemory.IsMapped(address) &&
|
|
|
|
currentProcess.CpuMemory.IsMapped(address + size - 1))
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
value = MemoryHelper.ReadAsciiString(currentProcess.CpuMemory, address, size);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
value = null;
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
public static bool KernelToUserInt32(Horizon system, long address, int value)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
KProcess currentProcess = system.Scheduler.GetCurrentProcess();
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
if (currentProcess.CpuMemory.IsMapped(address) &&
|
|
|
|
currentProcess.CpuMemory.IsMapped(address + 3))
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
currentProcess.CpuMemory.WriteInt32ToSharedAddr(address, value);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
public static bool KernelToUserInt64(Horizon system, long address, long value)
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
KProcess currentProcess = system.Scheduler.GetCurrentProcess();
|
2018-11-28 23:18:09 +01:00
|
|
|
|
2018-12-04 21:23:37 +01:00
|
|
|
if (currentProcess.CpuMemory.IsMapped(address) &&
|
|
|
|
currentProcess.CpuMemory.IsMapped(address + 7))
|
2018-11-28 23:18:09 +01:00
|
|
|
{
|
2018-12-04 21:23:37 +01:00
|
|
|
currentProcess.CpuMemory.WriteInt64(address, value);
|
2018-11-28 23:18:09 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|