2018-03-04 17:42:02 +00:00
|
|
|
#include "Cutter.h"
|
2018-05-26 18:09:20 +00:00
|
|
|
#include "AnalTask.h"
|
2017-10-01 19:09:42 +00:00
|
|
|
#include "MainWindow.h"
|
2018-08-18 10:51:11 +00:00
|
|
|
#include "dialogs/InitialOptionsDialog.h"
|
2018-01-27 10:40:26 +00:00
|
|
|
#include <QJsonArray>
|
2018-05-05 13:20:14 +00:00
|
|
|
#include <QDebug>
|
|
|
|
#include <QCheckBox>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-05-28 14:19:04 +00:00
|
|
|
AnalTask::AnalTask() :
|
|
|
|
AsyncTask()
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2017-03-31 22:43:12 +00:00
|
|
|
}
|
|
|
|
|
2018-05-26 18:09:20 +00:00
|
|
|
AnalTask::~AnalTask()
|
2017-03-31 22:43:12 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-26 18:09:20 +00:00
|
|
|
void AnalTask::interrupt()
|
2018-03-09 12:57:57 +00:00
|
|
|
{
|
2018-05-26 18:09:20 +00:00
|
|
|
AsyncTask::interrupt();
|
2018-06-23 12:01:11 +00:00
|
|
|
r_cons_singleton()->context->breaked = true;
|
2018-05-26 18:09:20 +00:00
|
|
|
}
|
2018-03-09 12:57:57 +00:00
|
|
|
|
2018-05-26 18:09:20 +00:00
|
|
|
void AnalTask::runTask()
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Loading the file..."));
|
2018-07-07 10:39:28 +00:00
|
|
|
openFailed = false;
|
2018-03-09 12:57:57 +00:00
|
|
|
|
2018-09-22 16:00:21 +00:00
|
|
|
int perms = R_PERM_RX;
|
2018-05-27 16:03:29 +00:00
|
|
|
if (options.writeEnabled)
|
2018-09-22 16:00:21 +00:00
|
|
|
perms |= R_PERM_W;
|
2017-09-28 22:04:57 +00:00
|
|
|
|
2018-05-05 13:20:14 +00:00
|
|
|
// Demangle (must be before file Core()->loadFile)
|
2018-05-27 16:03:29 +00:00
|
|
|
Core()->setConfig("bin.demangle", options.demangle);
|
2017-10-01 16:03:06 +00:00
|
|
|
|
2018-05-05 13:20:14 +00:00
|
|
|
// Do not reload the file if already loaded
|
2018-01-27 10:40:26 +00:00
|
|
|
QJsonArray openedFiles = Core()->getOpenedFiles();
|
2018-07-06 21:23:51 +00:00
|
|
|
if (!openedFiles.size() && options.filename.length()) {
|
2018-05-27 16:03:29 +00:00
|
|
|
bool fileLoaded = Core()->loadFile(options.filename,
|
|
|
|
options.binLoadAddr,
|
|
|
|
options.mapAddr,
|
|
|
|
perms,
|
|
|
|
options.useVA,
|
|
|
|
options.loadBinInfo,
|
|
|
|
options.forceBinPlugin);
|
2018-05-08 20:44:53 +00:00
|
|
|
if (!fileLoaded) {
|
|
|
|
// Something wrong happened, fallback to open dialog
|
2018-07-07 10:39:28 +00:00
|
|
|
openFailed = true;
|
2018-05-08 20:44:53 +00:00
|
|
|
emit openFileFailed();
|
2018-07-06 21:23:51 +00:00
|
|
|
interrupt();
|
2018-05-08 20:44:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-01-27 10:40:26 +00:00
|
|
|
}
|
2017-09-28 22:04:57 +00:00
|
|
|
|
2018-08-14 15:07:52 +00:00
|
|
|
// r_core_bin_load might change asm.bits, so let's set that after the bin is loaded
|
|
|
|
Core()->setCPU(options.arch, options.cpu, options.bits);
|
|
|
|
|
2018-05-27 19:49:14 +00:00
|
|
|
if (isInterrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-27 16:03:29 +00:00
|
|
|
if (!options.os.isNull()) {
|
|
|
|
Core()->cmd("e asm.os=" + options.os);
|
2017-09-28 22:04:57 +00:00
|
|
|
}
|
|
|
|
|
2018-05-27 16:03:29 +00:00
|
|
|
if (!options.pdbFile.isNull()) {
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Loading PDB file..."));
|
2018-05-27 16:03:29 +00:00
|
|
|
Core()->loadPDB(options.pdbFile);
|
2017-09-28 22:04:57 +00:00
|
|
|
}
|
2018-05-27 16:03:29 +00:00
|
|
|
|
2018-05-27 19:49:14 +00:00
|
|
|
if (isInterrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-10 17:12:00 +00:00
|
|
|
if (!options.shellcode.isNull() && options.shellcode.size() / 2 > 0) {
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Loading shellcode..."));
|
2018-08-10 17:12:00 +00:00
|
|
|
Core()->cmd("wx " + options.shellcode);
|
|
|
|
}
|
|
|
|
|
2018-07-24 17:50:55 +00:00
|
|
|
if (options.endian != InitialOptions::Endianness::Auto) {
|
|
|
|
Core()->setEndianness(options.endian == InitialOptions::Endianness::Big);
|
|
|
|
}
|
|
|
|
|
|
|
|
Core()->setBBSize(options.bbsize);
|
|
|
|
|
|
|
|
Core()->cmd("fs *");
|
|
|
|
|
2018-05-27 16:03:29 +00:00
|
|
|
if (!options.script.isNull()) {
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Executing script..."));
|
2018-05-27 16:03:29 +00:00
|
|
|
Core()->loadScript(options.script);
|
2018-04-30 06:39:48 +00:00
|
|
|
}
|
|
|
|
|
2018-05-27 19:49:14 +00:00
|
|
|
if (isInterrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-05 13:20:14 +00:00
|
|
|
// Use prj.simple as default as long as regular projects are broken
|
|
|
|
Core()->setConfig("prj.simple", true);
|
|
|
|
|
2018-05-27 19:38:19 +00:00
|
|
|
if (!options.analCmd.empty()) {
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Analyzing..."));
|
2018-05-27 19:38:19 +00:00
|
|
|
for (QString cmd : options.analCmd) {
|
|
|
|
if (isInterrupted()) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-30 07:42:43 +00:00
|
|
|
log(" " + tr("Running") + " " + cmd);
|
2018-05-27 19:38:19 +00:00
|
|
|
Core()->cmd(cmd);
|
|
|
|
}
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Analysis complete!"));
|
2018-05-27 19:38:19 +00:00
|
|
|
} else {
|
2018-10-30 07:42:43 +00:00
|
|
|
log(tr("Skipping Analysis."));
|
2018-05-27 19:38:19 +00:00
|
|
|
}
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|