summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/Deobfuscator.java
blob: 82d1611b6281b86fa196e316d27e8ce4c763a7aa (plain) (blame)
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
/*******************************************************************************
 * 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;

import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.StringWriter;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;

import javassist.CtClass;
import javassist.bytecode.Descriptor;

import com.google.common.collect.Maps;
import com.google.common.collect.Sets;
import com.strobel.assembler.metadata.MetadataSystem;
import com.strobel.assembler.metadata.TypeDefinition;
import com.strobel.assembler.metadata.TypeReference;
import com.strobel.decompiler.DecompilerContext;
import com.strobel.decompiler.DecompilerSettings;
import com.strobel.decompiler.PlainTextOutput;
import com.strobel.decompiler.languages.java.JavaOutputVisitor;
import com.strobel.decompiler.languages.java.ast.AstBuilder;
import com.strobel.decompiler.languages.java.ast.CompilationUnit;
import com.strobel.decompiler.languages.java.ast.InsertParenthesesVisitor;

import cuchaz.enigma.analysis.EntryReference;
import cuchaz.enigma.analysis.JarClassIterator;
import cuchaz.enigma.analysis.JarIndex;
import cuchaz.enigma.analysis.SourceIndex;
import cuchaz.enigma.analysis.SourceIndexVisitor;
import cuchaz.enigma.analysis.Token;
import cuchaz.enigma.bytecode.ClassProtectifier;
import cuchaz.enigma.bytecode.ClassPublifier;
import cuchaz.enigma.mapping.ArgumentEntry;
import cuchaz.enigma.mapping.BehaviorEntry;
import cuchaz.enigma.mapping.ClassEntry;
import cuchaz.enigma.mapping.ClassMapping;
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.MappingsRenamer;
import cuchaz.enigma.mapping.MethodEntry;
import cuchaz.enigma.mapping.MethodMapping;
import cuchaz.enigma.mapping.TranslationDirection;
import cuchaz.enigma.mapping.Translator;

public class Deobfuscator {
	
	public interface ProgressListener {
		void init(int totalWork, String title);
		void onProgress(int numDone, String message);
	}
	
	private JarFile m_jar;
	private DecompilerSettings m_settings;
	private JarIndex m_jarIndex;
	private Mappings m_mappings;
	private MappingsRenamer m_renamer;
	private Map<TranslationDirection,Translator> m_translatorCache;
	
	public Deobfuscator(JarFile jar) throws IOException {
		m_jar = jar;
		
		// build the jar index
		m_jarIndex = new JarIndex();
		m_jarIndex.indexJar(m_jar, true);
		
		// config the decompiler
		m_settings = DecompilerSettings.javaDefaults();
		m_settings.setMergeVariables(true);
		m_settings.setForceExplicitImports(true);
		m_settings.setForceExplicitTypeArguments(true);
		m_settings.setShowDebugLineNumbers(true);
		// DEBUG
		//m_settings.setShowSyntheticMembers(true);
		
		// init defaults
		m_translatorCache = Maps.newTreeMap();
		
		// init mappings
		setMappings(new Mappings());
	}
	
	public JarFile getJar() {
		return m_jar;
	}
	
	public String getJarName() {
		return m_jar.getName();
	}
	
	public JarIndex getJarIndex() {
		return m_jarIndex;
	}
	
	public Mappings getMappings() {
		return m_mappings;
	}
	
	public void setMappings(Mappings val) {
		setMappings(val, true);
	}
	
	public void setMappings(Mappings val, boolean warnAboutDrops) {
		if (val == null) {
			val = new Mappings();
		}
		
		// drop mappings that don't match the jar
		MappingsChecker checker = new MappingsChecker(m_jarIndex);
		checker.dropBrokenMappings(val);
		if (warnAboutDrops) {
			for (java.util.Map.Entry<ClassEntry,ClassMapping> mapping : checker.getDroppedClassMappings().entrySet()) {
				System.out.println("WARNING: Couldn't find class entry " + mapping.getKey() + " (" + mapping.getValue().getDeobfName() + ") in jar. Mapping was dropped.");
			}
			for (java.util.Map.Entry<ClassEntry,ClassMapping> mapping : checker.getDroppedInnerClassMappings().entrySet()) {
				System.out.println("WARNING: Couldn't find inner class entry " + mapping.getKey() + " (" + mapping.getValue().getDeobfName() + ") in jar. Mapping was dropped.");
			}
			for (java.util.Map.Entry<FieldEntry,FieldMapping> mapping : checker.getDroppedFieldMappings().entrySet()) {
				System.out.println("WARNING: Couldn't find field entry " + mapping.getKey() + " (" + mapping.getValue().getDeobfName() + ") in jar. Mapping was dropped.");
			}
			for (java.util.Map.Entry<BehaviorEntry,MethodMapping> mapping : checker.getDroppedMethodMappings().entrySet()) {
				System.out.println("WARNING: Couldn't find behavior entry " + mapping.getKey() + " (" + mapping.getValue().getDeobfName() + ") in jar. Mapping was dropped.");
			}
		}
		
		// check for related method inconsistencies
		if (checker.getRelatedMethodChecker().hasProblems()) {
			throw new Error("Related methods are inconsistent! Need to fix the mappings manually.\n" + checker.getRelatedMethodChecker().getReport());
		}
		
		m_mappings = val;
		m_renamer = new MappingsRenamer(m_jarIndex, val);
		m_translatorCache.clear();
	}
	
	public Translator getTranslator(TranslationDirection direction) {
		Translator translator = m_translatorCache.get(direction);
		if (translator == null) {
			translator = m_mappings.getTranslator(direction, m_jarIndex.getTranslationIndex());
			m_translatorCache.put(direction, translator);
		}
		return translator;
	}
	
	public void getSeparatedClasses(List<ClassEntry> obfClasses, List<ClassEntry> deobfClasses) {
		for (ClassEntry obfClassEntry : m_jarIndex.getObfClassEntries()) {
			// skip inner classes
			if (obfClassEntry.isInnerClass()) {
				continue;
			}
			
			// separate the classes
			ClassEntry deobfClassEntry = deobfuscateEntry(obfClassEntry);
			if (!deobfClassEntry.equals(obfClassEntry)) {
				// if the class has a mapping, clearly it's deobfuscated
				deobfClasses.add(deobfClassEntry);
			} else if (!obfClassEntry.getPackageName().equals(Constants.NonePackage)) {
				// also call it deobufscated if it's not in the none package
				deobfClasses.add(obfClassEntry);
			} else {
				// otherwise, assume it's still obfuscated
				obfClasses.add(obfClassEntry);
			}
		}
	}
	
	public CompilationUnit getSourceTree(String className) {
		
		// we don't know if this class name is obfuscated or deobfuscated
		// we need to tell the decompiler the deobfuscated name so it doesn't get freaked out
		// the decompiler only sees classes after deobfuscation, so we need to load it by the deobfuscated name if there is one
		
		// first, assume class name is deobf
		String deobfClassName = className;
		
		// if it wasn't actually deobf, then we can find a mapping for it and get the deobf name
		ClassMapping classMapping = m_mappings.getClassByObf(className);
		if (classMapping != null && classMapping.getDeobfName() != null) {
			deobfClassName = classMapping.getDeobfName();
		}
		
		// set the type loader
		TranslatingTypeLoader loader = new TranslatingTypeLoader(
			m_jar,
			m_jarIndex,
			getTranslator(TranslationDirection.Obfuscating),
			getTranslator(TranslationDirection.Deobfuscating)
		); 
		m_settings.setTypeLoader(loader);

		// see if procyon can find the type
		TypeReference type = new MetadataSystem(loader).lookupType(deobfClassName);
		if (type == null) {
			throw new Error(String.format("Unable to find type: %s (deobf: %s)\nTried class names: %s",
				className, deobfClassName, loader.getClassNamesToTry(deobfClassName)
			));
		}
		TypeDefinition resolvedType = type.resolve();
		
		// decompile it!
		DecompilerContext context = new DecompilerContext();
		context.setCurrentType(resolvedType);
		context.setSettings(m_settings);
		AstBuilder builder = new AstBuilder(context);
		builder.addType(resolvedType);
		builder.runTransformations(null);
		return builder.getCompilationUnit();
	}
	
	public SourceIndex getSourceIndex(CompilationUnit sourceTree, String source) {
		return getSourceIndex(sourceTree, source, null);
	}
	
	public SourceIndex getSourceIndex(CompilationUnit sourceTree, String source, Boolean ignoreBadTokens) {
		
		// build the source index
		SourceIndex index;
		if (ignoreBadTokens != null) {
			index = new SourceIndex(source, ignoreBadTokens);
		} else {
			index = new SourceIndex(source);
		}
		sourceTree.acceptVisitor(new SourceIndexVisitor(), index);
		
		// DEBUG
		// sourceTree.acceptVisitor( new TreeDumpVisitor( new File( "tree.txt" ) ), null );
		
		// resolve all the classes in the source references
		for (Token token : index.referenceTokens()) {
			EntryReference<Entry,Entry> deobfReference = index.getDeobfReference(token);
			
			// get the obfuscated entry
			Entry obfEntry = obfuscateEntry(deobfReference.entry);
			
			// try to resolve the class
			ClassEntry resolvedObfClassEntry = m_jarIndex.getTranslationIndex().resolveEntryClass(obfEntry);
			if (resolvedObfClassEntry != null && !resolvedObfClassEntry.equals(obfEntry.getClassEntry())) {
				// change the class of the entry
				obfEntry = obfEntry.cloneToNewClass(resolvedObfClassEntry);
				
				// save the new deobfuscated reference
				deobfReference.entry = deobfuscateEntry(obfEntry);
				index.replaceDeobfReference(token, deobfReference);
			}
			
			// DEBUG
			// System.out.println( token + " -> " + reference + " -> " + index.getReferenceToken( reference ) );
		}
		
		return index;
	}
	
	public String getSource(CompilationUnit sourceTree) {
		// render the AST into source
		StringWriter buf = new StringWriter();
		sourceTree.acceptVisitor(new InsertParenthesesVisitor(), null);
		sourceTree.acceptVisitor(new JavaOutputVisitor(new PlainTextOutput(buf), m_settings), null);
		return buf.toString();
	}
	
	public void writeSources(File dirOut, ProgressListener progress) throws IOException {
		// get the classes to decompile
		Set<ClassEntry> classEntries = Sets.newHashSet();
		for (ClassEntry obfClassEntry : m_jarIndex.getObfClassEntries()) {
			// skip inner classes
			if (obfClassEntry.isInnerClass()) {
				continue;
			}
			
			classEntries.add(obfClassEntry);
		}
		
		if (progress != null) {
			progress.init(classEntries.size(), "Decompiling classes...");
		}
		
		// DEOBFUSCATE ALL THE THINGS!! @_@
		int i = 0;
		for (ClassEntry obfClassEntry : classEntries) {
			ClassEntry deobfClassEntry = deobfuscateEntry(new ClassEntry(obfClassEntry));
			if (progress != null) {
				progress.onProgress(i++, deobfClassEntry.toString());
			}
			
			try {
				// get the source
				String source = getSource(getSourceTree(obfClassEntry.getName()));
				
				// write the file
				File file = new File(dirOut, deobfClassEntry.getName().replace('.', '/') + ".java");
				file.getParentFile().mkdirs();
				try (FileWriter out = new FileWriter(file)) {
					out.write(source);
				}
			} catch (Throwable t) {
				// don't crash the whole world here, just log the error and keep going
				// TODO: set up logback via log4j
				System.err.println("Unable to deobfuscate class " + deobfClassEntry.toString() + " (" + obfClassEntry.toString() + ")");
				t.printStackTrace(System.err);
			}
		}
		if (progress != null) {
			progress.onProgress(i, "Done!");
		}
	}
	
	public void writeJar(File out, ProgressListener progress) {
		final TranslatingTypeLoader loader = new TranslatingTypeLoader(
			m_jar,
			m_jarIndex,
			getTranslator(TranslationDirection.Obfuscating),
			getTranslator(TranslationDirection.Deobfuscating)
		);
		transformJar(out, progress, new ClassTransformer() {

			@Override
			public CtClass transform(CtClass c) throws Exception {
				return loader.transformClass(c);
			}
		});
	}
	
	public void protectifyJar(File out, ProgressListener progress) {
		transformJar(out, progress, new ClassTransformer() {

			@Override
			public CtClass transform(CtClass c) throws Exception {
				return ClassProtectifier.protectify(c);
			}
		});
	}
	
	public void publifyJar(File out, ProgressListener progress) {
		transformJar(out, progress, new ClassTransformer() {

			@Override
			public CtClass transform(CtClass c) throws Exception {
				return ClassPublifier.publify(c);
			}
		});
	}
	
	private interface ClassTransformer {
		public CtClass transform(CtClass c) throws Exception;
	}
	private void transformJar(File out, ProgressListener progress, ClassTransformer transformer) {
		try (JarOutputStream outJar = new JarOutputStream(new FileOutputStream(out))) {
			if (progress != null) {
				progress.init(JarClassIterator.getClassEntries(m_jar).size(), "Transforming classes...");
			}
			
			int i = 0;
			for (CtClass c : JarClassIterator.classes(m_jar)) {
				if (progress != null) {
					progress.onProgress(i++, c.getName());
				}
				
				try {
					c = transformer.transform(c);
					outJar.putNextEntry(new JarEntry(c.getName().replace('.', '/') + ".class"));
					outJar.write(c.toBytecode());
					outJar.closeEntry();
				} catch (Throwable t) {
					throw new Error("Unable to transform class " + c.getName(), t);
				}
			}
			if (progress != null) {
				progress.onProgress(i, "Done!");
			}
			
			outJar.close();
		} catch (IOException ex) {
			throw new Error("Unable to write to Jar file!");
		}
	}
	
	public <T extends Entry> T obfuscateEntry(T deobfEntry) {
		if (deobfEntry == null) {
			return null;
		}
		return getTranslator(TranslationDirection.Obfuscating).translateEntry(deobfEntry);
	}
	
	public <T extends Entry> T deobfuscateEntry(T obfEntry) {
		if (obfEntry == null) {
			return null;
		}
		return getTranslator(TranslationDirection.Deobfuscating).translateEntry(obfEntry);
	}
	
	public <E extends Entry,C extends Entry> EntryReference<E,C> obfuscateReference(EntryReference<E,C> deobfReference) {
		if (deobfReference == null) {
			return null;
		}
		return new EntryReference<E,C>(
			obfuscateEntry(deobfReference.entry),
			obfuscateEntry(deobfReference.context),
			deobfReference
		);
	}
	
	public <E extends Entry,C extends Entry> EntryReference<E,C> deobfuscateReference(EntryReference<E,C> obfReference) {
		if (obfReference == null) {
			return null;
		}
		return new EntryReference<E,C>(
			deobfuscateEntry(obfReference.entry),
			deobfuscateEntry(obfReference.context),
			obfReference
		);
	}
	
	public boolean isObfuscatedIdentifier(Entry obfEntry) {
		
		if (obfEntry instanceof MethodEntry) {
			
			// HACKHACK: Object methods are not obfuscated identifiers
			MethodEntry obfMethodEntry = (MethodEntry)obfEntry;
			String name = obfMethodEntry.getName();
			String sig = obfMethodEntry.getSignature().toString();
			if (name.equals("clone") && sig.equals("()Ljava/lang/Object;")) {
				return false;
			} else if (name.equals("equals") && sig.equals("(Ljava/lang/Object;)Z")) {
				return false;
			} else if (name.equals("finalize") && sig.equals("()V")) {
				return false;
			} else if (name.equals("getClass") && sig.equals("()Ljava/lang/Class;")) {
				return false;
			} else if (name.equals("hashCode") && sig.equals("()I")) {
				return false;
			} else if (name.equals("notify") && sig.equals("()V")) {
				return false;
			} else if (name.equals("notifyAll") && sig.equals("()V")) {
				return false;
			} else if (name.equals("toString") && sig.equals("()Ljava/lang/String;")) {
				return false;
			} else if (name.equals("wait") && sig.equals("()V")) {
				return false;
			} else if (name.equals("wait") && sig.equals("(J)V")) {
				return false;
			} else if (name.equals("wait") && sig.equals("(JI)V")) {
				return false;
			}
		}
		
		return m_jarIndex.containsObfEntry(obfEntry);
	}
	
	public boolean isRenameable(EntryReference<Entry,Entry> obfReference) {
		return obfReference.isNamed() && isObfuscatedIdentifier(obfReference.getNameableEntry());
	}
	
	// NOTE: these methods are a bit messy... oh well
	
	public boolean hasDeobfuscatedName(Entry obfEntry) {
		Translator translator = getTranslator(TranslationDirection.Deobfuscating);
		if (obfEntry instanceof ClassEntry) {
			ClassEntry obfClass = (ClassEntry)obfEntry;
			List<ClassMapping> mappingChain = m_mappings.getClassMappingChain(obfClass);
			ClassMapping classMapping = mappingChain.get(mappingChain.size() - 1);
			return classMapping != null && classMapping.getDeobfName() != null;
		} else if (obfEntry instanceof FieldEntry) {
			return translator.translate((FieldEntry)obfEntry) != null;
		} else if (obfEntry instanceof MethodEntry) {
			return translator.translate((MethodEntry)obfEntry) != null;
		} else if (obfEntry instanceof ConstructorEntry) {
			// constructors have no names
			return false;
		} else if (obfEntry instanceof ArgumentEntry) {
			return translator.translate((ArgumentEntry)obfEntry) != null;
		} else {
			throw new Error("Unknown entry type: " + obfEntry.getClass().getName());
		}
	}
	
	public void rename(Entry obfEntry, String newName) {
		if (obfEntry instanceof ClassEntry) {
			m_renamer.setClassName((ClassEntry)obfEntry, Descriptor.toJvmName(newName));
		} else if (obfEntry instanceof FieldEntry) {
			m_renamer.setFieldName((FieldEntry)obfEntry, newName);
		} else if (obfEntry instanceof MethodEntry) {
			m_renamer.setMethodTreeName((MethodEntry)obfEntry, newName);
		} else if (obfEntry instanceof ConstructorEntry) {
			throw new IllegalArgumentException("Cannot rename constructors");
		} else if (obfEntry instanceof ArgumentEntry) {
			m_renamer.setArgumentName((ArgumentEntry)obfEntry, newName);
		} else {
			throw new Error("Unknown entry type: " + obfEntry.getClass().getName());
		}
		
		// clear caches
		m_translatorCache.clear();
	}
	
	public void removeMapping(Entry obfEntry) {
		if (obfEntry instanceof ClassEntry) {
			m_renamer.removeClassMapping((ClassEntry)obfEntry);
		} else if (obfEntry instanceof FieldEntry) {
			m_renamer.removeFieldMapping((FieldEntry)obfEntry);
		} else if (obfEntry instanceof MethodEntry) {
			m_renamer.removeMethodTreeMapping((MethodEntry)obfEntry);
		} else if (obfEntry instanceof ConstructorEntry) {
			throw new IllegalArgumentException("Cannot rename constructors");
		} else if (obfEntry instanceof ArgumentEntry) {
			m_renamer.removeArgumentMapping((ArgumentEntry)obfEntry);
		} else {
			throw new Error("Unknown entry type: " + obfEntry);
		}
		
		// clear caches
		m_translatorCache.clear();
	}
	
	public void markAsDeobfuscated(Entry obfEntry) {
		if (obfEntry instanceof ClassEntry) {
			m_renamer.markClassAsDeobfuscated((ClassEntry)obfEntry);
		} else if (obfEntry instanceof FieldEntry) {
			m_renamer.markFieldAsDeobfuscated((FieldEntry)obfEntry);
		} else if (obfEntry instanceof MethodEntry) {
			m_renamer.markMethodTreeAsDeobfuscated((MethodEntry)obfEntry);
		} else if (obfEntry instanceof ConstructorEntry) {
			throw new IllegalArgumentException("Cannot rename constructors");
		} else if (obfEntry instanceof ArgumentEntry) {
			m_renamer.markArgumentAsDeobfuscated((ArgumentEntry)obfEntry);
		} else {
			throw new Error("Unknown entry type: " + obfEntry);
		}
		
		// clear caches
		m_translatorCache.clear();
	}
}