Flag: Tornado! Hurricane!

OpenRCE IDA SDK Reference Manual

About This Resource This reference section was constructed from the IDA Plug-in writing guide written by Steve Micallef, available here:

    http://www.binarypool.com/idapluginwriting/

This IDA SDK reference manual is modeled off of the PHP documentation system. Each function, structure, etc... has it's own page complete with definition, example usage, caveats and user entered notes. The following listing gives the various SDK category breakdowns from the IDA Plug-in writing guide. Each category is marked with the relevant section number of the guide for cross-referencing.

Firefox users may find the following shortcut handy. Create a new bookmark with the following properties:
    Name:     OpenRCE IDA SDK Reference Manual
    Location: http://www.openrce.org/reference_library/ida_sdk_lookup/%s
    Keyword:  ida
The reference manual is now accessible through the URI by simply typing the 'ida' keyword followed by the function name. Example: 'ida get_screen_ea'. The function name argument does not have to be complete so long as the data entered is unique, for example: 'ida get_scr' will work just as above.

 

 Areas (5.5)
The following functions work with areas and area control blocks, as described in section 4.2.2 and 4.2.3 respectively. These functions are all methods within the areacb_t class, and therefore can only be used on instances of that class. Two instances of areacb_t are funcs and segs, representing all functions and segments within the currently disassembled file(s) in IDA.

Although you should use the segment-specific functions for dealing with segments, and the function-specific functions for dealing with functions, working with areas directly gives you a more abstract way of dealing with functions and segments. These functions are defined in area.hpp.

Documented functions: getn_area, get_area, get_area_qty, get_first_cref_to, get_next_area, get_prev_area, prev_not_tail, set_item_color

 Breakpoints (5.17)
An essential part of debugging is having the ability to set and manipulate breakpoints, which can be set on any address within a process memory space and be hardware or software breakpoints. The following set of functions work with breakpoints, and are defined in dbg.hpp.

Documented functions: add_bpt, del_bpt, enable_bpt, getn_bpt, get_bpt, get_bpt_qty, update_bpt

 Cross Referencing (5.9)
The following functions are a part of the xrefblk_t structure, defined in xref.hpp. They are used to populate and enumerate cross references to or from an address. All functions take flags as an argument, which can be one of the following, as taken from xref.hpp:
    #define XREF_ALL  0x00  // return all references
    #define XREF_FAR  0x01  // don't return ordinary flow xrefs
    #define XREF_DATA 0x02  // return data references only
An ordinary flow is when execution normally passes from one instruction to another without the use of a CALL or JMP (or equivalent) instruction. If you are only interested in code cross references (ignoring ordinary flows), then you would use XREF_ALL and check if the isCode member of xrefblk_t is true in each case. Use XREF_DATA if you are only interested in data references.

Documented functions: first_from, first_to, get_first_cref_from, next_from, next_to

 Data (5.14)
When working with a disassembled file, it can often be very useful to bypass the disassembler and work directly with the bytes in the binary file itself. IDA provides the functionality to do this with this set of functions. All of these functions are defined in bytes.hpp. These functions work with bytes, however there are also functions to work with words, longs and qwords (get_word(), patch_word() and so on), which are also to be found in bytes.hpp. Aside from using these functions to read data from the binary file itself, they can also be used to read process memory while a process is executing under the debugger. More on this under the Debugger functions section.

Documented functions: get_byte, get_many_bytes, patch_byte, patch_many_bytes

 Debugging (5.16)
This section in particular is for high level operations, such as process and thread control, on a binary/process. All of these functions are defined in dbg.hpp with the exception of invalidate_dbg_contents() and invalidate_dbg_config(), which are defined in bytes.hpp. To get the most out of the examples, you should run them (i.e. invoke your plug-in) whilst a binary is being debugged in IDA. You will probably notice that all of these functions aren't prefixed with ida_export. They don't need to be because they are all inlined wrappers to callui(), and use event notifications to carry out their respective functionality.

Documented functions: attach_process, continue_process, detach_process, exit_process, get_process_info, get_process_qty, get_process_state, get_reg_val, get_thread_qty, invalidate_dbgmem_config, invalidate_dbgmem_contents, run_requests, run_to, set_reg_val, start_process, step_into, step_over, step_until_ret, suspend_process

 Entry Points (5.4)
The following functions are for working with entry points (where execution begins) in a binary. They can all be found in entry.hpp.

Documented functions: get_entry, get_entry_name, get_entry_ordinal, get_entry_qty

 Flags (5.13)
These set of functions are for checking whether particular flags (see section 4.3) are set for a byte within the currently disassembled file(s). They are all defined in bytes.hpp.

Documented functions: getFlags, isCode, isData, isEnabled, isHead, isUnknown

 Functions (5.7)
These set of functions are for working with functions within the currently disassembled file(s) in IDA. As with segments, functions are areas, and so some of these functions are simply wrappers to areacb_t methods, in funcs. All are defined in funcs.hpp.

Documented functions: getn_func, get_func, get_func_comment, get_func_name, get_func_qty, get_next_func, get_prev_func

 I/O (5.15)
A few of the standard C library functions for I/O have IDA SDK equivalents, and it's recommended you use them instead of their standard C counterparts. These are all defined in diskio.hpp.

Documented functions: eclose, ecreate, eread, ewrite, fopenWT, openR

 IDB (5.12)
The following functions are for working with IDA database (IDB) files, and can be found in loader.hpp. Although there is no actual definition of the linput_t class, you need to call the open_linput() (diskio.hpp) function to create an instance of the class, which some functions use as an argument. You can also use make_linput() to convert a FILE pointer to a linput_t instance; see loader.hpp for more information.

