Skip to main content

A Python interface to libVEX and VEX IR

Project description

PyVEX

Latest Release Python Version PyPI Statistics License

PyVEX is Python bindings for the VEX IR.

Project Links

Project repository: https://github.com/angr/pyvex

Documentation: https://api.angr.io/projects/pyvex/en/latest/

Installing PyVEX

PyVEX can be pip-installed:

pip install pyvex

Using PyVEX

import pyvex
import archinfo

# translate an AMD64 basic block (of nops) at 0x400400 into VEX
irsb = pyvex.lift(b"\x90\x90\x90\x90\x90", 0x400400, archinfo.ArchAMD64())

# pretty-print the basic block
irsb.pp()

# this is the IR Expression of the jump target of the unconditional exit at the end of the basic block
print(irsb.next)

# this is the type of the unconditional exit (i.e., a call, ret, syscall, etc)
print(irsb.jumpkind)

# you can also pretty-print it
irsb.next.pp()

# iterate through each statement and print all the statements
for stmt in irsb.statements:
    stmt.pp()

# pretty-print the IR expression representing the data, and the *type* of that IR expression written by every store statement
import pyvex
for stmt in irsb.statements:
    if isinstance(stmt, pyvex.IRStmt.Store):
        print("Data:", end="")
        stmt.data.pp()
        print("")

        print("Type:", end="")
        print(stmt.data.result_type)
        print("")

# pretty-print the condition and jump target of every conditional exit from the basic block
for stmt in irsb.statements:
    if isinstance(stmt, pyvex.IRStmt.Exit):
        print("Condition:", end="")
        stmt.guard.pp()
        print("")

        print("Target:", end="")
        stmt.dst.pp()
        print("")

# these are the types of every temp in the IRSB
print(irsb.tyenv.types)

# here is one way to get the type of temp 0
print(irsb.tyenv.types[0])

Keep in mind that this is a syntactic respresentation of a basic block. That is, it'll tell you what the block means, but you don't have any context to say, for example, what actual data is written by a store instruction.

VEX Intermediate Representation

