2019-02-22 16:50:45 +00:00
|
|
|
/** \file CutterDescriptions.h
|
|
|
|
* This file contains every structure description that are used in widgets.
|
|
|
|
* The descriptions are used for the Qt metatypes.
|
|
|
|
*/
|
|
|
|
#ifndef DESCRIPTIONS_H
|
|
|
|
#define DESCRIPTIONS_H
|
|
|
|
|
2019-03-08 23:01:24 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QMetaType>
|
2020-01-30 17:40:27 +00:00
|
|
|
#include <QColor>
|
2019-04-09 07:44:44 +00:00
|
|
|
#include "core/CutterCommon.h"
|
2019-03-08 23:01:24 +00:00
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
struct FunctionDescription {
|
|
|
|
RVA offset;
|
2020-01-15 19:19:24 +00:00
|
|
|
RVA linearSize;
|
2019-02-22 16:50:45 +00:00
|
|
|
RVA nargs;
|
|
|
|
RVA nbbs;
|
|
|
|
RVA nlocals;
|
|
|
|
QString calltype;
|
|
|
|
QString name;
|
|
|
|
RVA edges;
|
|
|
|
RVA stackframe;
|
|
|
|
|
|
|
|
bool contains(RVA addr) const
|
|
|
|
{
|
2020-01-15 19:19:24 +00:00
|
|
|
// TODO: this is not exactly correct in edge cases.
|
|
|
|
// r_anal_function_contains() does it right.
|
|
|
|
return addr >= offset && addr < offset + linearSize;
|
2019-02-22 16:50:45 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ImportDescription {
|
|
|
|
RVA plt;
|
|
|
|
int ordinal;
|
|
|
|
QString bind;
|
|
|
|
QString type;
|
|
|
|
QString name;
|
2020-01-25 07:18:53 +00:00
|
|
|
QString libname;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ExportDescription {
|
|
|
|
RVA vaddr;
|
|
|
|
RVA paddr;
|
|
|
|
RVA size;
|
|
|
|
QString type;
|
|
|
|
QString name;
|
|
|
|
QString flag_name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct HeaderDescription
|
|
|
|
{
|
|
|
|
RVA vaddr;
|
|
|
|
RVA paddr;
|
|
|
|
QString value;
|
|
|
|
QString name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ZignatureDescription
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
QString bytes;
|
|
|
|
RVA cc;
|
|
|
|
RVA nbbs;
|
|
|
|
RVA edges;
|
|
|
|
RVA ebbs;
|
|
|
|
RVA offset;
|
|
|
|
QStringList refs;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TypeDescription {
|
|
|
|
QString type;
|
|
|
|
int size;
|
|
|
|
QString format;
|
|
|
|
QString category;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SearchDescription {
|
|
|
|
RVA offset;
|
|
|
|
int size;
|
|
|
|
QString code;
|
|
|
|
QString data;
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
QString type;
|
|
|
|
QString section;
|
|
|
|
ut32 length;
|
|
|
|
ut32 size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FlagspaceDescription {
|
|
|
|
QString name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FlagDescription {
|
|
|
|
RVA offset;
|
|
|
|
RVA size;
|
|
|
|
QString name;
|
2020-01-25 07:18:53 +00:00
|
|
|
QString realname;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SectionDescription {
|
|
|
|
RVA vaddr;
|
|
|
|
RVA paddr;
|
|
|
|
RVA size;
|
|
|
|
RVA vsize;
|
|
|
|
QString name;
|
2019-05-16 10:48:14 +00:00
|
|
|
QString perm;
|
2019-02-22 16:50:45 +00:00
|
|
|
QString entropy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SegmentDescription {
|
|
|
|
RVA vaddr;
|
|
|
|
RVA paddr;
|
|
|
|
RVA size;
|
|
|
|
RVA vsize;
|
|
|
|
QString name;
|
|
|
|
QString perm;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EntrypointDescription {
|
|
|
|
RVA vaddr;
|
|
|
|
RVA paddr;
|
|
|
|
RVA baddr;
|
|
|
|
RVA laddr;
|
|
|
|
RVA haddr;
|
|
|
|
QString type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct XrefDescription {
|
|
|
|
RVA from;
|
|
|
|
QString from_str;
|
|
|
|
RVA to;
|
|
|
|
QString to_str;
|
|
|
|
QString type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RBinPluginDescription {
|
|
|
|
QString name;
|
|
|
|
QString description;
|
|
|
|
QString license;
|
|
|
|
QString type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RIOPluginDescription {
|
|
|
|
QString name;
|
|
|
|
QString description;
|
|
|
|
QString license;
|
|
|
|
QString permissions;
|
2019-05-17 07:09:10 +00:00
|
|
|
QList<QString> uris;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct RCorePluginDescription {
|
|
|
|
QString name;
|
|
|
|
QString description;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RAsmPluginDescription {
|
|
|
|
QString name;
|
|
|
|
QString architecture;
|
|
|
|
QString author;
|
|
|
|
QString version;
|
|
|
|
QString cpus;
|
|
|
|
QString description;
|
|
|
|
QString license;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DisassemblyLine {
|
|
|
|
RVA offset;
|
|
|
|
QString text;
|
2019-06-26 07:12:39 +00:00
|
|
|
RVA arrow;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BinClassBaseClassDescription {
|
|
|
|
QString name;
|
|
|
|
RVA offset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BinClassMethodDescription {
|
|
|
|
QString name;
|
|
|
|
RVA addr = RVA_INVALID;
|
|
|
|
st64 vtableOffset = -1;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BinClassFieldDescription {
|
|
|
|
QString name;
|
|
|
|
RVA addr = RVA_INVALID;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BinClassDescription {
|
|
|
|
QString name;
|
|
|
|
RVA addr = RVA_INVALID;
|
|
|
|
RVA vtableAddr = RVA_INVALID;
|
|
|
|
ut64 index = 0;
|
|
|
|
QList<BinClassBaseClassDescription> baseClasses;
|
|
|
|
QList<BinClassMethodDescription> methods;
|
|
|
|
QList<BinClassFieldDescription> fields;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AnalMethodDescription {
|
|
|
|
QString name;
|
|
|
|
RVA addr;
|
|
|
|
st64 vtableOffset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AnalBaseClassDescription {
|
|
|
|
QString id;
|
|
|
|
RVA offset;
|
|
|
|
QString className;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct AnalVTableDescription {
|
|
|
|
QString id;
|
|
|
|
ut64 offset;
|
|
|
|
ut64 addr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ResourcesDescription {
|
2020-04-15 16:20:57 +00:00
|
|
|
QString name;
|
2019-02-22 16:50:45 +00:00
|
|
|
RVA vaddr;
|
|
|
|
ut64 index;
|
|
|
|
QString type;
|
|
|
|
ut64 size;
|
|
|
|
QString lang;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct VTableDescription {
|
|
|
|
RVA addr;
|
|
|
|
QList<BinClassMethodDescription> methods;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BlockDescription {
|
|
|
|
RVA addr;
|
|
|
|
RVA size;
|
|
|
|
int flags;
|
|
|
|
int functions;
|
|
|
|
int inFunctions;
|
|
|
|
int comments;
|
|
|
|
int symbols;
|
|
|
|
int strings;
|
|
|
|
ut8 rwx;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BlockStatistics {
|
|
|
|
RVA from;
|
|
|
|
RVA to;
|
|
|
|
RVA blocksize;
|
|
|
|
QList<BlockDescription> blocks;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MemoryMapDescription {
|
|
|
|
RVA addrStart;
|
|
|
|
RVA addrEnd;
|
|
|
|
QString name;
|
|
|
|
QString fileName;
|
|
|
|
QString type;
|
|
|
|
QString permission;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BreakpointDescription {
|
2020-01-04 18:05:49 +00:00
|
|
|
enum PositionType {
|
|
|
|
Address,
|
|
|
|
Named,
|
|
|
|
Module,
|
|
|
|
};
|
|
|
|
|
|
|
|
RVA addr = 0;
|
|
|
|
int64_t moduleDelta = 0;
|
|
|
|
int index = -1;
|
|
|
|
PositionType type = Address;
|
|
|
|
int size = 0;
|
|
|
|
int permission = 0;
|
|
|
|
QString positionExpression;
|
|
|
|
QString name;
|
|
|
|
QString command;
|
|
|
|
QString condition;
|
|
|
|
bool hw = false;
|
|
|
|
bool trace = false;
|
|
|
|
bool enabled = true;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ProcessDescription {
|
|
|
|
int pid;
|
|
|
|
int uid;
|
|
|
|
QString status;
|
|
|
|
QString path;
|
|
|
|
};
|
|
|
|
|
2020-01-30 17:40:27 +00:00
|
|
|
struct RefDescription {
|
2019-02-22 16:50:45 +00:00
|
|
|
QString ref;
|
2020-01-30 17:40:27 +00:00
|
|
|
QColor refColor;
|
2019-02-22 16:50:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VariableDescription {
|
|
|
|
enum class RefType { SP, BP, Reg };
|
|
|
|
RefType refType;
|
|
|
|
QString name;
|
|
|
|
QString type;
|
|
|
|
};
|
|
|
|
|
2020-04-17 13:01:05 +00:00
|
|
|
struct RegisterRefValueDescription {
|
|
|
|
QString name;
|
|
|
|
QString value;
|
|
|
|
QString ref;
|
|
|
|
};
|
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
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)
|
|
|
|
Q_DECLARE_METATYPE(RIOPluginDescription)
|
|
|
|
Q_DECLARE_METATYPE(RCorePluginDescription)
|
|
|
|
Q_DECLARE_METATYPE(RAsmPluginDescription)
|
|
|
|
Q_DECLARE_METATYPE(BinClassMethodDescription)
|
|
|
|
Q_DECLARE_METATYPE(BinClassFieldDescription)
|
|
|
|
Q_DECLARE_METATYPE(BinClassDescription)
|
|
|
|
Q_DECLARE_METATYPE(const BinClassDescription *)
|
|
|
|
Q_DECLARE_METATYPE(const BinClassMethodDescription *)
|
|
|
|
Q_DECLARE_METATYPE(const BinClassFieldDescription *)
|
|
|
|
Q_DECLARE_METATYPE(AnalBaseClassDescription)
|
|
|
|
Q_DECLARE_METATYPE(AnalMethodDescription)
|
|
|
|
Q_DECLARE_METATYPE(AnalVTableDescription)
|
|
|
|
Q_DECLARE_METATYPE(ResourcesDescription)
|
|
|
|
Q_DECLARE_METATYPE(VTableDescription)
|
|
|
|
Q_DECLARE_METATYPE(TypeDescription)
|
|
|
|
Q_DECLARE_METATYPE(HeaderDescription)
|
|
|
|
Q_DECLARE_METATYPE(ZignatureDescription)
|
|
|
|
Q_DECLARE_METATYPE(SearchDescription)
|
|
|
|
Q_DECLARE_METATYPE(SectionDescription)
|
|
|
|
Q_DECLARE_METATYPE(SegmentDescription)
|
|
|
|
Q_DECLARE_METATYPE(MemoryMapDescription)
|
|
|
|
Q_DECLARE_METATYPE(BreakpointDescription)
|
2020-01-04 18:05:49 +00:00
|
|
|
Q_DECLARE_METATYPE(BreakpointDescription::PositionType)
|
2019-02-22 16:50:45 +00:00
|
|
|
Q_DECLARE_METATYPE(ProcessDescription)
|
2020-01-30 17:40:27 +00:00
|
|
|
Q_DECLARE_METATYPE(RefDescription)
|
2019-02-22 16:50:45 +00:00
|
|
|
Q_DECLARE_METATYPE(VariableDescription)
|
|
|
|
|
|
|
|
#endif // DESCRIPTIONS_H
|