123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- using BepInEx.Logging;
- using Iced.Intel;
- using MonoMod.RuntimeDetour;
- namespace BepInEx.IL2CPP
- {
- public static class TrampolineGenerator
- {
- public static IntPtr Generate(IntPtr originalFunctionPtr, IntPtr patchedFunctionPtr, out int trampolineLength)
- {
- var trampolineAlloc = DetourHelper.Native.MemAlloc(80);
- DetourHelper.Native.MakeWritable(originalFunctionPtr, 32);
- DetourHelper.Native.MakeWritable(trampolineAlloc, 80);
- trampolineLength = Generate(originalFunctionPtr, patchedFunctionPtr, trampolineAlloc, IntPtr.Size == 8 ? 64 : 32);
- DetourHelper.Native.MakeExecutable(trampolineAlloc, (uint)trampolineLength);
- DetourHelper.Native.MakeExecutable(originalFunctionPtr, 32);
- return trampolineAlloc;
- }
- private static void Disassemble(ManualLogSource logSource, IntPtr memoryPtr, int size)
- {
- byte[] data = new byte[size];
- Marshal.Copy(memoryPtr, data, 0, size);
- var formatter = new NasmFormatter();
- var output = new StringOutput();
- var codeReader = new ByteArrayCodeReader(data);
- var decoder = Decoder.Create(64, codeReader);
- decoder.IP = (ulong)memoryPtr.ToInt64();
- while (codeReader.CanReadByte)
- {
- decoder.Decode(out var instr);
- formatter.Format(instr, output);
- logSource.LogDebug($"{instr.IP:X16} {output.ToStringAndReset()}");
- if (instr.Code == Code.Jmp_rm64 && instr.Immediate32 == 0) // && instr.IsIPRelativeMemoryOperand && instr.IPRelativeMemoryAddress = 6
- {
- byte[] address = new byte[8];
- for (int i = 0; i < 8; i++)
- address[i] = (byte)codeReader.ReadByte();
- logSource.LogDebug($"{(instr.IP + (ulong)instr.Length):X16} db 0x{BitConverter.ToUInt64(address, 0):X16}");
- decoder.IP += 8;
- }
- }
- }
- public static IntPtr Generate(ManualLogSource logSource, IntPtr originalFunctionPtr, IntPtr patchedFunctionPtr, out int trampolineLength)
- {
- logSource.LogDebug($"DoHook 0x{originalFunctionPtr.ToString("X")} -> 0x{patchedFunctionPtr.ToString("X")}");
- var trampolineAlloc = DetourHelper.Native.MemAlloc(80);
- DetourHelper.Native.MakeWritable(originalFunctionPtr, 32);
- DetourHelper.Native.MakeWritable(trampolineAlloc, 80);
- logSource.LogDebug($"Trampoline allocation: 0x{trampolineAlloc.ToString("X")}");
- logSource.LogDebug("Original (32) asm");
- Disassemble(logSource, originalFunctionPtr, 32);
- trampolineLength = Generate(originalFunctionPtr, patchedFunctionPtr, trampolineAlloc, IntPtr.Size == 8 ? 64 : 32);
- logSource.LogDebug("Modified (32) asm");
- Disassemble(logSource, originalFunctionPtr, 32);
- logSource.LogDebug($"Trampoline ({trampolineLength}) asm");
- Disassemble(logSource, trampolineAlloc, trampolineLength);
- DetourHelper.Native.MakeExecutable(trampolineAlloc, 80);
- DetourHelper.Native.MakeExecutable(originalFunctionPtr, 32);
- return trampolineAlloc;
- }
- public static int Generate(IntPtr originalFunctionPtr, IntPtr patchedFunctionPtr, IntPtr trampolineFunctionPtr, int bitness)
- {
- byte[] instructionBuffer = new byte[80];
- Marshal.Copy(originalFunctionPtr, instructionBuffer, 0, 80);
- // Decode original function up until we go past the needed bytes to write the jump to patchedFunctionPtr
- var generatedJmp = GenerateAbsoluteJump(patchedFunctionPtr, originalFunctionPtr, bitness == 64);
- uint requiredBytes = (uint)generatedJmp.Length;
- var codeReader = new ByteArrayCodeReader(instructionBuffer);
- var decoder = Decoder.Create(bitness, codeReader);
- decoder.IP = (ulong)originalFunctionPtr.ToInt64();
- uint totalBytes = 0;
- var origInstructions = new InstructionList();
- while (codeReader.CanReadByte)
- {
- decoder.Decode(out var instr);
- origInstructions.Add(instr);
- totalBytes += (uint)instr.Length;
- if (instr.Code == Code.INVALID)
- throw new Exception("Found garbage");
- if (totalBytes >= requiredBytes)
- break;
- switch (instr.FlowControl)
- {
- case FlowControl.Next:
- break;
- case FlowControl.UnconditionalBranch:
- if (instr.Op0Kind == OpKind.NearBranch64)
- {
- var target = instr.NearBranchTarget;
- }
- goto default;
- case FlowControl.IndirectBranch:// eg. jmp reg/mem
- case FlowControl.ConditionalBranch:// eg. je, jno, etc
- case FlowControl.Return:// eg. ret
- case FlowControl.Call:// eg. call method
- case FlowControl.IndirectCall:// eg. call reg/mem
- case FlowControl.Interrupt:// eg. int n
- case FlowControl.XbeginXabortXend:
- case FlowControl.Exception:// eg. ud0
- default:
- throw new Exception("Not supported by this simple example - " + instr.FlowControl);
- }
- }
- if (totalBytes < requiredBytes)
- throw new Exception("Not enough bytes!");
- if (origInstructions.Count == 0)
- throw new Exception("Not enough instructions!");
- ref readonly var lastInstr = ref origInstructions[origInstructions.Count - 1];
- if (lastInstr.FlowControl != FlowControl.Return)
- {
- if (bitness == 64)
- {
- origInstructions.Add(Instruction.CreateBranch(Code.Jmp_rel32_64, lastInstr.NextIP));
- }
- else
- {
- origInstructions.Add(Instruction.CreateBranch(Code.Jmp_rel32_32, lastInstr.NextIP));
- }
- }
- // Generate trampoline from instruction list
- var codeWriter = new CodeWriterImpl();
- ulong relocatedBaseAddress = (ulong)trampolineFunctionPtr;
- var block = new InstructionBlock(codeWriter, origInstructions, relocatedBaseAddress);
- bool success = BlockEncoder.TryEncode(decoder.Bitness, block, out var errorMessage, out var result);
- if (!success)
- {
- throw new Exception(errorMessage);
- }
- // Write generated trampoline
-
- var newCode = codeWriter.ToArray();
- Marshal.Copy(newCode, 0, trampolineFunctionPtr, newCode.Length);
- // Overwrite the start of trampolineFunctionPtr with a jump to patchedFunctionPtr
- Marshal.Copy(generatedJmp, 0, originalFunctionPtr, (int)requiredBytes);
- // Fill overwritten instructions with NOP
- for (int i = (int)requiredBytes; i < totalBytes; i++)
- Marshal.WriteByte(originalFunctionPtr + i, 0x90);
- return newCode.Length;
- }
- private static byte[] GenerateAbsoluteJump(IntPtr address, IntPtr currentAddress, bool x64)
- {
- byte[] jmpBytes;
- if (x64)
- {
- jmpBytes = new byte[]
- {
- 0xFF, 0x25, 0x00, 0x00, 0x00, 0x00, // FF25 00000000: JMP [RIP+6]
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // Absolute destination address
- };
- Array.Copy(BitConverter.GetBytes(address.ToInt64()), 0, jmpBytes, 6, 8);
- }
- else
- {
- jmpBytes = new byte[]
- {
- 0xE9, // E9: JMP rel destination
- 0x00, 0x00, 0x00, 0x00 // Relative destination address
- };
- Array.Copy(BitConverter.GetBytes(address.ToInt32() - (currentAddress.ToInt32() + 5)), 0, jmpBytes, 1, 4);
- }
- return jmpBytes;
- }
- private sealed class CodeWriterImpl : CodeWriter
- {
- readonly List<byte> allBytes = new List<byte>();
- public override void WriteByte(byte value) => allBytes.Add(value);
- public byte[] ToArray() => allBytes.ToArray();
- }
- }
- }
|