To deal with widely diverse architectures, it is useful to carry out analyses on an intermediate representation. An IR abstracts away several architecture differences when dealing with different architectures, allowing a single analysis to be run on all of them:

  • Register names. The quantity and names of registers differ between architectures, but modern CPU designs hold to a common theme: each CPU contains several general purpose registers, a register to hold the stack pointer, a set of registers to store condition flags, and so forth. The IR provides a consistent, abstracted interface to registers on different platforms. Specifically, VEX models the registers as a separate memory space, with integer offsets (i.e., AMD64's rax is stored starting at address 16 in this memory space).
  • Memory access. Different architectures access memory in different ways. For example, ARM can access memory in both little-endian and big-endian modes. The IR must abstracts away these differences.
  • Memory segmentation. Some architectures, such as x86, support memory segmentation through the use of special segment registers. The IR understands such memory access mechanisms.
  • Instruction side-effects. Most instructions have side-effects. For example, most operations in Thumb mode on ARM update the condition flags, and stack push/pop instructions update the stack pointer. Tracking these side-effects in an ad hoc manner in the analysis would be crazy, so the IR makes these effects explicit.

There are lots of choices for an IR. We use VEX, since the uplifting of binary code into VEX is quite well supported. VEX is an architecture-agnostic, side-effects-free representation of a number of target machine languages. It abstracts machine code into a representation designed to make program analysis easier. This representation has five main classes of objects:

  • Expressions. IR Expressions represent a calculated or constant value. This includes memory loads, register reads, and results of arithmetic operations.
  • Operations. IR Operations describe a modification of IR Expressions. This includes integer arithmetic, floating-point arithmetic, bit operations, and so forth. An IR Operation applied to IR Expressions yields an IR Expression as a result.
  • Temporary variables. VEX uses temporary variables as internal registers: IR Expressions are stored in temporary variables between use. The content of a temporary variable can be retrieved using an IR Expression. These temporaries are numbered, starting at t0. These temporaries are strongly typed (i.e., "64-bit integer" or "32-bit float").
  • Statements. IR Statements model changes in the state of the target machine, such as the effect of memory stores and register writes. IR Statements use IR Expressions for values they may need. For example, a memory store IR Statement uses an IR Expression for the target address of the write, and another IR Expression for the content.
  • Blocks. An IR Block is a collection of IR Statements, representing an extended basic block (termed "IR Super Block" or "IRSB") in the target architecture. A block can have several exits. For conditional exits from the middle of a basic block, a special Exit IR Statement is used. An IR Expression is used to represent the target of the unconditional exit at the end of the block.

VEX IR is actually quite well documented in the libvex_ir.h file (https://github.com/angr/vex/blob/dev/pub/libvex_ir.h) in the VEX repository. For the lazy, we'll detail some parts of VEX that you'll likely interact with fairly frequently. To begin with, here are some IR Expressions:

IR Expression Evaluated Value VEX Output Example
Constant A constant value. 0x4:I32
Read Temp The value stored in a VEX temporary variable. RdTmp(t10)
Get Register The value stored in a register. GET:I32(16)
Load Memory The value stored at a memory address, with the address specified by another IR Expression. LDle:I32 / LDbe:I64
Operation A result of a specified IR Operation, applied to specified IR Expression arguments. Add32
If-Then-Else If a given IR Expression evaluates to 0, return one IR Expression. Otherwise, return another. ITE
Helper Function VEX uses C helper functions for certain operations, such as computing the conditional flags registers of certain architectures. These functions return IR Expressions. function_name()

These expressions are then, in turn, used in IR Statements. Here are some common ones:

IR Statement Meaning VEX Output Example
Write Temp Set a VEX temporary variable to the value of the given IR Expression. WrTmp(t1) = (IR Expression)
Put Register Update a register with the value of the given IR Expression. PUT(16) = (IR Expression)
Store Memory Update a location in memory, given as an IR Expression, with a value, also given as an IR Expression. STle(0x1000) = (IR Expression)
Exit A conditional exit from a basic block, with the jump target specified by an IR Expression. The condition is specified by an IR Expression. if (condition) goto (Boring) 0x4000A00:I32

An example of an IR translation, on ARM, is produced below. In the example, the subtraction operation is translated into a single IR block comprising 5 IR Statements, each of which contains at least one IR Expression (although, in real life, an IR block would typically consist of more than one instruction). Register names are translated into numerical indices given to the GET Expression and PUT Statement. The astute reader will observe that the actual subtraction is modeled by the first 4 IR Statements of the block, and the incrementing of the program counter to point to the next instruction (which, in this case, is located at 0x59FC8) is modeled by the last statement.

The following ARM instruction:

subs R2, R2, #8

Becomes this VEX IR:

t0 = GET:I32(16)
t1 = 0x8:I32
t3 = Sub32(t0,t1)
PUT(16) = t3
PUT(68) = 0x59FC8:I32

Cool stuff!

Citing PyVEX

If you use PyVEX in an academic work, please cite the paper for which it was developed:

@article{shoshitaishvili2015firmalice,
  title={Firmalice - Automatic Detection of Authentication Bypass Vulnerabilities in Binary Firmware},
  author={Shoshitaishvili, Yan and Wang, Ruoyu and Hauser, Christophe and Kruegel, Christopher and Vigna, Giovanni},
  booktitle={NDSS},
  year={2015}
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyvex-9.2.130.tar.gz (3.7 MB view details)

Uploaded Source

Built Distributions

pyvex-9.2.130-py3-none-win_amd64.whl (1.4 MB view details)

Uploaded Python 3 Windows x86-64

pyvex-9.2.130-py3-none-manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded Python 3

pyvex-9.2.130-py3-none-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded Python 3 macOS 11.0+ ARM64

pyvex-9.2.130-py3-none-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded Python 3 macOS 10.9+ x86-64

File details

Details for the file pyvex-9.2.130.tar.gz.

File metadata

  • Download URL: pyvex-9.2.130.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvex-9.2.130.tar.gz
Algorithm Hash digest
SHA256 538032923771893f6d83d92bc44728370480bcc362b3261a4cb88e0931a848e6
MD5 ccaae30b64d17bea6084d1b2c5c9b58d
BLAKE2b-256 f92cad14f145866505e8d7a2425f9551a23bd0d238f0528a37c70354efb7b9d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130.tar.gz:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

File details

Details for the file pyvex-9.2.130-py3-none-win_amd64.whl.

File metadata

  • Download URL: pyvex-9.2.130-py3-none-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyvex-9.2.130-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 af8a73df5072fd7911b1bd829473f339586dffddffb8dc49b79b888759d34068
MD5 6b2357e24f4332fddbb531964eb8293d
BLAKE2b-256 3526c6a7ab3884252211c7ed2772339c6a022365530b40acafd5e39f831533b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130-py3-none-win_amd64.whl:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

File details

Details for the file pyvex-9.2.130-py3-none-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyvex-9.2.130-py3-none-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b2f496bc40add28feefe607dc3b9137b8e5cf7dbc26a5365b21a0332bc957aa
MD5 6bc3434cd66562c1f01398984decf0f2
BLAKE2b-256 0cebe3bb566ee6197e5ed52e3f683c33baece569638d9f5dbd6b27101fc8d6ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130-py3-none-manylinux2014_x86_64.whl:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

File details

Details for the file pyvex-9.2.130-py3-none-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyvex-9.2.130-py3-none-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8c3d90a79a6887a59de73c01ae02078f74485a7824bf7c7a2605858f35aa8f7
MD5 6b2b512313d7bf6ca05094518fc7b2be
BLAKE2b-256 c1781d6f8836ad03239285ab74213b19630e6dac2be0dcbdd1b34f6e015ca143

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130-py3-none-manylinux2014_aarch64.whl:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

File details

Details for the file pyvex-9.2.130-py3-none-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyvex-9.2.130-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 031429230a761d810a1e8a3cd563d2913e95ba3bb414b37e095d3042cfc78306
MD5 e0f5a23b360f551a208644067ee0374a
BLAKE2b-256 a343d1cd4af2e73a9331ece5e011b868959f80011252bcf0305e1dc2f26042f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130-py3-none-macosx_11_0_arm64.whl:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

File details

Details for the file pyvex-9.2.130-py3-none-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyvex-9.2.130-py3-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2f2559cc595c40bacf0914143cfc5e4f34cd2001f01e0df06714402e8a36da0
MD5 3180ffb07dbca9aa952d7f290a18e6c4
BLAKE2b-256 6ba18e80374c2da9c8d3bb1e3783c95b1233461659649ed277ba912426c9a26d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyvex-9.2.130-py3-none-macosx_10_9_x86_64.whl:

Publisher: angr-release.yml on angr/ci-settings

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page