mirror of
https://github.com/par274/sharpemu.git
synced 2026-07-18 17:06:12 +08:00
63b440efcd
* [HLE] Fix guest-thread sync and boot for Unreal Engine titles Silent Hill: The Short Message (and other UE titles) now boot the full engine thread graph instead of hanging early. Four related fixes: - pthread cond/mutex semantics: retain a signal raised with no waiter as pending, and key block/wake on the state's identity rather than a resolved address that could differ between lock and unlock. This ends the ~1.5M-call cond_wait busy-spin. - Warm HLE type initializers and force-JIT their methods on a host thread at Freeze(). A .cctor or first-time JIT running on a guest thread's hijacked stack fail-fasts the CLR as "Invalid Program: attempted to call a UnmanagedCallersOnly method from managed code". - Guest thread scheduling: pump after a wake so a readied thread actually runs, add a dispatcher thread for when every guest thread is parked, and make the pump-depth guard an atomic CAS. - Route mutex/rwlock lock/unlock off the non-blocking leaf-import fast path so a contended lock can deschedule its guest thread. Ported from the unreal-boot-fixes branch. * [HLE] Keep mutex/rwlock unlock on the leaf-import fast path The previous change routed all mutex/rwlock lock and unlock NIDs off the leaf fast path so a contended lock could deschedule its guest thread. But unlock never blocks, and taking it off the fast path made it slow enough that Demon's Souls' job workers livelocked in a guest spinlock (millions of mutex_unlock calls, no import progress, main thread stuck in sceKernelWaitEventFlag). Only *lock* needs to leave the leaf path. Restore the four unlock NIDs (mutex + rwlock) so guest spinlocks stay cheap, while lock/rd/wrlock remain off it for the blocking case Silent Hill needs. * [HLE] Gate pthread_mutex_lock guest-thread blocking (fixes Demon's Souls) Re-enabling cooperative deschedule on a contended pthread_mutex_lock regressed Demon's Souls: its job workers run on libSceFiber, and blocking a guest thread mid-fiber left sceFiberSwitch returning ESRCH followed by a null fiber-context deref (0xC0000005). Bisect confirmed the pthread change as the cause; the game reaches the same point as before it once the block is skipped. Gate the block behind SHARPEMU_MUTEX_LOCK_BLOCKING (off by default) so contended locks fall through to the synchronous host-thread wait. The rest of the pthread fixes (cond_wait pending signals, identity wake keys) are unaffected.
4930 lines
146 KiB
C#
4930 lines
146 KiB
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using System.Threading;
|
|
using SharpEmu.Core.Cpu;
|
|
using SharpEmu.Core.Loader;
|
|
using SharpEmu.Core.Memory;
|
|
using SharpEmu.HLE;
|
|
using SharpEmu.Logging;
|
|
|
|
namespace SharpEmu.Core.Cpu.Native;
|
|
|
|
public sealed unsafe partial class DirectExecutionBackend : INativeCpuBackend, IGuestThreadScheduler, IDisposable
|
|
{
|
|
private static readonly SharpEmuLogger Log = SharpEmuLog.For("Native");
|
|
private const int ImportLoopHistoryLength = 2048;
|
|
|
|
private const int ImportLoopWideDiversityWindow = 768;
|
|
|
|
private const int DefaultImportLoopGuardSeconds = 5;
|
|
|
|
private readonly struct ImportStubEntry
|
|
{
|
|
public ulong Address { get; }
|
|
|
|
public string Nid { get; }
|
|
|
|
public ExportedFunction? Export { get; }
|
|
|
|
public ImportStubEntry(ulong address, string nid, ExportedFunction? export)
|
|
{
|
|
Address = address;
|
|
Nid = nid;
|
|
Export = export;
|
|
}
|
|
}
|
|
|
|
private readonly record struct RecentImportTraceEntry(
|
|
long DispatchIndex,
|
|
string Nid,
|
|
ulong ReturnRip,
|
|
ulong Arg0,
|
|
ulong Arg1,
|
|
ulong Arg2);
|
|
|
|
private readonly record struct DeferredBootstrapTraceEntry(
|
|
long DispatchIndex,
|
|
ulong Op,
|
|
ulong SymbolPointer,
|
|
ulong OutputPointer,
|
|
ulong ReturnRip);
|
|
|
|
#pragma warning disable CS0649
|
|
private struct EXCEPTION_POINTERS
|
|
{
|
|
public unsafe EXCEPTION_RECORD* ExceptionRecord;
|
|
|
|
public unsafe void* ContextRecord;
|
|
}
|
|
|
|
private struct EXCEPTION_RECORD
|
|
{
|
|
public uint ExceptionCode;
|
|
|
|
public uint ExceptionFlags;
|
|
|
|
public unsafe EXCEPTION_RECORD* ExceptionRecord;
|
|
|
|
public unsafe void* ExceptionAddress;
|
|
|
|
public uint NumberParameters;
|
|
|
|
public unsafe fixed ulong ExceptionInformation[15];
|
|
}
|
|
#pragma warning restore CS0649
|
|
|
|
private delegate int ExceptionHandlerDelegate(void* exceptionInfo);
|
|
|
|
private struct MEMORY_BASIC_INFORMATION64
|
|
{
|
|
public ulong BaseAddress;
|
|
|
|
public ulong AllocationBase;
|
|
|
|
public uint AllocationProtect;
|
|
|
|
public uint __alignment1;
|
|
|
|
public ulong RegionSize;
|
|
|
|
public uint State;
|
|
|
|
public uint Protect;
|
|
|
|
public uint Type;
|
|
|
|
public uint __alignment2;
|
|
}
|
|
|
|
private const ulong SYSTEM_RESERVED = 34359738368uL;
|
|
|
|
private const ulong CODE_BASE_OFFSET = 4294967296uL;
|
|
|
|
private const ulong CODE_BASE_INCR = 268435456uL;
|
|
|
|
private const ulong GuestImageScanStart = 34359738368uL;
|
|
|
|
private const ulong GuestImageScanEnd = 36507222016uL;
|
|
|
|
private const ulong GuestThreadStackBaseAddress = 0x7FFF_E000_0000UL;
|
|
|
|
private const ulong GuestThreadTlsBaseAddress = 0x7FFE_0000_0000UL;
|
|
|
|
private const ulong GuestThreadStackSize = 0x0020_0000UL;
|
|
|
|
private const ulong GuestThreadTlsSize = 0x0001_0000UL;
|
|
|
|
private const ulong GuestThreadTlsPrefixSize = 0x0000_1000UL;
|
|
|
|
private const ulong GuestThreadRegionStride = 0x0100_0000UL;
|
|
|
|
private const uint PAGE_EXECUTE_READWRITE = 64u;
|
|
|
|
private const uint PAGE_READWRITE = 4u;
|
|
|
|
private const uint PAGE_EXECUTE_READ = 32u;
|
|
|
|
private const int TlsHandlerRegionSize = 16384;
|
|
|
|
private const ulong TlsModuleAllocStart = 140726751354880uL;
|
|
|
|
private const ulong TlsModuleAllocStride = 65536uL;
|
|
|
|
private readonly IModuleManager _moduleManager;
|
|
|
|
private nint _tlsHandlerAddress;
|
|
|
|
private nint _tlsBaseAddress;
|
|
|
|
private nint _ownedTlsBaseAddress;
|
|
|
|
private bool _ownsTlsBaseAddress;
|
|
|
|
private uint _guestTlsBaseTlsIndex = uint.MaxValue;
|
|
|
|
private uint _hostRspSlotTlsIndex = uint.MaxValue;
|
|
|
|
private nint _tlsGetValueAddress;
|
|
|
|
private nint _queryPerformanceCounterAddress;
|
|
|
|
private nint _switchToThreadAddress;
|
|
|
|
private nint _sleepAddress;
|
|
|
|
private int _tlsPatchStubOffset;
|
|
|
|
private nint _unresolvedReturnStub;
|
|
|
|
private nint _guestReturnStub;
|
|
|
|
private nint _rawExceptionHandler;
|
|
|
|
private nint _rawExceptionHandlerStub;
|
|
|
|
private nint _exceptionHandler;
|
|
|
|
private nint _exceptionHandlerStub;
|
|
|
|
private nint _unhandledFilterStub;
|
|
|
|
private nint _lowIndexedTableScratch;
|
|
|
|
private nint _stackGuardCompareScratch;
|
|
|
|
private nint _nullObjectStoreScratch;
|
|
|
|
private readonly Dictionary<uint, nint> _tlsModuleBases = new Dictionary<uint, nint>();
|
|
|
|
private ulong _entryPoint;
|
|
|
|
private CpuContext? _cpuContext;
|
|
|
|
[ThreadStatic]
|
|
private static DirectExecutionBackend? _activeExecutionBackend;
|
|
|
|
[ThreadStatic]
|
|
private static CpuContext? _activeCpuContext;
|
|
|
|
[ThreadStatic]
|
|
private static ulong _activeEntryReturnSentinelRip;
|
|
|
|
[ThreadStatic]
|
|
private static ulong _activeGuestReturnSlotAddress;
|
|
|
|
[ThreadStatic]
|
|
private static bool _activeForcedGuestExit;
|
|
|
|
[ThreadStatic]
|
|
private static bool _activeGuestThreadYieldRequested;
|
|
|
|
[ThreadStatic]
|
|
private static string? _activeGuestThreadYieldReason;
|
|
|
|
[ThreadStatic]
|
|
private static GuestThreadState? _activeGuestThreadState;
|
|
|
|
[ThreadStatic]
|
|
private static DirectExecutionBackend? _importCounterOwner;
|
|
|
|
[ThreadStatic]
|
|
private static long _nextImportDispatchIndex;
|
|
|
|
[ThreadStatic]
|
|
private static long _importDispatchBlockEnd;
|
|
|
|
private ImportStubEntry[] _importEntries = Array.Empty<ImportStubEntry>();
|
|
|
|
private readonly List<nint> _importHandlerTrampolines = new List<nint>();
|
|
|
|
private const int GuestContextTransferFrameQwords = 15;
|
|
|
|
private readonly object _guestContextTransferStubGate = new();
|
|
|
|
private readonly ThreadLocal<nint> _guestContextTransferFrames = new(
|
|
static () => (nint)NativeMemory.AllocZeroed(GuestContextTransferFrameQwords, sizeof(ulong)),
|
|
trackAllValues: true);
|
|
|
|
private nint _guestContextTransferStub;
|
|
|
|
private long _importDispatchCount;
|
|
|
|
private const int ImportDispatchBlockSize = 256;
|
|
|
|
private KeyValuePair<string, ulong>[] _runtimeSymbolsByAddress = Array.Empty<KeyValuePair<string, ulong>>();
|
|
|
|
private readonly ConcurrentDictionary<string, ulong> _runtimeSymbolsByName =
|
|
new(StringComparer.Ordinal);
|
|
|
|
// Keep in sync with SelfLoader import-stub mapping constants.
|
|
private const ulong ImportStubRegionCanonicalBase = 0x0000_7000_0000_0000UL;
|
|
|
|
private const ulong ImportStubRegionAddressStride = 0x0000_0000_0100_0000UL;
|
|
|
|
private const ulong LazyImportStubSlotSize = 0x10;
|
|
|
|
private const ulong ImportStubRegionPageSize = 0x1000UL;
|
|
|
|
private const string KernelDynlibDlsymAerolibNid = "LwG8g3niqwA";
|
|
|
|
private readonly object _lazyDlsymStubGate = new();
|
|
|
|
private readonly Dictionary<string, ulong> _lazyDlsymStubCache = new(StringComparer.Ordinal);
|
|
|
|
private ulong _lazyImportStubPoolBase;
|
|
|
|
private ulong _lazyImportStubNextSlot;
|
|
|
|
private ulong _lazyImportStubPoolLimit;
|
|
|
|
private bool _lazyImportStubPoolMapped;
|
|
|
|
private readonly RecentImportTraceEntry[] _recentImportTrace = new RecentImportTraceEntry[64];
|
|
|
|
private int _recentImportTraceCount;
|
|
|
|
private int _recentImportTraceWriteIndex;
|
|
|
|
private readonly DeferredBootstrapTraceEntry[] _deferredBootstrapTrace = new DeferredBootstrapTraceEntry[32];
|
|
|
|
private int _deferredBootstrapTraceCount;
|
|
|
|
private int _deferredBootstrapTraceWriteIndex;
|
|
|
|
private readonly object _deferredBootstrapTraceGate = new();
|
|
|
|
private readonly string[] _distinctImportNidHistory = new string[128];
|
|
|
|
private int _distinctImportNidHistoryCount;
|
|
|
|
private int _distinctImportNidHistoryWriteIndex;
|
|
|
|
private string _lastDistinctImportNid = string.Empty;
|
|
|
|
private int _consecutiveStrlenImports;
|
|
|
|
private bool _strlenPreludeLogged;
|
|
|
|
private bool _logStrlenImports;
|
|
|
|
private bool _logStrlenBursts;
|
|
|
|
private bool _logGuestContext;
|
|
|
|
private bool _logGuestThreads;
|
|
|
|
private bool _logUsleep;
|
|
|
|
private bool _logBootstrap;
|
|
|
|
private bool _logAllImports;
|
|
|
|
private bool _logImportFrames;
|
|
|
|
private bool _logImportRecent;
|
|
|
|
private bool _logStackCheck;
|
|
|
|
private string? _probeImportReturn;
|
|
|
|
private string? _importFilter;
|
|
|
|
private bool _disableImportLoopGuard;
|
|
|
|
private int _importLoopGuardSeconds;
|
|
|
|
private readonly HashSet<ulong> _patchedResolverReturnSites = new HashSet<ulong>();
|
|
|
|
private readonly HashSet<ulong> _patchedTlsImmediateThunkTargets = new HashSet<ulong>();
|
|
|
|
private readonly HashSet<ulong> _contextualUnresolvedReturnSites = new HashSet<ulong>();
|
|
|
|
private readonly object _lazyCommitRangeGate = new object();
|
|
|
|
private readonly List<LazyCommitRange> _prtLazyCommitRanges = new List<LazyCommitRange>();
|
|
|
|
private ulong _returnFallbackTarget;
|
|
|
|
private static int _rawSentinelRecoveries;
|
|
|
|
private int _lastReportedRawSentinelRecoveries;
|
|
|
|
private static ulong _globalFallbackTarget;
|
|
|
|
private static ulong _globalUnresolvedReturnStub;
|
|
|
|
private nint _hostRspSlotStorage;
|
|
|
|
private bool _patchedEa020eLookupCall;
|
|
|
|
private ulong _entryReturnSentinelRip;
|
|
|
|
private readonly ulong[] _importLoopSignatures = new ulong[ImportLoopHistoryLength];
|
|
|
|
private readonly ulong[] _importLoopNidHashes = new ulong[ImportLoopHistoryLength];
|
|
|
|
private readonly ulong[] _importLoopReturnRips = new ulong[ImportLoopHistoryLength];
|
|
|
|
private int _importLoopSignatureCount;
|
|
|
|
private int _importLoopSignatureWriteIndex;
|
|
|
|
private int _importLoopPatternHits;
|
|
|
|
private long _importLoopPatternStartTimestamp;
|
|
|
|
private readonly Dictionary<string, ulong> _importNidHashCache = new Dictionary<string, ulong>(StringComparer.Ordinal);
|
|
|
|
private enum GuestThreadRunState
|
|
{
|
|
Ready,
|
|
Running,
|
|
Blocked,
|
|
Exited,
|
|
Faulted,
|
|
}
|
|
|
|
private enum GuestNativeCallExitReason
|
|
{
|
|
Returned,
|
|
Blocked,
|
|
ForcedExit,
|
|
Exception,
|
|
}
|
|
|
|
private sealed class GuestThreadState
|
|
{
|
|
public ulong ThreadHandle { get; init; }
|
|
|
|
public ulong EntryPoint { get; init; }
|
|
|
|
public ulong Argument { get; init; }
|
|
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
public int Priority { get; init; }
|
|
|
|
public ulong AffinityMask { get; init; }
|
|
|
|
public CpuContext Context { get; init; } = null!;
|
|
|
|
public GuestThreadRunState State { get; set; }
|
|
|
|
public ulong ExitValue { get; set; }
|
|
|
|
public string? BlockReason { get; set; }
|
|
|
|
public bool HasBlockedContinuation { get; set; }
|
|
|
|
public GuestCpuContinuation BlockedContinuation { get; set; }
|
|
|
|
public string? BlockWakeKey { get; set; }
|
|
|
|
public Func<int>? BlockResumeHandler { get; set; }
|
|
|
|
public Func<bool>? BlockWakeHandler { get; set; }
|
|
|
|
public long BlockDeadlineTimestamp { get; set; }
|
|
|
|
public long ImportCount;
|
|
|
|
public string? LastImportNid;
|
|
|
|
public ulong LastReturnRip;
|
|
|
|
public Thread? HostThread { get; set; }
|
|
|
|
public int HostThreadId;
|
|
|
|
public GuestContinuationRunner? ContinuationRunner { get; set; }
|
|
}
|
|
|
|
private sealed class GuestContinuationRunner : IDisposable
|
|
{
|
|
private readonly ulong _guestThreadHandle;
|
|
private readonly object _runGate = new();
|
|
private readonly AutoResetEvent _workAvailable = new(false);
|
|
private readonly AutoResetEvent _workCompleted = new(false);
|
|
private readonly Thread _thread;
|
|
private Action? _work;
|
|
private volatile bool _stopping;
|
|
|
|
public GuestContinuationRunner(ulong guestThreadHandle, ThreadPriority priority)
|
|
{
|
|
_guestThreadHandle = guestThreadHandle;
|
|
_thread = new Thread(ThreadMain)
|
|
{
|
|
IsBackground = true,
|
|
Name = $"GuestContinuation-{guestThreadHandle:X}",
|
|
Priority = priority,
|
|
};
|
|
_thread.Start();
|
|
}
|
|
|
|
public bool IsCurrentThread => ReferenceEquals(Thread.CurrentThread, _thread);
|
|
|
|
public void Run(Action work)
|
|
{
|
|
lock (_runGate)
|
|
{
|
|
_work = work;
|
|
_workAvailable.Set();
|
|
_workCompleted.WaitOne();
|
|
_work = null;
|
|
}
|
|
}
|
|
|
|
private void ThreadMain()
|
|
{
|
|
var previousGuestThreadHandle = GuestThreadExecution.EnterGuestThread(_guestThreadHandle);
|
|
if (LogThreadMode)
|
|
{
|
|
TraceThreadMode($"runner_start guest=0x{_guestThreadHandle:X16}");
|
|
}
|
|
try
|
|
{
|
|
while (true)
|
|
{
|
|
_workAvailable.WaitOne();
|
|
if (_stopping)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (LogThreadMode)
|
|
{
|
|
_threadModeCycleId = Interlocked.Increment(ref _threadModeCycleCounter);
|
|
TraceThreadMode($"runner_run guest=0x{_guestThreadHandle:X16}");
|
|
}
|
|
try
|
|
{
|
|
_work?.Invoke();
|
|
}
|
|
finally
|
|
{
|
|
_workCompleted.Set();
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (LogThreadMode)
|
|
{
|
|
TraceThreadMode($"runner_stop guest=0x{_guestThreadHandle:X16}");
|
|
}
|
|
GuestThreadExecution.RestoreGuestThread(previousGuestThreadHandle);
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_stopping = true;
|
|
_workAvailable.Set();
|
|
if (!IsCurrentThread)
|
|
{
|
|
_thread.Join(500);
|
|
}
|
|
_workAvailable.Dispose();
|
|
_workCompleted.Dispose();
|
|
}
|
|
}
|
|
|
|
private readonly record struct LazyCommitRange(ulong BaseAddress, ulong Size);
|
|
|
|
private readonly object _guestThreadGate = new object();
|
|
|
|
private readonly Queue<GuestThreadState> _readyGuestThreads = new Queue<GuestThreadState>();
|
|
|
|
// Once set, guest worker threads are unwound to the host at their next import
|
|
// dispatch and Pump refuses to start new ones. This must happen before the
|
|
// runtime frees trampolines or guest memory: workers that keep running native
|
|
// guest code during teardown execute freed pages (observed as an execute-AV in
|
|
// a MEM_FREE module region plus a CLR "UnmanagedCallersOnly" fatal from a Pump
|
|
// thread entering a freed stub).
|
|
private volatile bool _guestTeardownRequested;
|
|
|
|
private int _readyGuestThreadCount;
|
|
|
|
private readonly Dictionary<ulong, GuestThreadState> _guestThreads = new Dictionary<ulong, GuestThreadState>();
|
|
|
|
private int _guestThreadPumpDepth;
|
|
|
|
private bool _guestThreadYieldRequested;
|
|
|
|
private string? _guestThreadYieldReason;
|
|
|
|
private bool _forcedGuestExit;
|
|
|
|
private ulong _lastAvTraceRip;
|
|
|
|
private ulong _lastAvTraceType;
|
|
|
|
private ulong _lastAvTraceTarget;
|
|
|
|
private int _lastAvTraceRepeatCount;
|
|
|
|
private long _lastProgressTimestamp;
|
|
|
|
private int _stallWatchdogTriggered;
|
|
|
|
private volatile bool _stallWatchdogStop;
|
|
|
|
private Thread? _stallWatchdogThread;
|
|
|
|
private GCHandle _selfHandle;
|
|
|
|
private nint _selfHandlePtr;
|
|
|
|
private const int MinTlsPatchInstructionBytes = 9;
|
|
|
|
private delegate ulong ImportGatewayDelegate(nint backendHandle, int importIndex, nint argPackPtr);
|
|
private delegate int RawExceptionHandlerDelegate(void* exceptionInfo);
|
|
private static readonly ImportGatewayDelegate ImportGatewayDelegateInstance = ImportDispatchGatewayManaged;
|
|
private static readonly RawExceptionHandlerDelegate RawVectoredHandlerDelegateInstance = RawVectoredHandlerManaged;
|
|
private static readonly RawExceptionHandlerDelegate RawUnhandledFilterDelegateInstance = RawUnhandledFilterManaged;
|
|
|
|
private static readonly nint ImportGatewayPtr =
|
|
Marshal.GetFunctionPointerForDelegate(ImportGatewayDelegateInstance);
|
|
|
|
private static readonly nint RawVectoredHandlerPtrManaged =
|
|
Marshal.GetFunctionPointerForDelegate(RawVectoredHandlerDelegateInstance);
|
|
|
|
private static readonly nint RawUnhandledFilterPtrManaged =
|
|
Marshal.GetFunctionPointerForDelegate(RawUnhandledFilterDelegateInstance);
|
|
|
|
private const int CTX_MXCSR = 52;
|
|
|
|
private const int CTX_RAX = 120;
|
|
|
|
private const int CTX_RCX = 128;
|
|
|
|
private const int CTX_RDX = 136;
|
|
|
|
private const int CTX_RBX = 144;
|
|
|
|
private const int CTX_RSP = 152;
|
|
|
|
private const int CTX_RBP = 160;
|
|
|
|
private const int CTX_RSI = 168;
|
|
|
|
private const int CTX_RDI = 176;
|
|
|
|
private const int CTX_R8 = 184;
|
|
|
|
private const int CTX_R9 = 192;
|
|
|
|
private const int CTX_R10 = 200;
|
|
|
|
private const int CTX_R11 = 208;
|
|
|
|
private const int CTX_R12 = 216;
|
|
|
|
private const int CTX_R13 = 224;
|
|
|
|
private const int CTX_R14 = 232;
|
|
|
|
private const int CTX_R15 = 240;
|
|
|
|
private const int CTX_RIP = 248;
|
|
|
|
private ExceptionHandlerDelegate? _handlerDelegate;
|
|
|
|
private GCHandle _handlerHandle;
|
|
|
|
private ExceptionHandlerDelegate? _unhandledFilterDelegate;
|
|
|
|
private GCHandle _unhandledFilterHandle;
|
|
|
|
[ThreadStatic]
|
|
private static int _vectoredHandlerDepth;
|
|
|
|
private static int _nestedVehTraceCount;
|
|
|
|
// SHARPEMU_LOG_THREAD_MODE=1 — GC thread-mode corruption investigation. Traces
|
|
// every managed<->guest transition per guest-thread run cycle so the last event
|
|
// before a ReversePInvokeBadTransition FailFast identifies the corrupting path.
|
|
private static readonly bool LogThreadMode =
|
|
string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_THREAD_MODE"), "1", StringComparison.Ordinal);
|
|
|
|
private static long _threadModeCycleCounter;
|
|
|
|
[ThreadStatic]
|
|
private static long _threadModeCycleId;
|
|
|
|
[ThreadStatic]
|
|
private static int _threadModeGatewayDepth;
|
|
|
|
[ThreadStatic]
|
|
private static long _threadModeGatewayCalls;
|
|
|
|
[ThreadStatic]
|
|
private static bool _threadModeGatewayFirstLogged;
|
|
|
|
private static void TraceThreadMode(string message)
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[THREADMODE] {message} cycle={_threadModeCycleId} tid={GetCurrentThreadId()} managed={Environment.CurrentManagedThreadId}");
|
|
Console.Error.Flush();
|
|
}
|
|
|
|
private const uint MEM_COMMIT = 4096u;
|
|
|
|
private const uint MEM_RESERVE = 8192u;
|
|
|
|
private const uint MEM_FREE = 65536u;
|
|
|
|
private const uint MEM_RELEASE = 32768u;
|
|
|
|
private const uint PAGE_EXECUTE = 16u;
|
|
|
|
private const uint PAGE_EXECUTE_WRITECOPY = 128u;
|
|
|
|
private const uint PAGE_GUARD = 256u;
|
|
|
|
private const uint PAGE_NOACCESS = 1u;
|
|
|
|
private const uint DBG_PRINTEXCEPTION_C = 0x40010006u;
|
|
|
|
private const uint DBG_PRINTEXCEPTION_WIDE_C = 0x4001000Au;
|
|
|
|
private const uint MS_VC_THREADNAME_EXCEPTION = 0x406D1388u;
|
|
|
|
private const uint MSVC_CPP_EXCEPTION = 0xE06D7363u;
|
|
|
|
private const uint HostXmmSaveAreaSize = 0xA0u;
|
|
|
|
private const uint ContextAmd64ControlInteger = 0x00100003u;
|
|
|
|
private const uint ThreadGetContext = 0x0008u;
|
|
|
|
private const uint ThreadSuspendResume = 0x0002u;
|
|
|
|
private const int Win64ContextSize = 0x4D0;
|
|
|
|
private const int Win64ContextFlagsOffset = 0x30;
|
|
|
|
private readonly record struct HostThreadContextSnapshot(
|
|
bool IsValid,
|
|
ulong Rip,
|
|
ulong Rsp,
|
|
ulong Rbp,
|
|
ulong Rax,
|
|
ulong Rbx,
|
|
ulong Rcx,
|
|
ulong Rdx);
|
|
|
|
public string BackendName => "native-backend";
|
|
|
|
public string? LastError { get; private set; }
|
|
|
|
private unsafe static ulong ReadCtxU64(void* contextRecord, int offset)
|
|
{
|
|
return *(ulong*)((byte*)contextRecord + offset);
|
|
}
|
|
|
|
private unsafe static int CallNativeEntry(void* entry)
|
|
{
|
|
var nativeEntry = (delegate* unmanaged[Cdecl]<int>)entry;
|
|
if (!LogThreadMode)
|
|
{
|
|
return nativeEntry();
|
|
}
|
|
|
|
_threadModeGatewayFirstLogged = false;
|
|
var dispatchesBefore = _threadModeGatewayCalls;
|
|
TraceThreadMode($"native_enter entry=0x{(ulong)entry:X16}");
|
|
var result = nativeEntry();
|
|
TraceThreadMode($"native_exit result=0x{result:X8} dispatches={_threadModeGatewayCalls - dispatchesBefore}");
|
|
return result;
|
|
}
|
|
|
|
private unsafe static void WriteCtxU64(void* contextRecord, int offset, ulong value)
|
|
{
|
|
*(ulong*)((byte*)contextRecord + offset) = value;
|
|
}
|
|
|
|
private unsafe static uint ReadCtxU32(void* contextRecord, int offset)
|
|
{
|
|
return *(uint*)((byte*)contextRecord + offset);
|
|
}
|
|
|
|
private unsafe static void WriteCtxU32(void* contextRecord, int offset, uint value)
|
|
{
|
|
*(uint*)((byte*)contextRecord + offset) = value;
|
|
}
|
|
|
|
private bool HasActiveExecutionThread => ReferenceEquals(_activeExecutionBackend, this);
|
|
|
|
private CpuContext? ActiveCpuContext => HasActiveExecutionThread ? _activeCpuContext : _cpuContext;
|
|
|
|
private ulong ActiveEntryReturnSentinelRip
|
|
{
|
|
get => HasActiveExecutionThread ? _activeEntryReturnSentinelRip : _entryReturnSentinelRip;
|
|
set
|
|
{
|
|
if (HasActiveExecutionThread)
|
|
{
|
|
_activeEntryReturnSentinelRip = value;
|
|
}
|
|
else
|
|
{
|
|
_entryReturnSentinelRip = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private ulong ActiveGuestReturnSlotAddress =>
|
|
HasActiveExecutionThread ? _activeGuestReturnSlotAddress : 0;
|
|
|
|
private bool ActiveForcedGuestExit
|
|
{
|
|
get => HasActiveExecutionThread ? _activeForcedGuestExit : _forcedGuestExit;
|
|
set
|
|
{
|
|
if (HasActiveExecutionThread)
|
|
{
|
|
_activeForcedGuestExit = value;
|
|
}
|
|
else
|
|
{
|
|
_forcedGuestExit = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private bool ActiveGuestThreadYieldRequested
|
|
{
|
|
get => HasActiveExecutionThread ? _activeGuestThreadYieldRequested : _guestThreadYieldRequested;
|
|
set
|
|
{
|
|
if (HasActiveExecutionThread)
|
|
{
|
|
_activeGuestThreadYieldRequested = value;
|
|
}
|
|
else
|
|
{
|
|
_guestThreadYieldRequested = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private string? ActiveGuestThreadYieldReason
|
|
{
|
|
get => HasActiveExecutionThread ? _activeGuestThreadYieldReason : _guestThreadYieldReason;
|
|
set
|
|
{
|
|
if (HasActiveExecutionThread)
|
|
{
|
|
_activeGuestThreadYieldReason = value;
|
|
}
|
|
else
|
|
{
|
|
_guestThreadYieldReason = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
private static void RestoreActiveExecutionThread(
|
|
DirectExecutionBackend? previousBackend,
|
|
CpuContext? previousContext,
|
|
ulong previousSentinel,
|
|
ulong previousReturnSlotAddress,
|
|
bool previousForcedExit,
|
|
bool previousYieldRequested,
|
|
string? previousYieldReason)
|
|
{
|
|
_activeExecutionBackend = previousBackend;
|
|
_activeCpuContext = previousContext;
|
|
_activeEntryReturnSentinelRip = previousSentinel;
|
|
_activeGuestReturnSlotAddress = previousReturnSlotAddress;
|
|
_activeForcedGuestExit = previousForcedExit;
|
|
_activeGuestThreadYieldRequested = previousYieldRequested;
|
|
_activeGuestThreadYieldReason = previousYieldReason;
|
|
}
|
|
|
|
public unsafe DirectExecutionBackend(IModuleManager moduleManager)
|
|
{
|
|
_moduleManager = moduleManager ?? throw new ArgumentNullException("moduleManager");
|
|
_selfHandle = GCHandle.Alloc(this);
|
|
_selfHandlePtr = GCHandle.ToIntPtr(_selfHandle);
|
|
_guestTlsBaseTlsIndex = TlsAlloc();
|
|
_hostRspSlotTlsIndex = TlsAlloc();
|
|
if (_guestTlsBaseTlsIndex == uint.MaxValue || _hostRspSlotTlsIndex == uint.MaxValue)
|
|
{
|
|
throw new OutOfMemoryException("Failed to allocate native TLS slots");
|
|
}
|
|
nint kernel32 = GetModuleHandle("kernel32.dll");
|
|
_tlsGetValueAddress = kernel32 != 0 ? GetProcAddress(kernel32, "TlsGetValue") : 0;
|
|
if (_tlsGetValueAddress == 0)
|
|
{
|
|
throw new InvalidOperationException("Failed to resolve kernel32!TlsGetValue");
|
|
}
|
|
_queryPerformanceCounterAddress = kernel32 != 0 ? GetProcAddress(kernel32, "QueryPerformanceCounter") : 0;
|
|
if (_queryPerformanceCounterAddress == 0)
|
|
{
|
|
throw new InvalidOperationException("Failed to resolve kernel32!QueryPerformanceCounter");
|
|
}
|
|
_switchToThreadAddress = kernel32 != 0 ? GetProcAddress(kernel32, "SwitchToThread") : 0;
|
|
_sleepAddress = kernel32 != 0 ? GetProcAddress(kernel32, "Sleep") : 0;
|
|
if (_switchToThreadAddress == 0 || _sleepAddress == 0)
|
|
{
|
|
throw new InvalidOperationException("Failed to resolve kernel32 thread timing functions");
|
|
}
|
|
_tlsBaseAddress = (nint)VirtualAlloc(null, 4096u, 12288u, 4u);
|
|
if (_tlsBaseAddress == 0)
|
|
{
|
|
throw new OutOfMemoryException("Failed to allocate TLS base");
|
|
}
|
|
_ownedTlsBaseAddress = _tlsBaseAddress;
|
|
_ownsTlsBaseAddress = true;
|
|
SeedTlsLayout(_tlsBaseAddress);
|
|
_hostRspSlotStorage = (nint)VirtualAlloc(null, 4096u, 12288u, 4u);
|
|
if (_hostRspSlotStorage == 0)
|
|
{
|
|
throw new OutOfMemoryException("Failed to allocate host stack slot storage");
|
|
}
|
|
_unresolvedReturnStub = CreateUnresolvedReturnStub();
|
|
_guestReturnStub = CreateGuestReturnStub();
|
|
if (_guestReturnStub == 0)
|
|
{
|
|
throw new OutOfMemoryException("Failed to allocate guest return stub");
|
|
}
|
|
SetupExceptionHandler();
|
|
}
|
|
|
|
public bool TryExecute(CpuContext context, ulong entryPoint, Generation generation, IReadOnlyDictionary<ulong, string> importStubs, IReadOnlyDictionary<string, ulong> runtimeSymbols, CpuExecutionOptions executionOptions, out OrbisGen2Result result)
|
|
{
|
|
Console.Error.WriteLine("[LOADER][INFO] === Execute START ===");
|
|
Console.Error.WriteLine($"[LOADER][INFO] EntryPoint: 0x{entryPoint:X16}, ImportStubs: {importStubs.Count}");
|
|
Console.Error.WriteLine($"[LOADER][INFO] RuntimeSymbols: {runtimeSymbols.Count}");
|
|
Console.Error.WriteLine(_moduleManager.TryGetExport("QrZZdJ8XsX0", out ExportedFunction export) ? ("[LOADER][INFO] ExportCheck fputs: " + export.LibraryName + ":" + export.Name) : "[LOADER][INFO] ExportCheck fputs: MISSING");
|
|
Console.Error.WriteLine(_moduleManager.TryGetExport("L-Q3LEjIbgA", out ExportedFunction export2) ? ("[LOADER][INFO] ExportCheck map_direct: " + export2.LibraryName + ":" + export2.Name) : "[LOADER][INFO] ExportCheck map_direct: MISSING");
|
|
_entryPoint = entryPoint;
|
|
_cpuContext = context;
|
|
_returnFallbackTarget = context[CpuRegister.Rsi];
|
|
Volatile.Write(ref _globalFallbackTarget, _returnFallbackTarget);
|
|
Volatile.Write(ref _globalUnresolvedReturnStub, (ulong)_unresolvedReturnStub);
|
|
result = OrbisGen2Result.ORBIS_GEN2_OK;
|
|
LastError = null;
|
|
InitializeRuntimeSymbolIndex(runtimeSymbols);
|
|
ResetLazyDlsymStubState();
|
|
_recentImportTraceCount = 0;
|
|
_recentImportTraceWriteIndex = 0;
|
|
lock (_deferredBootstrapTraceGate)
|
|
{
|
|
_deferredBootstrapTraceCount = 0;
|
|
_deferredBootstrapTraceWriteIndex = 0;
|
|
}
|
|
_distinctImportNidHistoryCount = 0;
|
|
_distinctImportNidHistoryWriteIndex = 0;
|
|
_lastDistinctImportNid = string.Empty;
|
|
_consecutiveStrlenImports = 0;
|
|
_strlenPreludeLogged = false;
|
|
_logStrlenImports = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_STRLEN"), "1", StringComparison.Ordinal);
|
|
_logStrlenBursts = _logStrlenImports ||
|
|
string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_STRLEN_BURSTS"), "1", StringComparison.Ordinal);
|
|
_logGuestContext = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_CONTEXT"), "1", StringComparison.Ordinal);
|
|
_logGuestThreads = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_GUEST_THREADS"), "1", StringComparison.Ordinal);
|
|
_logUsleep = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_USLEEP"), "1", StringComparison.Ordinal);
|
|
_logBootstrap = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_BOOTSTRAP"), "1", StringComparison.Ordinal);
|
|
_logAllImports = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_ALL_IMPORTS"), "1", StringComparison.Ordinal);
|
|
_logImportFrames = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_IMPORT_FRAMES"), "1", StringComparison.Ordinal);
|
|
_logImportRecent = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_IMPORT_RECENT"), "1", StringComparison.Ordinal);
|
|
_logStackCheck = string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_STACK_CHK"), "1", StringComparison.Ordinal);
|
|
_probeImportReturn = Environment.GetEnvironmentVariable("SHARPEMU_PROBE_IMPORT_RET");
|
|
_importFilter = Environment.GetEnvironmentVariable("SHARPEMU_LOG_IMPORT_FILTER");
|
|
_disableImportLoopGuard = string.Equals(
|
|
Environment.GetEnvironmentVariable("SHARPEMU_DISABLE_IMPORT_LOOP_GUARD"),
|
|
"1",
|
|
StringComparison.Ordinal);
|
|
_importLoopGuardSeconds = GetImportLoopGuardSeconds();
|
|
_entryReturnSentinelRip = 0uL;
|
|
_forcedGuestExit = false;
|
|
_guestTeardownRequested = false;
|
|
_importLoopSignatureCount = 0;
|
|
_importLoopSignatureWriteIndex = 0;
|
|
_importLoopPatternHits = 0;
|
|
_importLoopPatternStartTimestamp = 0;
|
|
_importNidHashCache.Clear();
|
|
lock (_importResultLogSampleGate)
|
|
{
|
|
_importResultLogSamples.Clear();
|
|
}
|
|
lock (_lazyCommitRangeGate)
|
|
{
|
|
_prtLazyCommitRanges.Clear();
|
|
}
|
|
ClearGuestThreads();
|
|
_contextualUnresolvedReturnSites.Clear();
|
|
_stallWatchdogTriggered = 0;
|
|
_stallWatchdogStop = false;
|
|
_patchedEa020eLookupCall = false;
|
|
MarkExecutionProgress();
|
|
BindTlsBase(context);
|
|
var previousGuestThreadScheduler = GuestThreadExecution.Scheduler;
|
|
GuestThreadExecution.Scheduler = this;
|
|
try
|
|
{
|
|
if (!SetupImportStubs(importStubs))
|
|
{
|
|
if (string.IsNullOrEmpty(LastError))
|
|
{
|
|
LastError = "SetupImportStubs failed";
|
|
}
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_MEMORY_FAULT;
|
|
return false;
|
|
}
|
|
CreateTlsHandler();
|
|
PatchTlsPatterns();
|
|
return ExecuteEntry(context, entryPoint, out result);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LastError = "Exception in TryExecute: " + ex.GetType().Name + ": " + ex.Message;
|
|
Console.Error.WriteLine("[LOADER][ERROR] " + LastError);
|
|
Console.Error.WriteLine("[LOADER][ERROR] Stack trace: " + ex.StackTrace);
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_CPU_TRAP;
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
DrainDeferredBootstrapTraces();
|
|
GuestThreadExecution.Scheduler = previousGuestThreadScheduler;
|
|
Console.Error.WriteLine("[LOADER][INFO] === Execute END (LastError: " + (LastError ?? "null") + ") ===");
|
|
}
|
|
}
|
|
|
|
private bool SetupImportStubs(IReadOnlyDictionary<ulong, string> importStubs)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] Setting up {importStubs.Count} import stubs...");
|
|
ClearImportHandlerTrampolines();
|
|
_importEntries = new ImportStubEntry[importStubs.Count];
|
|
HashSet<ulong> hashSet = new HashSet<ulong>(importStubs.Keys);
|
|
int num = 0;
|
|
int num2 = 0;
|
|
int num3 = 0;
|
|
foreach (var (num4, text2) in importStubs)
|
|
{
|
|
_ = _moduleManager.TryGetExport(text2, out var resolvedExport);
|
|
_importEntries[num] = new ImportStubEntry(num4, text2, resolvedExport);
|
|
if ((num4 >= 34393242112L && num4 <= 34393242624L) || (num4 >= 34393258496L && num4 <= 34393259008L))
|
|
{
|
|
if (resolvedExport is not null)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] ImportStubMap: 0x{num4:X16} -> {resolvedExport.LibraryName}:{resolvedExport.Name} ({text2})");
|
|
}
|
|
else
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] ImportStubMap: 0x{num4:X16} -> {text2}");
|
|
}
|
|
}
|
|
if (TryResolveDirectImportTarget(text2, out var targetAddress, out var resolvedSymbol) && !hashSet.Contains(targetAddress))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][DEBUG] SetupImportStubs: Direct bridge for {text2} -> 0x{targetAddress:X16}");
|
|
if (!PatchImportStub((nint)(long)num4, (nint)(long)targetAddress))
|
|
{
|
|
LastError = $"Failed to patch direct import stub at 0x{num4:X16}";
|
|
return false;
|
|
}
|
|
num3++;
|
|
num2++;
|
|
if (num3 <= 48)
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][INFO] LLE redirect: 0x{num4:X16} {text2} -> {resolvedSymbol}@0x{targetAddress:X16}");
|
|
}
|
|
num++;
|
|
continue;
|
|
}
|
|
if (TryCreateNativeImportIntrinsic(text2, out var intrinsicAddress))
|
|
{
|
|
if (!PatchImportStub((nint)(long)num4, intrinsicAddress))
|
|
{
|
|
LastError = $"Failed to patch native intrinsic import stub at 0x{num4:X16}";
|
|
return false;
|
|
}
|
|
num2++;
|
|
num++;
|
|
continue;
|
|
}
|
|
nint num5 = CreateImportHandlerTrampoline(num);
|
|
if (num5 == 0)
|
|
{
|
|
LastError = "Failed to create import trampoline for NID " + text2;
|
|
return false;
|
|
}
|
|
Console.Error.WriteLine($"[LOADER][DEBUG] SetupImportStubs: Trampoline for {text2} -> 0x{num5:X16}");
|
|
if (!PatchImportStub((nint)num4, num5))
|
|
{
|
|
LastError = $"Failed to patch import stub at 0x{num4:X16}";
|
|
return false;
|
|
}
|
|
num2++;
|
|
num++;
|
|
}
|
|
Console.Error.WriteLine($"[LOADER][INFO] Setup {num2}/{importStubs.Count} import stubs (direct bridge, lle_redirects={num3})");
|
|
return num2 == importStubs.Count;
|
|
}
|
|
|
|
private unsafe bool TryCreateNativeImportIntrinsic(string nid, out nint address)
|
|
{
|
|
if (nid == "1jfXLRVzisc" &&
|
|
string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LOG_USLEEP"), "1", StringComparison.Ordinal))
|
|
{
|
|
address = 0;
|
|
return false;
|
|
}
|
|
|
|
ReadOnlySpan<byte> code = nid switch
|
|
{
|
|
"-2IRUCO--PM" =>
|
|
[
|
|
0x0F, 0x31,
|
|
0x48, 0xC1, 0xE2, 0x20,
|
|
0x48, 0x09, 0xD0,
|
|
0xC3,
|
|
],
|
|
"fgxnMeTNUtY" =>
|
|
[
|
|
0x48, 0x83, 0xEC, 0x28,
|
|
0x48, 0x8D, 0x4C, 0x24, 0x20,
|
|
0x48, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0xFF, 0xD0,
|
|
0x48, 0x8B, 0x44, 0x24, 0x20,
|
|
0x48, 0x83, 0xC4, 0x28,
|
|
0xC3,
|
|
],
|
|
"1jfXLRVzisc" =>
|
|
[
|
|
0x48, 0x85, 0xFF,
|
|
0x74, 0x1D,
|
|
0x48, 0x81, 0xFF, 0xE8, 0x03, 0x00, 0x00,
|
|
0x73, 0x17,
|
|
0x48, 0x83, 0xEC, 0x28,
|
|
0x48, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0xFF, 0xD0,
|
|
0x48, 0x83, 0xC4, 0x28,
|
|
0x31, 0xC0,
|
|
0xC3,
|
|
0x48, 0x89, 0xF8,
|
|
0x48, 0x05, 0xE7, 0x03, 0x00, 0x00,
|
|
0x31, 0xD2,
|
|
0xB9, 0xE8, 0x03, 0x00, 0x00,
|
|
0x48, 0xF7, 0xF1,
|
|
0x89, 0xC1,
|
|
0x48, 0x83, 0xEC, 0x28,
|
|
0x48, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
0xFF, 0xD0,
|
|
0x48, 0x83, 0xC4, 0x28,
|
|
0x31, 0xC0,
|
|
0xC3,
|
|
],
|
|
"j4ViWNHEgww" =>
|
|
[
|
|
0x31, 0xC0,
|
|
0x48, 0xC7, 0xC1, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
0xF2, 0xAE,
|
|
0x48, 0xF7, 0xD1,
|
|
0x48, 0x8D, 0x41, 0xFF,
|
|
0xC3,
|
|
],
|
|
"5jNubw4vlAA" =>
|
|
[
|
|
0x31, 0xC0,
|
|
0x48, 0x85, 0xF6,
|
|
0x74, 0x0E,
|
|
0x80, 0x3C, 0x07, 0x00,
|
|
0x74, 0x08,
|
|
0x48, 0xFF, 0xC0,
|
|
0x48, 0x39, 0xF0,
|
|
0x72, 0xF2,
|
|
0xC3,
|
|
],
|
|
"LHMrG7e8G78" or "WkkeywLJcgU" =>
|
|
[
|
|
0x31, 0xC0,
|
|
0x66, 0x83, 0x3C, 0x47, 0x00,
|
|
0x74, 0x05,
|
|
0x48, 0xFF, 0xC0,
|
|
0xEB, 0xF4,
|
|
0xC3,
|
|
],
|
|
"Ovb2dSJOAuE" =>
|
|
[
|
|
0x0F, 0xB6, 0x07,
|
|
0x0F, 0xB6, 0x16,
|
|
0x29, 0xD0,
|
|
0x75, 0x0C,
|
|
0x84, 0xD2,
|
|
0x74, 0x08,
|
|
0x48, 0xFF, 0xC7,
|
|
0x48, 0xFF, 0xC6,
|
|
0xEB, 0xEA,
|
|
0xC3,
|
|
],
|
|
"aesyjrHVWy4" =>
|
|
[
|
|
0x31, 0xC0,
|
|
0x48, 0x85, 0xD2,
|
|
0x74, 0x19,
|
|
0x0F, 0xB6, 0x07,
|
|
0x0F, 0xB6, 0x0E,
|
|
0x29, 0xC8,
|
|
0x75, 0x0F,
|
|
0x84, 0xC9,
|
|
0x74, 0x0B,
|
|
0x48, 0xFF, 0xC7,
|
|
0x48, 0xFF, 0xC6,
|
|
0x48, 0xFF, 0xCA,
|
|
0x75, 0xE7,
|
|
0xC3,
|
|
],
|
|
"pNtJdE3x49E" or "fV2xHER+bKE" =>
|
|
[
|
|
0x0F, 0xB7, 0x07,
|
|
0x0F, 0xB7, 0x16,
|
|
0x29, 0xD0,
|
|
0x75, 0x0F,
|
|
0x66, 0x85, 0xD2,
|
|
0x74, 0x0A,
|
|
0x48, 0x83, 0xC7, 0x02,
|
|
0x48, 0x83, 0xC6, 0x02,
|
|
0xEB, 0xE7,
|
|
0xC3,
|
|
],
|
|
"E8wCoUEbfzk" =>
|
|
[
|
|
0x31, 0xC0,
|
|
0x48, 0x85, 0xD2,
|
|
0x74, 0x1C,
|
|
0x0F, 0xB7, 0x07,
|
|
0x0F, 0xB7, 0x0E,
|
|
0x29, 0xC8,
|
|
0x75, 0x12,
|
|
0x66, 0x85, 0xC9,
|
|
0x74, 0x0D,
|
|
0x48, 0x83, 0xC7, 0x02,
|
|
0x48, 0x83, 0xC6, 0x02,
|
|
0x48, 0xFF, 0xCA,
|
|
0x75, 0xE4,
|
|
0xC3,
|
|
],
|
|
"kiZSXIWd9vg" =>
|
|
[
|
|
0x48, 0x89, 0xF8,
|
|
0x8A, 0x16,
|
|
0x88, 0x17,
|
|
0x48, 0xFF, 0xC6,
|
|
0x48, 0xFF, 0xC7,
|
|
0x84, 0xD2,
|
|
0x75, 0xF2,
|
|
0xC3,
|
|
],
|
|
"6sJWiWSRuqk" =>
|
|
[
|
|
0x48, 0x89, 0xF8,
|
|
0x48, 0x85, 0xD2,
|
|
0x74, 0x20,
|
|
0x8A, 0x0E,
|
|
0x88, 0x0F,
|
|
0x48, 0xFF, 0xC7,
|
|
0x48, 0xFF, 0xCA,
|
|
0x74, 0x14,
|
|
0x84, 0xC9,
|
|
0x74, 0x05,
|
|
0x48, 0xFF, 0xC6,
|
|
0xEB, 0xEB,
|
|
0xC6, 0x07, 0x00,
|
|
0x48, 0xFF, 0xC7,
|
|
0x48, 0xFF, 0xCA,
|
|
0x75, 0xF5,
|
|
0xC3,
|
|
],
|
|
// memcpy: guarded native copy. The first "rep movsb" intrinsic had no bounds/null
|
|
// checking and crashed with a read at -1 right after a null-dst memset recovery in
|
|
// the NGS2 audio streaming code path, so it was temporarily pulled in favor of the
|
|
// safe C# HLE memcpy. That detour costs a full import dispatch per call - far too
|
|
// slow for a function this hot - so this stub keeps the native leaf path and adds
|
|
// the same guards as memset below: it silently returns dst without copying when dst
|
|
// or src is null/low-page (< 0x10000) or outside canonical user space, or when len
|
|
// is 0 or absurd (> 512MB).
|
|
"Q3VBxCXhUHs" =>
|
|
[
|
|
0x48, 0x89, 0xF8, // mov rax, rdi (return dst)
|
|
0x48, 0x81, 0xFF, 0x00, 0x00, 0x01, 0x00, // cmp rdi, 0x10000
|
|
0x72, 0x31, // jb done
|
|
0x49, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, // mov r8, 0x800000000000
|
|
0x4C, 0x39, 0xC7, // cmp rdi, r8
|
|
0x73, 0x22, // jae done
|
|
0x48, 0x81, 0xFE, 0x00, 0x00, 0x01, 0x00, // cmp rsi, 0x10000
|
|
0x72, 0x19, // jb done
|
|
0x4C, 0x39, 0xC6, // cmp rsi, r8
|
|
0x73, 0x14, // jae done
|
|
0x48, 0x81, 0xFA, 0x00, 0x00, 0x00, 0x20, // cmp rdx, 0x20000000
|
|
0x77, 0x0B, // ja done
|
|
0x48, 0x85, 0xD2, // test rdx, rdx
|
|
0x74, 0x06, // jz done
|
|
0x48, 0x89, 0xD1, // mov rcx, rdx
|
|
0xFC, // cld
|
|
0xF3, 0xA4, // rep movsb
|
|
0xC3, // done: ret
|
|
],
|
|
// memset: guarded native fill. An earlier unguarded version crashed with a write AV
|
|
// at address 0 (NGS2 audio streaming init memsets a never-populated buffer field),
|
|
// so this one mirrors the HLE guards and silently returns dst without writing when
|
|
// dst is null/low-page (< 0x10000), dst is outside canonical user space, or len is
|
|
// absurd (> 512MB, e.g. the 0x27060035 / sign-extended values NGS2 passes). Routing
|
|
// memset through the HLE trampoline instead is not viable: parse/streaming loops
|
|
// issue hundreds of thousands of small memsets back-to-back, which crawls at
|
|
// dispatch speed and looks like a repeating-import hang to the loop guard.
|
|
// _sigprocmask: the HLE handler (KernelRuntimeCompatExports.Sigprocmask) is a pure
|
|
// no-op returning 0 that never writes oldset, so this is behavior-identical. The
|
|
// game's bundled libc queries the mask (set=NULL) once per iteration in its font/
|
|
// parse loops - hundreds of thousands of back-to-back calls that both crawl at
|
|
// dispatch speed and read as a repeating-import hang to the loop guard.
|
|
"6xVpy0Fdq+I" =>
|
|
[
|
|
0x31, 0xC0, // xor eax, eax
|
|
0xC3, // ret
|
|
],
|
|
"8zTFvBIAIN8" =>
|
|
[
|
|
0x48, 0x89, 0xF8, // mov rax, rdi (return dst)
|
|
0x48, 0x81, 0xFF, 0x00, 0x00, 0x01, 0x00, // cmp rdi, 0x10000
|
|
0x72, 0x2B, // jb done
|
|
0x49, 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, // mov r8, 0x800000000000
|
|
0x4C, 0x39, 0xC7, // cmp rdi, r8
|
|
0x73, 0x1C, // jae done
|
|
0x48, 0x81, 0xFA, 0x00, 0x00, 0x00, 0x20, // cmp rdx, 0x20000000
|
|
0x77, 0x13, // ja done
|
|
0x48, 0x85, 0xD2, // test rdx, rdx
|
|
0x74, 0x0E, // jz done
|
|
0x48, 0x89, 0xD1, // mov rcx, rdx
|
|
0x49, 0x89, 0xF9, // mov r9, rdi
|
|
0x89, 0xF0, // mov eax, esi
|
|
0xFC, // cld
|
|
0xF3, 0xAA, // rep stosb
|
|
0x4C, 0x89, 0xC8, // mov rax, r9
|
|
0xC3, // done: ret
|
|
],
|
|
_ => default,
|
|
};
|
|
if (code.IsEmpty)
|
|
{
|
|
address = 0;
|
|
return false;
|
|
}
|
|
|
|
const uint intrinsicAllocationSize = 128u;
|
|
void* memory = VirtualAlloc(null, intrinsicAllocationSize, 12288u, 64u);
|
|
if (memory == null)
|
|
{
|
|
address = 0;
|
|
return false;
|
|
}
|
|
|
|
code.CopyTo(new Span<byte>(memory, code.Length));
|
|
if (nid == "fgxnMeTNUtY")
|
|
{
|
|
*(nint*)((byte*)memory + 11) = _queryPerformanceCounterAddress;
|
|
}
|
|
else if (nid == "1jfXLRVzisc")
|
|
{
|
|
*(nint*)((byte*)memory + 20) = _switchToThreadAddress;
|
|
*(nint*)((byte*)memory + 64) = _sleepAddress;
|
|
}
|
|
uint oldProtect = 0;
|
|
if (!VirtualProtect(memory, intrinsicAllocationSize, 32u, &oldProtect))
|
|
{
|
|
VirtualFree(memory, 0u, 32768u);
|
|
address = 0;
|
|
return false;
|
|
}
|
|
|
|
FlushInstructionCache(GetCurrentProcess(), memory, (nuint)code.Length);
|
|
address = (nint)memory;
|
|
_importHandlerTrampolines.Add(address);
|
|
return true;
|
|
}
|
|
|
|
private bool TryResolveDirectImportTarget(string nid, out ulong targetAddress, out string resolvedSymbol)
|
|
{
|
|
targetAddress = 0uL;
|
|
resolvedSymbol = string.Empty;
|
|
if (string.IsNullOrWhiteSpace(nid) || string.Equals(nid, RuntimeStubNids.KernelDynlibDlsym, StringComparison.Ordinal))
|
|
{
|
|
return false;
|
|
}
|
|
if (IsHlePreferredNid(nid))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (_moduleManager.TryGetExport(nid, out ExportedFunction export))
|
|
{
|
|
if (IsKernelLibrary(export.LibraryName))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][DEBUG] TryResolveDirectImportTarget: {nid} ({export.LibraryName}:{export.Name}) -> HLE (kernel library)");
|
|
return false;
|
|
}
|
|
if (!IsLibcLibrary(export.LibraryName) || !PreferLleForLibcExport(export.Name))
|
|
{
|
|
return false;
|
|
}
|
|
if (TryResolveRuntimeSymbolAddress(nid, out var value2) && IsDirectImportTargetUsable(value2))
|
|
{
|
|
targetAddress = value2;
|
|
resolvedSymbol = nid;
|
|
return true;
|
|
}
|
|
foreach (string item in EnumerateRuntimeSymbolCandidates(export.Name))
|
|
{
|
|
if (TryResolveRuntimeSymbolAddress(item, out value2) && IsDirectImportTargetUsable(value2))
|
|
{
|
|
targetAddress = value2;
|
|
resolvedSymbol = item;
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
Console.Error.WriteLine($"[LOADER][DEBUG] TryResolveDirectImportTarget: {nid} not in HLE table, checking runtime symbols...");
|
|
|
|
if (TryResolveRuntimeSymbolAddress(nid, out var directValue) && IsDirectImportTargetUsable(directValue))
|
|
{
|
|
targetAddress = directValue;
|
|
resolvedSymbol = nid;
|
|
Console.Error.WriteLine($"[LOADER][DEBUG] TryResolveDirectImportTarget: {nid} -> runtime symbol 0x{targetAddress:X16}");
|
|
return true;
|
|
}
|
|
|
|
if (Aerolib.Instance.TryGetByNid(nid, out var symbolByNid))
|
|
{
|
|
if (!PreferLleForLibcExport(symbolByNid.ExportName))
|
|
{
|
|
return false;
|
|
}
|
|
foreach (string item in EnumerateRuntimeSymbolCandidates(symbolByNid.ExportName))
|
|
{
|
|
if (TryResolveRuntimeSymbolAddress(item, out var value) && IsDirectImportTargetUsable(value))
|
|
{
|
|
targetAddress = value;
|
|
resolvedSymbol = item;
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
private static bool IsHlePreferredNid(string nid)
|
|
{
|
|
return string.Equals(nid, "QrZZdJ8XsX0", StringComparison.Ordinal);
|
|
}
|
|
|
|
private static bool IsLibcLibrary(string libraryName)
|
|
{
|
|
return !string.IsNullOrWhiteSpace(libraryName) && libraryName.IndexOf("libc", StringComparison.OrdinalIgnoreCase) >= 0;
|
|
}
|
|
|
|
private static bool IsKernelLibrary(string libraryName)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(libraryName))
|
|
{
|
|
return false;
|
|
}
|
|
return libraryName.Equals("libKernel", StringComparison.OrdinalIgnoreCase) ||
|
|
libraryName.Equals("libKernelExt", StringComparison.OrdinalIgnoreCase) ||
|
|
libraryName.IndexOf("Kernel", StringComparison.OrdinalIgnoreCase) >= 0;
|
|
}
|
|
|
|
private bool PreferLleForLibcExport(string exportName)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(exportName))
|
|
{
|
|
return false;
|
|
}
|
|
if (string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_DISABLE_LLE_LIBC"), "1", StringComparison.Ordinal))
|
|
{
|
|
return false;
|
|
}
|
|
var value = Environment.GetEnvironmentVariable("SHARPEMU_LLE_LIBC_SAFE_ONLY");
|
|
if (string.Equals(value, "off", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(value, "false", StringComparison.OrdinalIgnoreCase) ||
|
|
string.Equals(value, "none", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return false;
|
|
}
|
|
if (string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_LLE_LIBC_ALL"), "1", StringComparison.Ordinal))
|
|
{
|
|
return true;
|
|
}
|
|
if (IsLibcAllocatorExport(exportName))
|
|
{
|
|
return CanUseLleLibcAllocatorFamily();
|
|
}
|
|
if (string.Equals(value, "0", StringComparison.Ordinal))
|
|
{
|
|
return true;
|
|
}
|
|
if (string.Equals(value, "1", StringComparison.Ordinal))
|
|
{
|
|
return IsSafeLleLibcExport(exportName);
|
|
}
|
|
return IsSafeLleLibcExport(exportName);
|
|
}
|
|
|
|
private bool CanUseLleLibcAllocatorFamily()
|
|
{
|
|
return HasUsableLleLibcExport("gQX+4GDQjpM", "malloc") &&
|
|
HasUsableLleLibcExport("tIhsqj0qsFE", "free") &&
|
|
HasUsableLleLibcExport("2X5agFjKxMc", "calloc") &&
|
|
HasUsableLleLibcExport("Y7aJ1uydPMo", "realloc") &&
|
|
HasUsableLleLibcExport("Ujf3KzMvRmI", "memalign") &&
|
|
HasUsableLleLibcExport("2Btkg8k24Zg", "aligned_alloc") &&
|
|
HasUsableLleLibcExport("cVSk9y8URbc", "posix_memalign");
|
|
}
|
|
|
|
private bool HasUsableLleLibcExport(string nid, string exportName)
|
|
{
|
|
if (TryResolveRuntimeSymbolAddress(nid, out var address) && IsDirectImportTargetUsable(address))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
foreach (var candidate in EnumerateRuntimeSymbolCandidates(exportName))
|
|
{
|
|
if (TryResolveRuntimeSymbolAddress(candidate, out address) && IsDirectImportTargetUsable(address))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private static bool IsLibcAllocatorExport(string exportName)
|
|
{
|
|
return exportName switch
|
|
{
|
|
"malloc" or
|
|
"free" or
|
|
"calloc" or
|
|
"realloc" or
|
|
"memalign" or
|
|
"aligned_alloc" or
|
|
"posix_memalign" or
|
|
"malloc_usable_size" => true,
|
|
_ => false,
|
|
};
|
|
}
|
|
|
|
private static bool IsSafeLleLibcExport(string exportName)
|
|
{
|
|
return exportName switch
|
|
{
|
|
"memmove" or
|
|
// memset/memcpy excluded: the raw LLE routines have no null/bounds guard and crash
|
|
// with an access violation on bad pointers (observed hit during Quake's CL_Init,
|
|
// where a still-unidentified upstream bug calls memcpy/memset with a null
|
|
// destination). Both are instead served by the guarded native intrinsics in
|
|
// TryCreateNativeImportIntrinsic, which fail safely without leaving the leaf path.
|
|
"memcmp" or
|
|
// _Getpctype must come from the game's own Dinkumware libc when one is bundled:
|
|
// it returns a pointer to that CRT's ctype bitmask table, whose bit layout
|
|
// (_DI=0x20, _SP=0x04, _BB=0x80, ...) differs from the MSVC-style table the HLE
|
|
// fallback used to serve. Serving the wrong layout made the bundled printf engine
|
|
// render every Sys_Error message as an empty string (isdigit misfired during
|
|
// %-directive parsing) and made mcpp drop 'a'-'f' from identifiers ("texture" ->
|
|
// "txtur", the 0x80 bit reads as _BB/control there). _Getptolower/_Getptoupper
|
|
// already resolve to the bundled module because no HLE export shadows them; this
|
|
// keeps _Getpctype consistent with them. It is a pure accessor returning a pointer
|
|
// to a const table, so it is also the cheapest possible LLE call - important
|
|
// because parsers hit it once per input character.
|
|
"_Getpctype" => true,
|
|
_ => false,
|
|
};
|
|
}
|
|
|
|
private static IEnumerable<string> EnumerateRuntimeSymbolCandidates(string exportName)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(exportName))
|
|
{
|
|
yield break;
|
|
}
|
|
yield return exportName;
|
|
if (exportName.StartsWith("_", StringComparison.Ordinal))
|
|
{
|
|
if (exportName.Length > 1)
|
|
{
|
|
yield return exportName[1..];
|
|
}
|
|
yield break;
|
|
}
|
|
yield return "_" + exportName;
|
|
}
|
|
|
|
private bool IsDirectImportTargetUsable(ulong address)
|
|
{
|
|
if (address < 65536 || IsUnresolvedSentinel(address) ||
|
|
_cpuContext is null || !TryGetVirtualMemory(_cpuContext, out var virtualMemory))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
foreach (var region in virtualMemory.SnapshotRegions())
|
|
{
|
|
if ((region.Protection & ProgramHeaderFlags.Execute) != 0 &&
|
|
ContainsAddress(region.VirtualAddress, region.MemorySize, address))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private unsafe void BindTlsBase(CpuContext context)
|
|
{
|
|
nint num = (nint)((context.FsBase != 0L) ? context.FsBase : context.GsBase);
|
|
if (num == 0)
|
|
{
|
|
num = _tlsBaseAddress;
|
|
}
|
|
if (!HasActiveExecutionThread && num != _tlsBaseAddress)
|
|
{
|
|
_tlsBaseAddress = num;
|
|
_ownsTlsBaseAddress = _tlsBaseAddress == _ownedTlsBaseAddress;
|
|
}
|
|
if (num != 0)
|
|
{
|
|
context.FsBase = (ulong)num;
|
|
context.GsBase = (ulong)num;
|
|
SeedTlsLayout(num);
|
|
TlsSetValue(_guestTlsBaseTlsIndex, num);
|
|
}
|
|
}
|
|
|
|
private unsafe static void SeedTlsLayout(nint tlsBase)
|
|
{
|
|
ulong num = (ulong)tlsBase;
|
|
*(ulong*)tlsBase = num;
|
|
if (*(ulong*)(tlsBase + 16) == 0)
|
|
{
|
|
*(ulong*)(tlsBase + 16) = num;
|
|
}
|
|
*(long*)(tlsBase + 40) = -4548986510476657986L;
|
|
*(ulong*)(tlsBase + 96) = num;
|
|
}
|
|
|
|
private unsafe void UpdateTlsHandlerBase(nint tlsBase)
|
|
{
|
|
if (_tlsHandlerAddress == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
uint oldProtect = default;
|
|
if (!VirtualProtect((void*)_tlsHandlerAddress, 16u, 64u, &oldProtect))
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
*(long*)((byte*)_tlsHandlerAddress + 2) = tlsBase;
|
|
}
|
|
finally
|
|
{
|
|
VirtualProtect((void*)_tlsHandlerAddress, 16u, oldProtect, &oldProtect);
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)_tlsHandlerAddress, 16u);
|
|
}
|
|
}
|
|
|
|
private unsafe bool TryPrepareGuestContextTransfer(
|
|
GuestCpuContinuation target,
|
|
out nint frameAddress,
|
|
out nint transferStub,
|
|
out string? error)
|
|
{
|
|
frameAddress = 0;
|
|
transferStub = 0;
|
|
error = null;
|
|
if (target.Rip < 65536 || target.Rsp == 0)
|
|
{
|
|
error = $"invalid guest context transfer target rip=0x{target.Rip:X16} rsp=0x{target.Rsp:X16}";
|
|
return false;
|
|
}
|
|
|
|
transferStub = GetOrCreateGuestContextTransferStub();
|
|
if (transferStub == 0)
|
|
{
|
|
error = "failed to allocate guest context transfer stub";
|
|
return false;
|
|
}
|
|
|
|
frameAddress = _guestContextTransferFrames.Value;
|
|
if (frameAddress == 0)
|
|
{
|
|
error = "failed to allocate guest context transfer frame";
|
|
return false;
|
|
}
|
|
|
|
var frame = (ulong*)frameAddress;
|
|
frame[0] = target.Rip;
|
|
frame[1] = target.Rsp;
|
|
frame[2] = target.Rax;
|
|
frame[3] = target.Rcx;
|
|
frame[4] = target.Rdx;
|
|
frame[5] = target.Rbx;
|
|
frame[6] = target.Rbp;
|
|
frame[7] = target.Rsi;
|
|
frame[8] = target.Rdi;
|
|
frame[9] = target.R8;
|
|
frame[10] = target.R9;
|
|
frame[11] = target.R12;
|
|
frame[12] = target.R13;
|
|
frame[13] = target.R14;
|
|
frame[14] = target.R15;
|
|
return true;
|
|
}
|
|
|
|
private unsafe nint GetOrCreateGuestContextTransferStub()
|
|
{
|
|
if (Volatile.Read(ref _guestContextTransferStub) != 0)
|
|
{
|
|
return _guestContextTransferStub;
|
|
}
|
|
|
|
lock (_guestContextTransferStubGate)
|
|
{
|
|
if (_guestContextTransferStub != 0)
|
|
{
|
|
return _guestContextTransferStub;
|
|
}
|
|
|
|
const uint stubSize = 128;
|
|
var code = (byte*)VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (code == null)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
var offset = 0;
|
|
void Emit(byte value) => code[offset++] = value;
|
|
void EmitLoadFromR11(int register, byte displacement)
|
|
{
|
|
Emit((byte)(0x49 | (register >= 8 ? 0x04 : 0x00)));
|
|
Emit(0x8B);
|
|
Emit((byte)(0x40 | ((register & 7) << 3) | 0x03));
|
|
Emit(displacement);
|
|
}
|
|
|
|
Emit(0x49); Emit(0x89); Emit(0xC3); // mov r11, rax
|
|
EmitLoadFromR11(10, 0); // target RIP
|
|
EmitLoadFromR11(4, 8); // rsp
|
|
EmitLoadFromR11(1, 24); // rcx
|
|
EmitLoadFromR11(2, 32); // rdx
|
|
EmitLoadFromR11(3, 40); // rbx
|
|
EmitLoadFromR11(5, 48); // rbp
|
|
EmitLoadFromR11(6, 56); // rsi
|
|
EmitLoadFromR11(7, 64); // rdi
|
|
EmitLoadFromR11(8, 72); // r8
|
|
EmitLoadFromR11(9, 80); // r9
|
|
EmitLoadFromR11(12, 88); // r12
|
|
EmitLoadFromR11(13, 96); // r13
|
|
EmitLoadFromR11(14, 104); // r14
|
|
EmitLoadFromR11(15, 112); // r15
|
|
EmitLoadFromR11(0, 16); // rax
|
|
Emit(0x41); Emit(0xFF); Emit(0xE2); // jmp r10
|
|
|
|
uint oldProtect = 0;
|
|
if (!VirtualProtect(code, stubSize, 32u, &oldProtect))
|
|
{
|
|
VirtualFree(code, 0u, 32768u);
|
|
return 0;
|
|
}
|
|
|
|
FlushInstructionCache(GetCurrentProcess(), code, stubSize);
|
|
Volatile.Write(ref _guestContextTransferStub, (nint)code);
|
|
return (nint)code;
|
|
}
|
|
}
|
|
|
|
private unsafe nint CreateImportHandlerTrampoline(int importIndex)
|
|
{
|
|
void* ptr = VirtualAlloc(null, 256u, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
return 0;
|
|
}
|
|
_importHandlerTrampolines.Add((nint)ptr);
|
|
try
|
|
{
|
|
byte* ptr2 = (byte*)ptr;
|
|
int num = 0;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 87;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 86;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 85;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 84;
|
|
ptr2[num++] = 85;
|
|
ptr2[num++] = 83;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 81;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 80;
|
|
ptr2[num++] = 81;
|
|
ptr2[num++] = 82;
|
|
ptr2[num++] = 86;
|
|
ptr2[num++] = 87;
|
|
// sub rsp, 0x80 — reserve 8*16 bytes for the SysV variadic XMM save area
|
|
ptr2[num++] = 0x48; ptr2[num++] = 0x81; ptr2[num++] = 0xEC;
|
|
ptr2[num++] = 0x80; ptr2[num++] = 0x00; ptr2[num++] = 0x00; ptr2[num++] = 0x00;
|
|
// movdqu [rsp + i*0x10], xmm{i} for i = 0..7 (F3 0F 7F /r, SIB=0x24 base=rsp, disp8)
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x44; ptr2[num++] = 0x24; ptr2[num++] = 0x00; // xmm0
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x4C; ptr2[num++] = 0x24; ptr2[num++] = 0x10; // xmm1
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x54; ptr2[num++] = 0x24; ptr2[num++] = 0x20; // xmm2
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x5C; ptr2[num++] = 0x24; ptr2[num++] = 0x30; // xmm3
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x64; ptr2[num++] = 0x24; ptr2[num++] = 0x40; // xmm4
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x6C; ptr2[num++] = 0x24; ptr2[num++] = 0x50; // xmm5
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x74; ptr2[num++] = 0x24; ptr2[num++] = 0x60; // xmm6
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x0F; ptr2[num++] = 0x7F; ptr2[num++] = 0x7C; ptr2[num++] = 0x24; ptr2[num++] = 0x70; // xmm7
|
|
// lea r12, [rsp + 0x80] — r12 = argpack base (the 12 pushed GP regs), past the XMM area
|
|
ptr2[num++] = 0x4C; ptr2[num++] = 0x8D; ptr2[num++] = 0xA4; ptr2[num++] = 0x24;
|
|
ptr2[num++] = 0x80; ptr2[num++] = 0x00; ptr2[num++] = 0x00; ptr2[num++] = 0x00;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 131;
|
|
ptr2[num++] = 236;
|
|
ptr2[num++] = 40;
|
|
ptr2[num++] = 185;
|
|
*(uint*)(ptr2 + num) = _hostRspSlotTlsIndex;
|
|
num += 4;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 184;
|
|
*(long*)(ptr2 + num) = _tlsGetValueAddress;
|
|
num += 8;
|
|
ptr2[num++] = byte.MaxValue;
|
|
ptr2[num++] = 208;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 131;
|
|
ptr2[num++] = 196;
|
|
ptr2[num++] = 40;
|
|
ptr2[num++] = 73;
|
|
ptr2[num++] = 137;
|
|
ptr2[num++] = 195;
|
|
ptr2[num++] = 73;
|
|
ptr2[num++] = 139;
|
|
ptr2[num++] = 35;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 131;
|
|
ptr2[num++] = 236;
|
|
ptr2[num++] = 40;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 185;
|
|
*(long*)(ptr2 + num) = _selfHandlePtr;
|
|
num += 8;
|
|
ptr2[num++] = 186;
|
|
*(int*)(ptr2 + num) = importIndex;
|
|
num += 4;
|
|
ptr2[num++] = 77;
|
|
ptr2[num++] = 137;
|
|
ptr2[num++] = 224;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 184;
|
|
*(long*)(ptr2 + num) = ImportGatewayPtr;
|
|
num += 8;
|
|
ptr2[num++] = byte.MaxValue;
|
|
ptr2[num++] = 208;
|
|
ptr2[num++] = 72;
|
|
ptr2[num++] = 131;
|
|
ptr2[num++] = 196;
|
|
ptr2[num++] = 40;
|
|
// movdqu xmm0, [r12 - 0x80] — reload the return XMM0 the gateway wrote into the
|
|
// argpack's xmm0 save slot (float/double returns: powf/logf/wcstod). SysV/Win64
|
|
// XMM regs are volatile across calls, so an unconditional reload is ABI-safe.
|
|
ptr2[num++] = 0xF3; ptr2[num++] = 0x41; ptr2[num++] = 0x0F; ptr2[num++] = 0x6F;
|
|
ptr2[num++] = 0x84; ptr2[num++] = 0x24; ptr2[num++] = 0x80; ptr2[num++] = 0xFF; ptr2[num++] = 0xFF; ptr2[num++] = 0xFF;
|
|
ptr2[num++] = 76;
|
|
ptr2[num++] = 137;
|
|
ptr2[num++] = 228;
|
|
ptr2[num++] = 95;
|
|
ptr2[num++] = 94;
|
|
ptr2[num++] = 90;
|
|
ptr2[num++] = 89;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 88;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 89;
|
|
ptr2[num++] = 91;
|
|
ptr2[num++] = 93;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 92;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 93;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 94;
|
|
ptr2[num++] = 65;
|
|
ptr2[num++] = 95;
|
|
ptr2[num++] = 195;
|
|
uint num2 = default(uint);
|
|
if (!VirtualProtect(ptr, 256u, 32u, &num2))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for import dispatch stub at 0x{(nint)ptr:X16}");
|
|
return 0;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, 256u);
|
|
return (nint)ptr;
|
|
}
|
|
catch
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
private unsafe bool PatchImportStub(nint address, nint trampoline)
|
|
{
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)address, 16u, 64u, &flNewProtect))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for import stub at 0x{address:X16}");
|
|
return false;
|
|
}
|
|
try
|
|
{
|
|
*(sbyte*)address = 72;
|
|
*(sbyte*)(address + 1) = -72;
|
|
*(long*)(address + 2) = trampoline;
|
|
*(sbyte*)(address + 10) = -1;
|
|
*(sbyte*)(address + 11) = -32;
|
|
*(sbyte*)(address + 12) = -112;
|
|
*(sbyte*)(address + 13) = -112;
|
|
*(sbyte*)(address + 14) = -112;
|
|
*(sbyte*)(address + 15) = -112;
|
|
return true;
|
|
}
|
|
finally
|
|
{
|
|
VirtualProtect((void*)address, 16u, flNewProtect, &flNewProtect);
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)address, 16u);
|
|
}
|
|
}
|
|
|
|
private unsafe void ClearImportHandlerTrampolines()
|
|
{
|
|
foreach (nint importHandlerTrampoline in _importHandlerTrampolines)
|
|
{
|
|
if (importHandlerTrampoline != 0)
|
|
{
|
|
VirtualFree((void*)importHandlerTrampoline, 0u, 32768u);
|
|
}
|
|
}
|
|
_importHandlerTrampolines.Clear();
|
|
}
|
|
|
|
private unsafe void CreateTlsHandler()
|
|
{
|
|
_tlsHandlerAddress = (nint)TryAllocateNearEntry(TlsHandlerRegionSize);
|
|
if (_tlsHandlerAddress == 0)
|
|
{
|
|
_tlsHandlerAddress = (nint)VirtualAlloc(null, TlsHandlerRegionSize, 12288u, 64u);
|
|
}
|
|
if (_tlsHandlerAddress == 0)
|
|
{
|
|
throw new OutOfMemoryException("Failed to allocate TLS handler");
|
|
}
|
|
byte* tlsHandlerAddress = (byte*)_tlsHandlerAddress;
|
|
int num = 0;
|
|
tlsHandlerAddress[num++] = 72;
|
|
tlsHandlerAddress[num++] = 131;
|
|
tlsHandlerAddress[num++] = 236;
|
|
tlsHandlerAddress[num++] = 40;
|
|
tlsHandlerAddress[num++] = 185;
|
|
*(uint*)(tlsHandlerAddress + num) = _guestTlsBaseTlsIndex;
|
|
num += 4;
|
|
tlsHandlerAddress[num++] = 72;
|
|
tlsHandlerAddress[num++] = 184;
|
|
*(long*)(tlsHandlerAddress + num) = _tlsGetValueAddress;
|
|
num += 8;
|
|
tlsHandlerAddress[num++] = byte.MaxValue;
|
|
tlsHandlerAddress[num++] = 208;
|
|
tlsHandlerAddress[num++] = 72;
|
|
tlsHandlerAddress[num++] = 131;
|
|
tlsHandlerAddress[num++] = 196;
|
|
tlsHandlerAddress[num++] = 40;
|
|
tlsHandlerAddress[num++] = 195;
|
|
_tlsPatchStubOffset = (num + 15) & ~15;
|
|
uint num2 = default(uint);
|
|
if (!VirtualProtect((void*)_tlsHandlerAddress, TlsHandlerRegionSize, 32u, &num2))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for TLS handler at 0x{_tlsHandlerAddress:X16}");
|
|
return;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)_tlsHandlerAddress, TlsHandlerRegionSize);
|
|
Console.Error.WriteLine($"[LOADER][INFO] TLS handler at 0x{_tlsHandlerAddress:X16}");
|
|
}
|
|
|
|
private unsafe static nint CreateUnresolvedReturnStub()
|
|
{
|
|
void* ptr = VirtualAlloc(null, 4096u, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
return 0;
|
|
}
|
|
byte* ptr2 = (byte*)ptr;
|
|
*ptr2 = 49;
|
|
ptr2[1] = 192;
|
|
ptr2[2] = 195;
|
|
for (int i = 3; i < 16; i++)
|
|
{
|
|
ptr2[i] = 144;
|
|
}
|
|
uint num = default(uint);
|
|
if (!VirtualProtect(ptr, 4096u, 32u, &num))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for unresolved return stub at 0x{(nint)ptr:X16}");
|
|
return 0;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, 16u);
|
|
return (nint)ptr;
|
|
}
|
|
|
|
private unsafe nint CreateGuestReturnStub()
|
|
{
|
|
const uint stubSize = 256u;
|
|
void* ptr = VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
byte* code = (byte*)ptr;
|
|
int offset = 0;
|
|
// TlsGetValue returns its TLS pointer in RAX. Preserve the guest return value
|
|
// above the 32-byte Windows shadow space while keeping the call site aligned.
|
|
EmitByte(code, ref offset, 0x48); // sub rsp, 0x30
|
|
EmitByte(code, ref offset, 0x83);
|
|
EmitByte(code, ref offset, 0xEC);
|
|
EmitByte(code, ref offset, 0x30);
|
|
EmitByte(code, ref offset, 0x48); // mov [rsp+0x20], rax
|
|
EmitByte(code, ref offset, 0x89);
|
|
EmitByte(code, ref offset, 0x44);
|
|
EmitByte(code, ref offset, 0x24);
|
|
EmitByte(code, ref offset, 0x20);
|
|
EmitByte(code, ref offset, 0xB9); // mov ecx, tlsIndex
|
|
EmitUInt32(code, ref offset, _hostRspSlotTlsIndex);
|
|
EmitByte(code, ref offset, 0x48); // mov rax, TlsGetValue
|
|
EmitByte(code, ref offset, 0xB8);
|
|
*(long*)(code + offset) = _tlsGetValueAddress;
|
|
offset += sizeof(ulong);
|
|
EmitByte(code, ref offset, 0xFF); // call rax
|
|
EmitByte(code, ref offset, 0xD0);
|
|
EmitByte(code, ref offset, 0x49); // mov r11, rax
|
|
EmitByte(code, ref offset, 0x89);
|
|
EmitByte(code, ref offset, 0xC3);
|
|
EmitByte(code, ref offset, 0x48); // mov rax, [rsp+0x20]
|
|
EmitByte(code, ref offset, 0x8B);
|
|
EmitByte(code, ref offset, 0x44);
|
|
EmitByte(code, ref offset, 0x24);
|
|
EmitByte(code, ref offset, 0x20);
|
|
EmitByte(code, ref offset, 0x48); // add rsp, 0x30
|
|
EmitByte(code, ref offset, 0x83);
|
|
EmitByte(code, ref offset, 0xC4);
|
|
EmitByte(code, ref offset, 0x30);
|
|
EmitByte(code, ref offset, 0x49); // mov rsp, [r11]
|
|
EmitByte(code, ref offset, 0x8B);
|
|
EmitByte(code, ref offset, 0x23);
|
|
EmitHostNonvolatileXmmRestore(code, ref offset);
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5F);
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5E);
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5D);
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5C);
|
|
EmitByte(code, ref offset, 0x5E);
|
|
EmitByte(code, ref offset, 0x5F);
|
|
EmitByte(code, ref offset, 0x5D);
|
|
EmitByte(code, ref offset, 0x5B);
|
|
EmitByte(code, ref offset, 0xC3);
|
|
|
|
uint oldProtect = default;
|
|
if (!VirtualProtect(ptr, stubSize, 32u, &oldProtect))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for guest return stub at 0x{(nint)ptr:X16}");
|
|
return 0;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, (nuint)offset);
|
|
return (nint)ptr;
|
|
}
|
|
|
|
private unsafe nint CreateExceptionHandlerTrampoline(nint managedHandler)
|
|
{
|
|
const uint stubSize = 256u;
|
|
void* ptr = VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
byte* code = (byte*)ptr;
|
|
int offset = 0;
|
|
// Native pre-filter: these exception codes are raised while the thread can be in
|
|
// cooperative GC mode (a C# throw is RaiseException(0xE0434352) on the throwing
|
|
// thread; FailFast/stack-overflow arrive mid-runtime-failure). Entering the managed
|
|
// handler then trips the CLR's reverse-P/Invoke check and kills the process with
|
|
// "Invalid Program: attempted to call a UnmanagedCallersOnly method from managed
|
|
// code" — this is why no managed throw (even one with a catch handler) ever
|
|
// survived inside the emulator. Continue the handler search without touching
|
|
// managed code; the CLR's own VEH handles its exceptions. MSVC C++ exceptions
|
|
// (Vulkan drivers, host CRT) are excluded too: the managed handler only ever
|
|
// returned CONTINUE_SEARCH for them.
|
|
ReadOnlySpan<uint> nonManagedExceptionCodes = [0xE0434352u, MSVC_CPP_EXCEPTION, 0xC0000409u, 0xC00000FDu];
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x8B); EmitByte(code, ref offset, 0x01); // mov rax, [rcx] (ExceptionRecord*)
|
|
EmitByte(code, ref offset, 0x8B); EmitByte(code, ref offset, 0x00); // mov eax, [rax] (ExceptionCode)
|
|
var passJumpOffsets = stackalloc int[nonManagedExceptionCodes.Length];
|
|
for (int i = 0; i < nonManagedExceptionCodes.Length; i++)
|
|
{
|
|
EmitByte(code, ref offset, 0x3D); // cmp eax, imm32
|
|
EmitUInt32(code, ref offset, nonManagedExceptionCodes[i]);
|
|
EmitByte(code, ref offset, 0x74); // je pass
|
|
passJumpOffsets[i] = offset;
|
|
EmitByte(code, ref offset, 0x00);
|
|
}
|
|
EmitByte(code, ref offset, 0xEB); EmitByte(code, ref offset, 0x03); // jmp over pass block
|
|
int passOffset = offset;
|
|
EmitByte(code, ref offset, 0x31); EmitByte(code, ref offset, 0xC0); // pass: xor eax, eax (EXCEPTION_CONTINUE_SEARCH)
|
|
EmitByte(code, ref offset, 0xC3); // ret
|
|
for (int i = 0; i < nonManagedExceptionCodes.Length; i++)
|
|
{
|
|
code[passJumpOffsets[i]] = checked((byte)(passOffset - (passJumpOffsets[i] + 1)));
|
|
}
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x54); // push r12
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x55); // push r13
|
|
EmitByte(code, ref offset, 0x49); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xE4); // mov r12, rsp
|
|
EmitByte(code, ref offset, 0x49); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xCD); // mov r13, rcx
|
|
EmitByte(code, ref offset, 0x65); EmitByte(code, ref offset, 0x48); // mov rax, gs:[8]
|
|
EmitByte(code, ref offset, 0x8B); EmitByte(code, ref offset, 0x04); EmitByte(code, ref offset, 0x25);
|
|
EmitUInt32(code, ref offset, 8u);
|
|
EmitByte(code, ref offset, 0x49); EmitByte(code, ref offset, 0x39); EmitByte(code, ref offset, 0xC4); // cmp r12, rax
|
|
EmitByte(code, ref offset, 0x0F); EmitByte(code, ref offset, 0x83); // jae guestStack
|
|
int aboveStackJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
EmitByte(code, ref offset, 0x65); EmitByte(code, ref offset, 0x48); // mov rax, gs:[0x10]
|
|
EmitByte(code, ref offset, 0x8B); EmitByte(code, ref offset, 0x04); EmitByte(code, ref offset, 0x25);
|
|
EmitUInt32(code, ref offset, 0x10u);
|
|
EmitByte(code, ref offset, 0x49); EmitByte(code, ref offset, 0x39); EmitByte(code, ref offset, 0xC4); // cmp r12, rax
|
|
EmitByte(code, ref offset, 0x0F); EmitByte(code, ref offset, 0x82); // jb guestStack
|
|
int belowStackJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xEC); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0x4C); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xE9); // mov rcx, r13
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0xB8);
|
|
*(nint*)(code + offset) = managedHandler;
|
|
offset += sizeof(nint);
|
|
EmitByte(code, ref offset, 0xFF); EmitByte(code, ref offset, 0xD0);
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xC4); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0xE9);
|
|
int hostRestoreJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
|
|
int guestStackOffset = offset;
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xEC); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0xB9);
|
|
EmitUInt32(code, ref offset, _hostRspSlotTlsIndex);
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0xB8);
|
|
*(nint*)(code + offset) = _tlsGetValueAddress;
|
|
offset += sizeof(nint);
|
|
EmitByte(code, ref offset, 0xFF); EmitByte(code, ref offset, 0xD0);
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xC4); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x85); EmitByte(code, ref offset, 0xC0); // test rax, rax
|
|
EmitByte(code, ref offset, 0x0F); EmitByte(code, ref offset, 0x84);
|
|
int missingTlsJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
EmitByte(code, ref offset, 0x4C); EmitByte(code, ref offset, 0x8B); EmitByte(code, ref offset, 0x18); // mov r11, [rax]
|
|
EmitByte(code, ref offset, 0x4D); EmitByte(code, ref offset, 0x85); EmitByte(code, ref offset, 0xDB); // test r11, r11
|
|
EmitByte(code, ref offset, 0x0F); EmitByte(code, ref offset, 0x84);
|
|
int missingHostStackJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
EmitByte(code, ref offset, 0x4C); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xDC); // mov rsp, r11
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xEC); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0x4C); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xE9); // mov rcx, r13
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0xB8);
|
|
*(nint*)(code + offset) = managedHandler;
|
|
offset += sizeof(nint);
|
|
EmitByte(code, ref offset, 0xFF); EmitByte(code, ref offset, 0xD0);
|
|
EmitByte(code, ref offset, 0x48); EmitByte(code, ref offset, 0x83); EmitByte(code, ref offset, 0xC4); EmitByte(code, ref offset, 0x28);
|
|
EmitByte(code, ref offset, 0xE9);
|
|
int guestRestoreJump = offset;
|
|
EmitUInt32(code, ref offset, 0u);
|
|
|
|
int passThroughOffset = offset;
|
|
EmitByte(code, ref offset, 0x31); EmitByte(code, ref offset, 0xC0); // xor eax, eax
|
|
int restoreOffset = offset;
|
|
EmitByte(code, ref offset, 0x4C); EmitByte(code, ref offset, 0x89); EmitByte(code, ref offset, 0xE4); // mov rsp, r12
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5D);
|
|
EmitByte(code, ref offset, 0x41); EmitByte(code, ref offset, 0x5C);
|
|
EmitByte(code, ref offset, 0xC3);
|
|
|
|
*(int*)(code + aboveStackJump) = guestStackOffset - (aboveStackJump + sizeof(int));
|
|
*(int*)(code + belowStackJump) = guestStackOffset - (belowStackJump + sizeof(int));
|
|
*(int*)(code + hostRestoreJump) = restoreOffset - (hostRestoreJump + sizeof(int));
|
|
*(int*)(code + missingTlsJump) = passThroughOffset - (missingTlsJump + sizeof(int));
|
|
*(int*)(code + missingHostStackJump) = passThroughOffset - (missingHostStackJump + sizeof(int));
|
|
*(int*)(code + guestRestoreJump) = restoreOffset - (guestRestoreJump + sizeof(int));
|
|
|
|
uint oldProtect = default;
|
|
if (!VirtualProtect(ptr, stubSize, 32u, &oldProtect))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for exception handler trampoline at 0x{(nint)ptr:X16}");
|
|
return 0;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, (nuint)offset);
|
|
return (nint)ptr;
|
|
}
|
|
|
|
private unsafe void* TryAllocateNearEntry(nuint size)
|
|
{
|
|
ulong entryPoint = _entryPoint;
|
|
ulong baseAddress = entryPoint & 0xFFFFFFFFFFFF0000uL;
|
|
for (long num = 0L; num <= 1879048192; num += 16777216)
|
|
{
|
|
if (TryAllocAt(baseAddress, num, size, out var memory))
|
|
{
|
|
return memory;
|
|
}
|
|
if (num != 0L && TryAllocAt(baseAddress, -num, size, out memory))
|
|
{
|
|
return memory;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private unsafe static bool TryAllocAt(ulong baseAddress, long signedDelta, nuint size, out void* memory)
|
|
{
|
|
memory = null;
|
|
ulong num;
|
|
if (signedDelta >= 0)
|
|
{
|
|
if (baseAddress > (ulong)(-1 - signedDelta))
|
|
{
|
|
return false;
|
|
}
|
|
num = baseAddress + (ulong)signedDelta;
|
|
}
|
|
else
|
|
{
|
|
ulong num2 = (ulong)(-signedDelta);
|
|
if (baseAddress < num2)
|
|
{
|
|
return false;
|
|
}
|
|
num = baseAddress - num2;
|
|
}
|
|
void* ptr = VirtualAlloc((void*)num, size, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
return false;
|
|
}
|
|
memory = ptr;
|
|
return true;
|
|
}
|
|
|
|
private unsafe void PatchTlsPatterns()
|
|
{
|
|
const ulong MaxScanBytes = 33554432uL;
|
|
ulong num = _entryPoint;
|
|
ulong num2 = num + MaxScanBytes;
|
|
int num3 = 0;
|
|
int num4 = 0;
|
|
int num9 = 0;
|
|
while (num < num2)
|
|
{
|
|
if (VirtualQuery((void*)num, out var lpBuffer, (nuint)sizeof(MEMORY_BASIC_INFORMATION64)) == 0 || lpBuffer.RegionSize == 0)
|
|
{
|
|
num += 4096uL;
|
|
continue;
|
|
}
|
|
ulong num5 = Math.Max(num, lpBuffer.BaseAddress);
|
|
ulong num6 = lpBuffer.BaseAddress + lpBuffer.RegionSize;
|
|
if (num6 > num2)
|
|
{
|
|
num6 = num2;
|
|
}
|
|
uint num7 = lpBuffer.Protect & 0xFF;
|
|
bool flag = lpBuffer.State == 4096 && (lpBuffer.Protect & PAGE_GUARD) == 0 && num7 != PAGE_NOACCESS;
|
|
bool flag2 = num7 == PAGE_EXECUTE || num7 == 32 || num7 == 64 || num7 == PAGE_EXECUTE_WRITECOPY;
|
|
if (flag && flag2 && num6 > num5 + MinTlsPatchInstructionBytes)
|
|
{
|
|
byte* ptr = (byte*)num5;
|
|
int scanBytes = (int)(num6 - num5);
|
|
for (int i = 0; i <= scanBytes - MinTlsPatchInstructionBytes; i++)
|
|
{
|
|
nint address = (nint)(ptr + i);
|
|
int remainingBytes = scanBytes - i;
|
|
if (TryPatchTlsLoadInstruction(address, ptr + i, remainingBytes))
|
|
{
|
|
num3++;
|
|
}
|
|
else if (remainingBytes >= 12 && TryPatchTlsImmediateStoreInstruction(address, ptr + i))
|
|
{
|
|
num9++;
|
|
}
|
|
else if (TryPatchStackCanaryInstruction(address, ptr + i))
|
|
{
|
|
num4++;
|
|
}
|
|
}
|
|
}
|
|
num = num6 > num ? num6 : num + 4096uL;
|
|
}
|
|
Console.Error.WriteLine($"[LOADER][INFO] Patched {num3} TLS loads, {num9} TLS stores, {num4} stack-canary accesses");
|
|
}
|
|
|
|
private unsafe bool IsPatternMatch(byte* ptr, byte[] pattern)
|
|
{
|
|
for (int i = 0; i < pattern.Length; i++)
|
|
{
|
|
if (ptr[i] != pattern[i])
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private unsafe bool TryPatchStackCanaryInstruction(nint address, byte* source)
|
|
{
|
|
if (*source != 100)
|
|
{
|
|
return false;
|
|
}
|
|
byte b = 0;
|
|
int num = 1;
|
|
int num2 = 8;
|
|
if (source[1] >= 64 && source[1] <= 79)
|
|
{
|
|
b = source[1];
|
|
num = 2;
|
|
num2 = 9;
|
|
}
|
|
byte b2 = source[num];
|
|
if (b2 != 139 && b2 != 51)
|
|
{
|
|
return false;
|
|
}
|
|
byte b3 = source[num + 1];
|
|
byte b4 = source[num + 2];
|
|
if (b3 >> 6 != 0 || (b3 & 7) != 4 || b4 != 37)
|
|
{
|
|
return false;
|
|
}
|
|
int num3 = *(int*)(source + num + 3);
|
|
if (num3 != 40)
|
|
{
|
|
return false;
|
|
}
|
|
int num4 = ((b3 >> 3) & 7) | (((b & 4) != 0) ? 8 : 0);
|
|
bool flag = (b & 8) != 0;
|
|
int num5 = 64;
|
|
if (flag)
|
|
{
|
|
num5 |= 8;
|
|
}
|
|
if (num4 >= 8)
|
|
{
|
|
num5 |= 5;
|
|
}
|
|
byte b5 = (byte)(0xC0 | ((num4 & 7) << 3) | (num4 & 7));
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)address, (nuint)num2, 64u, &flNewProtect))
|
|
{
|
|
return false;
|
|
}
|
|
try
|
|
{
|
|
*(byte*)address = (byte)num5;
|
|
*(sbyte*)(address + 1) = 49;
|
|
*(byte*)(address + 2) = b5;
|
|
for (int i = 3; i < num2; i++)
|
|
{
|
|
*(sbyte*)(address + i) = -112;
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
VirtualProtect((void*)address, (nuint)num2, flNewProtect, &flNewProtect);
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)address, (nuint)num2);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private unsafe bool TryPatchTlsLoadInstruction(nint address, byte* source, int availableLength)
|
|
{
|
|
if (availableLength < MinTlsPatchInstructionBytes)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var offset = 0;
|
|
while (offset < availableLength && source[offset] == 0x66)
|
|
{
|
|
offset++;
|
|
}
|
|
|
|
if (offset >= availableLength || source[offset] != 0x64)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
offset++;
|
|
if (offset >= availableLength)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var rex = (byte)0;
|
|
if (source[offset] >= 0x40 && source[offset] <= 0x4F)
|
|
{
|
|
rex = source[offset];
|
|
offset++;
|
|
}
|
|
|
|
if (offset + 7 > availableLength || source[offset] != 0x8B)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var modRm = source[offset + 1];
|
|
var sib = source[offset + 2];
|
|
if ((modRm >> 6) != 0 || (modRm & 7) != 4 || sib != 0x25)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var displacement = *(int*)(source + offset + 3);
|
|
if (displacement != 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var destinationRegister = ((modRm >> 3) & 7) | (((rex & 4) != 0) ? 8 : 0);
|
|
var instructionLength = offset + 7;
|
|
if (instructionLength < MinTlsPatchInstructionBytes)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return PatchTlsLoadInstruction(address, instructionLength, destinationRegister);
|
|
}
|
|
|
|
private unsafe bool PatchTlsLoadInstruction(nint address, int instructionLength, int destinationRegister)
|
|
{
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)address, (nuint)instructionLength, 64u, &flNewProtect))
|
|
{
|
|
return false;
|
|
}
|
|
try
|
|
{
|
|
*(sbyte*)address = -24;
|
|
long num = _tlsHandlerAddress;
|
|
long num2 = address + 5;
|
|
long num3 = num - num2;
|
|
if (num3 < int.MinValue || num3 > int.MaxValue)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][WARNING] TLS patch out of rel32 range at 0x{address:X16}");
|
|
return false;
|
|
}
|
|
|
|
*(int*)(address + 1) = (int)num3;
|
|
var offset = 5;
|
|
if (destinationRegister != 0)
|
|
{
|
|
*(byte*)(address + offset++) = (byte)(0x48 | (destinationRegister >= 8 ? 1 : 0));
|
|
*(byte*)(address + offset++) = 0x89;
|
|
*(byte*)(address + offset++) = (byte)(0xC0 | (destinationRegister & 7));
|
|
}
|
|
|
|
while (offset < instructionLength)
|
|
{
|
|
*(byte*)(address + offset++) = 0x90;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
finally
|
|
{
|
|
VirtualProtect((void*)address, (nuint)instructionLength, flNewProtect, &flNewProtect);
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)address, (nuint)instructionLength);
|
|
}
|
|
}
|
|
|
|
private unsafe bool TryPatchTlsImmediateStoreInstruction(nint address, byte* source)
|
|
{
|
|
if (source[0] != 100 || source[1] != 199 || source[2] != 4 || source[3] != 37)
|
|
{
|
|
return false;
|
|
}
|
|
int tlsOffset = *(int*)(source + 4);
|
|
int immediateValue = *(int*)(source + 8);
|
|
nint num = CreateTlsImmediateStoreHelper(tlsOffset, immediateValue);
|
|
if (num == 0)
|
|
{
|
|
return false;
|
|
}
|
|
return PatchCallSite(address, 12, num);
|
|
}
|
|
|
|
private unsafe nint CreateTlsImmediateStoreHelper(int tlsOffset, int immediateValue)
|
|
{
|
|
nint num = AllocateTlsPatchStub(32);
|
|
if (num == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
byte* ptr = (byte*)num;
|
|
int num2 = 0;
|
|
ptr[num2++] = 80;
|
|
ptr[num2++] = 232;
|
|
long num3 = _tlsHandlerAddress - (num + num2 + 4);
|
|
if (num3 < int.MinValue || num3 > int.MaxValue)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][WARNING] TLS store helper out of rel32 range at 0x{num:X16}");
|
|
return 0;
|
|
}
|
|
*(int*)(ptr + num2) = (int)num3;
|
|
num2 += 4;
|
|
ptr[num2++] = 199;
|
|
ptr[num2++] = 128;
|
|
*(int*)(ptr + num2) = tlsOffset;
|
|
num2 += 4;
|
|
*(int*)(ptr + num2) = immediateValue;
|
|
num2 += 4;
|
|
ptr[num2++] = 88;
|
|
ptr[num2++] = 195;
|
|
while (num2 < 32)
|
|
{
|
|
ptr[num2++] = 144;
|
|
}
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)num, 32u, 32u, &flNewProtect))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] VirtualProtect failed for TLS store helper at 0x{num:X16}");
|
|
return 0;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)num, 32u);
|
|
return num;
|
|
}
|
|
|
|
private unsafe nint AllocateTlsPatchStub(int size)
|
|
{
|
|
if (_tlsHandlerAddress == 0 || size <= 0)
|
|
{
|
|
return 0;
|
|
}
|
|
int num = (size + 15) & -16;
|
|
if (_tlsPatchStubOffset + num > TlsHandlerRegionSize)
|
|
{
|
|
Console.Error.WriteLine("[LOADER][WARNING] TLS patch stub region exhausted.");
|
|
return 0;
|
|
}
|
|
nint result = _tlsHandlerAddress + _tlsPatchStubOffset;
|
|
_tlsPatchStubOffset += num;
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)result, (nuint)num, 64u, &flNewProtect))
|
|
{
|
|
return 0;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private unsafe bool PatchCallSite(nint address, int instructionLength, nint target)
|
|
{
|
|
if (instructionLength < 5)
|
|
{
|
|
return false;
|
|
}
|
|
uint flNewProtect = default(uint);
|
|
if (!VirtualProtect((void*)address, (nuint)instructionLength, 64u, &flNewProtect))
|
|
{
|
|
return false;
|
|
}
|
|
try
|
|
{
|
|
long num = target - (address + 5);
|
|
if (num < int.MinValue || num > int.MaxValue)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][WARNING] TLS patch out of rel32 range at 0x{address:X16}");
|
|
return false;
|
|
}
|
|
*(byte*)address = 232;
|
|
*(int*)(address + 1) = (int)num;
|
|
for (int i = 5; i < instructionLength; i++)
|
|
{
|
|
*(byte*)(address + i) = 144;
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
VirtualProtect((void*)address, (nuint)instructionLength, flNewProtect, &flNewProtect);
|
|
FlushInstructionCache(GetCurrentProcess(), (void*)address, (nuint)instructionLength);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
private unsafe void TryPreReservePrtAperture(ulong baseAddress, ulong size)
|
|
{
|
|
if (VirtualQuery((void*)baseAddress, out var lpBuffer, (nuint)sizeof(MEMORY_BASIC_INFORMATION64)) != 0 && lpBuffer.State != 65536)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] PRT aperture at 0x{baseAddress:X16} already in use (state=0x{lpBuffer.State:X}), will use lazy-commit");
|
|
return;
|
|
}
|
|
ulong num = baseAddress;
|
|
ulong num2 = baseAddress + size;
|
|
int num3 = 0;
|
|
int num4 = 0;
|
|
nuint num5;
|
|
for (; num < num2; num += num5)
|
|
{
|
|
ulong val = num2 - num;
|
|
num5 = (nuint)Math.Min(2097152uL, val);
|
|
void* ptr = VirtualAlloc((void*)num, num5, 8192u, 4u);
|
|
if (ptr != null)
|
|
{
|
|
num3++;
|
|
}
|
|
else
|
|
{
|
|
num4++;
|
|
}
|
|
}
|
|
if (num4 == 0)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] Pre-reserved PRT aperture: 0x{baseAddress:X16}-0x{num2:X16} ({num3} chunks)");
|
|
}
|
|
else
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] Partial PRT aperture reserve: 0x{baseAddress:X16}-0x{num2:X16} ({num3} chunks OK, {num4} failed)");
|
|
}
|
|
ulong num6 = baseAddress;
|
|
ulong num7 = baseAddress + 67108864;
|
|
int num8 = 0;
|
|
for (; num6 < num7; num6 += 2097152)
|
|
{
|
|
void* ptr2 = VirtualAlloc((void*)num6, 2097152u, 4096u, 4u);
|
|
if (ptr2 != null)
|
|
{
|
|
num8++;
|
|
}
|
|
}
|
|
if (num8 > 0)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] Pre-committed PRT bootstrap: 0x{baseAddress:X16}-0x{num7:X16} ({num8 * 2}MB in {num8} chunks)");
|
|
}
|
|
else
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][WARN] Failed to pre-commit any PRT bootstrap chunks at 0x{baseAddress:X16}");
|
|
}
|
|
}
|
|
|
|
private void RegisterPrtLazyCommitRange(ulong baseAddress, ulong size)
|
|
{
|
|
if (size == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
bool added = false;
|
|
lock (_lazyCommitRangeGate)
|
|
{
|
|
if (!_prtLazyCommitRanges.Any(range => range.BaseAddress == baseAddress && range.Size == size))
|
|
{
|
|
_prtLazyCommitRanges.Add(new LazyCommitRange(baseAddress, size));
|
|
added = true;
|
|
}
|
|
}
|
|
|
|
if (added)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][TRACE] registered PRT lazy range: base=0x{baseAddress:X16} size=0x{size:X16}");
|
|
}
|
|
}
|
|
|
|
private bool IsGuestOwnedLazyCommitAddress(ulong address, out string owner)
|
|
{
|
|
var cpuContext = ActiveCpuContext;
|
|
if (cpuContext != null && TryGetVirtualMemory(cpuContext, out var virtualMemory))
|
|
{
|
|
foreach (var region in virtualMemory.SnapshotRegions())
|
|
{
|
|
if (ContainsAddress(region.VirtualAddress, region.MemorySize, address))
|
|
{
|
|
owner = $"vmem:0x{region.VirtualAddress:X16}+0x{region.MemorySize:X}";
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
lock (_lazyCommitRangeGate)
|
|
{
|
|
foreach (var range in _prtLazyCommitRanges)
|
|
{
|
|
if (ContainsAddress(range.BaseAddress, range.Size, address))
|
|
{
|
|
owner = $"prt:0x{range.BaseAddress:X16}+0x{range.Size:X}";
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
owner = string.Empty;
|
|
return false;
|
|
}
|
|
|
|
private static bool ContainsAddress(ulong baseAddress, ulong size, ulong address)
|
|
{
|
|
return size != 0 && address >= baseAddress && address - baseAddress < size;
|
|
}
|
|
|
|
public bool TryStartThread(CpuContext creatorContext, GuestThreadStartRequest request, out string? error)
|
|
{
|
|
error = null;
|
|
if (request.ThreadHandle == 0 || request.EntryPoint < 65536)
|
|
{
|
|
error = $"invalid thread start request: handle=0x{request.ThreadHandle:X16} entry=0x{request.EntryPoint:X16}";
|
|
return false;
|
|
}
|
|
if (!TryCreateGuestThreadState(creatorContext, request, out var thread, out error))
|
|
{
|
|
return false;
|
|
}
|
|
lock (_guestThreadGate)
|
|
{
|
|
_guestThreads[request.ThreadHandle] = thread;
|
|
_readyGuestThreads.Enqueue(thread);
|
|
Interlocked.Increment(ref _readyGuestThreadCount);
|
|
}
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][INFO] Scheduled guest thread '{thread.Name}' handle=0x{thread.ThreadHandle:X16} " +
|
|
$"entry=0x{thread.EntryPoint:X16} arg=0x{thread.Argument:X16} priority={thread.Priority} " +
|
|
$"host_priority={MapGuestThreadPriority(thread.Priority)} affinity=0x{thread.AffinityMask:X}");
|
|
Pump(creatorContext, "pthread_create");
|
|
return true;
|
|
}
|
|
|
|
public bool SupportsGuestContextTransfer => true;
|
|
|
|
public bool TryJoinThread(
|
|
CpuContext callerContext,
|
|
ulong threadHandle,
|
|
out ulong returnValue,
|
|
out string? error)
|
|
{
|
|
returnValue = 0;
|
|
error = null;
|
|
if (threadHandle == 0)
|
|
{
|
|
error = "thread handle is zero";
|
|
return false;
|
|
}
|
|
|
|
if (threadHandle == GuestThreadExecution.CurrentGuestThreadHandle)
|
|
{
|
|
error = "thread cannot join itself";
|
|
return false;
|
|
}
|
|
|
|
while (!ActiveForcedGuestExit)
|
|
{
|
|
Thread? hostThread;
|
|
lock (_guestThreadGate)
|
|
{
|
|
if (!_guestThreads.TryGetValue(threadHandle, out var thread))
|
|
{
|
|
error = $"unknown guest thread 0x{threadHandle:X16}";
|
|
return false;
|
|
}
|
|
|
|
if (thread.State == GuestThreadRunState.Exited)
|
|
{
|
|
returnValue = thread.ExitValue;
|
|
return true;
|
|
}
|
|
|
|
if (thread.State == GuestThreadRunState.Faulted)
|
|
{
|
|
error =
|
|
$"guest thread 0x{threadHandle:X16} faulted: " +
|
|
(thread.BlockReason ?? "unknown error");
|
|
return false;
|
|
}
|
|
|
|
hostThread = thread.HostThread;
|
|
}
|
|
|
|
if (hostThread is not null &&
|
|
!ReferenceEquals(hostThread, Thread.CurrentThread))
|
|
{
|
|
hostThread.Join(1);
|
|
}
|
|
else
|
|
{
|
|
Thread.Sleep(1);
|
|
}
|
|
}
|
|
|
|
error = "guest execution stopped while joining thread";
|
|
return false;
|
|
}
|
|
|
|
public void Pump(CpuContext callerContext, string reason)
|
|
{
|
|
_ = callerContext;
|
|
if (_guestTeardownRequested)
|
|
{
|
|
return;
|
|
}
|
|
var runSynchronously = string.Equals(reason, "entry_return", StringComparison.Ordinal);
|
|
WakeExpiredBlockedGuestThreads();
|
|
if (Volatile.Read(ref _readyGuestThreadCount) == 0)
|
|
{
|
|
return;
|
|
}
|
|
if (Interlocked.CompareExchange(ref _guestThreadPumpDepth, 1, 0) != 0)
|
|
{
|
|
return;
|
|
}
|
|
try
|
|
{
|
|
for (int i = 0; i < 8; i++)
|
|
{
|
|
GuestThreadState? thread = null;
|
|
lock (_guestThreadGate)
|
|
{
|
|
while (_readyGuestThreads.Count > 0)
|
|
{
|
|
var candidate = _readyGuestThreads.Dequeue();
|
|
Interlocked.Decrement(ref _readyGuestThreadCount);
|
|
if (candidate.State == GuestThreadRunState.Ready)
|
|
{
|
|
thread = candidate;
|
|
thread.State = GuestThreadRunState.Running;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (thread == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (runSynchronously)
|
|
{
|
|
RunGuestThread(thread, reason);
|
|
continue;
|
|
}
|
|
|
|
var hostThread = new Thread(() => RunGuestThread(thread, reason))
|
|
{
|
|
IsBackground = true,
|
|
Name = $"SharpEmu-{thread.Name}",
|
|
Priority = MapGuestThreadPriority(thread.Priority),
|
|
};
|
|
lock (_guestThreadGate)
|
|
{
|
|
thread.HostThread = hostThread;
|
|
}
|
|
hostThread.Start();
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
Volatile.Write(ref _guestThreadPumpDepth, 0);
|
|
}
|
|
}
|
|
|
|
public int WakeBlockedThreads(string wakeKey, int maxCount = int.MaxValue)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(wakeKey) || maxCount <= 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
var wakeCount = 0;
|
|
lock (_guestThreadGate)
|
|
{
|
|
foreach (var thread in _guestThreads.Values)
|
|
{
|
|
if (wakeCount >= maxCount)
|
|
{
|
|
break;
|
|
}
|
|
|
|
if (thread.State != GuestThreadRunState.Blocked ||
|
|
!thread.HasBlockedContinuation ||
|
|
!string.Equals(wakeKey, thread.BlockWakeKey, StringComparison.Ordinal))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (thread.BlockWakeHandler is not null && !thread.BlockWakeHandler())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
thread.State = GuestThreadRunState.Ready;
|
|
thread.BlockReason = null;
|
|
thread.BlockWakeHandler = null;
|
|
thread.BlockDeadlineTimestamp = 0;
|
|
_readyGuestThreads.Enqueue(thread);
|
|
Interlocked.Increment(ref _readyGuestThreadCount);
|
|
wakeCount++;
|
|
}
|
|
}
|
|
|
|
if (wakeCount != 0)
|
|
{
|
|
if (_logGuestThreads)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] guest_threads.wake key={wakeKey} count={wakeCount}");
|
|
}
|
|
|
|
// Pump or the readied thread waits for an import dispatch that never comes.
|
|
if (_cpuContext is { } wakeContext)
|
|
{
|
|
Pump(wakeContext, "wake");
|
|
}
|
|
}
|
|
|
|
return wakeCount;
|
|
}
|
|
|
|
public IReadOnlyList<GuestThreadSnapshot> SnapshotThreads()
|
|
{
|
|
lock (_guestThreadGate)
|
|
{
|
|
var snapshots = new GuestThreadSnapshot[_guestThreads.Count];
|
|
var index = 0;
|
|
foreach (var thread in _guestThreads.Values)
|
|
{
|
|
snapshots[index++] = new GuestThreadSnapshot(
|
|
thread.ThreadHandle,
|
|
thread.Name,
|
|
thread.State.ToString(),
|
|
Interlocked.Read(ref thread.ImportCount),
|
|
Volatile.Read(ref thread.LastImportNid),
|
|
Volatile.Read(ref thread.LastReturnRip),
|
|
thread.BlockReason);
|
|
}
|
|
|
|
return snapshots;
|
|
}
|
|
}
|
|
|
|
private void RegisterBlockedGuestThreadContinuation(
|
|
ulong guestThreadHandle,
|
|
GuestCpuContinuation continuation,
|
|
string wakeKey,
|
|
Func<int>? resumeHandler,
|
|
Func<bool>? wakeHandler,
|
|
long blockDeadlineTimestamp)
|
|
{
|
|
if (guestThreadHandle == 0 || continuation.Rip < 65536 || continuation.Rsp == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
lock (_guestThreadGate)
|
|
{
|
|
if (!_guestThreads.TryGetValue(guestThreadHandle, out var thread))
|
|
{
|
|
return;
|
|
}
|
|
|
|
thread.BlockedContinuation = continuation;
|
|
thread.HasBlockedContinuation = true;
|
|
thread.BlockWakeKey = wakeKey;
|
|
thread.BlockResumeHandler = resumeHandler;
|
|
thread.BlockWakeHandler = wakeHandler;
|
|
thread.BlockDeadlineTimestamp = blockDeadlineTimestamp;
|
|
}
|
|
}
|
|
|
|
private int WakeExpiredBlockedGuestThreads()
|
|
{
|
|
var now = Stopwatch.GetTimestamp();
|
|
var wakeCount = 0;
|
|
lock (_guestThreadGate)
|
|
{
|
|
foreach (var thread in _guestThreads.Values)
|
|
{
|
|
if (thread.State != GuestThreadRunState.Blocked ||
|
|
!thread.HasBlockedContinuation ||
|
|
thread.BlockDeadlineTimestamp == 0 ||
|
|
thread.BlockDeadlineTimestamp > now)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
thread.State = GuestThreadRunState.Ready;
|
|
thread.BlockReason = null;
|
|
thread.BlockWakeHandler = null;
|
|
thread.BlockDeadlineTimestamp = 0;
|
|
_readyGuestThreads.Enqueue(thread);
|
|
Interlocked.Increment(ref _readyGuestThreadCount);
|
|
wakeCount++;
|
|
}
|
|
}
|
|
|
|
if (wakeCount != 0 && _logGuestThreads)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] guest_threads.timeout_wake count={wakeCount}");
|
|
}
|
|
|
|
return wakeCount;
|
|
}
|
|
|
|
private void PumpUntilGuestThreadsIdle(CpuContext callerContext, string reason)
|
|
{
|
|
var nextSnapshotTimestamp = Stopwatch.GetTimestamp() + Stopwatch.Frequency;
|
|
while (!ActiveForcedGuestExit)
|
|
{
|
|
Pump(callerContext, reason);
|
|
|
|
var threads = SnapshotGuestThreads();
|
|
if (threads.Length == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var hasReadyThread = false;
|
|
var hasRunningThread = false;
|
|
var hasBlockedThread = false;
|
|
foreach (var thread in threads)
|
|
{
|
|
switch (thread.State)
|
|
{
|
|
case GuestThreadRunState.Ready:
|
|
hasReadyThread = true;
|
|
break;
|
|
case GuestThreadRunState.Running:
|
|
hasRunningThread = true;
|
|
break;
|
|
case GuestThreadRunState.Blocked:
|
|
hasBlockedThread = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (hasReadyThread)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (!hasRunningThread && !hasBlockedThread)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (_logGuestThreads && Stopwatch.GetTimestamp() >= nextSnapshotTimestamp)
|
|
{
|
|
foreach (var thread in threads)
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][TRACE] guest_thread.idle_wait reason={reason} handle=0x{thread.ThreadHandle:X16} " +
|
|
$"name='{thread.Name}' state={thread.State} imports={Interlocked.Read(ref thread.ImportCount)} " +
|
|
$"nid={Volatile.Read(ref thread.LastImportNid) ?? "none"} ret=0x{Volatile.Read(ref thread.LastReturnRip):X16} " +
|
|
$"block={thread.BlockReason ?? "none"}");
|
|
}
|
|
|
|
nextSnapshotTimestamp = Stopwatch.GetTimestamp() + Stopwatch.Frequency;
|
|
}
|
|
|
|
Thread.Sleep(1);
|
|
}
|
|
}
|
|
|
|
private GuestThreadState[] SnapshotGuestThreads()
|
|
{
|
|
lock (_guestThreadGate)
|
|
{
|
|
return _guestThreads.Values.ToArray();
|
|
}
|
|
}
|
|
|
|
public bool TryCallGuestFunction(
|
|
CpuContext callerContext,
|
|
ulong entryPoint,
|
|
ulong arg0,
|
|
ulong arg1,
|
|
ulong stackAddress,
|
|
ulong stackSize,
|
|
string reason,
|
|
out string? error)
|
|
{
|
|
error = null;
|
|
if (entryPoint < 65536)
|
|
{
|
|
error = $"invalid guest callback entry=0x{entryPoint:X16}";
|
|
return false;
|
|
}
|
|
if (!TryGetVirtualMemory(callerContext, out var virtualMemory))
|
|
{
|
|
error = "caller context memory is not backed by IVirtualMemory";
|
|
return false;
|
|
}
|
|
|
|
ulong callbackStackBase;
|
|
ulong callbackStackSize;
|
|
if (stackAddress != 0 && stackSize >= 0x100)
|
|
{
|
|
callbackStackBase = stackAddress;
|
|
callbackStackSize = stackSize;
|
|
}
|
|
else
|
|
{
|
|
if (!TryMapGuestThreadRegion(virtualMemory, GuestThreadStackBaseAddress, GuestThreadStackSize, ProgramHeaderFlags.Read | ProgramHeaderFlags.Write, out callbackStackBase, out error))
|
|
{
|
|
return false;
|
|
}
|
|
callbackStackSize = GuestThreadStackSize;
|
|
}
|
|
|
|
var trackedMemory = new TrackedCpuMemory(virtualMemory);
|
|
var fallbackTlsBase = unchecked((ulong)_tlsBaseAddress);
|
|
var context = new CpuContext(trackedMemory, callerContext.TargetGeneration)
|
|
{
|
|
Rip = entryPoint,
|
|
Rflags = 0x202,
|
|
FsBase = callerContext.FsBase != 0 ? callerContext.FsBase : fallbackTlsBase,
|
|
GsBase = callerContext.GsBase != 0 ? callerContext.GsBase : fallbackTlsBase,
|
|
};
|
|
context[CpuRegister.Rsp] = AlignDown(callbackStackBase + callbackStackSize, 16) - sizeof(ulong);
|
|
context[CpuRegister.Rdi] = arg0;
|
|
context[CpuRegister.Rsi] = arg1;
|
|
context[CpuRegister.Rdx] = 0;
|
|
context[CpuRegister.Rcx] = 0;
|
|
context[CpuRegister.R8] = 0;
|
|
context[CpuRegister.R9] = 0;
|
|
if (!InitializeGuestThreadFrame(context))
|
|
{
|
|
error = "failed to initialize guest callback stack";
|
|
return false;
|
|
}
|
|
|
|
var previousLastError = LastError;
|
|
try
|
|
{
|
|
LastError = null;
|
|
var exitReason = ExecuteGuestThreadEntry(context, entryPoint, reason, out var callbackReason);
|
|
if (exitReason is GuestNativeCallExitReason.Exception or GuestNativeCallExitReason.ForcedExit)
|
|
{
|
|
error = callbackReason ?? LastError ?? "guest callback failed";
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
finally
|
|
{
|
|
LastError = previousLastError;
|
|
}
|
|
}
|
|
|
|
public bool TryCallGuestContinuation(
|
|
CpuContext callerContext,
|
|
GuestCpuContinuation continuation,
|
|
string reason,
|
|
out string? error)
|
|
{
|
|
error = null;
|
|
if (continuation.Rip < 65536 || continuation.Rsp == 0)
|
|
{
|
|
error = $"invalid guest continuation rip=0x{continuation.Rip:X16} rsp=0x{continuation.Rsp:X16}";
|
|
return false;
|
|
}
|
|
if (!TryGetVirtualMemory(callerContext, out var virtualMemory))
|
|
{
|
|
error = "caller context memory is not backed by IVirtualMemory";
|
|
return false;
|
|
}
|
|
|
|
var trackedMemory = new TrackedCpuMemory(virtualMemory);
|
|
var fallbackTlsBase = unchecked((ulong)_tlsBaseAddress);
|
|
var context = new CpuContext(trackedMemory, callerContext.TargetGeneration)
|
|
{
|
|
Rip = continuation.Rip,
|
|
Rflags = continuation.Rflags == 0 ? 0x202UL : continuation.Rflags,
|
|
FsBase = callerContext.FsBase != 0 ? callerContext.FsBase : (continuation.FsBase != 0 ? continuation.FsBase : fallbackTlsBase),
|
|
GsBase = callerContext.GsBase != 0 ? callerContext.GsBase : (continuation.GsBase != 0 ? continuation.GsBase : fallbackTlsBase),
|
|
};
|
|
|
|
context[CpuRegister.Rax] = continuation.Rax;
|
|
context[CpuRegister.Rcx] = continuation.Rcx;
|
|
context[CpuRegister.Rdx] = continuation.Rdx;
|
|
context[CpuRegister.Rbx] = continuation.Rbx;
|
|
context[CpuRegister.Rbp] = continuation.Rbp;
|
|
context[CpuRegister.Rsi] = continuation.Rsi;
|
|
context[CpuRegister.Rdi] = continuation.Rdi;
|
|
context[CpuRegister.R8] = continuation.R8;
|
|
context[CpuRegister.R9] = continuation.R9;
|
|
context[CpuRegister.R12] = continuation.R12;
|
|
context[CpuRegister.R13] = continuation.R13;
|
|
context[CpuRegister.R14] = continuation.R14;
|
|
context[CpuRegister.R15] = continuation.R15;
|
|
context[CpuRegister.Rsp] = continuation.Rsp;
|
|
|
|
var exitReason = GuestNativeCallExitReason.Exception;
|
|
string? callbackReason = null;
|
|
string? callbackLastError = null;
|
|
Exception? callbackException = null;
|
|
var currentGuestThreadHandle = GuestThreadExecution.CurrentGuestThreadHandle;
|
|
var currentFiberAddress = GuestThreadExecution.CurrentFiberAddress;
|
|
var currentGuestThreadState = _activeGuestThreadState;
|
|
|
|
void RunContinuation()
|
|
{
|
|
var restoreGuestThread = currentGuestThreadHandle != 0 &&
|
|
GuestThreadExecution.CurrentGuestThreadHandle != currentGuestThreadHandle;
|
|
var previousGuestThreadHandle = restoreGuestThread
|
|
? GuestThreadExecution.EnterGuestThread(currentGuestThreadHandle)
|
|
: 0UL;
|
|
var restoreFiber = currentFiberAddress != 0 &&
|
|
GuestThreadExecution.CurrentFiberAddress != currentFiberAddress;
|
|
var previousFiberAddress = restoreFiber
|
|
? GuestThreadExecution.EnterFiber(currentFiberAddress)
|
|
: 0UL;
|
|
var previousGuestThreadState = _activeGuestThreadState;
|
|
_activeGuestThreadState = currentGuestThreadState;
|
|
var previousLastError = LastError;
|
|
try
|
|
{
|
|
TraceGuestContext(
|
|
$"continuation-enter reason={reason} managed={Environment.CurrentManagedThreadId} guest=0x{GuestThreadExecution.CurrentGuestThreadHandle:X16} fiber=0x{GuestThreadExecution.CurrentFiberAddress:X16} captured_guest=0x{currentGuestThreadHandle:X16} captured_fiber=0x{currentFiberAddress:X16} restore_guest={restoreGuestThread} restore_fiber={restoreFiber}");
|
|
LastError = null;
|
|
exitReason = ExecuteGuestContinuationEntry(
|
|
context,
|
|
continuation.Rip,
|
|
continuation.ReturnSlotAddress,
|
|
reason,
|
|
out callbackReason);
|
|
callbackLastError = LastError;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
callbackException = ex;
|
|
callbackReason = ex.GetType().Name + ": " + ex.Message;
|
|
exitReason = GuestNativeCallExitReason.Exception;
|
|
}
|
|
finally
|
|
{
|
|
_activeGuestThreadState = previousGuestThreadState;
|
|
TraceGuestContext(
|
|
$"continuation-exit reason={reason} managed={Environment.CurrentManagedThreadId} guest=0x{GuestThreadExecution.CurrentGuestThreadHandle:X16} fiber=0x{GuestThreadExecution.CurrentFiberAddress:X16} exit={exitReason}");
|
|
LastError = previousLastError;
|
|
if (restoreFiber)
|
|
{
|
|
GuestThreadExecution.RestoreFiber(previousFiberAddress);
|
|
}
|
|
if (restoreGuestThread)
|
|
{
|
|
GuestThreadExecution.RestoreGuestThread(previousGuestThreadHandle);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (currentGuestThreadHandle != 0)
|
|
{
|
|
GuestContinuationRunner? runner;
|
|
lock (_guestThreadGate)
|
|
{
|
|
if (_guestThreads.TryGetValue(currentGuestThreadHandle, out var guestThread))
|
|
{
|
|
runner = guestThread.ContinuationRunner ??= new GuestContinuationRunner(
|
|
currentGuestThreadHandle,
|
|
MapGuestThreadPriority(guestThread.Priority));
|
|
}
|
|
else
|
|
{
|
|
runner = null;
|
|
}
|
|
}
|
|
|
|
if (runner is not null && !runner.IsCurrentThread)
|
|
{
|
|
runner.Run(RunContinuation);
|
|
}
|
|
else if (runner is not null)
|
|
{
|
|
TraceGuestContext(
|
|
$"continuation-inline reason={reason} managed={Environment.CurrentManagedThreadId} guest=0x{currentGuestThreadHandle:X16} fiber=0x{currentFiberAddress:X16}");
|
|
RunContinuation();
|
|
}
|
|
else
|
|
{
|
|
RunContinuationOnTemporaryThread(currentGuestThreadHandle, RunContinuation);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
RunContinuation();
|
|
}
|
|
|
|
if (callbackException is not null)
|
|
{
|
|
error = callbackReason ?? callbackException.Message;
|
|
return false;
|
|
}
|
|
|
|
if (exitReason is GuestNativeCallExitReason.Exception or GuestNativeCallExitReason.ForcedExit)
|
|
{
|
|
error = callbackReason ?? callbackLastError ?? "guest continuation failed";
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private void TraceGuestContext(string message)
|
|
{
|
|
if (_logGuestContext)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][TRACE] guest_context.{message}");
|
|
}
|
|
}
|
|
|
|
private static void RunContinuationOnTemporaryThread(ulong guestThreadHandle, Action continuation)
|
|
{
|
|
var continuationThread = new Thread(() =>
|
|
{
|
|
var previousGuestThreadHandle = GuestThreadExecution.EnterGuestThread(guestThreadHandle);
|
|
try
|
|
{
|
|
continuation();
|
|
}
|
|
finally
|
|
{
|
|
GuestThreadExecution.RestoreGuestThread(previousGuestThreadHandle);
|
|
}
|
|
})
|
|
{
|
|
IsBackground = true,
|
|
Name = $"GuestContinuationNested-{guestThreadHandle:X}",
|
|
Priority = ThreadPriority.BelowNormal,
|
|
};
|
|
continuationThread.Start();
|
|
continuationThread.Join();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parks every guest worker thread before the caller starts freeing executable
|
|
/// memory. Workers unwind to the host at their next import dispatch (see the
|
|
/// teardown check in DispatchImport); this waits for their host threads to
|
|
/// finish within <paramref name="timeoutMs"/>. Returns false when at least one
|
|
/// worker is still running — the caller must then leak its executable stubs
|
|
/// rather than free memory a live thread may still execute.
|
|
/// </summary>
|
|
private bool RequestGuestThreadTeardown(int timeoutMs)
|
|
{
|
|
_guestTeardownRequested = true;
|
|
Thread[] hostThreads;
|
|
lock (_guestThreadGate)
|
|
{
|
|
_readyGuestThreads.Clear();
|
|
Interlocked.Exchange(ref _readyGuestThreadCount, 0);
|
|
hostThreads = _guestThreads.Values
|
|
.Select(static thread => thread.HostThread)
|
|
.Where(static host => host is not null && host != Thread.CurrentThread && host.IsAlive)
|
|
.Cast<Thread>()
|
|
.ToArray();
|
|
}
|
|
|
|
var deadline = Environment.TickCount64 + timeoutMs;
|
|
var allStopped = true;
|
|
foreach (var host in hostThreads)
|
|
{
|
|
var remaining = (int)Math.Max(1L, deadline - Environment.TickCount64);
|
|
if (!host.Join(remaining) && host.IsAlive)
|
|
{
|
|
allStopped = false;
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][WARN] Guest worker host thread '{host.Name}' still running after teardown wait.");
|
|
}
|
|
}
|
|
|
|
return allStopped;
|
|
}
|
|
|
|
private void ClearGuestThreads()
|
|
{
|
|
GuestContinuationRunner[] runners;
|
|
lock (_guestThreadGate)
|
|
{
|
|
runners = _guestThreads.Values
|
|
.Select(static thread => thread.ContinuationRunner)
|
|
.Where(static runner => runner is not null)
|
|
.Cast<GuestContinuationRunner>()
|
|
.ToArray();
|
|
_readyGuestThreads.Clear();
|
|
Interlocked.Exchange(ref _readyGuestThreadCount, 0);
|
|
_guestThreads.Clear();
|
|
}
|
|
|
|
foreach (var runner in runners)
|
|
{
|
|
runner.Dispose();
|
|
}
|
|
}
|
|
|
|
private bool TryCreateGuestThreadState(CpuContext creatorContext, GuestThreadStartRequest request, out GuestThreadState thread, out string? error)
|
|
{
|
|
thread = null!;
|
|
if (!TryGetVirtualMemory(creatorContext, out var virtualMemory))
|
|
{
|
|
error = "creator context memory is not backed by IVirtualMemory";
|
|
return false;
|
|
}
|
|
if (!TryMapGuestThreadRegion(virtualMemory, GuestThreadStackBaseAddress, GuestThreadStackSize, ProgramHeaderFlags.Read | ProgramHeaderFlags.Write, out var stackBase, out error))
|
|
{
|
|
return false;
|
|
}
|
|
if (!TryMapGuestThreadTlsRegion(virtualMemory, out var tlsBase, out error))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var trackedMemory = new TrackedCpuMemory(virtualMemory);
|
|
var context = new CpuContext(trackedMemory, creatorContext.TargetGeneration)
|
|
{
|
|
Rip = request.EntryPoint,
|
|
Rflags = 0x202,
|
|
FsBase = tlsBase,
|
|
GsBase = tlsBase,
|
|
};
|
|
context[CpuRegister.Rsp] = stackBase + GuestThreadStackSize - sizeof(ulong);
|
|
context[CpuRegister.Rdi] = request.Argument;
|
|
context[CpuRegister.Rsi] = 0;
|
|
context[CpuRegister.Rdx] = 0;
|
|
context[CpuRegister.Rcx] = 0;
|
|
context[CpuRegister.R8] = 0;
|
|
context[CpuRegister.R9] = 0;
|
|
if (!InitializeGuestThreadFrame(context) || !InitializeGuestThreadTls(context, tlsBase, request.ThreadHandle))
|
|
{
|
|
error = "failed to initialize guest thread stack/TLS";
|
|
return false;
|
|
}
|
|
|
|
thread = new GuestThreadState
|
|
{
|
|
ThreadHandle = request.ThreadHandle,
|
|
EntryPoint = request.EntryPoint,
|
|
Argument = request.Argument,
|
|
Name = string.IsNullOrWhiteSpace(request.Name) ? $"Thread-{request.ThreadHandle:X}" : request.Name,
|
|
Priority = request.Priority,
|
|
AffinityMask = request.AffinityMask,
|
|
Context = context,
|
|
State = GuestThreadRunState.Ready,
|
|
};
|
|
error = null;
|
|
return true;
|
|
}
|
|
|
|
private static bool TryGetVirtualMemory(CpuContext context, out IVirtualMemory virtualMemory)
|
|
{
|
|
if (context.Memory is IVirtualMemory directMemory)
|
|
{
|
|
virtualMemory = directMemory;
|
|
return true;
|
|
}
|
|
if (context.Memory is TrackedCpuMemory trackedMemory && trackedMemory.Inner is IVirtualMemory trackedInner)
|
|
{
|
|
virtualMemory = trackedInner;
|
|
return true;
|
|
}
|
|
|
|
virtualMemory = null!;
|
|
return false;
|
|
}
|
|
|
|
private static bool TryMapGuestThreadRegion(
|
|
IVirtualMemory virtualMemory,
|
|
ulong baseAddress,
|
|
ulong size,
|
|
ProgramHeaderFlags protection,
|
|
out ulong mappedBase,
|
|
out string? error)
|
|
{
|
|
for (int i = 0; i < 64; i++)
|
|
{
|
|
var candidateBase = baseAddress - ((ulong)i * GuestThreadRegionStride);
|
|
if (!IsGuestThreadRegionFree(virtualMemory, candidateBase, size))
|
|
{
|
|
continue;
|
|
}
|
|
try
|
|
{
|
|
virtualMemory.Map(
|
|
candidateBase,
|
|
size,
|
|
fileOffset: 0,
|
|
fileData: ReadOnlySpan<byte>.Empty,
|
|
protection: protection);
|
|
mappedBase = candidateBase;
|
|
error = null;
|
|
return true;
|
|
}
|
|
catch (InvalidOperationException)
|
|
{
|
|
}
|
|
}
|
|
|
|
mappedBase = 0;
|
|
error = $"failed to map guest thread region near 0x{baseAddress:X16}";
|
|
return false;
|
|
}
|
|
|
|
private static bool TryMapGuestThreadTlsRegion(
|
|
IVirtualMemory virtualMemory,
|
|
out ulong tlsBase,
|
|
out string? error)
|
|
{
|
|
for (int i = 0; i < 64; i++)
|
|
{
|
|
var candidateBase = GuestThreadTlsBaseAddress - ((ulong)i * GuestThreadRegionStride);
|
|
var mappedBase = candidateBase - GuestThreadTlsPrefixSize;
|
|
var mappedSize = GuestThreadTlsSize + GuestThreadTlsPrefixSize;
|
|
if (!IsGuestThreadRegionFree(virtualMemory, mappedBase, mappedSize))
|
|
{
|
|
continue;
|
|
}
|
|
try
|
|
{
|
|
virtualMemory.Map(
|
|
mappedBase,
|
|
mappedSize,
|
|
fileOffset: 0,
|
|
fileData: ReadOnlySpan<byte>.Empty,
|
|
protection: ProgramHeaderFlags.Read | ProgramHeaderFlags.Write);
|
|
tlsBase = candidateBase;
|
|
error = null;
|
|
return true;
|
|
}
|
|
catch (InvalidOperationException)
|
|
{
|
|
}
|
|
}
|
|
|
|
tlsBase = 0;
|
|
error = $"failed to map guest TLS region near 0x{GuestThreadTlsBaseAddress:X16}";
|
|
return false;
|
|
}
|
|
|
|
private static bool IsGuestThreadRegionFree(IVirtualMemory virtualMemory, ulong candidateBase, ulong size)
|
|
{
|
|
var candidateEnd = candidateBase + size;
|
|
foreach (var region in virtualMemory.SnapshotRegions())
|
|
{
|
|
var regionStart = region.VirtualAddress;
|
|
var regionEnd = regionStart + region.MemorySize;
|
|
if (candidateBase < regionEnd && regionStart < candidateEnd)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private static bool InitializeGuestThreadFrame(CpuContext context)
|
|
{
|
|
var stackTop = context[CpuRegister.Rsp] + sizeof(ulong);
|
|
var sentinelFrame = AlignDown(stackTop - 0x20, 16);
|
|
var seedRsp = sentinelFrame - sizeof(ulong);
|
|
if (!context.TryWriteUInt64(sentinelFrame, 0) ||
|
|
!context.TryWriteUInt64(sentinelFrame + sizeof(ulong), 0) ||
|
|
!context.TryWriteUInt64(seedRsp, 0))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
context[CpuRegister.Rbp] = sentinelFrame;
|
|
context[CpuRegister.Rsp] = seedRsp;
|
|
return true;
|
|
}
|
|
|
|
private static bool InitializeGuestThreadTls(CpuContext context, ulong tlsBase, ulong threadHandle)
|
|
{
|
|
return context.TryWriteUInt64(tlsBase - 0xF0, 0) &&
|
|
context.TryWriteUInt64(tlsBase + 0x00, tlsBase) &&
|
|
context.TryWriteUInt64(tlsBase + 0x10, threadHandle) &&
|
|
context.TryWriteUInt64(tlsBase + 0x28, 0xC0DEC0DECAFEBABEUL) &&
|
|
context.TryWriteUInt64(tlsBase + 0x60, tlsBase);
|
|
}
|
|
|
|
private static ThreadPriority MapGuestThreadPriority(int priority)
|
|
{
|
|
if (priority <= 478)
|
|
{
|
|
return ThreadPriority.Highest;
|
|
}
|
|
if (priority >= 733)
|
|
{
|
|
return ThreadPriority.Lowest;
|
|
}
|
|
|
|
return ThreadPriority.Normal;
|
|
}
|
|
|
|
private void ApplyGuestThreadAffinity(ulong guestAffinityMask)
|
|
{
|
|
var hostAffinityMask = MapGuestThreadAffinity(guestAffinityMask);
|
|
if (hostAffinityMask == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (SetThreadAffinityMask(GetCurrentThread(), (nuint)hostAffinityMask) == 0 && _logGuestThreads)
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][WARN] Failed to set guest thread affinity guest=0x{guestAffinityMask:X} " +
|
|
$"host=0x{hostAffinityMask:X} error={Marshal.GetLastWin32Error()}");
|
|
}
|
|
}
|
|
|
|
private static ulong MapGuestThreadAffinity(ulong guestAffinityMask)
|
|
{
|
|
if (guestAffinityMask == 0 || guestAffinityMask == ulong.MaxValue)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
var processorCount = Math.Min(Environment.ProcessorCount, 64);
|
|
if (processorCount == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
ulong hostAffinityMask = 0;
|
|
for (var guestCpu = 0; guestCpu < 64; guestCpu++)
|
|
{
|
|
if ((guestAffinityMask & (1UL << guestCpu)) == 0)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var hostCpu = processorCount < 8
|
|
? guestCpu % processorCount
|
|
: processorCount >= 16
|
|
? guestCpu * 2
|
|
: guestCpu;
|
|
if (hostCpu < processorCount)
|
|
{
|
|
hostAffinityMask |= 1UL << hostCpu;
|
|
}
|
|
}
|
|
|
|
return hostAffinityMask;
|
|
}
|
|
|
|
private void RunGuestThread(GuestThreadState thread, string reason)
|
|
{
|
|
var previousLastError = LastError;
|
|
var previousGuestThreadHandle = GuestThreadExecution.EnterGuestThread(thread.ThreadHandle);
|
|
var previousGuestThreadState = _activeGuestThreadState;
|
|
ApplyGuestThreadAffinity(thread.AffinityMask);
|
|
Volatile.Write(ref thread.HostThreadId, unchecked((int)GetCurrentThreadId()));
|
|
_activeGuestThreadState = thread;
|
|
if (LogThreadMode)
|
|
{
|
|
_threadModeCycleId = Interlocked.Increment(ref _threadModeCycleCounter);
|
|
TraceThreadMode(
|
|
$"cycle_start name='{thread.Name}' guest=0x{thread.ThreadHandle:X16} reason={reason} " +
|
|
$"rsp_slot=0x{(ulong)TlsGetValue(_hostRspSlotTlsIndex):X}");
|
|
}
|
|
try
|
|
{
|
|
LastError = null;
|
|
GuestCpuContinuation continuation = default;
|
|
Func<int>? resumeHandler = null;
|
|
var resumeContinuation = false;
|
|
lock (_guestThreadGate)
|
|
{
|
|
if (thread.HasBlockedContinuation)
|
|
{
|
|
continuation = thread.BlockedContinuation;
|
|
thread.BlockedContinuation = default;
|
|
thread.HasBlockedContinuation = false;
|
|
thread.BlockWakeKey = null;
|
|
resumeHandler = thread.BlockResumeHandler;
|
|
thread.BlockResumeHandler = null;
|
|
thread.BlockWakeHandler = null;
|
|
thread.BlockDeadlineTimestamp = 0;
|
|
resumeContinuation = true;
|
|
}
|
|
}
|
|
|
|
if (resumeHandler is not null)
|
|
{
|
|
continuation = continuation with { Rax = unchecked((ulong)(long)resumeHandler()) };
|
|
}
|
|
|
|
if (_logGuestThreads)
|
|
{
|
|
Console.Error.WriteLine(
|
|
resumeContinuation
|
|
? $"[LOADER][INFO] Pumping guest thread '{thread.Name}' reason={reason} resume=0x{continuation.Rip:X16}"
|
|
: $"[LOADER][INFO] Pumping guest thread '{thread.Name}' reason={reason} entry=0x{thread.EntryPoint:X16}");
|
|
}
|
|
var exitReason = resumeContinuation
|
|
? ExecuteBlockedGuestThreadContinuation(thread.Context, continuation, thread.Name, out var blockReason)
|
|
: ExecuteGuestThreadEntry(thread.Context, thread.EntryPoint, thread.Name, out blockReason);
|
|
lock (_guestThreadGate)
|
|
{
|
|
switch (exitReason)
|
|
{
|
|
case GuestNativeCallExitReason.Returned:
|
|
thread.ExitValue = thread.Context[CpuRegister.Rax];
|
|
thread.State = GuestThreadRunState.Exited;
|
|
break;
|
|
case GuestNativeCallExitReason.Blocked:
|
|
thread.State = GuestThreadRunState.Blocked;
|
|
thread.BlockReason = blockReason;
|
|
if (thread.HasBlockedContinuation &&
|
|
thread.BlockWakeHandler is not null &&
|
|
thread.BlockWakeHandler())
|
|
{
|
|
thread.State = GuestThreadRunState.Ready;
|
|
thread.BlockReason = null;
|
|
thread.BlockWakeHandler = null;
|
|
thread.BlockDeadlineTimestamp = 0;
|
|
_readyGuestThreads.Enqueue(thread);
|
|
Interlocked.Increment(ref _readyGuestThreadCount);
|
|
}
|
|
break;
|
|
default:
|
|
thread.State = GuestThreadRunState.Faulted;
|
|
thread.BlockReason = blockReason;
|
|
break;
|
|
}
|
|
}
|
|
if (_logGuestThreads)
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][INFO] Guest thread '{thread.Name}' state={thread.State} reason={blockReason ?? "none"}");
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if (LogThreadMode)
|
|
{
|
|
TraceThreadMode(
|
|
$"cycle_end name='{thread.Name}' state={thread.State} " +
|
|
$"imports={Interlocked.Read(ref thread.ImportCount)} " +
|
|
$"rsp_slot=0x{(ulong)TlsGetValue(_hostRspSlotTlsIndex):X}");
|
|
}
|
|
_activeGuestThreadState = previousGuestThreadState;
|
|
Volatile.Write(ref thread.HostThreadId, 0);
|
|
GuestThreadExecution.RestoreGuestThread(previousGuestThreadHandle);
|
|
LastError = previousLastError;
|
|
}
|
|
}
|
|
|
|
private GuestNativeCallExitReason ExecuteBlockedGuestThreadContinuation(
|
|
CpuContext context,
|
|
GuestCpuContinuation continuation,
|
|
string name,
|
|
out string? reason)
|
|
{
|
|
ApplyGuestContinuation(context, continuation);
|
|
return ExecuteGuestContinuationEntry(
|
|
context,
|
|
continuation.Rip,
|
|
continuation.ReturnSlotAddress,
|
|
name,
|
|
out reason);
|
|
}
|
|
|
|
private static void ApplyGuestContinuation(CpuContext context, GuestCpuContinuation continuation)
|
|
{
|
|
context.Rip = continuation.Rip;
|
|
context.Rflags = continuation.Rflags == 0 ? 0x202UL : continuation.Rflags;
|
|
if (continuation.FsBase != 0)
|
|
{
|
|
context.FsBase = continuation.FsBase;
|
|
}
|
|
if (continuation.GsBase != 0)
|
|
{
|
|
context.GsBase = continuation.GsBase;
|
|
}
|
|
|
|
context[CpuRegister.Rax] = continuation.Rax;
|
|
context[CpuRegister.Rcx] = continuation.Rcx;
|
|
context[CpuRegister.Rdx] = continuation.Rdx;
|
|
context[CpuRegister.Rbx] = continuation.Rbx;
|
|
context[CpuRegister.Rbp] = continuation.Rbp;
|
|
context[CpuRegister.Rsi] = continuation.Rsi;
|
|
context[CpuRegister.Rdi] = continuation.Rdi;
|
|
context[CpuRegister.R8] = continuation.R8;
|
|
context[CpuRegister.R9] = continuation.R9;
|
|
context[CpuRegister.R12] = continuation.R12;
|
|
context[CpuRegister.R13] = continuation.R13;
|
|
context[CpuRegister.R14] = continuation.R14;
|
|
context[CpuRegister.R15] = continuation.R15;
|
|
context[CpuRegister.Rsp] = continuation.Rsp;
|
|
}
|
|
|
|
private unsafe GuestNativeCallExitReason ExecuteGuestThreadEntry(CpuContext context, ulong entryPoint, string name, out string? reason)
|
|
{
|
|
reason = null;
|
|
if (context[CpuRegister.Rsp] == 0)
|
|
{
|
|
reason = "guest thread stack pointer is zero";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
const uint stubSize = 512u;
|
|
void* ptr = VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
reason = "failed to allocate executable memory for guest thread stub";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
var previousActiveBackend = _activeExecutionBackend;
|
|
var previousActiveContext = _activeCpuContext;
|
|
var previousSentinel = _activeEntryReturnSentinelRip;
|
|
var previousReturnSlotAddress = _activeGuestReturnSlotAddress;
|
|
var previousForcedExit = _activeForcedGuestExit;
|
|
var previousYieldRequested = _activeGuestThreadYieldRequested;
|
|
var previousYieldReason = _activeGuestThreadYieldReason;
|
|
nint previousHostRspSlotValue = TlsGetValue(_hostRspSlotTlsIndex);
|
|
if (LogThreadMode)
|
|
{
|
|
TraceThreadMode(
|
|
$"entry_setup name='{name}' entry=0x{entryPoint:X16} stub=0x{(ulong)ptr:X16} " +
|
|
$"guest_rsp=0x{context[CpuRegister.Rsp]:X16} rsp_slot_prev=0x{(ulong)previousHostRspSlotValue:X}");
|
|
}
|
|
try
|
|
{
|
|
_activeExecutionBackend = this;
|
|
_activeCpuContext = context;
|
|
_activeEntryReturnSentinelRip = 0;
|
|
_activeGuestReturnSlotAddress = 0;
|
|
_activeForcedGuestExit = false;
|
|
_activeGuestThreadYieldRequested = false;
|
|
_activeGuestThreadYieldReason = null;
|
|
BindTlsBase(context);
|
|
byte* ptr2 = (byte*)ptr;
|
|
ulong hostRspSlot = (ulong)ptr + stubSize - 16uL;
|
|
int offset = 0;
|
|
ptr2[offset++] = 83;
|
|
ptr2[offset++] = 85;
|
|
ptr2[offset++] = 87;
|
|
ptr2[offset++] = 86;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 84;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 85;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 86;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 87;
|
|
EmitHostNonvolatileXmmSave(ptr2, ref offset);
|
|
ptr2[offset++] = 73;
|
|
ptr2[offset++] = 186;
|
|
*(ulong*)(ptr2 + offset) = hostRspSlot;
|
|
offset += 8;
|
|
ptr2[offset++] = 73;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 34;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rsp];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 196;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 131;
|
|
ptr2[offset++] = 236;
|
|
ptr2[offset++] = 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 189;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rbp];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rdi];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 199;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rsi];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 198;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rdx];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 194;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = context[CpuRegister.Rcx];
|
|
offset += 8;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 137;
|
|
ptr2[offset++] = 193;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 184;
|
|
*(ulong*)(ptr2 + offset) = entryPoint;
|
|
offset += 8;
|
|
ptr2[offset++] = byte.MaxValue;
|
|
ptr2[offset++] = 208;
|
|
int sentinelOffset = offset + 4;
|
|
ptr2[offset++] = 72;
|
|
ptr2[offset++] = 131;
|
|
ptr2[offset++] = 196;
|
|
ptr2[offset++] = 8;
|
|
ptr2[offset++] = 73;
|
|
ptr2[offset++] = 186;
|
|
*(ulong*)(ptr2 + offset) = hostRspSlot;
|
|
offset += 8;
|
|
ptr2[offset++] = 73;
|
|
ptr2[offset++] = 139;
|
|
ptr2[offset++] = 34;
|
|
EmitHostNonvolatileXmmRestore(ptr2, ref offset);
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 95;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 94;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 93;
|
|
ptr2[offset++] = 65;
|
|
ptr2[offset++] = 92;
|
|
ptr2[offset++] = 94;
|
|
ptr2[offset++] = 95;
|
|
ptr2[offset++] = 93;
|
|
ptr2[offset++] = 91;
|
|
ptr2[offset++] = 195;
|
|
ulong sentinel = (ulong)ptr + (ulong)sentinelOffset;
|
|
ActiveEntryReturnSentinelRip = (ulong)_guestReturnStub;
|
|
_activeGuestReturnSlotAddress = context[CpuRegister.Rsp] - 16uL;
|
|
if (!context.TryWriteUInt64(context[CpuRegister.Rsp], sentinel))
|
|
{
|
|
reason = $"failed to patch guest thread return sentinel at 0x{context[CpuRegister.Rsp]:X16}";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
uint oldProtect = default(uint);
|
|
if (!VirtualProtect(ptr, stubSize, 64u, &oldProtect))
|
|
{
|
|
reason = $"VirtualProtect failed for guest thread entry stub at 0x{(nint)ptr:X16}";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, stubSize);
|
|
ActiveGuestThreadYieldRequested = false;
|
|
ActiveGuestThreadYieldReason = null;
|
|
var nativeReturn = RunGuestEntryStub(ptr, hostRspSlot);
|
|
if (ActiveGuestThreadYieldRequested)
|
|
{
|
|
reason = ActiveGuestThreadYieldReason ?? "guest thread blocked";
|
|
return GuestNativeCallExitReason.Blocked;
|
|
}
|
|
if (ActiveForcedGuestExit)
|
|
{
|
|
reason = LastError ?? "guest thread forced exit";
|
|
return GuestNativeCallExitReason.ForcedExit;
|
|
}
|
|
reason = $"returned 0x{nativeReturn:X8}";
|
|
return GuestNativeCallExitReason.Returned;
|
|
}
|
|
catch (AccessViolationException ex)
|
|
{
|
|
reason = "access violation: " + ex.Message;
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
reason = ex.GetType().Name + ": " + ex.Message;
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
finally
|
|
{
|
|
TlsSetValue(_hostRspSlotTlsIndex, previousHostRspSlotValue);
|
|
RestoreActiveExecutionThread(
|
|
previousActiveBackend,
|
|
previousActiveContext,
|
|
previousSentinel,
|
|
previousReturnSlotAddress,
|
|
previousForcedExit,
|
|
previousYieldRequested,
|
|
previousYieldReason);
|
|
VirtualFree(ptr, 0u, 32768u);
|
|
}
|
|
}
|
|
|
|
private unsafe GuestNativeCallExitReason ExecuteGuestContinuationEntry(
|
|
CpuContext context,
|
|
ulong entryPoint,
|
|
ulong returnSlotAddress,
|
|
string name,
|
|
out string? reason)
|
|
{
|
|
reason = null;
|
|
if (context[CpuRegister.Rsp] == 0)
|
|
{
|
|
reason = "guest thread stack pointer is zero";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
const uint stubSize = 512u;
|
|
void* ptr = VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
reason = "failed to allocate executable memory for guest thread stub";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
var previousActiveBackend = _activeExecutionBackend;
|
|
var previousActiveContext = _activeCpuContext;
|
|
var previousSentinel = _activeEntryReturnSentinelRip;
|
|
var previousReturnSlotAddress = _activeGuestReturnSlotAddress;
|
|
var previousForcedExit = _activeForcedGuestExit;
|
|
var previousYieldRequested = _activeGuestThreadYieldRequested;
|
|
var previousYieldReason = _activeGuestThreadYieldReason;
|
|
nint previousHostRspSlotValue = TlsGetValue(_hostRspSlotTlsIndex);
|
|
if (LogThreadMode)
|
|
{
|
|
TraceThreadMode(
|
|
$"continuation_setup name='{name}' resume=0x{entryPoint:X16} stub=0x{(ulong)ptr:X16} " +
|
|
$"guest_rsp=0x{context[CpuRegister.Rsp]:X16} rsp_slot_prev=0x{(ulong)previousHostRspSlotValue:X}");
|
|
}
|
|
try
|
|
{
|
|
_activeExecutionBackend = this;
|
|
_activeCpuContext = context;
|
|
_activeEntryReturnSentinelRip = 0;
|
|
_activeGuestReturnSlotAddress = returnSlotAddress;
|
|
_activeForcedGuestExit = false;
|
|
_activeGuestThreadYieldRequested = false;
|
|
_activeGuestThreadYieldReason = null;
|
|
BindTlsBase(context);
|
|
byte* ptr2 = (byte*)ptr;
|
|
ulong hostRspSlot = (ulong)ptr + stubSize - 16uL;
|
|
int offset = 0;
|
|
|
|
void Emit(byte value) => ptr2[offset++] = value;
|
|
void EmitU64(ulong value)
|
|
{
|
|
*(ulong*)(ptr2 + offset) = value;
|
|
offset += sizeof(ulong);
|
|
}
|
|
void EmitMovR64Imm(byte rex, byte opcode, ulong value)
|
|
{
|
|
Emit(rex);
|
|
Emit(opcode);
|
|
EmitU64(value);
|
|
}
|
|
|
|
Emit(0x53); // push rbx
|
|
Emit(0x55); // push rbp
|
|
Emit(0x57); // push rdi
|
|
Emit(0x56); // push rsi
|
|
Emit(0x41); Emit(0x54); // push r12
|
|
Emit(0x41); Emit(0x55); // push r13
|
|
Emit(0x41); Emit(0x56); // push r14
|
|
Emit(0x41); Emit(0x57); // push r15
|
|
EmitHostNonvolatileXmmSave(ptr2, ref offset);
|
|
EmitMovR64Imm(0x49, 0xBA, hostRspSlot); // mov r10, hostRspSlot
|
|
Emit(0x49); Emit(0x89); Emit(0x22); // mov [r10], rsp
|
|
EmitMovR64Imm(0x48, 0xB8, context[CpuRegister.Rsp]); // mov rax, guest rsp
|
|
Emit(0x48); Emit(0x89); Emit(0xC4); // mov rsp, rax
|
|
EmitMovR64Imm(0x48, 0xBB, context[CpuRegister.Rbx]); // mov rbx, imm64
|
|
EmitMovR64Imm(0x48, 0xBD, context[CpuRegister.Rbp]); // mov rbp, imm64
|
|
EmitMovR64Imm(0x48, 0xBF, context[CpuRegister.Rdi]); // mov rdi, imm64
|
|
EmitMovR64Imm(0x48, 0xBE, context[CpuRegister.Rsi]); // mov rsi, imm64
|
|
EmitMovR64Imm(0x48, 0xBA, context[CpuRegister.Rdx]); // mov rdx, imm64
|
|
EmitMovR64Imm(0x48, 0xB9, context[CpuRegister.Rcx]); // mov rcx, imm64
|
|
EmitMovR64Imm(0x49, 0xB8, context[CpuRegister.R8]); // mov r8, imm64
|
|
EmitMovR64Imm(0x49, 0xB9, context[CpuRegister.R9]); // mov r9, imm64
|
|
EmitMovR64Imm(0x49, 0xBC, context[CpuRegister.R12]); // mov r12, imm64
|
|
EmitMovR64Imm(0x49, 0xBD, context[CpuRegister.R13]); // mov r13, imm64
|
|
EmitMovR64Imm(0x49, 0xBE, context[CpuRegister.R14]); // mov r14, imm64
|
|
EmitMovR64Imm(0x49, 0xBF, context[CpuRegister.R15]); // mov r15, imm64
|
|
EmitMovR64Imm(0x48, 0xB8, context[CpuRegister.Rax]); // mov rax, imm64
|
|
EmitMovR64Imm(0x49, 0xBB, entryPoint); // mov r11, entryPoint
|
|
Emit(0x41); Emit(0xFF); Emit(0xE3); // jmp r11
|
|
ActiveEntryReturnSentinelRip = (ulong)_guestReturnStub;
|
|
if (returnSlotAddress == 0 || !context.TryWriteUInt64(returnSlotAddress, (ulong)_guestReturnStub))
|
|
{
|
|
reason = $"failed to patch guest continuation return slot at 0x{returnSlotAddress:X16}";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
uint oldProtect = default(uint);
|
|
if (!VirtualProtect(ptr, stubSize, 64u, &oldProtect))
|
|
{
|
|
reason = $"VirtualProtect failed for guest continuation stub at 0x{(nint)ptr:X16}";
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, stubSize);
|
|
ActiveGuestThreadYieldRequested = false;
|
|
ActiveGuestThreadYieldReason = null;
|
|
|
|
try
|
|
{
|
|
var nativeReturn = RunGuestEntryStub(ptr, hostRspSlot);
|
|
if (ActiveGuestThreadYieldRequested)
|
|
{
|
|
reason = ActiveGuestThreadYieldReason ?? "guest thread blocked";
|
|
return GuestNativeCallExitReason.Blocked;
|
|
}
|
|
if (ActiveForcedGuestExit)
|
|
{
|
|
reason = LastError ?? "guest thread forced exit";
|
|
return GuestNativeCallExitReason.ForcedExit;
|
|
}
|
|
reason = $"returned 0x{nativeReturn:X8}";
|
|
return GuestNativeCallExitReason.Returned;
|
|
}
|
|
catch (AccessViolationException ex)
|
|
{
|
|
reason = "access violation: " + ex.Message;
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
reason = ex.GetType().Name + ": " + ex.Message;
|
|
return GuestNativeCallExitReason.Exception;
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
TlsSetValue(_hostRspSlotTlsIndex, previousHostRspSlotValue);
|
|
RestoreActiveExecutionThread(
|
|
previousActiveBackend,
|
|
previousActiveContext,
|
|
previousSentinel,
|
|
previousReturnSlotAddress,
|
|
previousForcedExit,
|
|
previousYieldRequested,
|
|
previousYieldReason);
|
|
VirtualFree(ptr, 0u, 32768u);
|
|
}
|
|
}
|
|
|
|
private static ulong AlignDown(ulong value, ulong alignment)
|
|
{
|
|
if (alignment == 0)
|
|
{
|
|
return value;
|
|
}
|
|
return value & ~(alignment - 1);
|
|
}
|
|
|
|
private static unsafe void EmitByte(byte* code, ref int offset, byte value)
|
|
{
|
|
code[offset++] = value;
|
|
}
|
|
|
|
private static unsafe void EmitUInt32(byte* code, ref int offset, uint value)
|
|
{
|
|
*(uint*)(code + offset) = value;
|
|
offset += sizeof(uint);
|
|
}
|
|
|
|
private static unsafe void EmitHostNonvolatileXmmSave(byte* code, ref int offset)
|
|
{
|
|
EmitByte(code, ref offset, 0x48);
|
|
EmitByte(code, ref offset, 0x81);
|
|
EmitByte(code, ref offset, 0xEC);
|
|
EmitUInt32(code, ref offset, HostXmmSaveAreaSize);
|
|
for (int xmm = 6; xmm <= 15; xmm++)
|
|
{
|
|
EmitMovdquRspXmm(code, ref offset, store: true, xmm, (byte)((xmm - 6) * 16));
|
|
}
|
|
}
|
|
|
|
private static unsafe void EmitHostNonvolatileXmmRestore(byte* code, ref int offset)
|
|
{
|
|
for (int xmm = 6; xmm <= 15; xmm++)
|
|
{
|
|
EmitMovdquRspXmm(code, ref offset, store: false, xmm, (byte)((xmm - 6) * 16));
|
|
}
|
|
EmitByte(code, ref offset, 0x48);
|
|
EmitByte(code, ref offset, 0x81);
|
|
EmitByte(code, ref offset, 0xC4);
|
|
EmitUInt32(code, ref offset, HostXmmSaveAreaSize);
|
|
}
|
|
|
|
private static unsafe void EmitMovdquRspXmm(byte* code, ref int offset, bool store, int xmm, byte displacement)
|
|
{
|
|
EmitByte(code, ref offset, 0xF3);
|
|
if (xmm >= 8)
|
|
{
|
|
EmitByte(code, ref offset, 0x44);
|
|
}
|
|
EmitByte(code, ref offset, 0x0F);
|
|
EmitByte(code, ref offset, store ? (byte)0x7F : (byte)0x6F);
|
|
if (displacement < 0x80)
|
|
{
|
|
EmitByte(code, ref offset, (byte)(0x44 | ((xmm & 7) << 3)));
|
|
EmitByte(code, ref offset, 0x24);
|
|
EmitByte(code, ref offset, displacement);
|
|
}
|
|
else
|
|
{
|
|
EmitByte(code, ref offset, (byte)(0x84 | ((xmm & 7) << 3)));
|
|
EmitByte(code, ref offset, 0x24);
|
|
EmitUInt32(code, ref offset, displacement);
|
|
}
|
|
}
|
|
|
|
private unsafe bool ExecuteEntry(CpuContext context, ulong entryPoint, out OrbisGen2Result result)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][INFO] ExecuteEntry starting at 0x{entryPoint:X16}");
|
|
Console.Error.WriteLine($"[LOADER][INFO] RSP=0x{context[CpuRegister.Rsp]:X16}, RDI=0x{context[CpuRegister.Rdi]:X16}");
|
|
ulong num = context[CpuRegister.Rsp];
|
|
if (num == 0)
|
|
{
|
|
LastError = "Guest stack pointer is zero";
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_MEMORY_FAULT;
|
|
return false;
|
|
}
|
|
Console.Error.WriteLine($"[LOADER][INFO] StackTop: 0x{num:X16}");
|
|
const uint stubSize = 512u;
|
|
void* ptr = VirtualAlloc(null, stubSize, 12288u, 64u);
|
|
if (ptr == null)
|
|
{
|
|
LastError = "Failed to allocate executable memory for stub";
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_MEMORY_FAULT;
|
|
return false;
|
|
}
|
|
var previousActiveBackend = _activeExecutionBackend;
|
|
var previousActiveContext = _activeCpuContext;
|
|
var previousSentinel = _activeEntryReturnSentinelRip;
|
|
var previousReturnSlotAddress = _activeGuestReturnSlotAddress;
|
|
var previousForcedExit = _activeForcedGuestExit;
|
|
var previousYieldRequested = _activeGuestThreadYieldRequested;
|
|
var previousYieldReason = _activeGuestThreadYieldReason;
|
|
nint previousHostRspSlotValue = TlsGetValue(_hostRspSlotTlsIndex);
|
|
try
|
|
{
|
|
_activeExecutionBackend = this;
|
|
_activeCpuContext = context;
|
|
_activeEntryReturnSentinelRip = 0;
|
|
_activeGuestReturnSlotAddress = 0;
|
|
_activeForcedGuestExit = false;
|
|
_activeGuestThreadYieldRequested = false;
|
|
_activeGuestThreadYieldReason = null;
|
|
BindTlsBase(context);
|
|
byte* ptr2 = (byte*)ptr;
|
|
ulong num2 = (ulong)ptr + stubSize - 16uL;
|
|
int num3 = 0;
|
|
ptr2[num3++] = 83;
|
|
ptr2[num3++] = 85;
|
|
ptr2[num3++] = 87;
|
|
ptr2[num3++] = 86;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 84;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 85;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 86;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 87;
|
|
EmitHostNonvolatileXmmSave(ptr2, ref num3);
|
|
ptr2[num3++] = 73;
|
|
ptr2[num3++] = 186;
|
|
*(ulong*)(ptr2 + num3) = num2;
|
|
num3 += 8;
|
|
ptr2[num3++] = 73;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 34;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rsp];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 196;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 131;
|
|
ptr2[num3++] = 236;
|
|
ptr2[num3++] = 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 189;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rbp];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rdi];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 199;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rsi];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 198;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rdx];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 194;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = context[CpuRegister.Rcx];
|
|
num3 += 8;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 137;
|
|
ptr2[num3++] = 193;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 184;
|
|
*(ulong*)(ptr2 + num3) = entryPoint;
|
|
num3 += 8;
|
|
ptr2[num3++] = byte.MaxValue;
|
|
ptr2[num3++] = 208;
|
|
int num4 = num3 + 4;
|
|
ptr2[num3++] = 72;
|
|
ptr2[num3++] = 131;
|
|
ptr2[num3++] = 196;
|
|
ptr2[num3++] = 8;
|
|
ptr2[num3++] = 73;
|
|
ptr2[num3++] = 186;
|
|
*(ulong*)(ptr2 + num3) = num2;
|
|
num3 += 8;
|
|
ptr2[num3++] = 73;
|
|
ptr2[num3++] = 139;
|
|
ptr2[num3++] = 34;
|
|
EmitHostNonvolatileXmmRestore(ptr2, ref num3);
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 95;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 94;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 93;
|
|
ptr2[num3++] = 65;
|
|
ptr2[num3++] = 92;
|
|
ptr2[num3++] = 94;
|
|
ptr2[num3++] = 95;
|
|
ptr2[num3++] = 93;
|
|
ptr2[num3++] = 91;
|
|
ptr2[num3++] = 195;
|
|
ulong value = (ulong)ptr + (ulong)num4;
|
|
ActiveEntryReturnSentinelRip = (ulong)_guestReturnStub;
|
|
_activeGuestReturnSlotAddress = context[CpuRegister.Rsp] - 16uL;
|
|
if (!context.TryWriteUInt64(context[CpuRegister.Rsp], value))
|
|
{
|
|
LastError = $"Failed to patch native return sentinel at 0x{context[CpuRegister.Rsp]:X16}";
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_MEMORY_FAULT;
|
|
return false;
|
|
}
|
|
uint num5 = default(uint);
|
|
if (!VirtualProtect(ptr, stubSize, 64u, &num5))
|
|
{
|
|
LastError = $"VirtualProtect failed for guest entry stub at 0x{(nint)ptr:X16}";
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_MEMORY_FAULT;
|
|
return false;
|
|
}
|
|
FlushInstructionCache(GetCurrentProcess(), ptr, stubSize);
|
|
if (_hostRspSlotStorage != 0)
|
|
{
|
|
*(ulong*)_hostRspSlotStorage = num2;
|
|
}
|
|
TlsSetValue(_hostRspSlotTlsIndex, (nint)num2);
|
|
if (string.Equals(Environment.GetEnvironmentVariable("SHARPEMU_SENTINEL_PROBE"), "1", StringComparison.Ordinal))
|
|
{
|
|
Console.Error.WriteLine("[LOADER][INFO] Running unresolved sentinel probe...");
|
|
CallNativeEntry((void*)65534);
|
|
Console.Error.WriteLine("[LOADER][INFO] Sentinel probe returned.");
|
|
}
|
|
Console.Error.WriteLine("[LOADER][INFO] Calling guest entry...");
|
|
StartStallWatchdog();
|
|
int num6 = -1;
|
|
try
|
|
{
|
|
num6 = RunGuestEntryStub(ptr, num2);
|
|
Console.Error.WriteLine($"[LOADER][INFO] Guest returned: {num6}");
|
|
PumpUntilGuestThreadsIdle(context, "entry_return");
|
|
}
|
|
catch (AccessViolationException ex)
|
|
{
|
|
Console.Error.WriteLine("[LOADER][ERROR] Access Violation during execution: " + ex.Message);
|
|
Console.Error.WriteLine("[LOADER][ERROR] This usually means:");
|
|
Console.Error.WriteLine(" 1. Invalid memory access in guest code");
|
|
Console.Error.WriteLine(" 2. Unpatched import/TLS call");
|
|
Console.Error.WriteLine(" 3. Stack corruption");
|
|
num6 = -1;
|
|
}
|
|
catch (Exception ex2)
|
|
{
|
|
Console.Error.WriteLine("[LOADER][ERROR] Exception during execution: " + ex2.GetType().Name + ": " + ex2.Message);
|
|
LastError = "Exception during execution: " + ex2.GetType().Name + ": " + ex2.Message;
|
|
num6 = -1;
|
|
}
|
|
if (ActiveForcedGuestExit)
|
|
{
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_CPU_TRAP;
|
|
if (string.IsNullOrEmpty(LastError))
|
|
{
|
|
LastError = "Detected repeating import loop and forced guest unwind to host.";
|
|
}
|
|
Console.Error.WriteLine("[LOADER][ERROR] " + LastError);
|
|
RequestGuestThreadTeardown(3000);
|
|
return false;
|
|
}
|
|
if (num6 == 0)
|
|
{
|
|
result = OrbisGen2Result.ORBIS_GEN2_OK;
|
|
LastError = null;
|
|
return true;
|
|
}
|
|
result = OrbisGen2Result.ORBIS_GEN2_ERROR_CPU_TRAP;
|
|
if (string.IsNullOrEmpty(LastError))
|
|
{
|
|
LastError = $"Guest entry point returned non-zero: {num6}";
|
|
}
|
|
Console.Error.WriteLine("[LOADER][ERROR] " + LastError);
|
|
RequestGuestThreadTeardown(3000);
|
|
return false;
|
|
}
|
|
finally
|
|
{
|
|
StopStallWatchdog();
|
|
ActiveEntryReturnSentinelRip = 0uL;
|
|
TlsSetValue(_hostRspSlotTlsIndex, previousHostRspSlotValue);
|
|
if (_hostRspSlotStorage != 0)
|
|
{
|
|
*(long*)_hostRspSlotStorage = 0L;
|
|
}
|
|
RestoreActiveExecutionThread(
|
|
previousActiveBackend,
|
|
previousActiveContext,
|
|
previousSentinel,
|
|
previousReturnSlotAddress,
|
|
previousForcedExit,
|
|
previousYieldRequested,
|
|
previousYieldReason);
|
|
VirtualFree(ptr, 0u, 32768u);
|
|
}
|
|
}
|
|
|
|
|
|
private void MarkExecutionProgress()
|
|
{
|
|
Volatile.Write(ref _lastProgressTimestamp, Stopwatch.GetTimestamp());
|
|
}
|
|
|
|
private static int GetStallWatchdogSeconds()
|
|
{
|
|
if (int.TryParse(Environment.GetEnvironmentVariable("SHARPEMU_STALL_WATCHDOG_SECONDS"), out var result))
|
|
{
|
|
return Math.Max(0, result);
|
|
}
|
|
return 20;
|
|
}
|
|
|
|
private void StartStallWatchdog()
|
|
{
|
|
int stallWatchdogSeconds = GetStallWatchdogSeconds();
|
|
if (stallWatchdogSeconds <= 0 || _stallWatchdogThread != null)
|
|
{
|
|
return;
|
|
}
|
|
_stallWatchdogStop = false;
|
|
|
|
// Drives woken threads when every guest thread is parked (nothing dispatches then).
|
|
var dispatcherThread = new Thread(new ThreadStart(delegate
|
|
{
|
|
while (!_stallWatchdogStop)
|
|
{
|
|
Thread.Sleep(1);
|
|
WakeExpiredBlockedGuestThreads();
|
|
if (Volatile.Read(ref _readyGuestThreadCount) > 0 && _cpuContext is { } dispatchContext)
|
|
{
|
|
Pump(dispatchContext, "dispatcher");
|
|
}
|
|
}
|
|
}))
|
|
{
|
|
IsBackground = true,
|
|
Name = "SharpEmu-GuestThreadDispatcher"
|
|
};
|
|
dispatcherThread.Start();
|
|
|
|
long num = (long)((double)stallWatchdogSeconds * Stopwatch.Frequency);
|
|
_stallWatchdogThread = new Thread(new ThreadStart(delegate
|
|
{
|
|
while (!_stallWatchdogStop)
|
|
{
|
|
Thread.Sleep(200);
|
|
if (_stallWatchdogStop)
|
|
{
|
|
break;
|
|
}
|
|
long num2 = Stopwatch.GetTimestamp() - Volatile.Read(ref _lastProgressTimestamp);
|
|
if (num2 < num)
|
|
{
|
|
continue;
|
|
}
|
|
if (HasReadyGuestThread())
|
|
{
|
|
if (_cpuContext is { } watchdogContext)
|
|
{
|
|
Pump(watchdogContext, "watchdog");
|
|
}
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][WARN] No import progress for {stallWatchdogSeconds}s, but a guest thread is ready; continuing.");
|
|
LogStallWatchdogSnapshot();
|
|
Console.Error.Flush();
|
|
MarkExecutionProgress();
|
|
continue;
|
|
}
|
|
if (IsExpectedBlockingImportStall(out var blockingNid, out var blockingName))
|
|
{
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][WARN] No import progress for {stallWatchdogSeconds}s while waiting in {blockingName} ({blockingNid}); continuing.");
|
|
LogStallWatchdogSnapshot();
|
|
Console.Error.Flush();
|
|
MarkExecutionProgress();
|
|
continue;
|
|
}
|
|
if (Interlocked.Exchange(ref _stallWatchdogTriggered, 1) != 0)
|
|
{
|
|
continue;
|
|
}
|
|
LastError = $"Execution stalled with no import progress for {stallWatchdogSeconds}s (imports={Volatile.Read(ref _importDispatchCount)}).";
|
|
Console.Error.WriteLine("[LOADER][ERROR] " + LastError);
|
|
LogStallWatchdogSnapshot();
|
|
Console.Error.Flush();
|
|
Environment.Exit(4);
|
|
}
|
|
}))
|
|
{
|
|
IsBackground = true,
|
|
Name = "SharpEmu-StallWatchdog"
|
|
};
|
|
_stallWatchdogThread.Start();
|
|
}
|
|
|
|
private bool HasReadyGuestThread()
|
|
{
|
|
WakeExpiredBlockedGuestThreads();
|
|
lock (_guestThreadGate)
|
|
{
|
|
foreach (var thread in _guestThreads.Values)
|
|
{
|
|
if (thread.State is GuestThreadRunState.Ready)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
// A thread parked in a blocking wait is idle by design, not stalled.
|
|
private bool IsExpectedBlockingImportStall(out string nid, out string name)
|
|
{
|
|
nid = string.Empty;
|
|
name = string.Empty;
|
|
var cpuContext = _cpuContext;
|
|
if (cpuContext is null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var importAddress = cpuContext.Rip & 0xFFFFFFFFFFFFFFF0uL;
|
|
foreach (var entry in _importEntries)
|
|
{
|
|
if (entry.Address != importAddress)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
nid = entry.Nid;
|
|
name = _moduleManager.TryGetExport(nid, out var export)
|
|
? $"{export.LibraryName}:{export.Name}"
|
|
: nid;
|
|
return nid is
|
|
"Op8TBGY5KHg" or // pthread_cond_wait
|
|
"27bAgiJmOh0" or // pthread_cond_timedwait
|
|
"fzyMKs9kim0"; // sceKernelWaitEqueue
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
private void StopStallWatchdog()
|
|
{
|
|
_stallWatchdogStop = true;
|
|
Thread? stallWatchdogThread = _stallWatchdogThread;
|
|
if (stallWatchdogThread == null)
|
|
{
|
|
return;
|
|
}
|
|
if (!ReferenceEquals(Thread.CurrentThread, stallWatchdogThread))
|
|
{
|
|
try
|
|
{
|
|
stallWatchdogThread.Join(300);
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
_stallWatchdogThread = null;
|
|
}
|
|
|
|
private void LogStallWatchdogSnapshot()
|
|
{
|
|
try
|
|
{
|
|
var cpuContext = _cpuContext;
|
|
if (cpuContext is null)
|
|
{
|
|
return;
|
|
}
|
|
ulong rsp = cpuContext[CpuRegister.Rsp];
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall snapshot: rip=0x{cpuContext.Rip:X16} rsp=0x{rsp:X16} rbp=0x{cpuContext[CpuRegister.Rbp]:X16} rax=0x{cpuContext[CpuRegister.Rax]:X16} rbx=0x{cpuContext[CpuRegister.Rbx]:X16} rcx=0x{cpuContext[CpuRegister.Rcx]:X16} rdx=0x{cpuContext[CpuRegister.Rdx]:X16} rsi=0x{cpuContext[CpuRegister.Rsi]:X16} rdi=0x{cpuContext[CpuRegister.Rdi]:X16}");
|
|
ulong num = cpuContext.Rip & 0xFFFFFFFFFFFFFFF0uL;
|
|
var importEntries = _importEntries;
|
|
for (int i = 0; i < importEntries.Length; i++)
|
|
{
|
|
if (importEntries[i].Address != num)
|
|
{
|
|
continue;
|
|
}
|
|
string text = importEntries[i].Nid;
|
|
if (_moduleManager.TryGetExport(text, out ExportedFunction export))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall import-stub: rip=0x{num:X16} nid={text} -> {export.LibraryName}:{export.Name}");
|
|
}
|
|
else
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall import-stub: rip=0x{num:X16} nid={text}");
|
|
}
|
|
break;
|
|
}
|
|
Span<byte> destination = stackalloc byte[16];
|
|
if (cpuContext.Memory.TryRead(cpuContext.Rip, destination))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall bytes @rip: {BitConverter.ToString(destination.ToArray()).Replace("-", " ")}");
|
|
}
|
|
else if (cpuContext.Memory.TryRead(num, destination))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall bytes @rip_align: {BitConverter.ToString(destination.ToArray()).Replace("-", " ")}");
|
|
}
|
|
if (rsp != 0 && cpuContext.TryReadUInt64(rsp, out var value) && cpuContext.TryReadUInt64(rsp + 8, out var value2))
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall stack: [rsp]=0x{value:X16} [rsp+8]=0x{value2:X16}");
|
|
}
|
|
|
|
var threads = SnapshotGuestThreads();
|
|
if (threads.Length != 0)
|
|
{
|
|
var logged = 0;
|
|
foreach (var thread in threads)
|
|
{
|
|
var hostThreadId = Volatile.Read(ref thread.HostThreadId);
|
|
var hostContextText = string.Empty;
|
|
if (TryCaptureHostThreadContext(hostThreadId, out var hostContext))
|
|
{
|
|
hostContextText =
|
|
$" host_tid={hostThreadId} host_rip=0x{hostContext.Rip:X16} host_rsp=0x{hostContext.Rsp:X16} " +
|
|
$"host_rbp=0x{hostContext.Rbp:X16} host_rax=0x{hostContext.Rax:X16} host_rbx=0x{hostContext.Rbx:X16} " +
|
|
$"host_rcx=0x{hostContext.Rcx:X16} host_rdx=0x{hostContext.Rdx:X16}";
|
|
}
|
|
else if (hostThreadId != 0)
|
|
{
|
|
hostContextText = $" host_tid={hostThreadId} host_ctx=unavailable";
|
|
}
|
|
|
|
Console.Error.WriteLine(
|
|
$"[LOADER][ERROR] Stall guest-thread: handle=0x{thread.ThreadHandle:X16} name='{thread.Name}' " +
|
|
$"state={thread.State} imports={Interlocked.Read(ref thread.ImportCount)} " +
|
|
$"nid={Volatile.Read(ref thread.LastImportNid) ?? "none"} ret=0x{Volatile.Read(ref thread.LastReturnRip):X16} " +
|
|
$"block={thread.BlockReason ?? "none"}{hostContextText}");
|
|
logged++;
|
|
if (logged >= 48 && threads.Length > logged)
|
|
{
|
|
Console.Error.WriteLine($"[LOADER][ERROR] Stall guest-thread: ... {threads.Length - logged} more");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
|
|
private unsafe static bool TryCaptureHostThreadContext(int hostThreadId, out HostThreadContextSnapshot snapshot)
|
|
{
|
|
snapshot = default;
|
|
if (hostThreadId == 0 || unchecked((uint)hostThreadId) == GetCurrentThreadId())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var threadHandle = OpenThread(ThreadGetContext | ThreadSuspendResume, false, unchecked((uint)hostThreadId));
|
|
if (threadHandle == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void* contextRecord = null;
|
|
var suspended = false;
|
|
try
|
|
{
|
|
if (SuspendThread(threadHandle) == uint.MaxValue)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
suspended = true;
|
|
contextRecord = NativeMemory.AllocZeroed((nuint)Win64ContextSize);
|
|
WriteCtxU32(contextRecord, Win64ContextFlagsOffset, ContextAmd64ControlInteger);
|
|
if (!GetThreadContext(threadHandle, contextRecord))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
snapshot = new HostThreadContextSnapshot(
|
|
true,
|
|
ReadCtxU64(contextRecord, 248),
|
|
ReadCtxU64(contextRecord, 152),
|
|
ReadCtxU64(contextRecord, 160),
|
|
ReadCtxU64(contextRecord, 120),
|
|
ReadCtxU64(contextRecord, 144),
|
|
ReadCtxU64(contextRecord, 128),
|
|
ReadCtxU64(contextRecord, 136));
|
|
return true;
|
|
}
|
|
finally
|
|
{
|
|
if (contextRecord != null)
|
|
{
|
|
NativeMemory.Free(contextRecord);
|
|
}
|
|
if (suspended)
|
|
{
|
|
_ = ResumeThread(threadHandle);
|
|
}
|
|
_ = CloseHandle(threadHandle);
|
|
}
|
|
}
|
|
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern uint TlsAlloc();
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern bool TlsFree(uint dwTlsIndex);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern bool TlsSetValue(uint dwTlsIndex, nint lpTlsValue);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern nint TlsGetValue(uint dwTlsIndex);
|
|
|
|
[DllImport("kernel32.dll", CharSet = CharSet.Unicode)]
|
|
private static extern nint GetModuleHandle(string lpModuleName);
|
|
|
|
[DllImport("kernel32.dll", CharSet = CharSet.Ansi)]
|
|
private static extern nint GetProcAddress(nint hModule, string procName);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private unsafe static extern void* AddVectoredExceptionHandler(uint first, IntPtr handler);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private unsafe static extern uint RemoveVectoredExceptionHandler(void* handle);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern IntPtr SetUnhandledExceptionFilter(IntPtr lpTopLevelExceptionFilter);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern uint GetCurrentThreadId();
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private static extern nint GetCurrentThread();
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
private static extern nuint SetThreadAffinityMask(nint hThread, nuint dwThreadAffinityMask);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
private static extern nint OpenThread(uint dwDesiredAccess, [MarshalAs(UnmanagedType.Bool)] bool bInheritHandle, uint dwThreadId);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
private static extern uint SuspendThread(nint hThread);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
private static extern uint ResumeThread(nint hThread);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private unsafe static extern bool GetThreadContext(nint hThread, void* lpContext);
|
|
|
|
[DllImport("kernel32.dll", SetLastError = true)]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private static extern bool CloseHandle(nint hObject);
|
|
|
|
public unsafe void Dispose()
|
|
{
|
|
if (!RequestGuestThreadTeardown(2000))
|
|
{
|
|
// A guest worker is still executing native code; freeing the trampolines,
|
|
// exception-handler stubs, or GC handles under it turns process exit into
|
|
// an execute-AV / CLR fatal. Leak them — the process is going away anyway.
|
|
Console.Error.WriteLine(
|
|
"[LOADER][WARN] Skipping executable stub teardown: guest worker threads are still running.");
|
|
return;
|
|
}
|
|
// Native guest workers park idle once every guest thread has unwound; stop
|
|
// them before any executable stub or TLS index they reference is freed.
|
|
DisposeNativeGuestExecutors();
|
|
ClearImportHandlerTrampolines();
|
|
_importEntries = Array.Empty<ImportStubEntry>();
|
|
_runtimeSymbolsByName.Clear();
|
|
ResetLazyDlsymStubState();
|
|
_importNidHashCache.Clear();
|
|
StopStallWatchdog();
|
|
if (_exceptionHandler != 0)
|
|
{
|
|
RemoveVectoredExceptionHandler((void*)_exceptionHandler);
|
|
_exceptionHandler = 0;
|
|
}
|
|
if (_rawExceptionHandler != 0)
|
|
{
|
|
RemoveVectoredExceptionHandler((void*)_rawExceptionHandler);
|
|
_rawExceptionHandler = 0;
|
|
}
|
|
if (_rawExceptionHandlerStub != 0)
|
|
{
|
|
VirtualFree((void*)_rawExceptionHandlerStub, 0u, 32768u);
|
|
_rawExceptionHandlerStub = 0;
|
|
}
|
|
if (_exceptionHandlerStub != 0)
|
|
{
|
|
VirtualFree((void*)_exceptionHandlerStub, 0u, 32768u);
|
|
_exceptionHandlerStub = 0;
|
|
}
|
|
if (_unhandledFilterStub != 0)
|
|
{
|
|
SetUnhandledExceptionFilter(0);
|
|
VirtualFree((void*)_unhandledFilterStub, 0u, 32768u);
|
|
_unhandledFilterStub = 0;
|
|
}
|
|
if (_handlerHandle.IsAllocated)
|
|
{
|
|
_handlerHandle.Free();
|
|
}
|
|
if (_unhandledFilterHandle.IsAllocated)
|
|
{
|
|
_unhandledFilterHandle.Free();
|
|
}
|
|
if (_selfHandle.IsAllocated)
|
|
{
|
|
_selfHandle.Free();
|
|
_selfHandlePtr = 0;
|
|
}
|
|
if (_ownedTlsBaseAddress != 0)
|
|
{
|
|
VirtualFree((void*)_ownedTlsBaseAddress, 0u, 32768u);
|
|
_ownedTlsBaseAddress = 0;
|
|
}
|
|
_tlsBaseAddress = 0;
|
|
_ownsTlsBaseAddress = false;
|
|
if (_tlsModuleBases.Count > 0)
|
|
{
|
|
foreach (var (_, num3) in _tlsModuleBases)
|
|
{
|
|
if (num3 != 0)
|
|
{
|
|
VirtualFree((void*)num3, 0u, 32768u);
|
|
}
|
|
}
|
|
_tlsModuleBases.Clear();
|
|
}
|
|
if (_tlsHandlerAddress != 0)
|
|
{
|
|
VirtualFree((void*)_tlsHandlerAddress, 0u, 32768u);
|
|
_tlsHandlerAddress = 0;
|
|
}
|
|
if (_hostRspSlotStorage != 0)
|
|
{
|
|
VirtualFree((void*)_hostRspSlotStorage, 0u, 32768u);
|
|
_hostRspSlotStorage = 0;
|
|
}
|
|
if (_guestTlsBaseTlsIndex != uint.MaxValue)
|
|
{
|
|
TlsFree(_guestTlsBaseTlsIndex);
|
|
_guestTlsBaseTlsIndex = uint.MaxValue;
|
|
}
|
|
if (_hostRspSlotTlsIndex != uint.MaxValue)
|
|
{
|
|
TlsFree(_hostRspSlotTlsIndex);
|
|
_hostRspSlotTlsIndex = uint.MaxValue;
|
|
}
|
|
if (_unresolvedReturnStub != 0)
|
|
{
|
|
VirtualFree((void*)_unresolvedReturnStub, 0u, 32768u);
|
|
_unresolvedReturnStub = 0;
|
|
}
|
|
if (_guestReturnStub != 0)
|
|
{
|
|
VirtualFree((void*)_guestReturnStub, 0u, 32768u);
|
|
_guestReturnStub = 0;
|
|
}
|
|
if (_guestContextTransferStub != 0)
|
|
{
|
|
VirtualFree((void*)_guestContextTransferStub, 0u, 32768u);
|
|
_guestContextTransferStub = 0;
|
|
}
|
|
foreach (var frame in _guestContextTransferFrames.Values)
|
|
{
|
|
if (frame != 0)
|
|
{
|
|
NativeMemory.Free((void*)frame);
|
|
}
|
|
}
|
|
_guestContextTransferFrames.Dispose();
|
|
if (_lowIndexedTableScratch != 0)
|
|
{
|
|
VirtualFree((void*)_lowIndexedTableScratch, 0u, 32768u);
|
|
_lowIndexedTableScratch = 0;
|
|
}
|
|
if (_stackGuardCompareScratch != 0)
|
|
{
|
|
VirtualFree((void*)_stackGuardCompareScratch, 0u, 32768u);
|
|
_stackGuardCompareScratch = 0;
|
|
}
|
|
if (_nullObjectStoreScratch != 0)
|
|
{
|
|
VirtualFree((void*)_nullObjectStoreScratch, 0u, 32768u);
|
|
_nullObjectStoreScratch = 0;
|
|
}
|
|
Volatile.Write(ref _globalUnresolvedReturnStub, 0uL);
|
|
}
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private unsafe static extern void* VirtualAlloc(void* lpAddress, nuint dwSize, uint flAllocationType, uint flProtect);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private unsafe static extern bool VirtualFree(void* lpAddress, nuint dwSize, uint dwFreeType);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private unsafe static extern bool VirtualProtect(void* lpAddress, nuint dwSize, uint flNewProtect, uint* lpflOldProtect);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private unsafe static extern void* GetCurrentProcess();
|
|
|
|
[DllImport("kernel32.dll")]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private unsafe static extern bool FlushInstructionCache(void* hProcess, void* lpBaseAddress, nuint dwSize);
|
|
|
|
[DllImport("kernel32.dll")]
|
|
private unsafe static extern nuint VirtualQuery(void* lpAddress, out MEMORY_BASIC_INFORMATION64 lpBuffer, nuint dwLength);
|
|
}
|