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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
|
/*******************************************************************************
* 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
*
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.convert;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.jar.JarFile;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashMultimap;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.common.collect.Multimap;
import com.google.common.collect.Sets;
import cuchaz.enigma.Deobfuscator;
import cuchaz.enigma.analysis.JarIndex;
import cuchaz.enigma.convert.ClassNamer.SidedClassNamer;
import cuchaz.enigma.mapping.BehaviorEntry;
import cuchaz.enigma.mapping.ClassEntry;
import cuchaz.enigma.mapping.ClassMapping;
import cuchaz.enigma.mapping.ClassNameReplacer;
import cuchaz.enigma.mapping.ConstructorEntry;
import cuchaz.enigma.mapping.Entry;
import cuchaz.enigma.mapping.FieldEntry;
import cuchaz.enigma.mapping.FieldMapping;
import cuchaz.enigma.mapping.Mappings;
import cuchaz.enigma.mapping.MappingsChecker;
import cuchaz.enigma.mapping.MemberMapping;
import cuchaz.enigma.mapping.MethodEntry;
import cuchaz.enigma.mapping.MethodMapping;
import cuchaz.enigma.mapping.Signature;
import cuchaz.enigma.mapping.Type;
public class MappingsConverter {
public static ClassMatches computeClassMatches(JarFile sourceJar, JarFile destJar, Mappings mappings) {
// index jars
System.out.println("Indexing source jar...");
JarIndex sourceIndex = new JarIndex();
sourceIndex.indexJar(sourceJar, false);
System.out.println("Indexing dest jar...");
JarIndex destIndex = new JarIndex();
destIndex.indexJar(destJar, false);
// compute the matching
ClassMatching matching = computeMatching(sourceJar, sourceIndex, destJar, destIndex, null);
return new ClassMatches(matching.matches());
}
public static ClassMatching computeMatching(JarFile sourceJar, JarIndex sourceIndex, JarFile destJar, JarIndex destIndex, BiMap<ClassEntry,ClassEntry> knownMatches) {
System.out.println("Iteratively matching classes");
ClassMatching lastMatching = null;
int round = 0;
SidedClassNamer sourceNamer = null;
SidedClassNamer destNamer = null;
for (boolean useReferences : Arrays.asList(false, true)) {
int numUniqueMatchesLastTime = 0;
if (lastMatching != null) {
numUniqueMatchesLastTime = lastMatching.uniqueMatches().size();
}
while (true) {
System.out.println("Round " + (++round) + "...");
// init the matching with identity settings
ClassMatching matching = new ClassMatching(
new ClassIdentifier(sourceJar, sourceIndex, sourceNamer, useReferences),
new ClassIdentifier(destJar, destIndex, destNamer, useReferences)
);
if (knownMatches != null) {
matching.addKnownMatches(knownMatches);
}
if (lastMatching == null) {
// search all classes
matching.match(sourceIndex.getObfClassEntries(), destIndex.getObfClassEntries());
} else {
// we already know about these matches from last time
matching.addKnownMatches(lastMatching.uniqueMatches());
// search unmatched and ambiguously-matched classes
matching.match(lastMatching.unmatchedSourceClasses(), lastMatching.unmatchedDestClasses());
for (ClassMatch match : lastMatching.ambiguousMatches()) {
matching.match(match.sourceClasses, match.destClasses);
}
}
System.out.println(matching);
BiMap<ClassEntry,ClassEntry> uniqueMatches = matching.uniqueMatches();
// did we match anything new this time?
if (uniqueMatches.size() > numUniqueMatchesLastTime) {
numUniqueMatchesLastTime = uniqueMatches.size();
lastMatching = matching;
} else {
break;
}
// update the namers
ClassNamer namer = new ClassNamer(uniqueMatches);
sourceNamer = namer.getSourceNamer();
destNamer = namer.getDestNamer();
}
}
return lastMatching;
}
public static Mappings newMappings(ClassMatches matches, Mappings oldMappings, Deobfuscator sourceDeobfuscator, Deobfuscator destDeobfuscator) {
// sort the unique matches by size of inner class chain
Multimap<Integer,java.util.Map.Entry<ClassEntry,ClassEntry>> matchesByDestChainSize = HashMultimap.create();
for (java.util.Map.Entry<ClassEntry,ClassEntry> match : matches.getUniqueMatches().entrySet()) {
int chainSize = destDeobfuscator.getJarIndex().getObfClassChain(match.getValue()).size();
matchesByDestChainSize.put(chainSize, match);
}
// build the mappings (in order of small-to-large inner chains)
Mappings newMappings = new Mappings();
List<Integer> chainSizes = Lists.newArrayList(matchesByDestChainSize.keySet());
Collections.sort(chainSizes);
for (int chainSize : chainSizes) {
for (java.util.Map.Entry<ClassEntry,ClassEntry> match : matchesByDestChainSize.get(chainSize)) {
// get class info
ClassEntry obfSourceClassEntry = match.getKey();
ClassEntry obfDestClassEntry = match.getValue();
List<ClassEntry> destClassChain = destDeobfuscator.getJarIndex().getObfClassChain(obfDestClassEntry);
ClassMapping sourceMapping = sourceDeobfuscator.getMappings().getClassByObf(obfSourceClassEntry);
if (sourceMapping == null) {
// if this class was never deobfuscated, don't try to match it
continue;
}
// find out where to make the dest class mapping
if (destClassChain.size() == 1) {
// not an inner class, add directly to mappings
newMappings.addClassMapping(migrateClassMapping(obfDestClassEntry, sourceMapping, matches, false));
} else {
// inner class, find the outer class mapping
ClassMapping destMapping = null;
for (int i=0; i<destClassChain.size()-1; i++) {
ClassEntry destChainClassEntry = destClassChain.get(i);
if (destMapping == null) {
destMapping = newMappings.getClassByObf(destChainClassEntry);
if (destMapping == null) {
destMapping = new ClassMapping(destChainClassEntry.getName());
newMappings.addClassMapping(destMapping);
}
} else {
destMapping = destMapping.getInnerClassByObfSimple(destChainClassEntry.getInnermostClassName());
if (destMapping == null) {
destMapping = new ClassMapping(destChainClassEntry.getName());
destMapping.addInnerClassMapping(destMapping);
}
}
}
destMapping.addInnerClassMapping(migrateClassMapping(obfDestClassEntry, sourceMapping, matches, true));
}
}
}
return newMappings;
}
private static ClassMapping migrateClassMapping(ClassEntry newObfClass, ClassMapping oldClassMapping, final ClassMatches matches, boolean useSimpleName) {
ClassNameReplacer replacer = new ClassNameReplacer() {
@Override
public String replace(String className) {
ClassEntry newClassEntry = matches.getUniqueMatches().get(new ClassEntry(className));
if (newClassEntry != null) {
return newClassEntry.getName();
}
return null;
}
};
ClassMapping newClassMapping;
String deobfName = oldClassMapping.getDeobfName();
if (deobfName != null) {
if (useSimpleName) {
deobfName = new ClassEntry(deobfName).getSimpleName();
}
newClassMapping = new ClassMapping(newObfClass.getName(), deobfName);
} else {
newClassMapping = new ClassMapping(newObfClass.getName());
}
// copy fields
for (FieldMapping fieldMapping : oldClassMapping.fields()) {
newClassMapping.addFieldMapping(new FieldMapping(fieldMapping, replacer));
}
// copy methods
for (MethodMapping methodMapping : oldClassMapping.methods()) {
newClassMapping.addMethodMapping(new MethodMapping(methodMapping, replacer));
}
return newClassMapping;
}
public static void convertMappings(Mappings mappings, BiMap<ClassEntry,ClassEntry> changes) {
// sort the changes so classes are renamed in the correct order
// ie. if we have the mappings a->b, b->c, we have to apply b->c before a->b
LinkedHashMap<ClassEntry,ClassEntry> sortedChanges = Maps.newLinkedHashMap();
int numChangesLeft = changes.size();
while (!changes.isEmpty()) {
Iterator<Map.Entry<ClassEntry,ClassEntry>> iter = changes.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry<ClassEntry,ClassEntry> change = iter.next();
if (changes.containsKey(change.getValue())) {
sortedChanges.put(change.getKey(), change.getValue());
iter.remove();
}
}
// did we remove any changes?
if (numChangesLeft - changes.size() > 0) {
// keep going
numChangesLeft = changes.size();
} else {
// can't sort anymore. There must be a loop
break;
}
}
if (!changes.isEmpty()) {
throw new Error("Unable to sort class changes! There must be a cycle.");
}
// convert the mappings in the correct class order
for (Map.Entry<ClassEntry,ClassEntry> entry : sortedChanges.entrySet()) {
mappings.renameObfClass(entry.getKey().getName(), entry.getValue().getName());
}
}
public static interface Doer<T extends Entry> {
Collection<T> getDroppedEntries(MappingsChecker checker);
Collection<T> getObfEntries(JarIndex jarIndex);
Collection<? extends MemberMapping<T>> getMappings(ClassMapping destClassMapping);
Set<T> filterEntries(Collection<T> obfEntries, T obfSourceEntry, ClassMatches classMatches);
void setUpdateObfMember(ClassMapping classMapping, MemberMapping<T> memberMapping, T newEntry);
boolean hasObfMember(ClassMapping classMapping, T obfEntry);
void removeMemberByObf(ClassMapping classMapping, T obfEntry);
}
public static Doer<FieldEntry> getFieldDoer() {
return new Doer<FieldEntry>() {
@Override
public Collection<FieldEntry> getDroppedEntries(MappingsChecker checker) {
return checker.getDroppedFieldMappings().keySet();
}
@Override
public Collection<FieldEntry> getObfEntries(JarIndex jarIndex) {
return jarIndex.getObfFieldEntries();
}
@Override
public Collection<? extends MemberMapping<FieldEntry>> getMappings(ClassMapping destClassMapping) {
return (Collection<? extends MemberMapping<FieldEntry>>)destClassMapping.fields();
}
@Override
public Set<FieldEntry> filterEntries(Collection<FieldEntry> obfDestFields, FieldEntry obfSourceField, ClassMatches classMatches) {
Set<FieldEntry> out = Sets.newHashSet();
for (FieldEntry obfDestField : obfDestFields) {
Type translatedDestType = translate(obfDestField.getType(), classMatches.getUniqueMatches().inverse());
if (translatedDestType.equals(obfSourceField.getType())) {
out.add(obfDestField);
}
}
return out;
}
@Override
public void setUpdateObfMember(ClassMapping classMapping, MemberMapping<FieldEntry> memberMapping, FieldEntry newField) {
FieldMapping fieldMapping = (FieldMapping)memberMapping;
classMapping.setFieldObfNameAndType(fieldMapping.getObfName(), fieldMapping.getObfType(), newField.getName(), newField.getType());
}
@Override
public boolean hasObfMember(ClassMapping classMapping, FieldEntry obfField) {
return classMapping.getFieldByObf(obfField.getName(), obfField.getType()) != null;
}
@Override
public void removeMemberByObf(ClassMapping classMapping, FieldEntry obfField) {
classMapping.removeFieldMapping(classMapping.getFieldByObf(obfField.getName(), obfField.getType()));
}
};
}
public static Doer<BehaviorEntry> getMethodDoer() {
return new Doer<BehaviorEntry>() {
@Override
public Collection<BehaviorEntry> getDroppedEntries(MappingsChecker checker) {
return checker.getDroppedMethodMappings().keySet();
}
@Override
public Collection<BehaviorEntry> getObfEntries(JarIndex jarIndex) {
return jarIndex.getObfBehaviorEntries();
}
@Override
public Collection<? extends MemberMapping<BehaviorEntry>> getMappings(ClassMapping destClassMapping) {
return (Collection<? extends MemberMapping<BehaviorEntry>>)destClassMapping.methods();
}
@Override
public Set<BehaviorEntry> filterEntries(Collection<BehaviorEntry> obfDestFields, BehaviorEntry obfSourceField, ClassMatches classMatches) {
Set<BehaviorEntry> out = Sets.newHashSet();
for (BehaviorEntry obfDestField : obfDestFields) {
Signature translatedDestSignature = translate(obfDestField.getSignature(), classMatches.getUniqueMatches().inverse());
if (translatedDestSignature == null && obfSourceField.getSignature() == null) {
out.add(obfDestField);
} else if (translatedDestSignature == null || obfSourceField.getSignature() == null) {
// skip it
} else if (translatedDestSignature.equals(obfSourceField.getSignature())) {
out.add(obfDestField);
}
}
return out;
}
@Override
public void setUpdateObfMember(ClassMapping classMapping, MemberMapping<BehaviorEntry> memberMapping, BehaviorEntry newBehavior) {
MethodMapping methodMapping = (MethodMapping)memberMapping;
classMapping.setMethodObfNameAndSignature(methodMapping.getObfName(), methodMapping.getObfSignature(), newBehavior.getName(), newBehavior.getSignature());
}
@Override
public boolean hasObfMember(ClassMapping classMapping, BehaviorEntry obfBehavior) {
return classMapping.getMethodByObf(obfBehavior.getName(), obfBehavior.getSignature()) != null;
}
@Override
public void removeMemberByObf(ClassMapping classMapping, BehaviorEntry obfBehavior) {
classMapping.removeMethodMapping(classMapping.getMethodByObf(obfBehavior.getName(), obfBehavior.getSignature()));
}
};
}
public static <T extends Entry> MemberMatches<T> computeMemberMatches(Deobfuscator destDeobfuscator, Mappings destMappings, ClassMatches classMatches, Doer<T> doer) {
MemberMatches<T> memberMatches = new MemberMatches<T>();
// unmatched source fields are easy
MappingsChecker checker = new MappingsChecker(destDeobfuscator.getJarIndex());
checker.dropBrokenMappings(destMappings);
for (T destObfEntry : doer.getDroppedEntries(checker)) {
T srcObfEntry = translate(destObfEntry, classMatches.getUniqueMatches().inverse());
memberMatches.addUnmatchedSourceEntry(srcObfEntry);
}
// get matched fields (anything that's left after the checks/drops is matched(
for (ClassMapping classMapping : destMappings.classes()) {
collectMatchedFields(memberMatches, classMapping, classMatches, doer);
}
// get unmatched dest fields
for (T destEntry : doer.getObfEntries(destDeobfuscator.getJarIndex())) {
if (!memberMatches.isMatchedDestEntry(destEntry)) {
memberMatches.addUnmatchedDestEntry(destEntry);
}
}
System.out.println("Automatching " + memberMatches.getUnmatchedSourceEntries().size() + " unmatched source entries...");
// go through the unmatched source fields and try to pick out the easy matches
for (ClassEntry obfSourceClass : Lists.newArrayList(memberMatches.getSourceClassesWithUnmatchedEntries())) {
for (T obfSourceEntry : Lists.newArrayList(memberMatches.getUnmatchedSourceEntries(obfSourceClass))) {
// get the possible dest matches
ClassEntry obfDestClass = classMatches.getUniqueMatches().get(obfSourceClass);
// filter by type/signature
Set<T> obfDestEntries = doer.filterEntries(memberMatches.getUnmatchedDestEntries(obfDestClass), obfSourceEntry, classMatches);
if (obfDestEntries.size() == 1) {
// make the easy match
memberMatches.makeMatch(obfSourceEntry, obfDestEntries.iterator().next());
} else if (obfDestEntries.isEmpty()) {
// no match is possible =(
memberMatches.makeSourceUnmatchable(obfSourceEntry);
}
}
}
System.out.println(String.format("Ended up with %d ambiguous and %d unmatchable source entries",
memberMatches.getUnmatchedSourceEntries().size(),
memberMatches.getUnmatchableSourceEntries().size()
));
return memberMatches;
}
private static <T extends Entry> void collectMatchedFields(MemberMatches<T> memberMatches, ClassMapping destClassMapping, ClassMatches classMatches, Doer<T> doer) {
// get the fields for this class
for (MemberMapping<T> destEntryMapping : doer.getMappings(destClassMapping)) {
T destObfField = destEntryMapping.getObfEntry(destClassMapping.getObfEntry());
T srcObfField = translate(destObfField, classMatches.getUniqueMatches().inverse());
memberMatches.addMatch(srcObfField, destObfField);
}
// recurse
for (ClassMapping destInnerClassMapping : destClassMapping.innerClasses()) {
collectMatchedFields(memberMatches, destInnerClassMapping, classMatches, doer);
}
}
@SuppressWarnings("unchecked")
private static <T extends Entry> T translate(T in, BiMap<ClassEntry,ClassEntry> map) {
if (in instanceof FieldEntry) {
return (T)new FieldEntry(
map.get(in.getClassEntry()),
in.getName(),
translate(((FieldEntry)in).getType(), map)
);
} else if (in instanceof MethodEntry) {
return (T)new MethodEntry(
map.get(in.getClassEntry()),
in.getName(),
translate(((MethodEntry)in).getSignature(), map)
);
} else if (in instanceof ConstructorEntry) {
return (T)new ConstructorEntry(
map.get(in.getClassEntry()),
translate(((ConstructorEntry)in).getSignature(), map)
);
}
throw new Error("Unhandled entry type: " + in.getClass());
}
private static Type translate(Type type, final BiMap<ClassEntry,ClassEntry> map) {
return new Type(type, new ClassNameReplacer() {
@Override
public String replace(String inClassName) {
ClassEntry outClassEntry = map.get(new ClassEntry(inClassName));
if (outClassEntry == null) {
return null;
}
return outClassEntry.getName();
}
});
}
private static Signature translate(Signature signature, final BiMap<ClassEntry,ClassEntry> map) {
if (signature == null) {
return null;
}
return new Signature(signature, new ClassNameReplacer() {
@Override
public String replace(String inClassName) {
ClassEntry outClassEntry = map.get(new ClassEntry(inClassName));
if (outClassEntry == null) {
return null;
}
return outClassEntry.getName();
}
});
}
public static <T extends Entry> void applyMemberMatches(Mappings mappings, ClassMatches classMatches, MemberMatches<T> memberMatches, Doer<T> doer) {
for (ClassMapping classMapping : mappings.classes()) {
applyMemberMatches(classMapping, classMatches, memberMatches, doer);
}
}
private static <T extends Entry> void applyMemberMatches(ClassMapping classMapping, ClassMatches classMatches, MemberMatches<T> memberMatches, Doer<T> doer) {
// get the classes
ClassEntry obfDestClass = classMapping.getObfEntry();
// make a map of all the renames we need to make
Map<T,T> renames = Maps.newHashMap();
for (MemberMapping<T> memberMapping : Lists.newArrayList(doer.getMappings(classMapping))) {
T obfOldDestEntry = memberMapping.getObfEntry(obfDestClass);
T obfSourceEntry = getSourceEntryFromDestMapping(memberMapping, obfDestClass, classMatches);
// but drop the unmatchable things
if (memberMatches.isUnmatchableSourceEntry(obfSourceEntry)) {
doer.removeMemberByObf(classMapping, obfOldDestEntry);
continue;
}
T obfNewDestEntry = memberMatches.matches().get(obfSourceEntry);
if (obfNewDestEntry != null && !obfOldDestEntry.getName().equals(obfNewDestEntry.getName())) {
renames.put(obfOldDestEntry, obfNewDestEntry);
}
}
if (!renames.isEmpty()) {
// apply to this class (should never need more than n passes)
int numRenamesAppliedThisRound;
do {
numRenamesAppliedThisRound = 0;
for (MemberMapping<T> memberMapping : Lists.newArrayList(doer.getMappings(classMapping))) {
T obfOldDestEntry = memberMapping.getObfEntry(obfDestClass);
T obfNewDestEntry = renames.get(obfOldDestEntry);
if (obfNewDestEntry != null) {
// make sure this rename won't cause a collision
// otherwise, save it for the next round and try again next time
if (!doer.hasObfMember(classMapping, obfNewDestEntry)) {
doer.setUpdateObfMember(classMapping, memberMapping, obfNewDestEntry);
renames.remove(obfOldDestEntry);
numRenamesAppliedThisRound++;
}
}
}
} while(numRenamesAppliedThisRound > 0);
if (!renames.isEmpty()) {
System.err.println(String.format("WARNING: Couldn't apply all the renames for class %s. %d renames left.",
classMapping.getObfFullName(), renames.size()
));
for (Map.Entry<T,T> entry : renames.entrySet()) {
System.err.println(String.format("\t%s -> %s", entry.getKey().getName(), entry.getValue().getName()));
}
}
}
// recurse
for (ClassMapping innerClassMapping : classMapping.innerClasses()) {
applyMemberMatches(innerClassMapping, classMatches, memberMatches, doer);
}
}
private static <T extends Entry> T getSourceEntryFromDestMapping(MemberMapping<T> destMemberMapping, ClassEntry obfDestClass, ClassMatches classMatches) {
return translate(destMemberMapping.getObfEntry(obfDestClass), classMatches.getUniqueMatches().inverse());
}
}
|