mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
78c79f85b9
What's new: - Proper multi-threaded support - Better PyObject reference counting with ref_t and newref_t helper classes - Improved the pywraps/deployment script - Added IDAViewWrapper class and example - Added idc.GetDisasmEx() - Added idc.AddSegEx() - Added idc.GetLocalTinfo() - Added idc.ApplyType() - Updated type information implementation - Introduced the idaapi.require() - see http://www.hexblog.com/?p=749 - set REMOVE_CWD_SYS_PATH=1 by default in python.cfg (remove current directory from the import search path). Various bugfixes: - fixed various memory leaks - asklong/askaddr/asksel (and corresponding idc.py functions) were returning results truncated to 32 bits in IDA64 - fix wrong documentation for idc.SizeOf - GetFloat/GetDouble functions did not take into account endianness of the processor - idaapi.NO_PROCESS was not defined, and was causing GetProcessPid() to fail - idc.py: insert escape characters to string parameter when call Eval() - idc.SaveFile/savefile were always overwriting an existing file instead of writing only the new data - PluginForm.Close() wasn't passing its arguments to the delegate function, resulting in an error.
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
import idaapi
|
|
|
|
# -----------------------------------------------------------------------
|
|
# Using raw IDAAPI
|
|
def raw_main(p=True):
|
|
f = idaapi.get_func(here())
|
|
if not f:
|
|
return
|
|
|
|
q = idaapi.qflow_chart_t("The title", f, 0, 0, idaapi.FC_PREDS)
|
|
for n in xrange(0, q.size()):
|
|
b = q[n]
|
|
if p:
|
|
print "%x - %x [%d]:" % (b.startEA, b.endEA, n)
|
|
|
|
for ns in xrange(0, q.nsucc(n)):
|
|
if p:
|
|
print "SUCC: %d->%d" % (n, q.succ(n, ns))
|
|
|
|
for ns in xrange(0, q.npred(n)):
|
|
if p:
|
|
print "PRED: %d->%d" % (n, q.pred(n, ns))
|
|
|
|
# -----------------------------------------------------------------------
|
|
# Using the class
|
|
def cls_main(p=True):
|
|
f = idaapi.FlowChart(idaapi.get_func(here()))
|
|
for block in f:
|
|
if p:
|
|
print "%x - %x [%d]:" % (block.startEA, block.endEA, block.id)
|
|
for succ_block in block.succs():
|
|
if p:
|
|
print " %x - %x [%d]:" % (succ_block.startEA, succ_block.endEA, succ_block.id)
|
|
|
|
for pred_block in block.preds():
|
|
if p:
|
|
print " %x - %x [%d]:" % (pred_block.startEA, pred_block.endEA, pred_block.id)
|
|
|
|
q = None
|
|
f = None
|
|
raw_main(False)
|
|
cls_main(True)
|
|
|