|
@@ -103,6 +103,7 @@ namespace BepInEx.IL2CPP
|
|
|
|
|
|
uint totalBytes = 0;
|
|
uint totalBytes = 0;
|
|
var origInstructions = new InstructionList();
|
|
var origInstructions = new InstructionList();
|
|
|
|
+ var readOverflowArea = false;
|
|
while (codeReader.CanReadByte)
|
|
while (codeReader.CanReadByte)
|
|
{
|
|
{
|
|
decoder.Decode(out var instr);
|
|
decoder.Decode(out var instr);
|
|
@@ -115,26 +116,37 @@ namespace BepInEx.IL2CPP
|
|
if (totalBytes >= minimumTrampolineLength)
|
|
if (totalBytes >= minimumTrampolineLength)
|
|
break;
|
|
break;
|
|
|
|
|
|
|
|
+ if (readOverflowArea)
|
|
|
|
+ {
|
|
|
|
+ if (instr.Mnemonic != Mnemonic.Int && instr.Mnemonic != Mnemonic.Nop)
|
|
|
|
+ throw new Exception("Function is too short to hook");
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
switch (instr.FlowControl)
|
|
switch (instr.FlowControl)
|
|
{
|
|
{
|
|
case FlowControl.Next:
|
|
case FlowControl.Next:
|
|
break;
|
|
break;
|
|
|
|
|
|
|
|
+
|
|
case FlowControl.Interrupt:
|
|
case FlowControl.Interrupt:
|
|
break;
|
|
break;
|
|
|
|
|
|
|
|
|
|
case FlowControl.UnconditionalBranch:
|
|
case FlowControl.UnconditionalBranch:
|
|
- case FlowControl.IndirectBranch:
|
|
+ case FlowControl.IndirectBranch:
|
|
- case FlowControl.ConditionalBranch:
|
|
+ case FlowControl.ConditionalBranch:
|
|
|
|
+ break;
|
|
|
|
+ case FlowControl.Return:
|
|
|
|
+
|
|
|
|
+ readOverflowArea = true;
|
|
break;
|
|
break;
|
|
- case FlowControl.Return:
|
|
|
|
case FlowControl.Call:
|
|
case FlowControl.Call:
|
|
case FlowControl.IndirectCall:
|
|
case FlowControl.IndirectCall:
|
|
case FlowControl.XbeginXabortXend:
|
|
case FlowControl.XbeginXabortXend:
|
|
case FlowControl.Exception:
|
|
case FlowControl.Exception:
|
|
default:
|
|
default:
|
|
- throw new Exception("Not supported by this simple example - " + instr.FlowControl);
|
|
+ throw new Exception("Not supported yet - " + instr.FlowControl);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (totalBytes < minimumTrampolineLength)
|
|
if (totalBytes < minimumTrampolineLength)
|