Latest available version: IDA and decompilers v8.4.240320sp1 see all releases
Hex-Rays logo State-of-the-art binary code analysis tools
email icon
hexrays_sample4.cpp
/*
* Hex-Rays Decompiler project
* Copyright (c) 2007-2024 by Hex-Rays, support@hex-rays.com
* ALL RIGHTS RESERVED.
*
* Sample plugin for Hex-Rays Decompiler.
* It dumps all user-defined information about the current
* function to the messages window. Namely, it displays:
* - user defined label names
* - user defined indented comments
* - user defined number formats
* - user defined local variable names, types, comments
* The plugin loads information from the database without decompiling anything.
*
*/
#include <hexrays.hpp>
//--------------------------------------------------------------------------
struct plugin_ctx_t : public plugmod_t
{
~plugin_ctx_t()
{
}
virtual bool idaapi run(size_t) override;
};
//--------------------------------------------------------------------------
static void print_location(qstring *buf, const vdloc_t &vdloc)
{
buf->qclear();
// we do not have the width info handy, so try 1 and sizeof(int)
// this is not quite correct, but we just need to print something
print_vdloc(buf, vdloc, 1);
if ( buf->empty() )
print_vdloc(buf, vdloc, inf_get_cc_size_i());
if ( buf->empty() )
*buf = "?";
}
//--------------------------------------------------------------------------
bool idaapi plugin_ctx_t::run(size_t)
{
func_t *pfn = get_func(get_screen_ea());
if ( pfn == nullptr )
{
warning("AUTOHIDE NONE\nPlease move the cursor into a function");
return true;
}
ea_t entry_ea = pfn->start_ea;
msg("Dump of user-defined information for function at %a\n", entry_ea);
// Display user defined labels.
user_labels_t *labels = restore_user_labels(entry_ea);
if ( labels != nullptr )
{
msg("------- %" FMT_Z " user defined labels\n", user_labels_size(labels));
for ( p=user_labels_begin(labels);
p != user_labels_end(labels);
{
int org_label = user_labels_first(p);
qstring &name = user_labels_second(p);
msg("Label %d: %s\n", org_label, name.c_str());
}
}
// Display user defined comments
user_cmts_t *cmts = restore_user_cmts(entry_ea);
if ( cmts != nullptr )
{
msg("------- %" FMT_Z " user defined comments\n", user_cmts_size(cmts));
for ( p=user_cmts_begin(cmts);
p != user_cmts_end(cmts);
{
const treeloc_t &tl = user_cmts_first(p);
msg("Comment at %a, preciser %x:\n%s\n\n", tl.ea, tl.itp, cmt.c_str());
}
}
// Display user defined citem iflags
user_iflags_t *iflags = restore_user_iflags(entry_ea);
if ( iflags != nullptr )
{
msg("------- %" FMT_Z " user defined citem iflags\n", user_iflags_size(iflags));
for ( p=user_iflags_begin(iflags);
p != user_iflags_end(iflags);
{
int f = user_iflags_second(p);
msg("%a(%d): %08X", cl.ea, cl.op, f);
if ( f & CIT_COLLAPSED )
msg(" CIT_COLLAPSED");
msg("\n");
}
}
// Display user defined number formats
user_numforms_t *numforms = restore_user_numforms(entry_ea);
if ( numforms != nullptr )
{
msg("------- %" FMT_Z " user defined number formats\n", user_numforms_size(numforms));
for ( p=user_numforms_begin(numforms);
p != user_numforms_end(numforms);
{
msg("Number format at %a, operand %d: %s",
ol.ea, ol.opnum, (nf.props & NF_NEGATE) != 0 ? "negated " : "");
if ( nf.is_enum() )
{
msg("enum %s (serial %d)\n", nf.type_name.c_str(), nf.serial);
}
else if ( nf.is_char() )
{
msg("char\n");
}
else if ( nf.is_stroff() )
{
msg("struct offset %s\n", nf.type_name.c_str());
}
else
{
msg("number base=%d\n", get_radix(nf.flags, ol.opnum));
}
}
user_numforms_free(numforms);
}
// Display user-defined local variable information
if ( restore_user_lvar_settings(&lvinf, entry_ea) )
{
qstring buf;
msg("------- User defined local variable information\n");
lvar_saved_infos_t::const_iterator ptr = lvinf.lvvec.begin();
lvar_saved_infos_t::const_iterator end = lvinf.lvvec.end();
while ( ptr != end )
{
const lvar_saved_info_t &lv = *ptr++;
msg("Lvar defined at %a ", lv.ll.defea);
const vdloc_t &vdloc = lv.ll.location;
print_location(&buf, vdloc);
msg("%s", buf.c_str());
if ( lv.is_kept() )
msg(" Preserved info about deleted variable\n");
if ( lv.is_split_lvar() )
msg(" Split variable\n");
if ( !lv.name.empty() )
msg(" Name: %s\n", lv.name.c_str());
if ( !lv.type.empty() )
{
qstring out;
lv.type.print(&out);
msg(" Type: %s\n", out.c_str());
}
if ( !lv.cmt.empty() )
msg(" Comment: %s\n", lv.cmt.c_str());
}
msg("\n------- Variable mappings\n");
lvar_mapping_t &lm = lvinf.lmaps;
for ( lvar_mapping_t::iterator p=lm.begin(); p != lm.end(); ++p )
{
print_location(&buf, p->first.location);
msg("MAP LVAR %s ->", buf.c_str());
print_location(&buf, p->second.location);
msg(" %s\n", buf.c_str());
}
}
return true;
}
//--------------------------------------------------------------------------
// Initialize the plugin.
static plugmod_t *idaapi init()
{
return nullptr; // no decompiler
const char *hxver = get_hexrays_version();
msg("Hex-rays version %s has been detected, %s ready to use\n",
hxver, PLUGIN.wanted_name);
return new plugin_ctx_t;
}
//--------------------------------------------------------------------------
static const char comment[] = "Sample plugin4 for Hex-Rays decompiler";
//--------------------------------------------------------------------------
//
// PLUGIN DESCRIPTION BLOCK
//
//--------------------------------------------------------------------------
plugin_t PLUGIN =
{
IDP_INTERFACE_VERSION,
PLUGIN_MULTI, // The plugin can work with multiple idbs in parallel
init, // initialize
nullptr,
nullptr,
comment, // long comment about the plugin
nullptr, // multiline help about the plugin
"Hex-Rays Dump User Info", // the preferred short name of the plugin
nullptr, // the preferred hotkey to run the plugin
};
Iterator class for user_cmts_t.
Definition: hexrays.dox:33
User defined comments.
Definition: hexrays.dox:46
Iterator class for user_labels_t.
Definition: hexrays.dox:36
User defined label names.
Definition: hexrays.dox:51
Iterator class for user_numforms_t.
Definition: hexrays.dox:30
User defined number formats.
Definition: hexrays.dox:41
#define CIT_COLLAPSED
display ctree item in collapsed form
Definition: hexrays.hpp:6962
#define NF_NEGATE
The user asked to negate the constant.
Definition: hexrays.hpp:790
HexRays SDK header file.
operand_locator_t const & user_numforms_first(user_numforms_iterator_t p)
Get reference to the current map key.
Definition: hexrays.hpp:8624
size_t user_numforms_size(user_numforms_t *map)
Get size of user_numforms_t.
Definition: hexrays.hpp:8704
user_cmts_iterator_t user_cmts_end(const user_cmts_t *map)
Get iterator pointing to the end of user_cmts_t.
Definition: hexrays.hpp:8992
bool init_hexrays_plugin(int flags=0)
Check that your plugin is compatible with hex-rays decompiler.
Definition: hexrays.hpp:8601
void user_cmts_free(user_cmts_t *map)
Delete user_cmts_t instance.
Definition: hexrays.hpp:9038
user_iflags_iterator_t user_iflags_next(user_iflags_iterator_t p)
Move to the next element.
Definition: hexrays.hpp:9110
size_t user_cmts_size(user_cmts_t *map)
Get size of user_cmts_t.
Definition: hexrays.hpp:9031
user_numforms_iterator_t user_numforms_begin(const user_numforms_t *map)
Get iterator pointing to the beginning of user_numforms_t.
Definition: hexrays.hpp:8656
void print_vdloc(qstring *vout, const vdloc_t &loc, int nbytes)
Print vdloc.
Definition: hexrays.hpp:10006
std::map< lvar_locator_t, lvar_locator_t > lvar_mapping_t
Local variable mapping (is used to merge variables)
Definition: hexrays.hpp:1485
user_numforms_iterator_t user_numforms_next(user_numforms_iterator_t p)
Move to the next element.
Definition: hexrays.hpp:8674
int32 & user_iflags_second(user_iflags_iterator_t p)
Get reference to the current map value.
Definition: hexrays.hpp:9067
user_labels_iterator_t user_labels_begin(const user_labels_t *map)
Get iterator pointing to the beginning of user_labels_t.
Definition: hexrays.hpp:9310
int const & user_labels_first(user_labels_iterator_t p)
Get reference to the current map key.
Definition: hexrays.hpp:9278
user_cmts_iterator_t user_cmts_begin(const user_cmts_t *map)
Get iterator pointing to the beginning of user_cmts_t.
Definition: hexrays.hpp:8983
user_cmts_iterator_t user_cmts_next(user_cmts_iterator_t p)
Move to the next element.
Definition: hexrays.hpp:9001
user_iflags_t * restore_user_iflags(ea_t func_ea)
Restore user defined citem iflags from the database.
Definition: hexrays.hpp:12107
user_numforms_iterator_t user_numforms_end(const user_numforms_t *map)
Get iterator pointing to the end of user_numforms_t.
Definition: hexrays.hpp:8665
size_t user_iflags_size(user_iflags_t *map)
Get size of user_iflags_t.
Definition: hexrays.hpp:9140
bool restore_user_lvar_settings(lvar_uservec_t *lvinf, ea_t func_ea)
Restore user defined local variable settings in the database.
Definition: hexrays.hpp:10084
user_labels_iterator_t user_labels_end(const user_labels_t *map)
Get iterator pointing to the end of user_labels_t.
Definition: hexrays.hpp:9319
void user_numforms_free(user_numforms_t *map)
Delete user_numforms_t instance.
Definition: hexrays.hpp:8711
number_format_t & user_numforms_second(user_numforms_iterator_t p)
Get reference to the current map value.
Definition: hexrays.hpp:8631
citem_cmt_t & user_cmts_second(user_cmts_iterator_t p)
Get reference to the current map value.
Definition: hexrays.hpp:8958
void user_labels_free(user_labels_t *map)
Delete user_labels_t instance.
Definition: hexrays.hpp:9365
void user_iflags_free(user_iflags_t *map)
Delete user_iflags_t instance.
Definition: hexrays.hpp:9147
user_iflags_iterator_t user_iflags_begin(const user_iflags_t *map)
Get iterator pointing to the beginning of user_iflags_t.
Definition: hexrays.hpp:9092
user_numforms_t * restore_user_numforms(ea_t func_ea)
Restore user defined number formats from the database.
Definition: hexrays.hpp:12101
citem_locator_t const & user_iflags_first(user_iflags_iterator_t p)
Get reference to the current map key.
Definition: hexrays.hpp:9060
void term_hexrays_plugin()
Stop working with hex-rays decompiler.
Definition: hexrays.hpp:8609
size_t user_labels_size(user_labels_t *map)
Get size of user_labels_t.
Definition: hexrays.hpp:9358
user_iflags_iterator_t user_iflags_end(const user_iflags_t *map)
Get iterator pointing to the end of user_iflags_t.
Definition: hexrays.hpp:9101
treeloc_t const & user_cmts_first(user_cmts_iterator_t p)
Get reference to the current map key.
Definition: hexrays.hpp:8951
user_labels_t * restore_user_labels(ea_t func_ea)
Restore user defined labels from the database.
Definition: hexrays.hpp:12083
user_cmts_t * restore_user_cmts(ea_t func_ea)
Restore user defined comments from the database.
Definition: hexrays.hpp:12095
const char * get_hexrays_version()
Get decompiler version.
Definition: hexrays.hpp:11511
user_labels_iterator_t user_labels_next(user_labels_iterator_t p)
Move to the next element.
Definition: hexrays.hpp:9328
qstring & user_labels_second(user_labels_iterator_t p)
Get reference to the current map value.
Definition: hexrays.hpp:9285
Ctree item comment.
Definition: hexrays.hpp:6017
Generic ctree item locator.
Definition: hexrays.hpp:6029
ea_t ea
citem address
Definition: hexrays.hpp:6030
ctype_t op
citem operation
Definition: hexrays.hpp:6031
ea_t defea
Definition address.
Definition: hexrays.hpp:1123
vdloc_t location
Variable location.
Definition: hexrays.hpp:1122
Saved user settings for local variables: name, type, comment.
Definition: hexrays.hpp:1425
qstring cmt
Comment.
Definition: hexrays.hpp:1429
tinfo_t type
Type.
Definition: hexrays.hpp:1428
lvar_locator_t ll
Variable locator.
Definition: hexrays.hpp:1426
qstring name
Name.
Definition: hexrays.hpp:1427
All user-defined information about local variables.
Definition: hexrays.hpp:1489
lvar_mapping_t lmaps
Local variable mapping (used for merging variables)
Definition: hexrays.hpp:1495
lvar_saved_infos_t lvvec
User-specified names, types, comments for lvars.
Definition: hexrays.hpp:1492
Number representation.
Definition: hexrays.hpp:780
bool is_char() const
Is a character constant?
Definition: hexrays.hpp:818
qstring type_name
for stroffs: structure for offsetof() for enums: enum name
Definition: hexrays.hpp:798
bool is_stroff() const
Is a structure field offset?
Definition: hexrays.hpp:820
char props
properties: combination of NF_ bits (Number format property bits)
Definition: hexrays.hpp:783
uchar serial
for enums: constant serial number
Definition: hexrays.hpp:796
flags64_t flags
ida flags, which describe number radix, enum, etc
Definition: hexrays.hpp:800
bool is_enum() const
Is a symbolic constant?
Definition: hexrays.hpp:816
Operand locator.
Definition: hexrays.hpp:764
ea_t ea
address of the original processor instruction
Definition: hexrays.hpp:769
int opnum
operand number in the instruction
Definition: hexrays.hpp:770
Ctree location. Used to denote comment locations.
Definition: hexrays.hpp:5987