-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathr2dec-plugin.js
113 lines (103 loc) · 3.71 KB
/
r2dec-plugin.js
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
// SPDX-FileCopyrightText: 2017-2023 Giovanni Dante Grazioli <deroad@libero.it>
// SPDX-FileCopyrightText: 2017-2018 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: BSD-3-Clause
import libdec from './libdec/libdec.js';
import r2util from './libdec/r2util.js';
import r2pipe from './libdec/r2pipe.js';
import Warning from './libdec/warning.js';
import Printer from './libdec/printer.js';
/**
* Shared data accessible from everywhere.
* @type {Object}
*/
var Shared = Global();
Shared.evars = null;
Shared.context = null;
Shared.printer = null;
Shared.argdb = null;
Shared.xrefs = null;
Shared.warning = Warning;
function decompile_offset(architecture, fcnname) {
var data = new r2util.data();
Shared.argdb = data.argdb;
// af seems to break renaming.
/* asm.pseudo breaks things.. */
if (data.graph && data.graph.length > 0) {
var p = new libdec.core.session(data, architecture);
var arch_context = architecture.context(data);
libdec.core.analysis.pre(p, architecture, arch_context);
libdec.core.decompile(p, architecture, arch_context);
libdec.core.analysis.post(p, architecture, arch_context);
libdec.core.print(p);
} else if (Shared.evars.extra.allfunctions) {
Shared.context.printLog('Error: Please analyze the ' + fcnname + ' first.', true);
} else {
Shared.context.printLog('Error: no data available.\nPlease analyze the function/binary first.', true);
}
}
function main(args) {
var lines = null;
var errors = [];
var log = [];
try {
Shared.evars = r2util.evars(args);
r2util.sanitize(true, Shared.evars);
if (r2util.check_args(args)) {
r2util.sanitize(false, Shared.evars);
return;
}
// theme (requires to be initialized after evars)
Shared.printer = new Printer();
var architecture = libdec.archs[Shared.evars.arch];
if (architecture) {
Shared.context = new libdec.context();
var current = r2pipe.long('s');
if (Shared.evars.extra.allfunctions) {
var functions = r2pipe.json('aflj');
functions.forEach(function(x) {
if (x.name.startsWith('sym.imp.') || x.name.startsWith('loc.imp.')) {
return;
}
r2pipe.string('s 0x' + x.offset.toString(16));
Shared.context.printLine("", x.offset);
Shared.context.printLine(Shared.printer.theme.comment('/* name: ' + x.name + ' @ 0x' + x.offset.toString(16) + ' */'), x.offset);
decompile_offset(architecture, x.name);
});
r2pipe.string('s 0x' + current.toString(16));
var r2version = '';
if (Shared.evars.version) {
r2version = ' (r2 ' + Shared.evars.version + ')';
}
var o = Shared.context;
Shared.context = new libdec.context();
Shared.context.macros = o.macros;
Shared.context.dependencies = o.dependencies;
Shared.context.printLine(Shared.printer.theme.comment('/* r2dec pseudo code output' + r2version + ' */'), current);
Shared.context.printLine(Shared.printer.theme.comment('/* ' + Shared.evars.extra.file + ' */'), current);
if (['java', 'dalvik'].indexOf(Shared.evars.arch) < 0) {
Shared.context.printMacros(true);
Shared.context.printDependencies(true);
}
o.lines = Shared.context.lines.concat(o.lines);
Shared.context = o;
} else {
decompile_offset(architecture, null);
}
errors = errors.concat(Shared.context.errors);
log = log.concat(Shared.context.log);
lines = Shared.context.lines;
} else {
errors.push(Shared.evars.arch + ' is not currently supported.\n' +
'Please open an enhancement issue at https://github.com/wargio/r2dec-js/issues\n' +
libdec.supported());
}
r2util.sanitize(false, Shared.evars);
} catch (e) {
errors.push(r2util.debug(Shared.evars, e));
}
if (!Shared.printer) {
Shared.printer = new Printer();
}
Shared.printer.flushOutput(lines, errors, log);
}
main([...process.args]);