Log in

View Full Version : IDA Pro 6.2 with database snapshots support


Hex Blog
July 29th, 2011, 08:21
The most frequently asked question we get during the IDA Pro trainings ("http://www.hex-rays.com/idapro/training/"), on the support forum ("http://hex-rays.com/forum/") or via support emails is: “When will IDA Pro support the undo feature?” or “How can I undo an operation in IDA Pro”.

Our answer has always been: “Sorry, it is not possible to undo in IDA Pro” or “This feature will eventually be implemented sometime in the future”.

In this blog post, we introduce the new database snapshots feature that will be present in IDA Pro 6.2:

http://www.hexblog.com/wp-content/uploads/2011/07/snap_man_thumb.gif ("http://www.hexblog.com/wp-content/uploads/2011/07/snap_man.gif")



Why there is no undo option in IDA Pro

The lack of the undo facility stems from the fact that IDA Pro’s database format is not transactional. Each operation in IDA Pro may entail a great deal of other operations that can change the database contents massively.

Take for instance the case when the user goes over an unexplored area and press “C” to create code. This is what happens:


IDA tries to create instructions
For each instruction there could be side effects:

Creating code, functions or data items
A new target address is added to the analysis queue
Another unexplored area will become explored

The whole algorithm keeps on repeating itself until the analysis queue becomes empty
So, sometimes pressing “C” in one place can completely change the database (functions will be created, data items will be defined, xrefs will be generated, etc….

What about the case of deleting a segment:


Segment deletion will also entail deletion of all instructions
Deletion of all related cross references
etc…
What we discussed so far are the extreme cases, but what about simply undoing a rename operation? It is true that such a simple operations can be easily tracked, recorded and undone if needed.

In fact, IDA Pro provides a set of callbacks (IDB/IDP callbacks) that allow the programmer to register a callback function that will be triggered in a pre/post manner. The programmer will have a chance to record the operation, modify it before it is carried by the kernel or just handle it completely without passing it to the kernel.

Here’s an excerpt from “idp.hpp”:

Code:
// IDB event group. Some events are still in the processor group, so you will
// need to hook to both groups. These events do not returns anything.
// The callback function should return 0 but the kernel won't check it.
// Use the hook_to_notification_point() function to install your callback.
enum event_code_t
{
byte_patched, // A byte has been patched
// in: ea_t ea, uint32 old_value
cmt_changed, // An item comment has been changed
// in: ea_t ea, bool repeatable_cmt
enum_created, // An enum type has been created
// in: enum_t id
enum_deleted, // An enum type has been deleted
// in: enum_t id
enum_renamed, // An enum or member has been renamed
// in: tid_t id
....
enum_cmt_changed, // An enum or member type comment has been changed
// in: tid_t id, bool repeatable
destroyed_items, // Instructions/data have been destroyed in [ea1,ea2)
// in: ea_t ea1, ea_t ea2, bool will_disable_range
....


Real life plugins that use the IDP/IDB callback mechanism include the collabREate plugin ("http://www.idabook.com/collabreate/index.html") by Chris Eagle and the IDA Sync plugin ("http://www.openrce.org/downloads/details/2") written by Pedram Amini. Nonetheless, those plugins do not aim at providing an undo functionality rather a way to make reverse engineering with IDA Pro a collaborative effort.

Introducing the database snapshot feature

Since the “undo” feature may not be implemented in the near future, we thought of implementing a nice and convenient way to take database snapshots and restore them easily from IDA Pro.

In a nutshell, an IDA Pro database snapshot is a copy of the current database with the following name:*databasename_mmddyyyy_hhmmss.idb. In the future, we could optimize the database storage requirement so that only the difference will be stored on disk.

This new database snapshot feature is very similar to “VM snapshots” feature found in most virtualization products (such as VMWare, VirtualBochs, QEmu, etc… where the user can take a snapshot of the VM at any point in time and work with it (restore, delete, etc….

Taking a snapshot will be accessible from two places:


The first is in the file menu (or by pressing the Ctrl-Shift-W hotkey):
http://www.hexblog.com/wp-content/uploads/2011/07/snap_quick_thumb.gif ("http://www.hexblog.com/wp-content/uploads/2011/07/snap_quick.gif")


And the second method is through the database snapshot manager interface:
http://www.hexblog.com/wp-content/uploads/2011/07/snap_man_menu_thumb.gif ("http://www.hexblog.com/wp-content/uploads/2011/07/snap_man_menu.gif")

The snapshot manager interface

In the snapshot manager interface window, the user will be able to restore, rename, delete or take a snapshot:

http://www.hexblog.com/wp-content/uploads/2011/07/snap_man_thumb1.gif ("http://www.hexblog.com/wp-content/uploads/2011/07/snap_man1.gif")

Finally, we would like to thank our kind customers that keep on giving us suggestions and ideas that help us improve the product.



http://www.hexblog.com/?p=415

Bengaly
July 30th, 2011, 04:31
Very nice! Keep it up!!

Aimless
July 30th, 2011, 21:17
Other than giving a nice GUI, which makes saving faster, I don't think it has any other functionality. Easily replicated by saving your databases in various names. This GUI just makes it easier.

On the other hand, can't blame Ilfak. He needs to have that "KILLER" offering in 6.2 that will make people want to buy, or in this case feel that move from 6.1 to 6.2 is a worthy upgrade.

What would make me lust after 6.2 would be if the ability of MYNAV or BINNAV, inbuilt into IDA PRO. If this functionality can be created using Python, its easier, and more stable, if Ilfak programs it inside the IDA PRO itself. Now THAT would be some IDA PRO upgrade.... make me really *WANT* to upgrade from whichever version I am on, including 6.1, to 6.2

Daniel, are you listening?

Have Phun,

deroko
July 31st, 2011, 05:56
Nice Finally before some big change in database I won't have to exit -> make backup and load database again