de4dot-cex/blocks/cflow/MethodCallInliner.cs

237 lines
7.0 KiB
C#
Raw Normal View History

2011-10-24 18:45:20 +08:00
/*
2012-01-10 06:02:47 +08:00
Copyright (C) 2011-2012 de4dot@gmail.com
2011-10-24 18:45:20 +08:00
This file is part of de4dot.
de4dot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
de4dot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using System.Collections.Generic;
using Mono.Cecil;
using Mono.Cecil.Cil;
namespace de4dot.blocks.cflow {
2012-01-11 11:38:02 +08:00
public class MethodCallInliner : MethodCallInlinerBase {
2011-12-21 03:11:05 +08:00
bool inlineInstanceMethods;
2011-10-24 18:45:20 +08:00
2012-01-11 11:38:02 +08:00
public MethodCallInliner(bool inlineInstanceMethods) {
2011-12-21 03:11:05 +08:00
this.inlineInstanceMethods = inlineInstanceMethods;
2011-10-24 18:45:20 +08:00
}
2012-01-11 11:38:02 +08:00
protected override bool deobfuscateInternal() {
2011-10-24 18:45:20 +08:00
bool changed = false;
var instructions = block.Instructions;
for (int i = 0; i < instructions.Count; i++) {
var instr = instructions[i].Instruction;
if (instr.OpCode.Code == Code.Call)
changed |= inlineMethod(instr, i);
}
return changed;
}
2011-12-21 03:11:05 +08:00
bool canInline(MethodDefinition method) {
if (method.IsStatic)
return true;
if (method.IsVirtual)
return false;
return inlineInstanceMethods;
}
2011-10-24 18:45:20 +08:00
bool inlineMethod(Instruction callInstr, int instrIndex) {
var method = callInstr.Operand as MethodDefinition;
if (method == null)
return false;
if (MemberReferenceHelper.compareMethodReferenceAndDeclaringType(method, blocks.Method))
return false;
2011-10-24 18:45:20 +08:00
2011-12-21 03:11:05 +08:00
if (!canInline(method))
2011-10-24 18:45:20 +08:00
return false;
var body = method.Body;
if (body == null)
return false;
if (!MemberReferenceHelper.compareTypes(method.DeclaringType, blocks.Method.DeclaringType))
return false;
int index = 0;
var instr = DotNetUtils.getInstruction(body.Instructions, ref index);
2011-10-24 18:45:20 +08:00
if (instr == null)
return false;
switch (instr.OpCode.Code) {
case Code.Ldarg:
case Code.Ldarg_S:
case Code.Ldarg_0:
case Code.Ldarg_1:
case Code.Ldarg_2:
case Code.Ldarg_3:
2011-12-28 20:28:17 +08:00
case Code.Ldarga:
case Code.Ldarga_S:
2011-10-24 18:45:20 +08:00
case Code.Call:
2011-12-28 20:28:17 +08:00
case Code.Newobj:
2011-10-24 18:45:20 +08:00
return inlineOtherMethod(instrIndex, method, instr, index);
case Code.Ldc_I4:
case Code.Ldc_I4_0:
case Code.Ldc_I4_1:
case Code.Ldc_I4_2:
case Code.Ldc_I4_3:
case Code.Ldc_I4_4:
case Code.Ldc_I4_5:
case Code.Ldc_I4_6:
case Code.Ldc_I4_7:
case Code.Ldc_I4_8:
case Code.Ldc_I4_M1:
case Code.Ldc_I4_S:
case Code.Ldc_I8:
case Code.Ldc_R4:
case Code.Ldc_R8:
case Code.Ldftn:
case Code.Ldnull:
case Code.Ldstr:
case Code.Ldtoken:
case Code.Ldsfld:
case Code.Ldsflda:
return inlineLoadMethod(instrIndex, method, instr, index);
default:
return false;
}
}
bool inlineLoadMethod(int patchIndex, MethodDefinition method, Instruction loadInstr, int instrIndex) {
var instr = DotNetUtils.getInstruction(method.Body.Instructions, ref instrIndex);
2011-10-24 18:45:20 +08:00
if (instr == null || instr.OpCode.Code != Code.Ret)
return false;
int methodArgsCount = DotNetUtils.getArgsCount(method);
for (int i = 0; i < methodArgsCount; i++)
block.insert(patchIndex++, Instruction.Create(OpCodes.Pop));
block.Instructions[patchIndex] = new Instr(DotNetUtils.clone(loadInstr));
return true;
}
bool inlineOtherMethod(int patchIndex, MethodDefinition method, Instruction instr, int instrIndex) {
int loadIndex = 0;
int methodArgsCount = DotNetUtils.getArgsCount(method);
2011-12-28 23:40:03 +08:00
bool foundLdarga = false;
2011-10-24 18:45:20 +08:00
while (instr != null && loadIndex < methodArgsCount) {
2011-12-28 23:40:03 +08:00
bool isLdarg = true;
2011-10-24 18:45:20 +08:00
switch (instr.OpCode.Code) {
case Code.Ldarg:
case Code.Ldarg_S:
case Code.Ldarg_0:
case Code.Ldarg_1:
case Code.Ldarg_2:
case Code.Ldarg_3:
2011-12-28 23:40:03 +08:00
break;
2011-12-28 20:28:17 +08:00
case Code.Ldarga:
case Code.Ldarga_S:
2011-12-28 23:40:03 +08:00
foundLdarga = true;
break;
default:
isLdarg = false;
break;
2011-10-24 18:45:20 +08:00
}
2011-12-28 23:40:03 +08:00
if (!isLdarg)
break;
if (DotNetUtils.getArgIndex(method, instr) != loadIndex)
return false;
loadIndex++;
instr = DotNetUtils.getInstruction(method.Body.Instructions, ref instrIndex);
2011-10-24 18:45:20 +08:00
}
if (instr == null || loadIndex != methodArgsCount)
return false;
2011-12-28 20:28:17 +08:00
if (instr.OpCode.Code == Code.Call || instr.OpCode.Code == Code.Callvirt) {
2011-12-28 23:40:03 +08:00
if (foundLdarga)
return false;
2011-12-28 20:28:17 +08:00
var callInstr = instr;
var calledMethod = callInstr.Operand as MethodReference;
if (calledMethod == null)
return false;
2011-10-24 18:45:20 +08:00
2011-12-28 20:28:17 +08:00
if (!isCompatibleType(calledMethod.MethodReturnType.ReturnType, method.MethodReturnType.ReturnType))
return false;
var methodArgs = DotNetUtils.getArgs(method);
var calledMethodArgs = DotNetUtils.getArgs(calledMethod);
if (methodArgs.Count != calledMethodArgs.Count)
return false;
for (int i = 0; i < methodArgs.Count; i++) {
if (!isCompatibleType(calledMethodArgs[i], methodArgs[i]))
return false;
}
instr = DotNetUtils.getInstruction(method.Body.Instructions, ref instrIndex);
if (instr == null || instr.OpCode.Code != Code.Ret)
2011-10-24 18:45:20 +08:00
return false;
2011-12-28 20:28:17 +08:00
block.Instructions[patchIndex] = new Instr(DotNetUtils.clone(callInstr));
return true;
2011-10-24 18:45:20 +08:00
}
2011-12-28 20:28:17 +08:00
else if (instr.OpCode.Code == Code.Newobj) {
2011-12-28 23:40:03 +08:00
if (foundLdarga)
return false;
2011-12-28 20:28:17 +08:00
var newobjInstr = instr;
var ctor = newobjInstr.Operand as MethodReference;
if (ctor == null)
return false;
2011-10-24 18:45:20 +08:00
2011-12-28 20:28:17 +08:00
if (!isCompatibleType(ctor.DeclaringType, method.MethodReturnType.ReturnType))
return false;
2011-10-24 18:45:20 +08:00
2011-12-28 20:28:17 +08:00
var methodArgs = DotNetUtils.getArgs(method);
var calledMethodArgs = DotNetUtils.getArgs(ctor);
if (methodArgs.Count + 1 != calledMethodArgs.Count)
return false;
for (int i = 0; i < methodArgs.Count; i++) {
if (!isCompatibleType(calledMethodArgs[i + 1], methodArgs[i]))
return false;
}
instr = DotNetUtils.getInstruction(method.Body.Instructions, ref instrIndex);
if (instr == null || instr.OpCode.Code != Code.Ret)
return false;
block.Instructions[patchIndex] = new Instr(DotNetUtils.clone(newobjInstr));
return true;
}
else if (instr.OpCode.Code == Code.Ldfld || instr.OpCode.Code == Code.Ldflda ||
instr.OpCode.Code == Code.Ldftn || instr.OpCode.Code == Code.Ldvirtftn) {
var ldInstr = instr;
instr = DotNetUtils.getInstruction(method.Body.Instructions, ref instrIndex);
if (instr == null || instr.OpCode.Code != Code.Ret)
return false;
if (methodArgsCount != 1)
return false;
block.Instructions[patchIndex] = new Instr(DotNetUtils.clone(ldInstr));
return true;
}
return false;
2011-10-24 18:45:20 +08:00
}
static bool isCompatibleType(TypeReference origType, TypeReference newType) {
if (MemberReferenceHelper.compareTypes(origType, newType))
return true;
if (newType.IsValueType || origType.IsValueType)
return false;
return newType.FullName == "System.Object";
}
}
}