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
|
/*******************************************************************************
* Copyright (c) 2014 Jeff Martin.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.bytecode;
import javassist.CtBehavior;
import javassist.CtClass;
import javassist.CtField;
import javassist.CtMethod;
import javassist.bytecode.ConstPool;
import javassist.bytecode.Descriptor;
import javassist.bytecode.SourceFileAttribute;
import cuchaz.enigma.mapping.BehaviorEntry;
import cuchaz.enigma.mapping.ClassEntry;
import cuchaz.enigma.mapping.EntryFactory;
import cuchaz.enigma.mapping.FieldEntry;
import cuchaz.enigma.mapping.Signature;
import cuchaz.enigma.mapping.Translator;
import cuchaz.enigma.mapping.Type;
public class ClassTranslator {
private Translator m_translator;
public ClassTranslator(Translator translator) {
m_translator = translator;
}
public void translate(CtClass c) {
// NOTE: the order of these translations is very important
// translate all the field and method references in the code by editing the constant pool
ConstPool constants = c.getClassFile().getConstPool();
ConstPoolEditor editor = new ConstPoolEditor(constants);
for (int i = 1; i < constants.getSize(); i++) {
switch (constants.getTag(i)) {
case ConstPool.CONST_Fieldref: {
// translate the name and type
FieldEntry entry = EntryFactory.getFieldEntry(
Descriptor.toJvmName(constants.getFieldrefClassName(i)),
constants.getFieldrefName(i),
constants.getFieldrefType(i)
);
FieldEntry translatedEntry = m_translator.translateEntry(entry);
if (!entry.equals(translatedEntry)) {
editor.changeMemberrefNameAndType(i, translatedEntry.getName(), translatedEntry.getType().toString());
}
}
break;
case ConstPool.CONST_Methodref:
case ConstPool.CONST_InterfaceMethodref: {
// translate the name and type (ie signature)
BehaviorEntry entry = EntryFactory.getBehaviorEntry(
Descriptor.toJvmName(editor.getMemberrefClassname(i)),
editor.getMemberrefName(i),
editor.getMemberrefType(i)
);
BehaviorEntry translatedEntry = m_translator.translateEntry(entry);
if (!entry.equals(translatedEntry)) {
editor.changeMemberrefNameAndType(i, translatedEntry.getName(), translatedEntry.getSignature().toString());
}
}
break;
}
}
ClassEntry classEntry = new ClassEntry(Descriptor.toJvmName(c.getName()));
// translate all the fields
for (CtField field : c.getDeclaredFields()) {
// translate the name
FieldEntry entry = EntryFactory.getFieldEntry(field);
String translatedName = m_translator.translate(entry);
if (translatedName != null) {
field.setName(translatedName);
}
// translate the type
Type translatedType = m_translator.translateType(entry.getType());
field.getFieldInfo().setDescriptor(translatedType.toString());
}
// translate all the methods and constructors
for (CtBehavior behavior : c.getDeclaredBehaviors()) {
BehaviorEntry entry = EntryFactory.getBehaviorEntry(behavior);
if (behavior instanceof CtMethod) {
CtMethod method = (CtMethod)behavior;
// translate the name
String translatedName = m_translator.translate(entry);
if (translatedName != null) {
method.setName(translatedName);
}
}
if (entry.getSignature() != null) {
// translate the signature
Signature translatedSignature = m_translator.translateSignature(entry.getSignature());
behavior.getMethodInfo().setDescriptor(translatedSignature.toString());
}
}
// translate all the class names referenced in the code
// the above code only changed method/field/reference names and types, but not the rest of the class references
ClassRenamer.renameClasses(c, m_translator);
// translate the source file attribute too
ClassEntry deobfClassEntry = m_translator.translateEntry(classEntry);
if (deobfClassEntry != null) {
String sourceFile = Descriptor.toJvmName(deobfClassEntry.getOutermostClassName()) + ".java";
c.getClassFile().addAttribute(new SourceFileAttribute(constants, sourceFile));
}
}
}
|