#ifndef CUTTER_H #define CUTTER_H // Workaround for compile errors on Windows #ifdef _WIN32 #include #endif //_WIN32 #include "r_core.h" // Workaround for compile errors on Windows #ifdef _WIN32 #undef min #undef max #endif //_WIN32 #include #include #include #include #include #include #define HAVE_LATEST_LIBR2 false #define CutterRListForeach(list, it, type, x) \ if (list) for (it = list->head; it && ((x=(type*)it->data)); it = it->n) #define __alert(x) QMessageBox::question (this, "Alert", QString(x), QMessageBox::Ok) #define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No)) #define APPNAME "Cutter" #define Core() (CutterCore::getInstance()) typedef ut64 RVA; #define RVA_INVALID UT64_MAX class RCoreLocked { RCore *core; public: explicit RCoreLocked(RCore *core); RCoreLocked(const RCoreLocked &) = delete; RCoreLocked &operator=(const RCoreLocked &) = delete; RCoreLocked(RCoreLocked &&); ~RCoreLocked(); operator RCore *() const; RCore *operator->() const; RVA seek(RVA offset); RVA getSeek(); }; inline QString RAddressString(RVA addr) { return QString::asprintf("%#010llx", addr); } inline QString RSizeString(RVA size) { return QString::asprintf("%lld", size); } struct FunctionDescription { RVA offset; RVA size; QString name; bool contains(RVA addr) const { return addr >= offset && addr < offset + size; } }; struct ImportDescription { RVA plt; int ordinal; QString bind; QString type; QString name; }; struct ExportDescription { RVA vaddr; RVA paddr; RVA size; QString type; QString name; QString flag_name; }; struct SymbolDescription { RVA vaddr; QString bind; QString type; QString name; }; struct CommentDescription { RVA offset; QString name; }; struct RelocDescription { RVA vaddr; RVA paddr; QString type; QString name; }; struct StringDescription { RVA vaddr; QString string; }; struct FlagspaceDescription { QString name; }; struct FlagDescription { RVA offset; RVA size; QString name; }; struct SectionDescription { RVA vaddr; RVA paddr; RVA size; RVA vsize; QString name; QString flags; }; struct EntrypointDescription { RVA vaddr; RVA paddr; RVA baddr; RVA laddr; RVA haddr; QString type; }; struct XrefDescription { RVA from; RVA to; QString type; }; struct RBinPluginDescription { QString name; QString description; QString license; QString type; }; Q_DECLARE_METATYPE(FunctionDescription) Q_DECLARE_METATYPE(ImportDescription) Q_DECLARE_METATYPE(ExportDescription) Q_DECLARE_METATYPE(SymbolDescription) Q_DECLARE_METATYPE(CommentDescription) Q_DECLARE_METATYPE(RelocDescription) Q_DECLARE_METATYPE(StringDescription) Q_DECLARE_METATYPE(FlagspaceDescription) Q_DECLARE_METATYPE(FlagDescription) Q_DECLARE_METATYPE(XrefDescription) Q_DECLARE_METATYPE(EntrypointDescription) Q_DECLARE_METATYPE(RBinPluginDescription) class CutterCore: public QObject { Q_OBJECT friend class ccClass; public: explicit CutterCore(QObject *parent = 0); ~CutterCore(); static CutterCore *getInstance(); /* Getters */ RVA getOffset() const { return core_->offset; } int getCycloComplex(ut64 addr); int getFcnSize(ut64 addr); int fcnCyclomaticComplexity(ut64 addr); int fcnBasicBlockCount(ut64 addr); int fcnEndBbs(RVA addr); static QString sanitizeStringForCommand(QString s); QString cmd(const QString &str); QJsonDocument cmdj(const QString &str); QStringList cmdList(const QString &str) { auto l = cmd(str).split("\n"); l.removeAll(""); return l; } void renameFunction(QString prev_name, QString new_name); void setComment(RVA addr, QString cmt); void delComment(ut64 addr); QMap>> getNestedComments(); void setOptions(QString key); bool loadFile(QString path, uint64_t loadaddr = 0LL, uint64_t mapaddr = 0LL, bool rw = false, int va = 0, int idx = 0, bool loadbin = false, const QString &forceBinPlugin = nullptr); bool tryFile(QString path, bool rw); void analyze(int level, QList advanced); // Seek functions void seek(QString addr); void seek(ut64 offset); void seekPrev(); void seekNext(); RVA getOffset(); RVA prevOpAddr(RVA startAddr, int count); RVA nextOpAddr(RVA startAddr, int count); // Disassembly/Graph/Hexdump view priority enum class MemoryWidgetType { Disassembly, Graph, Hexdump }; MemoryWidgetType getMemoryWidgetPriority() const { return memoryWidgetPriority; } void setMemoryWidgetPriority(MemoryWidgetType type) { memoryWidgetPriority = type; } void triggerRaisePrioritizedMemoryWidget() { emit raisePrioritizedMemoryWidget(memoryWidgetPriority); } ut64 math(const QString &expr); QString itoa(ut64 num, int rdx = 16); /* Config related */ void setConfig(const QString &k, const QString &v); void setConfig(const QString &k, int v); void setConfig(const QString &k, bool v); void setConfig(const QString &k, const char *v) { setConfig(k, QString(v)); } int getConfigi(const QString &k); bool getConfigb(const QString &k); QString getConfig(const QString &k); QString assemble(const QString &code); QString disassemble(const QString &hex); QString disassembleSingleInstruction(RVA addr); void setDefaultCPU(); void setCPU(QString arch, QString cpu, int bits, bool temporary = false); RAnalFunction *functionAt(ut64 addr); QString cmdFunctionAt(QString addr); QString cmdFunctionAt(RVA addr); /* SDB */ QList sdbList(QString path); QList sdbListKeys(QString path); QString sdbGet(QString path, QString key); bool sdbSet(QString path, QString key, QString val); int get_size(); ulong get_baddr(); QList> get_exec_sections(); QString getOffsetInfo(QString addr); QString getOffsetJump(QString addr); QString getDecompiledCode(QString addr); QString getFileInfo(); QStringList getStats(); QString getSimpleGraph(QString function); QString binStart; QString binEnd; void getOpcodes(); QList opcodes; QList regs; void setSettings(); void loadPDB(const QString &file); QList getSeekHistory(); QStringList getAsmPluginNames(); QStringList getAnalPluginNames(); QStringList getProjectNames(); void openProject(const QString &name); void saveProject(const QString &name); static bool isProjectNameValid(const QString &name); const QString &getNotes() const { return notes; } void setNotes(const QString ¬es); QList getRBinPluginDescriptions(const QString &type = nullptr); QList getAllFunctions(); QList getAllImports(); QList getAllExports(); QList getAllSymbols(); QList getAllComments(const QString &filterType); QList getAllRelocs(); QList getAllStrings(); QList getAllFlagspaces(); QList getAllFlags(QString flagspace = NULL); QList getAllSections(); QList getAllEntrypoint(); QList getXRefs(RVA addr, bool to, bool whole_function, const QString &filterType = QString::null); void addFlag(RVA offset, QString name, RVA size); void triggerRefreshAll(); void triggerAsmOptionsChanged(); void resetDefaultAsmOptions(); void saveDefaultAsmOptions(); RCoreLocked core() const; /* fields */ Sdb *db; signals: void refreshAll(); void functionRenamed(QString prev_name, QString new_name); void flagsChanged(); void commentsChanged(); void notesChanged(const QString ¬es); void projectSaved(const QString &name); /*! * emitted when config regarding disassembly display changes */ void asmOptionsChanged(); /*! * \brief seekChanged is emitted each time radare2 seek value is modified * \param offset */ void seekChanged(RVA offset); void raisePrioritizedMemoryWidget(CutterCore::MemoryWidgetType type); public slots: private: QString default_arch; QString default_cpu; int default_bits; MemoryWidgetType memoryWidgetPriority; QString notes; RCore *core_; }; class ccClass : public CutterCore { }; #endif // CUTTER_H