de4dot-cex/de4dot.code/deobfuscators/ValueInlinerBase.cs

159 lines
5.8 KiB
C#
Raw Permalink Normal View History

/*
2015-10-30 05:45:26 +08:00
Copyright (C) 2011-2015 de4dot@gmail.com
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/>.
*/
2012-01-14 19:19:17 +08:00
using System;
using System.Collections.Generic;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
using de4dot.blocks;
namespace de4dot.code.deobfuscators {
public abstract class ValueInlinerBase<TValue> : MethodReturnValueInliner {
2012-11-22 16:14:51 +08:00
MethodDefAndDeclaringTypeDict<Func<MethodDef, MethodSpec, object[], object>> decrypterMethods = new MethodDefAndDeclaringTypeDict<Func<MethodDef, MethodSpec, object[], object>>();
bool removeUnbox = false;
class MyCallResult : CallResult {
2012-11-22 16:14:51 +08:00
public IMethod methodRef;
2012-11-01 23:42:02 +08:00
public MethodSpec gim;
public MyCallResult(Block block, int callEndIndex, IMethod method, MethodSpec gim)
: base(block, callEndIndex) {
2012-11-22 16:14:51 +08:00
this.methodRef = method;
2012-07-28 10:22:17 +08:00
this.gim = gim;
}
}
public bool RemoveUnbox {
get { return removeUnbox; }
set { removeUnbox = value; }
}
2012-01-14 19:34:42 +08:00
public override bool HasHandlers {
get { return decrypterMethods.Count != 0; }
}
2012-11-01 23:42:02 +08:00
public IEnumerable<MethodDef> Methods {
2013-01-19 20:03:57 +08:00
get { return decrypterMethods.GetKeys(); }
}
2013-01-19 20:03:57 +08:00
public void Add(MethodDef method, Func<MethodDef, MethodSpec, object[], object> handler) {
2012-01-14 19:19:17 +08:00
if (method == null)
return;
2013-01-19 20:03:57 +08:00
if (decrypterMethods.Find(method) != null)
2012-11-01 23:42:02 +08:00
throw new ApplicationException(string.Format("Handler for method {0:X8} has already been added", method.MDToken.ToInt32()));
if (method != null)
2013-01-19 20:03:57 +08:00
decrypterMethods.Add(method, handler);
}
2013-01-19 20:03:57 +08:00
protected override void InlineAllCalls() {
foreach (var tmp in callResults) {
var callResult = (MyCallResult)tmp;
2013-01-19 20:03:57 +08:00
var handler = decrypterMethods.Find(callResult.methodRef);
2012-11-22 16:14:51 +08:00
callResult.returnValue = handler((MethodDef)callResult.methodRef, callResult.gim, callResult.args);
}
}
2013-01-19 20:03:57 +08:00
protected override CallResult CreateCallResult(IMethod method, MethodSpec gim, Block block, int callInstrIndex) {
if (decrypterMethods.Find(method) == null)
return null;
2012-07-28 10:22:17 +08:00
return new MyCallResult(block, callInstrIndex, method, gim);
}
2013-01-19 20:03:57 +08:00
protected bool RemoveUnboxInstruction(Block block, int index, string unboxType) {
if (!removeUnbox)
return false;
var instrs = block.Instructions;
if (index >= instrs.Count)
return false;
var unbox = instrs[index];
if (unbox.OpCode.Code != Code.Unbox_Any)
return false;
2012-11-01 23:42:02 +08:00
var type = unbox.Operand as ITypeDefOrRef;
if (type == null || type.FullName != unboxType)
return false;
2013-01-19 20:03:57 +08:00
block.Remove(index, 1);
return true;
}
}
public class BooleanValueInliner : ValueInlinerBase<bool> {
2013-01-19 20:03:57 +08:00
protected override void InlineReturnValues(IList<CallResult> callResults) {
foreach (var callResult in callResults) {
var block = callResult.block;
int num = callResult.callEndIndex - callResult.callStartIndex + 1;
2013-01-19 20:03:57 +08:00
block.Replace(callResult.callStartIndex, num, Instruction.CreateLdcI4((bool)callResult.returnValue ? 1 : 0));
RemoveUnboxInstruction(block, callResult.callStartIndex + 1, "System.Boolean");
Logger.v("Decrypted boolean: {0}", callResult.returnValue);
}
}
}
public class Int32ValueInliner : ValueInlinerBase<int> {
2013-01-19 20:03:57 +08:00
protected override void InlineReturnValues(IList<CallResult> callResults) {
foreach (var callResult in callResults) {
var block = callResult.block;
int num = callResult.callEndIndex - callResult.callStartIndex + 1;
2013-01-19 20:03:57 +08:00
block.Replace(callResult.callStartIndex, num, Instruction.CreateLdcI4((int)callResult.returnValue));
RemoveUnboxInstruction(block, callResult.callStartIndex + 1, "System.Int32");
Logger.v("Decrypted int32: {0}", callResult.returnValue);
}
}
}
public class Int64ValueInliner : ValueInlinerBase<long> {
2013-01-19 20:03:57 +08:00
protected override void InlineReturnValues(IList<CallResult> callResults) {
foreach (var callResult in callResults) {
var block = callResult.block;
int num = callResult.callEndIndex - callResult.callStartIndex + 1;
2013-01-19 20:03:57 +08:00
block.Replace(callResult.callStartIndex, num, OpCodes.Ldc_I8.ToInstruction((long)callResult.returnValue));
RemoveUnboxInstruction(block, callResult.callStartIndex + 1, "System.Int64");
Logger.v("Decrypted int64: {0}", callResult.returnValue);
}
}
}
public class SingleValueInliner : ValueInlinerBase<float> {
2013-01-19 20:03:57 +08:00
protected override void InlineReturnValues(IList<CallResult> callResults) {
foreach (var callResult in callResults) {
var block = callResult.block;
int num = callResult.callEndIndex - callResult.callStartIndex + 1;
2013-01-19 20:03:57 +08:00
block.Replace(callResult.callStartIndex, num, OpCodes.Ldc_R4.ToInstruction((float)callResult.returnValue));
RemoveUnboxInstruction(block, callResult.callStartIndex + 1, "System.Single");
Logger.v("Decrypted single: {0}", callResult.returnValue);
}
}
}
public class DoubleValueInliner : ValueInlinerBase<double> {
2013-01-19 20:03:57 +08:00
protected override void InlineReturnValues(IList<CallResult> callResults) {
foreach (var callResult in callResults) {
var block = callResult.block;
int num = callResult.callEndIndex - callResult.callStartIndex + 1;
2013-01-19 20:03:57 +08:00
block.Replace(callResult.callStartIndex, num, OpCodes.Ldc_R8.ToInstruction((double)callResult.returnValue));
RemoveUnboxInstruction(block, callResult.callStartIndex + 1, "System.Double");
Logger.v("Decrypted double: {0}", callResult.returnValue);
}
}
}
}