de4dot-cex/de4dot.code/deobfuscators/Agile_NET/vm/v1/CsvmToCilMethodConverter.cs

53 lines
1.8 KiB
C#
Raw Normal View History

2012-04-06 00:06:56 +08:00
/*
2014-03-12 05:15:43 +08:00
Copyright (C) 2011-2014 de4dot@gmail.com
2012-04-06 00:06:56 +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;
using System.Collections.Generic;
using System.IO;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
2012-04-06 00:06:56 +08:00
using de4dot.blocks;
2013-10-30 01:11:31 +08:00
namespace de4dot.code.deobfuscators.Agile_NET.vm.v1 {
2013-11-08 18:05:17 +08:00
class CsvmToCilMethodConverter : CsvmToCilMethodConverterBase {
2012-04-06 00:06:56 +08:00
VmOpCodeHandlerDetector opCodeDetector;
2013-11-08 18:05:17 +08:00
public CsvmToCilMethodConverter(IDeobfuscatorContext deobfuscatorContext, ModuleDefMD module, VmOpCodeHandlerDetector opCodeDetector)
: base(deobfuscatorContext, module) {
2012-04-06 00:06:56 +08:00
this.opCodeDetector = opCodeDetector;
}
2013-11-08 18:05:17 +08:00
protected override List<Instruction> ReadInstructions(MethodDef cilMethod, CsvmMethodData csvmMethod) {
2012-04-06 00:06:56 +08:00
var reader = new BinaryReader(new MemoryStream(csvmMethod.Instructions));
var instrs = new List<Instruction>();
2012-11-07 12:17:45 +08:00
uint offset = 0;
2012-04-06 00:06:56 +08:00
while (reader.BaseStream.Position < reader.BaseStream.Length) {
int vmOpCode = reader.ReadUInt16();
2013-11-08 18:05:17 +08:00
var instr = opCodeDetector.Handlers[vmOpCode].Read(reader, module);
2012-04-06 00:06:56 +08:00
instr.Offset = offset;
2013-01-19 20:03:57 +08:00
offset += (uint)GetInstructionSize(instr);
2013-11-08 18:05:17 +08:00
SetCilToVmIndex(instr, instrs.Count);
SetVmIndexToCil(instr, instrs.Count);
2012-04-06 00:06:56 +08:00
instrs.Add(instr);
}
return instrs;
}
}
}