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
|
/*******************************************************************************
* Copyright (c) 2015 Jeff Martin.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public
* License v3.0 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.bytecode;
import cuchaz.enigma.mapping.*;
import javassist.CtBehavior;
import javassist.CtClass;
import javassist.bytecode.*;
public class LocalVariableRenamer {
private Translator translator;
public LocalVariableRenamer(Translator translator) {
this.translator = translator;
}
public void rename(CtClass c) {
for (CtBehavior behavior : c.getDeclaredBehaviors()) {
// if there's a local variable table, just rename everything to v1, v2, v3, ... for now
CodeAttribute codeAttribute = behavior.getMethodInfo().getCodeAttribute();
if (codeAttribute == null) {
continue;
}
BehaviorEntry behaviorEntry = EntryFactory.getBehaviorEntry(behavior);
ConstPool constants = c.getClassFile().getConstPool();
LocalVariableAttribute table = (LocalVariableAttribute) codeAttribute.getAttribute(LocalVariableAttribute.tag);
if (table != null) {
renameLVT(behaviorEntry, constants, table);
}
LocalVariableTypeAttribute typeTable = (LocalVariableTypeAttribute) codeAttribute.getAttribute(LocalVariableAttribute.typeTag);
if (typeTable != null) {
renameLVTT(typeTable, table);
}
}
}
// DEBUG
@SuppressWarnings("unused")
private void dumpTable(LocalVariableAttribute table) {
for (int i = 0; i < table.tableLength(); i++) {
System.out.println(String.format("\t%d (%d): %s %s",
i, table.index(i), table.variableName(i), table.descriptor(i)
));
}
}
private void renameLVT(BehaviorEntry behaviorEntry, ConstPool constants, LocalVariableAttribute table) {
// skip empty tables
if (table.tableLength() <= 0) {
return;
}
// where do we start counting variables?
int starti = 0;
if (table.variableName(0).equals("this")) {
// skip the "this" variable
starti = 1;
}
// rename method arguments first
int numArgs = 0;
if (behaviorEntry.getSignature() != null) {
numArgs = behaviorEntry.getSignature().getArgumentTypes().size();
boolean isNestedClassConstructor = false;
// If the behavior is a constructor and if it have more than one arg, it's probably from a nested!
if (behaviorEntry instanceof ConstructorEntry && behaviorEntry.getClassEntry() != null && behaviorEntry.getClassEntry().isInnerClass() && numArgs >= 1) {
// Get the first arg type
Type firstArg = behaviorEntry.getSignature().getArgumentTypes().get(0);
// If the arg is a class and if the class name match the outer class name of the constructor, it's definitely a constructor of a nested class
if (firstArg.isClass() && firstArg.getClassEntry().equals(behaviorEntry.getClassEntry().getOuterClassEntry())) {
isNestedClassConstructor = true;
numArgs--;
}
}
for (int i = starti; i < starti + numArgs && i < table.tableLength(); i++) {
int argi = i - starti;
String argName = this.translator.translate(new ArgumentEntry(behaviorEntry, argi, ""));
if (argName == null) {
Type argType = behaviorEntry.getSignature().getArgumentTypes().get(isNestedClassConstructor ? argi + 1 : argi);
// Unfortunately each of these have different name getters, so they have different code paths
if (argType.isPrimitive()) {
Type.Primitive argCls = argType.getPrimitive();
argName = "a" + argCls.name() + (argi + 1);
} else if (argType.isArray()) {
// List types would require this whole block again, so just go with aListx
argName = "aList" + (argi + 1);
} else if (argType.isClass()) {
ClassEntry argClsTrans = this.translator.translateEntry(argType.getClassEntry());
argName = "a" + argClsTrans.getSimpleName().replace("$", "") + (argi + 1);
} else {
argName = "a" + (argi + 1);
}
}
renameVariable(table, i, constants.addUtf8Info(argName));
}
}
// then rename the rest of the args, if any
for (int i = starti + numArgs; i < table.tableLength(); i++) {
int firstIndex = table.index(starti + numArgs);
renameVariable(table, i, constants.addUtf8Info("v" + (table.index(i) - firstIndex + 1)));
}
}
private void renameLVTT(LocalVariableTypeAttribute typeTable, LocalVariableAttribute table) {
// rename args to the same names as in the LVT
for (int i = 0; i < typeTable.tableLength(); i++) {
renameVariable(typeTable, i, getNameIndex(table, typeTable.index(i)));
}
}
private void renameVariable(LocalVariableAttribute table, int i, int stringId) {
// based off of LocalVariableAttribute.nameIndex()
ByteArray.write16bit(stringId, table.get(), i * 10 + 6);
}
private int getNameIndex(LocalVariableAttribute table, int index) {
for (int i = 0; i < table.tableLength(); i++) {
if (table.index(i) == index) {
return table.nameIndex(i);
}
}
return 0;
}
}
|