forked from de4dot/de4dot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMethodPrinter.cs
205 lines (184 loc) · 6.59 KB
/
MethodPrinter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/*
Copyright (C) 2011-2015 [email protected]
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 System.Text;
using dnlib.DotNet;
using dnlib.DotNet.Emit;
namespace de4dot.code {
public class MethodPrinter {
LoggerEvent loggerEvent;
IList<Instruction> allInstructions;
IList<ExceptionHandler> allExceptionHandlers;
Dictionary<Instruction, bool> targets = new Dictionary<Instruction, bool>();
Dictionary<Instruction, string> labels = new Dictionary<Instruction, string>();
class ExInfo {
public List<ExceptionHandler> tryStarts = new List<ExceptionHandler>();
public List<ExceptionHandler> tryEnds = new List<ExceptionHandler>();
public List<ExceptionHandler> filterStarts = new List<ExceptionHandler>();
public List<ExceptionHandler> handlerStarts = new List<ExceptionHandler>();
public List<ExceptionHandler> handlerEnds = new List<ExceptionHandler>();
}
Dictionary<Instruction, ExInfo> exInfos = new Dictionary<Instruction, ExInfo>();
ExInfo lastExInfo;
public void Print(LoggerEvent loggerEvent, IList<Instruction> allInstructions, IList<ExceptionHandler> allExceptionHandlers) {
try {
this.loggerEvent = loggerEvent;
this.allInstructions = allInstructions;
this.allExceptionHandlers = allExceptionHandlers;
lastExInfo = new ExInfo();
Print();
}
finally {
this.allInstructions = null;
this.allExceptionHandlers = null;
targets.Clear();
labels.Clear();
exInfos.Clear();
lastExInfo = null;
}
}
void InitTargets() {
foreach (var instr in allInstructions) {
switch (instr.OpCode.OperandType) {
case OperandType.ShortInlineBrTarget:
case OperandType.InlineBrTarget:
SetTarget(instr.Operand as Instruction);
break;
case OperandType.InlineSwitch:
foreach (var targetInstr in (Instruction[])instr.Operand)
SetTarget(targetInstr);
break;
}
}
foreach (var ex in allExceptionHandlers) {
SetTarget(ex.TryStart);
SetTarget(ex.TryEnd);
SetTarget(ex.FilterStart);
SetTarget(ex.HandlerStart);
SetTarget(ex.HandlerEnd);
}
var sortedTargets = new List<Instruction>(targets.Keys);
sortedTargets.Sort((a, b) => a.Offset.CompareTo(b.Offset));
for (int i = 0; i < sortedTargets.Count; i++)
labels[sortedTargets[i]] = $"label_{i}";
}
void SetTarget(Instruction instr) {
if (instr != null)
targets[instr] = true;
}
void InitExHandlers() {
foreach (var ex in allExceptionHandlers) {
if (ex.TryStart != null) {
GetExInfo(ex.TryStart).tryStarts.Add(ex);
GetExInfo(ex.TryEnd).tryEnds.Add(ex);
}
if (ex.FilterStart != null)
GetExInfo(ex.FilterStart).filterStarts.Add(ex);
if (ex.HandlerStart != null) {
GetExInfo(ex.HandlerStart).handlerStarts.Add(ex);
GetExInfo(ex.HandlerEnd).handlerEnds.Add(ex);
}
}
}
ExInfo GetExInfo(Instruction instruction) {
if (instruction == null)
return lastExInfo;
if (!exInfos.TryGetValue(instruction, out var exInfo))
exInfos[instruction] = exInfo = new ExInfo();
return exInfo;
}
void Print() {
InitTargets();
InitExHandlers();
Logger.Instance.Indent();
foreach (var instr in allInstructions) {
if (targets.ContainsKey(instr)) {
Logger.Instance.DeIndent();
Logger.Log(loggerEvent, "{0}:", GetLabel(instr));
Logger.Instance.Indent();
}
if (exInfos.TryGetValue(instr, out var exInfo))
PrintExInfo(exInfo);
var instrString = instr.OpCode.Name;
var operandString = GetOperandString(instr);
var memberRef = instr.Operand as ITokenOperand;
if (operandString == "")
Logger.Log(loggerEvent, "{0}", instrString);
else if (memberRef != null)
Logger.Log(loggerEvent, "{0,-9} {1} // {2:X8}", instrString, Utils.RemoveNewlines(operandString), memberRef.MDToken.ToUInt32());
else
Logger.Log(loggerEvent, "{0,-9} {1}", instrString, Utils.RemoveNewlines(operandString));
}
PrintExInfo(lastExInfo);
Logger.Instance.DeIndent();
}
string GetOperandString(Instruction instr) {
if (instr.Operand is Instruction)
return GetLabel((Instruction)instr.Operand);
else if (instr.Operand is Instruction[]) {
var sb = new StringBuilder();
var targets = (Instruction[])instr.Operand;
for (int i = 0; i < targets.Length; i++) {
if (i > 0)
sb.Append(',');
sb.Append(GetLabel(targets[i]));
}
return sb.ToString();
}
else if (instr.Operand is string)
return Utils.ToCsharpString((string)instr.Operand);
else if (instr.Operand is Parameter arg) {
var s = InstructionPrinter.GetOperandString(instr);
if (s != "")
return s;
return $"<arg_{arg.Index}>";
}
else
return InstructionPrinter.GetOperandString(instr);
}
void PrintExInfo(ExInfo exInfo) {
Logger.Instance.DeIndent();
foreach (var ex in exInfo.tryStarts)
Logger.Log(loggerEvent, "// try start: {0}", GetExceptionString(ex));
foreach (var ex in exInfo.tryEnds)
Logger.Log(loggerEvent, "// try end: {0}", GetExceptionString(ex));
foreach (var ex in exInfo.filterStarts)
Logger.Log(loggerEvent, "// filter start: {0}", GetExceptionString(ex));
foreach (var ex in exInfo.handlerStarts)
Logger.Log(loggerEvent, "// handler start: {0}", GetExceptionString(ex));
foreach (var ex in exInfo.handlerEnds)
Logger.Log(loggerEvent, "// handler end: {0}", GetExceptionString(ex));
Logger.Instance.Indent();
}
string GetExceptionString(ExceptionHandler ex) {
var sb = new StringBuilder();
if (ex.TryStart != null)
sb.Append($"TRY: {GetLabel(ex.TryStart)}-{GetLabel(ex.TryEnd)}");
if (ex.FilterStart != null)
sb.Append($", FILTER: {GetLabel(ex.FilterStart)}");
if (ex.HandlerStart != null)
sb.Append($", HANDLER: {GetLabel(ex.HandlerStart)}-{GetLabel(ex.HandlerEnd)}");
sb.Append($", TYPE: {ex.HandlerType}");
if (ex.CatchType != null)
sb.Append($", CATCH: {ex.CatchType}");
return sb.ToString();
}
string GetLabel(Instruction instr) {
if (instr == null)
return "<end>";
return labels[instr];
}
}
}