Documented functions: close_linput, gen_file, load_binary_file, load_loader_module, open_linput, save_database

 Instructions (5.8)
These set of functions work with instructions within the currently disassembled file(s) in IDA. All are defined in ua.hpp, except for generate_disasm_line(), which is defined in lines.hpp.

Documented functions: generate_disasm_line, get_item_end, ua_ana0, ua_code, ua_mnem, ua_outop

 Messaging (5.2)
These are the functions you will probably use the most when writing a plug-in; not because they are the most useful, but simply because they provide a means for simple communication with the user and can be a great help when debugging plug-ins.

As you can probably tell from the definitions, all of these functions are inlined and take printf style arguments. They are all defined in kernwin.hpp.

Documented functions: error, info, msg, warning

 Miscellaneous (5.20)
These are functions that don�t really fit into any particular category. The headers they are defined in are mentioned in each case.

Documented functions: call_system, del_item_color, ea2str, getdspace, get_input_file_path, get_item_color, get_nice_colored_name, idadir, next_not_tail(), open_url, str2ea, tag_remove

 Names (5.10)
The following functions deal with function (sub_*), location (loc_*) and variable (arg_*, var_*) names, set by IDA or the user. All are defined in name.hpp. Register names are not recognised by these functions.

Documented functions: get_name, get_name_ea, get_name_value

 Searching (5.11)
The following functions are used for doing simple searching within the disassembled file(s) in IDA, and are defined in search.hpp. There are also other search functions for specific search types (errors, etc.) which can also be found in search.hpp. The search functions take flags, which dictate how the search is conducted, what is searched for, etc. These flags are, as taken from search.hpp:
    #define SEARCH_UP      0x000  // only one of SEARCH_UP or SEARCH_DOWN can be specified
    #define SEARCH_DOWN    0x001
    #define SEARCH_NEXT    0x002  // Search for the next occurrence
    #define SEARCH_CASE    0x004  // Make the search case-sensitive
    #define SEARCH_REGEX   0x008  // Use the regular expression parser
    #define SEARCH_NOBRK   0x010  // don't test ctrl-break
    #define SEARCH_NOSHOW  0x020  // don't display the search progress
    #define SEARCH_UNICODE 0x040  // treat strings as unicode
    #define SEARCH_IDENT   0x080  // search for an identifier
    #define SEARCH_BRK     0x100  // return BADADDR if break is pressed during find_imm()
Typically, you'd just use SEARCH_DOWN to conduct a case-insensitive search, towards the bottom of the file(s).

Documented functions: find_binary, find_text

 Segments (5.6)
The following functions work with segments (.text, .idata, etc.) and are defined in segment.hpp. A lot of these functions are simply wrappers to areacb_t methods for the segs variable.

Documented functions: getnseg, getseg, get_segm_by_name, get_segm_name, get_segm_name, get_segm_qty

 Strings (5.19)
The following functions are used for reading the list of strings in IDA's Strings window, which is derived from strings found in the currently disassembled file(s). All of these functions are defined in strlist.hpp.

Documented functions: get_strlist_item, get_strlist_qty, refresh_strlist

 Tracing (5.18)
The functions available for tracing mostly revolve around checking whether a certain type of tracing is enabled, enabling or disabling a type of tracing and retrieving trace events. All of these functions are defined in dbg.hpp.

Documented functions: clear_trace, enable_func_trace, enable_insn_trace, enable_step_trace, get_bpt_tev_ea, get_call_tev_callee, get_insn_tev_reg_result, get_insn_tev_reg_val, get_ret_tev_return, get_tev_info, get_tev_qty, is_func_trace_enabled, is_insn_trace_enabled, is_step_trace_enabled, set_trace_size

 UI Navigation (5.3)
These set of functions are specifically for interacting with the user and the IDA GUI. Some of them use callui() to generate an event to IDA. All are defined in kernwin.hpp.

Documented functions: askaddr, AskUsingForm_c, callui, get_curline, get_cursor, get_screen_ea, jumpto, read_selection

There are 31,314 total registered users.


Recently Created Topics
[help] Unpacking VMP...
Mar/12
Reverse Engineering ...
Jul/06
hi!
Jul/01
let 'IDAPython' impo...
Sep/24
set 'IDAPython' as t...
Sep/24
GuessType return une...
Sep/20
About retrieving the...
Sep/07
How to find specific...
Aug/15
How to get data depe...
Jul/07
Identify RVA data in...
May/06


Recent Forum Posts
Finding the procedur...
rolEYder
Question about debbu...
rolEYder
Identify RVA data in...
sohlow
let 'IDAPython' impo...
sohlow
How to find specific...
hackgreti
Problem with ollydbg
sh3dow
How can I write olly...
sh3dow
New LoadMAP plugin v...
mefisto...
Intel pin in loaded ...
djnemo
OOP_RE tool available?
Bl4ckm4n


Recent Blog Entries
halsten
Mar/14
Breaking IonCUBE VM

oleavr
Oct/24
Anatomy of a code tracer

hasherezade
Sep/24
IAT Patcher - new tool for ...

oleavr
Aug/27
CryptoShark: code tracer ba...

oleavr
Jun/25
Build a debugger in 5 minutes

More ...


Recent Blog Comments
nieo on:
Mar/22
IAT Patcher - new tool for ...

djnemo on:
Nov/17
Kernel debugger vs user mod...

acel on:
Nov/14
Kernel debugger vs user mod...

pedram on:
Dec/21
frida.github.io: scriptable...

capadleman on:
Jun/19
Using NtCreateThreadEx for ...

More ...


Imagery
SoySauce Blueprint
Jun 6, 2008

[+] expand

View Gallery (11) / Submit