Add a new JIT compiler for CPU code (#693)
* Start of the ARMeilleure project
* Refactoring around the old IRAdapter, now renamed to PreAllocator
* Optimize the LowestBitSet method
* Add CLZ support and fix CLS implementation
* Add missing Equals and GetHashCode overrides on some structs, misc small tweaks
* Implement the ByteSwap IR instruction, and some refactoring on the assembler
* Implement the DivideUI IR instruction and fix 64-bits IDIV
* Correct constant operand type on CSINC
* Move division instructions implementation to InstEmitDiv
* Fix destination type for the ConditionalSelect IR instruction
* Implement UMULH and SMULH, with new IR instructions
* Fix some issues with shift instructions
* Fix constant types for BFM instructions
* Fix up new tests using the new V128 struct
* Update tests
* Move DIV tests to a separate file
* Add support for calls, and some instructions that depends on them
* Start adding support for SIMD & FP types, along with some of the related ARM instructions
* Fix some typos and the divide instruction with FP operands
* Fix wrong method call on Clz_V
* Implement ARM FP & SIMD move instructions, Saddlv_V, and misc. fixes
* Implement SIMD logical instructions and more misc. fixes
* Fix PSRAD x86 instruction encoding, TRN, UABD and UABDL implementations
* Implement float conversion instruction, merge in LDj3SNuD fixes, and some other misc. fixes
* Implement SIMD shift instruction and fix Dup_V
* Add SCVTF and UCVTF (vector, fixed-point) variants to the opcode table
* Fix check with tolerance on tester
* Implement FP & SIMD comparison instructions, and some fixes
* Update FCVT (Scalar) encoding on the table to support the Half-float variants
* Support passing V128 structs, some cleanup on the register allocator, merge LDj3SNuD fixes
* Use old memory access methods, made a start on SIMD memory insts support, some fixes
* Fix float constant passed to functions, save and restore non-volatile XMM registers, other fixes
* Fix arguments count with struct return values, other fixes
* More instructions
* Misc. fixes and integrate LDj3SNuD fixes
* Update tests
* Add a faster linear scan allocator, unwinding support on windows, and other changes
* Update Ryujinx.HLE
* Update Ryujinx.Graphics
* Fix V128 return pointer passing, RCX is clobbered
* Update Ryujinx.Tests
* Update ITimeZoneService
* Stop using GetFunctionPointer as that can't be called from native code, misc. fixes and tweaks
* Use generic GetFunctionPointerForDelegate method and other tweaks
* Some refactoring on the code generator, assert on invalid operations and use a separate enum for intrinsics
* Remove some unused code on the assembler
* Fix REX.W prefix regression on float conversion instructions, add some sort of profiler
* Add hardware capability detection
* Fix regression on Sha1h and revert Fcm** changes
* Add SSE2-only paths on vector extract and insert, some refactoring on the pre-allocator
* Fix silly mistake introduced on last commit on CpuId
* Generate inline stack probes when the stack allocation is too large
* Initial support for the System-V ABI
* Support multiple destination operands
* Fix SSE2 VectorInsert8 path, and other fixes
* Change placement of XMM callee save and restore code to match other compilers
* Rename Dest to Destination and Inst to Instruction
* Fix a regression related to calls and the V128 type
* Add an extra space on comments to match code style
* Some refactoring
* Fix vector insert FP32 SSE2 path
* Port over the ARM32 instructions
* Avoid memory protection races on JIT Cache
* Another fix on VectorInsert FP32 (thanks to LDj3SNuD
* Float operands don't need to use the same register when VEX is supported
* Add a new register allocator, higher quality code for hot code (tier up), and other tweaks
* Some nits, small improvements on the pre allocator
* CpuThreadState is gone
* Allow changing CPU emulators with a config entry
* Add runtime identifiers on the ARMeilleure project
* Allow switching between CPUs through a config entry (pt. 2)
* Change win10-x64 to win-x64 on projects
* Update the Ryujinx project to use ARMeilleure
* Ensure that the selected register is valid on the hybrid allocator
* Allow exiting on returns to 0 (should fix test regression)
* Remove register assignments for most used variables on the hybrid allocator
* Do not use fixed registers as spill temp
* Add missing namespace and remove unneeded using
* Address PR feedback
* Fix types, etc
* Enable AssumeStrictAbiCompliance by default
* Ensure that Spill and Fill don't load or store any more than necessary
2019-08-08 18:56:22 +00:00
|
|
|
|
using ARMeilleure.Memory;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
using Ryujinx.Common;
|
2018-12-18 05:33:36 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Memory;
|
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Process;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
using Ryujinx.HLE.Loaders.Executables;
|
|
|
|
|
using Ryujinx.HLE.Utilities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
|
2019-11-03 17:26:29 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Loader
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
|
[Service("ldr:ro")]
|
2019-09-19 00:45:11 +00:00
|
|
|
|
[Service("ro:1")] // 7.0.0+
|
2018-10-09 23:01:49 +00:00
|
|
|
|
class IRoInterface : IpcService
|
|
|
|
|
{
|
|
|
|
|
private const int MaxNrr = 0x40;
|
|
|
|
|
private const int MaxNro = 0x40;
|
|
|
|
|
|
|
|
|
|
private const uint NrrMagic = 0x3052524E;
|
|
|
|
|
private const uint NroMagic = 0x304F524E;
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private List<NrrInfo> _nrrInfos;
|
|
|
|
|
private List<NroInfo> _nroInfos;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private bool _isInitialized;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-10 15:59:54 +00:00
|
|
|
|
public IRoInterface(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_nrrInfos = new List<NrrInfo>(MaxNrr);
|
|
|
|
|
_nroInfos = new List<NroInfo>(MaxNro);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
private ResultCode ParseNrr(out NrrInfo nrrInfo, ServiceCtx context, long nrrAddress, long nrrSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
nrrInfo = null;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (nrrSize == 0 || nrrAddress + nrrSize <= nrrAddress || (nrrSize & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadSize;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
2018-12-06 11:16:24 +00:00
|
|
|
|
else if ((nrrAddress & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.UnalignedAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
StructReader reader = new StructReader(context.Memory, nrrAddress);
|
|
|
|
|
NrrHeader header = reader.Read<NrrHeader>();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (header.Magic != NrrMagic)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidNrr;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
2018-12-06 11:16:24 +00:00
|
|
|
|
else if (header.NrrSize != nrrSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadSize;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
List<byte[]> hashes = new List<byte[]>();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
for (int i = 0; i < header.HashCount; i++)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
hashes.Add(context.Memory.ReadBytes(nrrAddress + header.HashOffset + (i * 0x20), 0x20));
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
nrrInfo = new NrrInfo(nrrAddress, header, hashes);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public bool IsNroHashPresent(byte[] nroHash)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
foreach (NrrInfo info in _nrrInfos)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
foreach (byte[] hash in info.Hashes)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (hash.SequenceEqual(nroHash))
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
public bool IsNroLoaded(byte[] nroHash)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
foreach (NroInfo info in _nroInfos)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.Hash.SequenceEqual(nroHash))
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode ParseNro(out NroInfo res, ServiceCtx context, ulong nroAddress, ulong nroSize, ulong bssAddress, ulong bssSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
res = null;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_nroInfos.Count >= MaxNro)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.MaxNro;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
2018-12-06 11:16:24 +00:00
|
|
|
|
else if (nroSize == 0 || nroAddress + nroSize <= nroAddress || (nroSize & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadSize;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
2018-12-06 11:16:24 +00:00
|
|
|
|
else if (bssSize != 0 && bssAddress + bssSize <= bssAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadSize;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
2018-12-06 11:16:24 +00:00
|
|
|
|
else if ((nroAddress & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.UnalignedAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
uint magic = context.Memory.ReadUInt32((long)nroAddress + 0x10);
|
|
|
|
|
uint nroFileSize = context.Memory.ReadUInt32((long)nroAddress + 0x18);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (magic != NroMagic || nroSize != nroFileSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidNro;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
byte[] nroData = context.Memory.ReadBytes((long)nroAddress, (long)nroSize);
|
|
|
|
|
byte[] nroHash = null;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
MemoryStream stream = new MemoryStream(nroData);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
using (SHA256 hasher = SHA256.Create())
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
nroHash = hasher.ComputeHash(stream);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (!IsNroHashPresent(nroHash))
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.NroHashNotPresent;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (IsNroLoaded(nroHash))
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.NroAlreadyLoaded;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
stream.Position = 0;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
NxRelocatableObject executable = new NxRelocatableObject(stream, nroAddress, bssAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
|
|
|
|
// check if everything is page align.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if ((executable.Text.Length & 0xFFF) != 0 || (executable.Ro.Length & 0xFFF) != 0 ||
|
|
|
|
|
(executable.Data.Length & 0xFFF) != 0 || (executable.BssSize & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidNro;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check if everything is contiguous.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (executable.RoOffset != executable.TextOffset + executable.Text.Length ||
|
|
|
|
|
executable.DataOffset != executable.RoOffset + executable.Ro.Length ||
|
|
|
|
|
nroFileSize != executable.DataOffset + executable.Data.Length)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidNro;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// finally check the bss size match.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if ((ulong)executable.BssSize != bssSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidNro;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
int totalSize = executable.Text.Length + executable.Ro.Length + executable.Data.Length + executable.BssSize;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
res = new NroInfo(
|
|
|
|
|
executable,
|
|
|
|
|
nroHash,
|
|
|
|
|
nroAddress,
|
|
|
|
|
nroSize,
|
|
|
|
|
bssAddress,
|
|
|
|
|
bssSize,
|
|
|
|
|
(ulong)totalSize);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
private ResultCode MapNro(ServiceCtx context, NroInfo info, out ulong nroMappedAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
nroMappedAddress = 0;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
KMemoryManager memMgr = context.Process.MemoryManager;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong targetAddress = memMgr.GetAddrSpaceBaseAddr();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (targetAddress + info.TotalSize >= memMgr.AddrSpaceEnd)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidMemoryState;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
KMemoryInfo memInfo = memMgr.QueryMemory(targetAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (memInfo.State == MemoryState.Unmapped && memInfo.Size >= info.TotalSize)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (!memMgr.InsideHeapRegion (targetAddress, info.TotalSize) &&
|
|
|
|
|
!memMgr.InsideAliasRegion(targetAddress, info.TotalSize))
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
targetAddress += memInfo.Size;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
KernelResult result = memMgr.MapProcessCodeMemory(targetAddress, info.NroAddress, info.NroSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result != KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidMemoryState;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong bssTargetAddress = targetAddress + info.NroSize;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.BssSize != 0)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = memMgr.MapProcessCodeMemory(bssTargetAddress, info.BssAddress, info.BssSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result != KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
memMgr.UnmapProcessCodeMemory(targetAddress, info.NroAddress, info.NroSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.InvalidMemoryState;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = LoadNroIntoMemory(context.Process, info.Executable, targetAddress);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result != KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
memMgr.UnmapProcessCodeMemory(targetAddress, info.NroAddress, info.NroSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.BssSize != 0)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
memMgr.UnmapProcessCodeMemory(bssTargetAddress, info.BssAddress, info.BssSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
info.NroMappedAddress = targetAddress;
|
|
|
|
|
nroMappedAddress = targetAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private KernelResult LoadNroIntoMemory(KProcess process, IExecutable relocatableObject, ulong baseAddress)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong textStart = baseAddress + (ulong)relocatableObject.TextOffset;
|
|
|
|
|
ulong roStart = baseAddress + (ulong)relocatableObject.RoOffset;
|
|
|
|
|
ulong dataStart = baseAddress + (ulong)relocatableObject.DataOffset;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong bssStart = dataStart + (ulong)relocatableObject.Data.Length;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong bssEnd = BitUtils.AlignUp(bssStart + (ulong)relocatableObject.BssSize, KMemoryManager.PageSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
process.CpuMemory.WriteBytes((long)textStart, relocatableObject.Text);
|
|
|
|
|
process.CpuMemory.WriteBytes((long)roStart, relocatableObject.Ro);
|
|
|
|
|
process.CpuMemory.WriteBytes((long)dataStart, relocatableObject.Data);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
MemoryHelper.FillWithZeros(process.CpuMemory, (long)bssStart, (int)(bssEnd - bssStart));
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
KernelResult result;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = process.MemoryManager.SetProcessMemoryPermission(textStart, roStart - textStart, MemoryPermission.ReadAndExecute);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result != KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = process.MemoryManager.SetProcessMemoryPermission(roStart, dataStart - roStart, MemoryPermission.Read);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result != KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return process.MemoryManager.SetProcessMemoryPermission(dataStart, bssEnd - dataStart, MemoryPermission.ReadAndWrite);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
private ResultCode RemoveNrrInfo(long nrrAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
foreach (NrrInfo info in _nrrInfos)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.NrrAddress == nrrAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_nrrInfos.Remove(info);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadNrrAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
private ResultCode RemoveNroInfo(ServiceCtx context, ulong nroMappedAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
foreach (NroInfo info in _nroInfos)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.NroMappedAddress == nroMappedAddress)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_nroInfos.Remove(info);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong textSize = (ulong)info.Executable.Text.Length;
|
|
|
|
|
ulong roSize = (ulong)info.Executable.Ro.Length;
|
|
|
|
|
ulong dataSize = (ulong)info.Executable.Data.Length;
|
|
|
|
|
ulong bssSize = (ulong)info.Executable.BssSize;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
KernelResult result = KernelResult.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (info.Executable.BssSize != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = context.Process.MemoryManager.UnmapProcessCodeMemory(
|
|
|
|
|
info.NroMappedAddress + textSize + roSize + dataSize,
|
|
|
|
|
info.Executable.BssAddress,
|
|
|
|
|
bssSize);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result == KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = context.Process.MemoryManager.UnmapProcessCodeMemory(
|
|
|
|
|
info.NroMappedAddress + textSize + roSize,
|
|
|
|
|
info.Executable.SourceAddress + textSize + roSize,
|
|
|
|
|
dataSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result == KernelResult.Success)
|
2018-11-28 22:18:09 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = context.Process.MemoryManager.UnmapProcessCodeMemory(
|
|
|
|
|
info.NroMappedAddress,
|
|
|
|
|
info.Executable.SourceAddress,
|
|
|
|
|
textSize + roSize);
|
2018-11-28 22:18:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return (ResultCode)result;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.BadNroAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(0)]
|
2018-10-09 23:01:49 +00:00
|
|
|
|
// LoadNro(u64, u64, u64, u64, u64, pid) -> u64
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode LoadNro(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
ResultCode result = ResultCode.BadInitialization;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
|
|
|
|
// Zero
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.RequestData.ReadUInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong nroHeapAddress = context.RequestData.ReadUInt64();
|
|
|
|
|
ulong nroSize = context.RequestData.ReadUInt64();
|
|
|
|
|
ulong bssHeapAddress = context.RequestData.ReadUInt64();
|
|
|
|
|
ulong bssSize = context.RequestData.ReadUInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong nroMappedAddress = 0;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_isInitialized)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
NroInfo info;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = ParseNro(out info, context, nroHeapAddress, nroSize, bssHeapAddress, bssSize);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result == 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = MapNro(context, info, out nroMappedAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (result == 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_nroInfos.Add(info);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.ResponseData.Write(nroMappedAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(1)]
|
2018-10-09 23:01:49 +00:00
|
|
|
|
// UnloadNro(u64, u64, pid)
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode UnloadNro(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
ResultCode result = ResultCode.BadInitialization;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-11-28 22:18:09 +00:00
|
|
|
|
// Zero
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.RequestData.ReadUInt64();
|
2018-11-28 22:18:09 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
ulong nroMappedAddress = context.RequestData.ReadUInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_isInitialized)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if ((nroMappedAddress & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.UnalignedAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = RemoveNroInfo(context, nroMappedAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(2)]
|
2018-10-09 23:01:49 +00:00
|
|
|
|
// LoadNrr(u64, u64, u64, pid)
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode LoadNrr(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
ResultCode result = ResultCode.BadInitialization;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
|
|
|
|
// Zero
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.RequestData.ReadUInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
long nrrAddress = context.RequestData.ReadInt64();
|
|
|
|
|
long nrrSize = context.RequestData.ReadInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_isInitialized)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
NrrInfo info;
|
|
|
|
|
result = ParseNrr(out info, context, nrrAddress, nrrSize);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-02 02:39:22 +00:00
|
|
|
|
if (result == 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_nrrInfos.Count >= MaxNrr)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
result = ResultCode.MaxNrr;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_nrrInfos.Add(info);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(3)]
|
2018-10-09 23:01:49 +00:00
|
|
|
|
// UnloadNrr(u64, u64, pid)
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode UnloadNrr(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
ResultCode result = ResultCode.BadInitialization;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
|
|
|
|
// Zero
|
2018-12-06 11:16:24 +00:00
|
|
|
|
context.RequestData.ReadUInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
long nrrHeapAddress = context.RequestData.ReadInt64();
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if (_isInitialized)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
if ((nrrHeapAddress & 0xFFF) != 0)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.UnalignedAddress;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
result = RemoveNrrInfo(nrrHeapAddress);
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
return result;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(4)]
|
2018-10-09 23:01:49 +00:00
|
|
|
|
// Initialize(u64, pid, KObject)
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode Initialize(ServiceCtx context)
|
2018-10-09 23:01:49 +00:00
|
|
|
|
{
|
|
|
|
|
// TODO: we actually ignore the pid and process handle receive, we will need to use them when we will have multi process support.
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_isInitialized = true;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-10-09 23:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
|
}
|