123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- using System;
- using System.Reflection;
- using System.Runtime.InteropServices;
- using BepInEx.Logging;
- using MonoMod.RuntimeDetour;
- using MonoMod.Utils;
- namespace BepInEx.IL2CPP.Hook
- {
- public class FastNativeDetour : IDetour
- {
- protected byte[] BackupBytes { get; set; }
- public bool IsValid { get; protected set; } = true;
- public bool IsApplied { get; protected set; }
- public IntPtr OriginalFunctionPtr { get; protected set; }
- public IntPtr DetourFunctionPtr { get; protected set; }
- public IntPtr TrampolinePtr { get; protected set; } = IntPtr.Zero;
- public int TrampolineSize { get; protected set; } = 0;
- protected int TrampolineJmpSize { get; set; } = 0;
- protected MethodInfo TrampolineMethod { get; set; }
- public FastNativeDetour(IntPtr originalFunctionPtr, IntPtr detourFunctionPtr)
- {
- OriginalFunctionPtr = originalFunctionPtr;
- DetourFunctionPtr = detourFunctionPtr;
- // TODO: This may not be safe during undo if the method is smaller than 20 bytes
- BackupBytes = new byte[20];
- Marshal.Copy(originalFunctionPtr, BackupBytes, 0, 20);
- }
- public void Apply()
- {
- Apply(null);
- }
- public void Apply(ManualLogSource debuggerLogSource)
- {
- if (IsApplied)
- return;
- DetourHelper.Native.MakeWritable(OriginalFunctionPtr, 32);
- if (debuggerLogSource != null)
- {
- debuggerLogSource.LogDebug($"Detouring 0x{OriginalFunctionPtr.ToString("X")} -> 0x{DetourFunctionPtr.ToString("X")}");
- debuggerLogSource.LogDebug("Original (32) asm");
- DetourGenerator.Disassemble(debuggerLogSource, OriginalFunctionPtr, 32);
- }
- var arch = IntPtr.Size == 8 ? Architecture.X64 : Architecture.X86;
- GenerateTrampolineInner(out int trampolineLength, out int jmpLength);
- DetourGenerator.ApplyDetour(OriginalFunctionPtr, DetourFunctionPtr, arch, trampolineLength - jmpLength);
- if (debuggerLogSource != null)
- {
- debuggerLogSource.LogDebug($"Trampoline allocation: 0x{TrampolinePtr.ToString("X")}");
- debuggerLogSource.LogDebug("Modified (32) asm");
- DetourGenerator.Disassemble(debuggerLogSource, OriginalFunctionPtr, 32);
- debuggerLogSource.LogDebug($"Trampoline ({trampolineLength}) asm");
- DetourGenerator.Disassemble(debuggerLogSource, TrampolinePtr, trampolineLength);
- }
- DetourHelper.Native.MakeExecutable(OriginalFunctionPtr, 32);
- IsApplied = true;
- }
- private void GenerateTrampolineInner(out int trampolineLength, out int jmpLength)
- {
- if (TrampolinePtr != IntPtr.Zero)
- {
- trampolineLength = TrampolineSize;
- jmpLength = TrampolineJmpSize;
- return;
- }
- byte[] instructionBuffer = new byte[32];
- Marshal.Copy(OriginalFunctionPtr, instructionBuffer, 0, 32);
- var trampolineAlloc = DetourHelper.Native.MemAlloc(80);
- DetourHelper.Native.MakeWritable(trampolineAlloc, 80);
- var arch = IntPtr.Size == 8 ? Architecture.X64 : Architecture.X86;
- DetourGenerator.CreateTrampolineFromFunction(instructionBuffer, OriginalFunctionPtr, trampolineAlloc,
- DetourGenerator.GetDetourLength(arch), arch, out trampolineLength, out jmpLength);
- DetourHelper.Native.MakeExecutable(trampolineAlloc, 80);
- TrampolinePtr = trampolineAlloc;
- TrampolineSize = trampolineLength;
- TrampolineJmpSize = jmpLength;
- }
- public void Undo()
- {
- if (!IsApplied)
- return;
- Marshal.Copy(BackupBytes, 0, OriginalFunctionPtr, BackupBytes.Length);
- DetourHelper.Native.MemFree(TrampolinePtr);
- TrampolinePtr = IntPtr.Zero;
- TrampolineSize = 0;
- IsApplied = false;
- }
- public void Free()
- {
- IsValid = false;
- }
- public MethodBase GenerateTrampoline(MethodBase signature = null)
- {
- if (TrampolineMethod == null)
- {
- // Generate trampoline without applying the detour
- GenerateTrampolineInner(out _, out _);
- if (TrampolinePtr == IntPtr.Zero)
- throw new InvalidOperationException("Trampoline pointer is not available");
- TrampolineMethod = DetourHelper.GenerateNativeProxy(TrampolinePtr, signature);
- }
- return TrampolineMethod;
- }
- public T GenerateTrampoline<T>() where T : Delegate
- {
- if (!typeof(Delegate).IsAssignableFrom(typeof(T)))
- throw new InvalidOperationException($"Type {typeof(T)} not a delegate type.");
- return GenerateTrampoline(typeof(T).GetMethod("Invoke")).CreateDelegate(typeof(T)) as T;
- }
- public void Dispose()
- {
- if (!IsValid)
- return;
- Undo();
- Free();
- }
- }
- }
|