2017-09-27 20:23:18 +00:00
|
|
|
#ifndef CUTTER_H
|
2017-09-25 12:55:41 +00:00
|
|
|
#define CUTTER_H
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/CutterCommon.h"
|
|
|
|
#include "core/CutterDescriptions.h"
|
2017-03-30 03:07:34 +00:00
|
|
|
|
2017-10-15 19:19:48 +00:00
|
|
|
#include <QMap>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QJsonDocument>
|
2018-07-27 12:00:23 +00:00
|
|
|
#include <QErrorMessage>
|
2017-10-15 19:19:48 +00:00
|
|
|
|
2018-05-26 16:21:23 +00:00
|
|
|
class AsyncTaskManager;
|
2018-06-26 07:40:08 +00:00
|
|
|
class CutterCore;
|
|
|
|
#include "plugins/CutterPlugin.h"
|
2019-02-19 18:56:59 +00:00
|
|
|
#include "common/BasicBlockHighlighter.h"
|
2018-05-26 16:21:23 +00:00
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#define Core() (CutterCore::instance())
|
|
|
|
|
2017-04-09 18:42:45 +00:00
|
|
|
class RCoreLocked
|
2017-04-09 17:12:36 +00:00
|
|
|
{
|
2017-04-09 19:55:06 +00:00
|
|
|
RCore *core;
|
2017-04-09 18:42:45 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-09 19:55:06 +00:00
|
|
|
explicit RCoreLocked(RCore *core);
|
|
|
|
RCoreLocked(const RCoreLocked &) = delete;
|
|
|
|
RCoreLocked &operator=(const RCoreLocked &) = delete;
|
|
|
|
RCoreLocked(RCoreLocked &&);
|
2017-04-09 17:12:36 +00:00
|
|
|
~RCoreLocked();
|
2017-04-09 19:55:06 +00:00
|
|
|
operator RCore *() const;
|
|
|
|
RCore *operator->() const;
|
2017-04-09 17:12:36 +00:00
|
|
|
};
|
|
|
|
|
2017-04-28 13:09:40 +00:00
|
|
|
|
2017-09-25 12:55:41 +00:00
|
|
|
class CutterCore: public QObject
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2017-04-28 13:09:40 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
public:
|
2018-05-04 07:58:32 +00:00
|
|
|
explicit CutterCore(QObject *parent = nullptr);
|
2017-09-25 12:55:41 +00:00
|
|
|
~CutterCore();
|
2019-02-11 19:05:53 +00:00
|
|
|
static CutterCore *instance();
|
2017-04-28 13:09:40 +00:00
|
|
|
|
2019-02-20 17:52:11 +00:00
|
|
|
void initialize();
|
|
|
|
|
2018-05-26 18:09:20 +00:00
|
|
|
AsyncTaskManager *getAsyncTaskManager() { return asyncTaskManager; }
|
|
|
|
|
|
|
|
RVA getOffset() const { return core_->offset; }
|
2017-12-20 23:22:59 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Core functions (commands) */
|
2017-10-09 18:08:35 +00:00
|
|
|
static QString sanitizeStringForCommand(QString s);
|
2018-11-26 22:34:34 +00:00
|
|
|
QString cmd(const char *str);
|
|
|
|
QString cmd(const QString &str) { return cmd(str.toUtf8().constData()); }
|
2017-12-20 22:50:26 +00:00
|
|
|
QString cmdRaw(const QString &str);
|
2018-11-26 22:34:34 +00:00
|
|
|
QJsonDocument cmdj(const char *str);
|
|
|
|
QJsonDocument cmdj(const QString &str) { return cmdj(str.toUtf8().constData()); }
|
|
|
|
QStringList cmdList(const char *str) { return cmd(str).split('\n', QString::SkipEmptyParts); }
|
|
|
|
QStringList cmdList(const QString &str) { return cmdList(str.toUtf8().constData()); }
|
2018-05-29 16:19:59 +00:00
|
|
|
QString cmdTask(const QString &str);
|
|
|
|
QJsonDocument cmdjTask(const QString &str);
|
2018-11-26 22:34:34 +00:00
|
|
|
void cmdEsil(const char *command);
|
|
|
|
void cmdEsil(const QString &command) { cmdEsil(command.toUtf8().constData()); }
|
2018-06-20 09:24:28 +00:00
|
|
|
QString getVersionInformation();
|
2017-12-13 14:30:00 +00:00
|
|
|
|
2018-11-26 22:34:34 +00:00
|
|
|
QJsonDocument parseJson(const char *res, const char *cmd = nullptr);
|
|
|
|
QJsonDocument parseJson(const char *res, const QString &cmd = QString())
|
|
|
|
{
|
|
|
|
return parseJson(res, cmd.isNull() ? nullptr : cmd.toLocal8Bit().constData());
|
|
|
|
}
|
2018-05-29 16:19:59 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Functions methods */
|
2017-12-20 22:50:26 +00:00
|
|
|
void renameFunction(const QString &oldName, const QString &newName);
|
2017-12-11 13:07:12 +00:00
|
|
|
void delFunction(RVA addr);
|
2017-11-27 08:22:52 +00:00
|
|
|
void renameFlag(QString old_name, QString new_name);
|
2018-06-20 09:24:28 +00:00
|
|
|
RAnalFunction *functionAt(ut64 addr);
|
|
|
|
QString cmdFunctionAt(QString addr);
|
|
|
|
QString cmdFunctionAt(RVA addr);
|
|
|
|
QString createFunctionAt(RVA addr, QString name);
|
|
|
|
|
|
|
|
/* Flags */
|
2017-12-11 13:07:12 +00:00
|
|
|
void delFlag(RVA addr);
|
2018-03-11 16:40:52 +00:00
|
|
|
void delFlag(const QString &name);
|
2018-06-20 09:24:28 +00:00
|
|
|
void addFlag(RVA offset, QString name, RVA size);
|
|
|
|
void triggerFlagsChanged();
|
2017-12-01 10:46:13 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Edition functions */
|
2018-09-14 17:20:54 +00:00
|
|
|
QString getInstructionBytes(RVA addr);
|
|
|
|
QString getInstructionOpcode(RVA addr);
|
2018-02-12 20:12:13 +00:00
|
|
|
void editInstruction(RVA addr, const QString &inst);
|
2018-03-05 14:20:55 +00:00
|
|
|
void nopInstruction(RVA addr);
|
2018-03-10 07:27:09 +00:00
|
|
|
void jmpReverse(RVA addr);
|
2018-02-12 20:12:13 +00:00
|
|
|
void editBytes(RVA addr, const QString &inst);
|
2018-07-24 23:15:38 +00:00
|
|
|
void editBytesEndian(RVA addr, const QString &bytes);
|
2018-02-12 20:12:13 +00:00
|
|
|
|
2018-08-04 18:05:56 +00:00
|
|
|
/* Code/Data */
|
|
|
|
void setToCode(RVA addr);
|
2018-11-16 21:27:07 +00:00
|
|
|
void setAsString(RVA addr);
|
2018-08-04 18:05:56 +00:00
|
|
|
void setToData(RVA addr, int size, int repeat = 1);
|
|
|
|
int sizeofDataMeta(RVA addr);
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Comments */
|
2017-12-01 10:46:13 +00:00
|
|
|
void setComment(RVA addr, const QString &cmt);
|
2017-12-11 13:07:12 +00:00
|
|
|
void delComment(RVA addr);
|
2017-11-28 13:13:22 +00:00
|
|
|
void setImmediateBase(const QString &r2BaseName, RVA offset = RVA_INVALID);
|
2018-02-12 09:48:06 +00:00
|
|
|
void setCurrentBits(int bits, RVA offset = RVA_INVALID);
|
2017-12-03 11:47:26 +00:00
|
|
|
|
2019-02-24 17:25:38 +00:00
|
|
|
/*!
|
|
|
|
* \brief Changes immediate displacement to structure offset
|
|
|
|
* This function makes use of the "ta" command of r2 to apply structure
|
|
|
|
* offset to the immediate displacement used in the given instruction
|
|
|
|
* \param structureOffset The name of struct which will be applied
|
|
|
|
* \param offset The address of the instruction where the struct will be applied
|
|
|
|
*/
|
|
|
|
void applyStructureOffset(const QString &structureOffset, RVA offset = RVA_INVALID);
|
|
|
|
|
2018-08-17 11:27:07 +00:00
|
|
|
/* Classes */
|
2019-02-07 10:42:53 +00:00
|
|
|
QList<QString> getAllAnalClasses(bool sorted);
|
2019-02-01 20:40:34 +00:00
|
|
|
QList<AnalMethodDescription> getAnalClassMethods(const QString &cls);
|
|
|
|
QList<AnalBaseClassDescription> getAnalClassBaseClasses(const QString &cls);
|
|
|
|
QList<AnalVTableDescription> getAnalClassVTables(const QString &cls);
|
2019-02-07 12:40:41 +00:00
|
|
|
void createNewClass(const QString &cls);
|
|
|
|
void renameClass(const QString &oldName, const QString &newName);
|
|
|
|
void deleteClass(const QString &cls);
|
2019-02-01 20:40:34 +00:00
|
|
|
bool getAnalMethod(const QString &cls, const QString &meth, AnalMethodDescription *desc);
|
|
|
|
void renameAnalMethod(const QString &className, const QString &oldMethodName, const QString &newMethodName);
|
|
|
|
void setAnalMethod(const QString &cls, const AnalMethodDescription &meth);
|
2018-08-17 11:27:07 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* File related methods */
|
2018-09-22 16:00:21 +00:00
|
|
|
bool loadFile(QString path, ut64 baddr = 0LL, ut64 mapaddr = 0LL, int perms = R_PERM_R,
|
2018-11-26 22:34:34 +00:00
|
|
|
int va = 0, bool loadbin = false, const QString &forceBinPlugin = QString());
|
2017-03-29 10:18:37 +00:00
|
|
|
bool tryFile(QString path, bool rw);
|
2019-02-05 19:35:54 +00:00
|
|
|
bool openFile(QString path, RVA mapaddr);
|
2018-06-20 09:24:28 +00:00
|
|
|
void loadScript(const QString &scriptname);
|
|
|
|
QJsonArray getOpenedFiles();
|
|
|
|
|
|
|
|
/* Seek functions */
|
2018-04-13 08:55:54 +00:00
|
|
|
void seek(QString thing);
|
2017-04-28 13:09:40 +00:00
|
|
|
void seek(ut64 offset);
|
2017-10-16 19:00:47 +00:00
|
|
|
void seekPrev();
|
|
|
|
void seekNext();
|
2018-09-06 17:32:12 +00:00
|
|
|
void updateSeek();
|
2017-10-16 19:00:47 +00:00
|
|
|
RVA getOffset();
|
2017-11-02 06:48:32 +00:00
|
|
|
RVA prevOpAddr(RVA startAddr, int count);
|
|
|
|
RVA nextOpAddr(RVA startAddr, int count);
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Disassembly/Graph/Hexdump/Pseudocode view priority */
|
2017-12-06 23:19:14 +00:00
|
|
|
enum class MemoryWidgetType { Disassembly, Graph, Hexdump, Pseudocode };
|
2018-03-21 20:32:32 +00:00
|
|
|
MemoryWidgetType getMemoryWidgetPriority() const
|
|
|
|
{
|
|
|
|
return memoryWidgetPriority;
|
|
|
|
}
|
|
|
|
void setMemoryWidgetPriority(MemoryWidgetType type)
|
|
|
|
{
|
|
|
|
memoryWidgetPriority = type;
|
|
|
|
}
|
|
|
|
void triggerRaisePrioritizedMemoryWidget()
|
|
|
|
{
|
|
|
|
emit raisePrioritizedMemoryWidget(memoryWidgetPriority);
|
|
|
|
}
|
2017-10-22 10:21:44 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Math functions */
|
2017-03-29 10:18:37 +00:00
|
|
|
ut64 math(const QString &expr);
|
2018-08-17 11:27:07 +00:00
|
|
|
ut64 num(const QString &expr);
|
|
|
|
QString itoa(ut64 num, int rdx = 16);
|
2017-10-01 14:36:40 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Config functions */
|
2018-11-26 22:34:34 +00:00
|
|
|
void setConfig(const char *k, const QString &v);
|
|
|
|
void setConfig(const QString &k, const QString &v) { setConfig(k.toUtf8().constData(), v); }
|
|
|
|
void setConfig(const char *k, int v);
|
|
|
|
void setConfig(const QString &k, int v) { setConfig(k.toUtf8().constData(), v); }
|
|
|
|
void setConfig(const char *k, bool v);
|
|
|
|
void setConfig(const QString &k, bool v) { setConfig(k.toUtf8().constData(), v); }
|
|
|
|
void setConfig(const char *k, const QVariant &v);
|
|
|
|
void setConfig(const QString &k, const QVariant &v) { setConfig(k.toUtf8().constData(), v); }
|
|
|
|
int getConfigi(const char *k);
|
|
|
|
int getConfigi(const QString &k) { return getConfigi(k.toUtf8().constData()); }
|
2019-01-24 22:29:56 +00:00
|
|
|
ut64 getConfigut64(const char *k);
|
|
|
|
ut64 getConfigut64(const QString &k) { return getConfigut64(k.toUtf8().constData()); }
|
2018-11-26 22:34:34 +00:00
|
|
|
bool getConfigb(const char *k);
|
|
|
|
bool getConfigb(const QString &k) { return getConfigb(k.toUtf8().constData()); }
|
|
|
|
QString getConfig(const char *k);
|
|
|
|
QString getConfig(const QString &k) { return getConfig(k.toUtf8().constData()); }
|
2018-06-20 09:24:28 +00:00
|
|
|
QList<QString> getColorThemes();
|
2017-10-01 14:36:40 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Assembly related methods */
|
2017-03-29 10:18:37 +00:00
|
|
|
QString assemble(const QString &code);
|
2017-04-12 20:44:05 +00:00
|
|
|
QString disassemble(const QString &hex);
|
2017-06-07 15:48:36 +00:00
|
|
|
QString disassembleSingleInstruction(RVA addr);
|
2018-06-20 09:24:28 +00:00
|
|
|
QList<DisassemblyLine> disassembleLines(RVA offset, int lines);
|
2018-05-05 13:20:14 +00:00
|
|
|
void setCPU(QString arch, QString cpu, int bits);
|
2018-01-20 10:35:31 +00:00
|
|
|
void setEndianness(bool big);
|
2018-03-07 12:02:39 +00:00
|
|
|
void setBBSize(int size);
|
2018-03-21 20:32:32 +00:00
|
|
|
|
2017-10-09 18:08:35 +00:00
|
|
|
/* SDB */
|
2017-03-29 10:18:37 +00:00
|
|
|
QList<QString> sdbList(QString path);
|
|
|
|
QList<QString> sdbListKeys(QString path);
|
|
|
|
QString sdbGet(QString path, QString key);
|
|
|
|
bool sdbSet(QString path, QString key, QString val);
|
2018-06-12 08:43:14 +00:00
|
|
|
|
2018-10-17 06:36:41 +00:00
|
|
|
/* Debug */
|
2018-04-18 09:13:08 +00:00
|
|
|
QJsonDocument getRegistersInfo();
|
2018-06-06 11:05:20 +00:00
|
|
|
QJsonDocument getRegisterValues();
|
|
|
|
QString getRegisterName(QString registerRole);
|
2018-06-22 15:57:15 +00:00
|
|
|
RVA getProgramCounterValue();
|
2018-06-06 11:05:20 +00:00
|
|
|
void setRegister(QString regName, QString regValue);
|
2018-07-23 23:13:23 +00:00
|
|
|
QJsonDocument getStack(int size = 0x100);
|
2018-06-06 11:05:20 +00:00
|
|
|
QJsonDocument getBacktrace();
|
2018-06-12 08:43:14 +00:00
|
|
|
void startDebug();
|
2018-07-01 21:29:38 +00:00
|
|
|
void startEmulation();
|
|
|
|
void attachDebug(int pid);
|
2018-06-12 15:42:38 +00:00
|
|
|
void stopDebug();
|
2018-06-12 08:43:14 +00:00
|
|
|
void continueDebug();
|
2018-06-13 23:02:16 +00:00
|
|
|
void continueUntilCall();
|
|
|
|
void continueUntilSyscall();
|
2018-06-12 08:43:14 +00:00
|
|
|
void continueUntilDebug(QString offset);
|
|
|
|
void stepDebug();
|
|
|
|
void stepOverDebug();
|
2018-07-30 06:55:39 +00:00
|
|
|
void stepOutDebug();
|
2018-07-17 07:26:20 +00:00
|
|
|
void toggleBreakpoint(RVA addr);
|
|
|
|
void toggleBreakpoint(QString addr);
|
2018-06-22 08:45:00 +00:00
|
|
|
void delBreakpoint(RVA addr);
|
|
|
|
void delAllBreakpoints();
|
|
|
|
void enableBreakpoint(RVA addr);
|
|
|
|
void disableBreakpoint(RVA addr);
|
2018-11-26 22:34:34 +00:00
|
|
|
bool isBreakpoint(const QList<RVA> &breakpoints, RVA addr);
|
2018-08-12 16:20:16 +00:00
|
|
|
QList<RVA> getBreakpointsAddresses();
|
2018-06-14 11:49:22 +00:00
|
|
|
QString getActiveDebugPlugin();
|
|
|
|
QStringList getDebugPlugins();
|
|
|
|
void setDebugPlugin(QString plugin);
|
2018-06-22 15:57:15 +00:00
|
|
|
bool currentlyDebugging = false;
|
2018-07-01 21:29:38 +00:00
|
|
|
bool currentlyEmulating = false;
|
2018-07-31 17:16:05 +00:00
|
|
|
int currentlyAttachedToPID = -1;
|
|
|
|
QString currentlyOpenFile;
|
2018-06-12 08:43:14 +00:00
|
|
|
|
2018-10-17 06:36:41 +00:00
|
|
|
/* Pseudocode */
|
2018-09-08 07:12:08 +00:00
|
|
|
QString getDecompiledCodePDC(RVA addr);
|
|
|
|
bool getR2DecAvailable();
|
|
|
|
QString getDecompiledCodeR2Dec(RVA addr);
|
|
|
|
|
2017-11-28 11:56:38 +00:00
|
|
|
RVA getOffsetJump(RVA addr);
|
2018-02-10 22:31:15 +00:00
|
|
|
QJsonDocument getFileInfo();
|
2018-05-05 12:58:26 +00:00
|
|
|
QJsonDocument getSignatureInfo();
|
2018-05-01 18:53:14 +00:00
|
|
|
QJsonDocument getFileVersionInfo();
|
2017-03-29 10:18:37 +00:00
|
|
|
QStringList getStats();
|
2018-09-30 17:46:36 +00:00
|
|
|
void setGraphEmpty(bool empty);
|
|
|
|
bool isGraphEmpty();
|
2017-12-20 23:22:59 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
void getOpcodes();
|
|
|
|
QList<QString> opcodes;
|
|
|
|
QList<QString> regs;
|
2017-03-30 16:47:50 +00:00
|
|
|
void setSettings();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2017-09-27 20:23:18 +00:00
|
|
|
void loadPDB(const QString &file);
|
2017-04-28 13:09:40 +00:00
|
|
|
|
|
|
|
QList<RVA> getSeekHistory();
|
2017-05-03 09:09:57 +00:00
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Plugins */
|
2017-05-03 09:09:57 +00:00
|
|
|
QStringList getAsmPluginNames();
|
|
|
|
QStringList getAnalPluginNames();
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Projects */
|
2017-05-13 18:09:36 +00:00
|
|
|
QStringList getProjectNames();
|
2017-10-21 19:20:10 +00:00
|
|
|
void openProject(const QString &name);
|
|
|
|
void saveProject(const QString &name);
|
2018-04-23 07:54:24 +00:00
|
|
|
void deleteProject(const QString &name);
|
2017-10-21 19:20:10 +00:00
|
|
|
static bool isProjectNameValid(const QString &name);
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Widgets */
|
2018-11-26 22:34:34 +00:00
|
|
|
QList<RBinPluginDescription> getRBinPluginDescriptions(const QString &type = QString());
|
2018-03-09 15:05:40 +00:00
|
|
|
QList<RIOPluginDescription> getRIOPluginDescriptions();
|
|
|
|
QList<RCorePluginDescription> getRCorePluginDescriptions();
|
2018-03-11 08:39:31 +00:00
|
|
|
QList<RAsmPluginDescription> getRAsmPluginDescriptions();
|
2017-04-28 13:09:40 +00:00
|
|
|
QList<FunctionDescription> getAllFunctions();
|
|
|
|
QList<ImportDescription> getAllImports();
|
2017-05-19 07:45:26 +00:00
|
|
|
QList<ExportDescription> getAllExports();
|
2017-04-28 13:09:40 +00:00
|
|
|
QList<SymbolDescription> getAllSymbols();
|
2018-05-21 17:34:41 +00:00
|
|
|
QList<HeaderDescription> getAllHeaders();
|
2018-05-24 15:37:37 +00:00
|
|
|
QList<ZignatureDescription> getAllZignatures();
|
2017-04-28 13:38:01 +00:00
|
|
|
QList<CommentDescription> getAllComments(const QString &filterType);
|
2017-04-28 13:09:40 +00:00
|
|
|
QList<RelocDescription> getAllRelocs();
|
|
|
|
QList<StringDescription> getAllStrings();
|
2017-05-03 09:09:57 +00:00
|
|
|
QList<FlagspaceDescription> getAllFlagspaces();
|
2018-11-26 22:34:34 +00:00
|
|
|
QList<FlagDescription> getAllFlags(QString flagspace = QString());
|
2017-05-03 09:09:57 +00:00
|
|
|
QList<SectionDescription> getAllSections();
|
2018-10-20 18:20:06 +00:00
|
|
|
QList<SegmentDescription> getAllSegments();
|
2017-07-13 18:49:12 +00:00
|
|
|
QList<EntrypointDescription> getAllEntrypoint();
|
2018-08-17 11:27:07 +00:00
|
|
|
QList<BinClassDescription> getAllClassesFromBin();
|
|
|
|
QList<BinClassDescription> getAllClassesFromFlags();
|
2018-02-04 14:32:18 +00:00
|
|
|
QList<ResourcesDescription> getAllResources();
|
2018-02-26 22:26:18 +00:00
|
|
|
QList<VTableDescription> getAllVTables();
|
2019-02-01 16:11:50 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded types
|
|
|
|
*/
|
2018-03-06 17:21:48 +00:00
|
|
|
QList<TypeDescription> getAllTypes();
|
2019-02-01 16:11:50 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded primitive types
|
|
|
|
*/
|
|
|
|
QList<TypeDescription> getAllPrimitiveTypes();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded unions
|
|
|
|
*/
|
|
|
|
QList<TypeDescription> getAllUnions();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded structs
|
|
|
|
*/
|
|
|
|
QList<TypeDescription> getAllStructs();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded enums
|
|
|
|
*/
|
|
|
|
QList<TypeDescription> getAllEnums();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \return all loaded typedefs
|
|
|
|
*/
|
|
|
|
QList<TypeDescription> getAllTypedefs();
|
|
|
|
|
2019-02-11 09:34:15 +00:00
|
|
|
/*!
|
|
|
|
* \brief Adds new types
|
|
|
|
* It first uses the r_parse_c_string() function from radare2 API to parse the
|
|
|
|
* supplied C file (in the form of a string). If there were errors, they are displayed.
|
|
|
|
* If there were no errors, it uses sdb_query_lines() function from radare2 API
|
|
|
|
* to save the parsed types returned by r_parse_c_string()
|
|
|
|
* \param str Contains the definition of the data types
|
|
|
|
* \return returns an empty QString if there was no error, else returns the error
|
|
|
|
*/
|
|
|
|
QString addTypes(const char *str);
|
|
|
|
QString addTypes(const QString &str) { return addTypes(str.toUtf8().constData()); }
|
|
|
|
|
2019-03-04 21:45:17 +00:00
|
|
|
/*!
|
|
|
|
* \brief Checks if the given address is mapped to a region
|
|
|
|
* \param addr The address to be checked
|
|
|
|
* \return true if addr is mapped, false otherwise
|
|
|
|
*/
|
|
|
|
bool isAddressMapped(RVA addr);
|
|
|
|
|
2018-06-12 08:43:14 +00:00
|
|
|
QList<MemoryMapDescription> getMemoryMap();
|
2018-03-08 12:24:15 +00:00
|
|
|
QList<SearchDescription> getAllSearch(QString search_for, QString space);
|
2018-06-29 10:34:01 +00:00
|
|
|
BlockStatistics getBlockStatistics(unsigned int blocksCount);
|
2018-06-22 08:45:00 +00:00
|
|
|
QList<BreakpointDescription> getBreakpoints();
|
2018-07-01 21:29:38 +00:00
|
|
|
QList<ProcessDescription> getAllProcesses();
|
2018-07-19 14:35:46 +00:00
|
|
|
QList<RegisterRefDescription> getRegisterRefs();
|
2018-07-25 22:17:58 +00:00
|
|
|
QJsonObject getRegisterJson();
|
2018-12-19 08:39:23 +00:00
|
|
|
QList<VariableDescription> getVariables(RVA at);
|
2017-04-28 13:09:40 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
QList<XrefDescription> getXRefs(RVA addr, bool to, bool whole_function,
|
|
|
|
const QString &filterType = QString::null);
|
2017-06-07 10:56:55 +00:00
|
|
|
|
2018-05-29 16:19:59 +00:00
|
|
|
QList<StringDescription> parseStringsJson(const QJsonDocument &doc);
|
2018-06-25 19:28:34 +00:00
|
|
|
QList<FunctionDescription> parseFunctionsJson(const QJsonDocument &doc);
|
2018-05-29 16:19:59 +00:00
|
|
|
|
2019-02-07 10:42:53 +00:00
|
|
|
void handleREvent(int type, void *data);
|
|
|
|
|
2018-06-20 09:24:28 +00:00
|
|
|
/* Signals related */
|
2017-11-30 21:30:51 +00:00
|
|
|
void triggerVarsChanged();
|
|
|
|
void triggerFunctionRenamed(const QString &prevName, const QString &newName);
|
2017-11-19 12:56:10 +00:00
|
|
|
void triggerRefreshAll();
|
2017-10-01 14:36:40 +00:00
|
|
|
void triggerAsmOptionsChanged();
|
2017-12-19 16:13:44 +00:00
|
|
|
void triggerGraphOptionsChanged();
|
2017-10-01 14:36:40 +00:00
|
|
|
|
2018-08-27 11:16:48 +00:00
|
|
|
void message(const QString &msg, bool debug = false);
|
|
|
|
|
2018-11-17 19:17:16 +00:00
|
|
|
QStringList getSectionList();
|
|
|
|
|
2017-04-09 17:12:36 +00:00
|
|
|
RCoreLocked core() const;
|
|
|
|
|
2019-02-15 12:33:23 +00:00
|
|
|
static QString ansiEscapeToHtml(const QString &text);
|
2019-02-19 18:56:59 +00:00
|
|
|
BasicBlockHighlighter *getBBHighlighter();
|
2019-02-15 12:33:23 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
signals:
|
2017-11-19 12:56:10 +00:00
|
|
|
void refreshAll();
|
|
|
|
|
2017-12-20 22:50:26 +00:00
|
|
|
void functionRenamed(const QString &prev_name, const QString &new_name);
|
2017-11-30 21:30:51 +00:00
|
|
|
void varsChanged();
|
2017-12-11 13:07:12 +00:00
|
|
|
void functionsChanged();
|
2017-07-11 11:05:42 +00:00
|
|
|
void flagsChanged();
|
|
|
|
void commentsChanged();
|
2018-06-12 08:43:14 +00:00
|
|
|
void registersChanged();
|
2017-11-28 13:13:22 +00:00
|
|
|
void instructionChanged(RVA offset);
|
2018-06-22 08:45:00 +00:00
|
|
|
void breakpointsChanged();
|
2018-07-01 21:29:38 +00:00
|
|
|
void refreshCodeViews();
|
2018-07-24 23:15:38 +00:00
|
|
|
void stackChanged();
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2019-02-07 10:42:53 +00:00
|
|
|
void classNew(const QString &cls);
|
|
|
|
void classDeleted(const QString &cls);
|
|
|
|
void classRenamed(const QString &oldName, const QString &newName);
|
|
|
|
void classAttrsChanged(const QString &cls);
|
|
|
|
|
2018-11-02 06:48:17 +00:00
|
|
|
void projectSaved(bool successfully, const QString &name);
|
2017-10-21 19:20:10 +00:00
|
|
|
|
2017-10-01 14:36:40 +00:00
|
|
|
/*!
|
|
|
|
* emitted when config regarding disassembly display changes
|
|
|
|
*/
|
|
|
|
void asmOptionsChanged();
|
|
|
|
|
2017-12-19 16:13:44 +00:00
|
|
|
/*!
|
|
|
|
* emitted when config regarding graph display changes
|
|
|
|
*/
|
|
|
|
void graphOptionsChanged();
|
|
|
|
|
2017-10-09 18:08:35 +00:00
|
|
|
/*!
|
|
|
|
* \brief seekChanged is emitted each time radare2 seek value is modified
|
|
|
|
* \param offset
|
|
|
|
*/
|
|
|
|
void seekChanged(RVA offset);
|
|
|
|
|
2017-11-04 11:46:29 +00:00
|
|
|
void raisePrioritizedMemoryWidget(CutterCore::MemoryWidgetType type);
|
2018-06-12 15:42:38 +00:00
|
|
|
void changeDefinedView();
|
|
|
|
void changeDebugView();
|
2017-11-04 11:46:29 +00:00
|
|
|
|
2018-08-27 11:16:48 +00:00
|
|
|
void newMessage(const QString &msg);
|
|
|
|
void newDebugMessage(const QString &msg);
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
2017-11-04 11:46:29 +00:00
|
|
|
MemoryWidgetType memoryWidgetPriority;
|
|
|
|
|
2017-10-21 19:20:10 +00:00
|
|
|
QString notes;
|
2019-02-20 17:52:11 +00:00
|
|
|
RCore *core_ = nullptr;
|
2018-05-26 16:21:23 +00:00
|
|
|
AsyncTaskManager *asyncTaskManager;
|
2018-06-13 21:36:29 +00:00
|
|
|
RVA offsetPriorDebugging = RVA_INVALID;
|
2018-07-27 12:00:23 +00:00
|
|
|
QErrorMessage msgBox;
|
2018-06-26 07:40:08 +00:00
|
|
|
|
2018-09-30 17:46:36 +00:00
|
|
|
bool emptyGraph = false;
|
2019-02-19 18:56:59 +00:00
|
|
|
BasicBlockHighlighter *bbHighlighter;
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
2017-09-25 12:55:41 +00:00
|
|
|
#endif // CUTTER_H
|