mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
Convert Rizin command calls to te Rizin APIs (#2960)
* Convert `iCj` call to the API * Convert `icj` call to the API * Convert `iij` call to the API * Convert `iej` call to the API * Convert `CClj` call to the API * Convert `iEj` call to the API * Convert 'ihj' call to the API * Convert 'iSSj' call to the API
This commit is contained in:
parent
90608117c9
commit
11419f6858
@ -1415,9 +1415,19 @@ CutterJson CutterCore::getFileVersionInfo()
|
|||||||
return cmdj("iVj");
|
return cmdj("iVj");
|
||||||
}
|
}
|
||||||
|
|
||||||
CutterJson CutterCore::getSignatureInfo()
|
QString CutterCore::getSignatureInfo()
|
||||||
{
|
{
|
||||||
return cmdj("iCj");
|
CORE_LOCK();
|
||||||
|
RzBinFile *cur = rz_bin_cur(core->bin);
|
||||||
|
RzBinPlugin *plg = rz_bin_file_cur_plugin(cur);
|
||||||
|
if (!plg || !plg->signature) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
char *signature = plg->signature(cur, true);
|
||||||
|
if (!signature) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
return fromOwnedCharPtr(signature);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Utility function to check if a telescoped item exists and add it with prefixes to the desc
|
// Utility function to check if a telescoped item exists and add it with prefixes to the desc
|
||||||
@ -3049,25 +3059,64 @@ QList<FunctionDescription> CutterCore::getAllFunctions()
|
|||||||
return funcList;
|
return funcList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline uint64_t rva(RzBinObject *o, uint64_t paddr, uint64_t vaddr, int va)
|
||||||
|
{
|
||||||
|
return va ? rz_bin_object_get_vaddr(o, paddr, vaddr) : paddr;
|
||||||
|
}
|
||||||
|
|
||||||
QList<ImportDescription> CutterCore::getAllImports()
|
QList<ImportDescription> CutterCore::getAllImports()
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QList<ImportDescription> ret;
|
RzBinFile *bf = rz_bin_cur(core->bin);
|
||||||
|
if (!bf) {
|
||||||
for (CutterJson importObject : cmdj("iij")) {
|
return {};
|
||||||
ImportDescription import;
|
}
|
||||||
|
const RzList *imports = rz_bin_object_get_imports(bf->o);
|
||||||
import.plt = importObject[RJsonKey::plt].toRVA();
|
if (!imports) {
|
||||||
import.ordinal = importObject[RJsonKey::ordinal].toSt64();
|
return {};
|
||||||
import.bind = importObject[RJsonKey::bind].toString();
|
|
||||||
import.type = importObject[RJsonKey::type].toString();
|
|
||||||
import.libname = importObject[RJsonKey::libname].toString();
|
|
||||||
import.name = importObject[RJsonKey::name].toString();
|
|
||||||
|
|
||||||
ret << import;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
QList<ImportDescription> qList;
|
||||||
|
RzBinImport *import;
|
||||||
|
RzListIter *iter;
|
||||||
|
bool va = core->io->va || core->bin->is_debugger;
|
||||||
|
int bin_demangle = getConfigi("bin.demangle");
|
||||||
|
int keep_lib = getConfigi("bin.demangle.libs");
|
||||||
|
CutterRzListForeach (imports, iter, RzBinImport, import) {
|
||||||
|
if (RZ_STR_ISEMPTY(import->name)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
ImportDescription importDescription;
|
||||||
|
|
||||||
|
RzBinSymbol *sym = rz_bin_object_get_symbol_of_import(bf->o, import);
|
||||||
|
ut64 addr = sym ? rva(bf->o, sym->paddr, sym->vaddr, va) : UT64_MAX;
|
||||||
|
QString name { import->name };
|
||||||
|
if (RZ_STR_ISNOTEMPTY(import->classname)) {
|
||||||
|
name = QString("%1.%2").arg(import->classname, import->name);
|
||||||
|
}
|
||||||
|
if (bin_demangle) {
|
||||||
|
char *dname = rz_bin_demangle(bf, NULL, name.toUtf8().constData(),
|
||||||
|
importDescription.plt, keep_lib);
|
||||||
|
if (dname) {
|
||||||
|
name = fromOwnedCharPtr(dname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (core->bin->prefix) {
|
||||||
|
name = QString("%1.%2").arg(core->bin->prefix, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
importDescription.ordinal = (int)import->ordinal;
|
||||||
|
importDescription.bind = import->bind;
|
||||||
|
importDescription.type = import->type;
|
||||||
|
importDescription.libname = import->libname;
|
||||||
|
importDescription.name = name;
|
||||||
|
importDescription.plt = addr;
|
||||||
|
|
||||||
|
qList << importDescription;
|
||||||
|
}
|
||||||
|
|
||||||
|
return qList;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<ExportDescription> CutterCore::getAllExports()
|
QList<ExportDescription> CutterCore::getAllExports()
|
||||||
@ -3129,16 +3178,24 @@ QList<SymbolDescription> CutterCore::getAllSymbols()
|
|||||||
QList<HeaderDescription> CutterCore::getAllHeaders()
|
QList<HeaderDescription> CutterCore::getAllHeaders()
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
|
RzBinFile *bf = rz_bin_cur(core->bin);
|
||||||
|
if (!bf) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
const RzList *fields = rz_bin_object_get_fields(bf->o);
|
||||||
|
if (!fields) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
RzListIter *iter;
|
||||||
|
RzBinField *field;
|
||||||
QList<HeaderDescription> ret;
|
QList<HeaderDescription> ret;
|
||||||
|
|
||||||
for (CutterJson headerObject : cmdj("ihj")) {
|
CutterRzListForeach (fields, iter, RzBinField, field) {
|
||||||
HeaderDescription header;
|
HeaderDescription header;
|
||||||
|
header.vaddr = field->vaddr;
|
||||||
header.vaddr = headerObject[RJsonKey::vaddr].toRVA();
|
header.paddr = field->paddr;
|
||||||
header.paddr = headerObject[RJsonKey::paddr].toRVA();
|
header.value = RZ_STR_ISEMPTY(field->comment) ? "" : field->comment;
|
||||||
header.value = headerObject[RJsonKey::comment].toString();
|
header.name = field->name;
|
||||||
header.name = headerObject[RJsonKey::name].toString();
|
|
||||||
|
|
||||||
ret << header;
|
ret << header;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3177,20 +3234,31 @@ QList<FlirtDescription> CutterCore::getSignaturesDB()
|
|||||||
QList<CommentDescription> CutterCore::getAllComments(const QString &filterType)
|
QList<CommentDescription> CutterCore::getAllComments(const QString &filterType)
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QList<CommentDescription> ret;
|
QList<CommentDescription> qList;
|
||||||
|
RzIntervalTreeIter it;
|
||||||
for (CutterJson commentObject : cmdj("CClj")) {
|
void *pVoid;
|
||||||
QString type = commentObject[RJsonKey::type].toString();
|
RzAnalysisMetaItem *item;
|
||||||
if (type != filterType)
|
RzSpace *spaces = rz_spaces_current(&core->analysis->meta_spaces);
|
||||||
|
rz_interval_tree_foreach(&core->analysis->meta, it, pVoid)
|
||||||
|
{
|
||||||
|
item = reinterpret_cast<RzAnalysisMetaItem *>(pVoid);
|
||||||
|
if (item->type != RZ_META_TYPE_COMMENT) {
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
|
if (spaces && spaces != item->space) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (filterType != rz_meta_type_to_string(item->type)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
RzIntervalNode *node = rz_interval_tree_iter_get(&it);
|
||||||
CommentDescription comment;
|
CommentDescription comment;
|
||||||
comment.offset = commentObject[RJsonKey::offset].toRVA();
|
comment.offset = node->start;
|
||||||
comment.name = commentObject[RJsonKey::name].toString();
|
comment.name = fromOwnedCharPtr(rz_str_escape(item->str));
|
||||||
|
qList << comment;
|
||||||
ret << comment;
|
|
||||||
}
|
}
|
||||||
return ret;
|
return qList;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<RelocDescription> CutterCore::getAllRelocs()
|
QList<RelocDescription> CutterCore::getAllRelocs()
|
||||||
@ -3354,82 +3422,109 @@ QStringList CutterCore::getSectionList()
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline QString perms_str(int perms)
|
||||||
|
{
|
||||||
|
return QString((perms & RZ_PERM_SHAR) ? 's' : '-') + rz_str_rwx_i(perms);
|
||||||
|
}
|
||||||
|
|
||||||
QList<SegmentDescription> CutterCore::getAllSegments()
|
QList<SegmentDescription> CutterCore::getAllSegments()
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QList<SegmentDescription> ret;
|
RzBinFile *bf = rz_bin_cur(core->bin);
|
||||||
|
if (!bf) {
|
||||||
for (CutterJson segmentObject : cmdj("iSSj")) {
|
return {};
|
||||||
QString name = segmentObject[RJsonKey::name].toString();
|
|
||||||
if (name.isEmpty())
|
|
||||||
continue;
|
|
||||||
|
|
||||||
SegmentDescription segment;
|
|
||||||
segment.name = name;
|
|
||||||
segment.vaddr = segmentObject[RJsonKey::vaddr].toRVA();
|
|
||||||
segment.paddr = segmentObject[RJsonKey::paddr].toRVA();
|
|
||||||
segment.size = segmentObject[RJsonKey::size].toRVA();
|
|
||||||
segment.vsize = segmentObject[RJsonKey::vsize].toRVA();
|
|
||||||
segment.perm = segmentObject[RJsonKey::perm].toString();
|
|
||||||
|
|
||||||
ret << segment;
|
|
||||||
}
|
}
|
||||||
|
RzList *segments = rz_bin_object_get_segments(bf->o);
|
||||||
|
if (!segments) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
RzBinSection *segment;
|
||||||
|
RzListIter *iter;
|
||||||
|
QList<SegmentDescription> ret;
|
||||||
|
CutterRzListForeach (segments, iter, RzBinSection, segment) {
|
||||||
|
SegmentDescription segDesc;
|
||||||
|
segDesc.name = segment->name;
|
||||||
|
segDesc.vaddr = segment->vaddr;
|
||||||
|
segDesc.paddr = segment->paddr;
|
||||||
|
segDesc.size = segment->size;
|
||||||
|
segDesc.vsize = segment->vsize;
|
||||||
|
segDesc.perm = perms_str(segment->perm);
|
||||||
|
}
|
||||||
|
rz_list_free(segments);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<EntrypointDescription> CutterCore::getAllEntrypoint()
|
QList<EntrypointDescription> CutterCore::getAllEntrypoint()
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QList<EntrypointDescription> ret;
|
RzBinFile *bf = rz_bin_cur(core->bin);
|
||||||
|
bool va = core->io->va || core->bin->is_debugger;
|
||||||
|
ut64 baddr = rz_bin_get_baddr(core->bin);
|
||||||
|
ut64 laddr = rz_bin_get_laddr(core->bin);
|
||||||
|
|
||||||
for (CutterJson entrypointObject : cmdj("iej")) {
|
QList<EntrypointDescription> qList;
|
||||||
EntrypointDescription entrypoint;
|
const RzList *entries = rz_bin_object_get_entries(bf->o);
|
||||||
|
RzListIter *iter;
|
||||||
|
RzBinAddr *entry;
|
||||||
|
CutterRzListForeach (entries, iter, RzBinAddr, entry) {
|
||||||
|
if (entry->type != RZ_BIN_ENTRY_TYPE_PROGRAM) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const char *type = rz_bin_entry_type_string(entry->type);
|
||||||
|
|
||||||
entrypoint.vaddr = entrypointObject[RJsonKey::vaddr].toRVA();
|
EntrypointDescription entrypointDescription;
|
||||||
entrypoint.paddr = entrypointObject[RJsonKey::paddr].toRVA();
|
entrypointDescription.vaddr = rva(bf->o, entry->paddr, entry->vaddr, va);
|
||||||
entrypoint.baddr = entrypointObject[RJsonKey::baddr].toRVA();
|
entrypointDescription.paddr = entry->paddr;
|
||||||
entrypoint.laddr = entrypointObject[RJsonKey::laddr].toRVA();
|
entrypointDescription.baddr = baddr;
|
||||||
entrypoint.haddr = entrypointObject[RJsonKey::haddr].toRVA();
|
entrypointDescription.laddr = laddr;
|
||||||
entrypoint.type = entrypointObject[RJsonKey::type].toString();
|
entrypointDescription.haddr = entry->hpaddr ? entry->hpaddr : UT64_MAX;
|
||||||
|
entrypointDescription.type = type ? type : "unknown";
|
||||||
ret << entrypoint;
|
qList << entrypointDescription;
|
||||||
}
|
}
|
||||||
return ret;
|
|
||||||
|
return qList;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<BinClassDescription> CutterCore::getAllClassesFromBin()
|
QList<BinClassDescription> CutterCore::getAllClassesFromBin()
|
||||||
{
|
{
|
||||||
CORE_LOCK();
|
CORE_LOCK();
|
||||||
QList<BinClassDescription> ret;
|
RzBinFile *bf = rz_bin_cur(core->bin);
|
||||||
|
if (!bf) {
|
||||||
for (CutterJson classObject : cmdj("icj")) {
|
return {};
|
||||||
BinClassDescription cls;
|
|
||||||
|
|
||||||
cls.name = classObject[RJsonKey::classname].toString();
|
|
||||||
cls.addr = classObject[RJsonKey::addr].toRVA();
|
|
||||||
cls.index = classObject[RJsonKey::index].toUt64();
|
|
||||||
|
|
||||||
for (CutterJson methObject : classObject[RJsonKey::methods]) {
|
|
||||||
BinClassMethodDescription meth;
|
|
||||||
|
|
||||||
meth.name = methObject[RJsonKey::name].toString();
|
|
||||||
meth.addr = methObject[RJsonKey::addr].toRVA();
|
|
||||||
|
|
||||||
cls.methods << meth;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (CutterJson fieldObject : classObject[RJsonKey::fields]) {
|
|
||||||
BinClassFieldDescription field;
|
|
||||||
|
|
||||||
field.name = fieldObject[RJsonKey::name].toString();
|
|
||||||
field.addr = fieldObject[RJsonKey::addr].toRVA();
|
|
||||||
|
|
||||||
cls.fields << field;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret << cls;
|
|
||||||
}
|
}
|
||||||
return ret;
|
|
||||||
|
const RzList *cs = rz_bin_object_get_classes(bf->o);
|
||||||
|
if (!cs) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
QList<BinClassDescription> qList;
|
||||||
|
RzListIter *iter, *iter2, *iter3;
|
||||||
|
RzBinClass *c;
|
||||||
|
RzBinSymbol *sym;
|
||||||
|
RzBinField *f;
|
||||||
|
CutterRzListForeach (cs, iter, RzBinClass, c) {
|
||||||
|
BinClassDescription classDescription;
|
||||||
|
classDescription.name = c->name;
|
||||||
|
classDescription.addr = c->addr;
|
||||||
|
classDescription.index = c->index;
|
||||||
|
CutterRzListForeach (c->methods, iter2, RzBinSymbol, sym) {
|
||||||
|
BinClassMethodDescription methodDescription;
|
||||||
|
methodDescription.name = sym->name;
|
||||||
|
methodDescription.addr = sym->vaddr;
|
||||||
|
classDescription.methods << methodDescription;
|
||||||
|
}
|
||||||
|
CutterRzListForeach (c->fields, iter3, RzBinField, f) {
|
||||||
|
BinClassFieldDescription fieldDescription;
|
||||||
|
fieldDescription.name = f->name;
|
||||||
|
fieldDescription.addr = f->vaddr;
|
||||||
|
classDescription.fields << fieldDescription;
|
||||||
|
}
|
||||||
|
qList << classDescription;
|
||||||
|
}
|
||||||
|
return qList;
|
||||||
}
|
}
|
||||||
|
|
||||||
QList<BinClassDescription> CutterCore::getAllClassesFromFlags()
|
QList<BinClassDescription> CutterCore::getAllClassesFromFlags()
|
||||||
|
@ -568,7 +568,7 @@ public:
|
|||||||
|
|
||||||
RVA getOffsetJump(RVA addr);
|
RVA getOffsetJump(RVA addr);
|
||||||
CutterJson getFileInfo();
|
CutterJson getFileInfo();
|
||||||
CutterJson getSignatureInfo();
|
QString getSignatureInfo();
|
||||||
CutterJson getFileVersionInfo();
|
CutterJson getFileVersionInfo();
|
||||||
void setGraphEmpty(bool empty);
|
void setGraphEmpty(bool empty);
|
||||||
bool isGraphEmpty();
|
bool isGraphEmpty();
|
||||||
|
@ -153,7 +153,7 @@ void Dashboard::updateContents()
|
|||||||
ui->verticalLayout_2->addSpacerItem(spacer);
|
ui->verticalLayout_2->addSpacerItem(spacer);
|
||||||
|
|
||||||
// Check if signature info and version info available
|
// Check if signature info and version info available
|
||||||
if (!Core()->getSignatureInfo().size()) {
|
if (Core()->getSignatureInfo().isEmpty()) {
|
||||||
ui->certificateButton->setEnabled(false);
|
ui->certificateButton->setEnabled(false);
|
||||||
}
|
}
|
||||||
if (!Core()->getFileVersionInfo().size()) {
|
if (!Core()->getFileVersionInfo().size()) {
|
||||||
@ -171,7 +171,7 @@ void Dashboard::on_certificateButton_clicked()
|
|||||||
viewDialog = new QDialog(this);
|
viewDialog = new QDialog(this);
|
||||||
view = new CutterTreeView(viewDialog);
|
view = new CutterTreeView(viewDialog);
|
||||||
model = new JsonModel();
|
model = new JsonModel();
|
||||||
qstrCertificates = Core()->getSignatureInfo().toJson();
|
qstrCertificates = Core()->getSignatureInfo();
|
||||||
}
|
}
|
||||||
if (!viewDialog->isVisible()) {
|
if (!viewDialog->isVisible()) {
|
||||||
std::string strCertificates = qstrCertificates.toUtf8().constData();
|
std::string strCertificates = qstrCertificates.toUtf8().constData();
|
||||||
|
Loading…
Reference in New Issue
Block a user