Software:DynamoRIO

From HandWiki
Short description: Software framework
DynamoRIO
DynamoRIO-logo.png
Developer(s)Authors of DynamoRIO
Initial releaseJune 2002; 21 years ago (2002-06)
Preview release
7.0.0-RC1 / February 3, 2017; 7 years ago (2017-02-03)
Operating systemAndroid, Linux, Windows
PlatformAArch32, AArch64, IA-32, x86-64
TypeInstrumentation framework, profiler
LicenseBSD
Websitedynamorio.org

DynamoRIO is a BSD-licensed dynamic binary instrumentation framework for the development of dynamic program analysis tools. DynamoRIO targets user space applications under the Android, Linux, and Windows operating systems running on the AArch32, IA-32, and x86-64 instruction set architectures.

DynamoRIO was originally created as a dynamic binary optimization system but has since been used for security, debugging, and analysis tools. DynamoRIO originated in a collaboration between Hewlett-Packard's Dynamo optimization system and the Runtime Introspection and Optimization (RIO) research group[1] at MIT; hence the combined name "DynamoRIO". It was first released publicly as a proprietary binary toolkit in June 2002 and was later open-sourced with a BSD license in January 2009.

Overview

DynamoRIO is a process virtual machine that redirects a program's execution from its original binary code to a copy of that code. Instrumentation that carries out the actions of the desired tool are then added to this copy. No changes are made to the original program, which does not need to be specially prepared in any way. DynamoRIO operates completely at run time and handles legacy code, dynamically loaded libraries, dynamically generated code, and self-modifying code.

DynamoRIO monitors all control flow to capture the entire execution of the target program. This monitoring adds overhead even when no tool is present. DynamoRIO's average overhead is 11 percent.[2]

Features

DynamoRIO's API abstracts away the details of the virtualization process and focuses on monitoring or modifying the dynamic code stream of the program. A tool can insert trampolines into the program that invoke tool actions at specific program points. A tool can also insert instrumentation at the assembly language level, which provides fine-grained control over tool actions and tool performance. DynamoRIO supports adaptive optimization and adaptive instrumentation by allowing a tool to remove or modify its instrumentation at any point throughout the execution of the target program.

DynamoRIO invokes tool-registered callbacks at a number of common program event points, such as thread creation, library loading, system calls, signals, or exceptions. Its API also allows inspecting the program's libraries and address space in addition to its code.

DynamoRIO's API and event callbacks are designed to be cross-platform, enabling the same tool code to operate on both Windows and Linux and on both IA-32 and x86-64. DynamoRIO ensures tool transparency by isolating the tool's resources, such as its stack, memory, and file accesses, from the program upon which the tool is operating.

DynamoRIO contains libraries that extend its API to provide symbol table access, function wrapping and replacing, and memory address tracing utilities.

Tools

The first tools built for DynamoRIO focused on dynamic optimization.[3] A number of research tools have been built for a variety of purposes, including taint checking[4] and profiling.[5]

Program Shepherding

Applying DynamoRIO to the security field resulted in a technique called program shepherding.[6] The program shepherding instrumentation monitors the origin of each program instruction and the control flow between instructions in order to prevent a security exploit from taking control of the program. In 2003, program shepherding was commercialized as the brand-named Memory Firewall host intrusion prevention software in a startup company called Determina. Determina was acquired by VMware in August 2007.[7]

Dr. Memory

Dr. Memory is an open-source memory debugger built on DynamoRIO and released under an LGPL license.[8] Dr. Memory monitors memory allocations and memory accesses using shadow memory. It detects memory-related programming errors such as accesses of uninitialized memory, accesses to freed memory, heap overflow and underflow, and memory leaks. Its feature set is similar to that of the Valgrind-based Memcheck tool, though it operates on Windows as well as Linux and is twice as fast as Memcheck.[9]

See also

Notes

References

  • Bruening, Derek (2004). Efficient, Transparent, and Comprehensive Runtime Code Manipulation (Ph.D.). Massachusetts Institute of Technology.
  • Derek Bruening; Timothy Garnett; Saman Amarasinghe (March 2003). "An Infrastructure for Adaptive Dynamic Optimization". San Francisco, California, USA. pp. 265–275. http://dl.acm.org/citation.cfm?id=776261.776290. 

External links