Skip to main content

dwarffi is a Python library for parsing ISF files and providing an interface to access kernel symbols and types.

Project description

dwarffi

A debug-symbol-powered type interface for Python.

dwarffi lets you interact with real-world memory layouts using Intermediate Symbol Files (ISF)—portable JSON representations of compiled type information. It provides a CFFI-like experience without requiring header files: instead, it uses the structures as they exist in the compiled binary’s debug data.

ISF files encode the exact memory layout (offsets, padding, alignment, bitfields, pointer size, endianness) as defined by the toolchain and target architecture.

  • Linux / embedded workflows: ISF generated from DWARF in ELF binaries (e.g., via dwarf2json).
  • Windows workflows: ISF generated from PDB symbols (e.g., Volatility3-style Windows ISFs generated from PDBs).
  • MacOS / Mach-O workflows: ISF generated from DWARF in Mach-O binaries.
  • Ghidra workflows: ISF generated from the active Ghidra program using the bundled Ghidra2ISF.java script.

Read more about dwarf2json and ISF in the dwarf2json README.

For Windows ISF context, see Volatility3.

You can also find many symbol tables in ISF format on Volatility3's symbols repository.

This project builds on a tremendous amount of prior work in the volatility community and takes inspiration from projects like ctypes, cffi, pyelftools, and volatility3's symbol handling. The core innovation is the seamless integration of ISF as a first-class type system in Python, with powerful features for live memory access and dynamic type generation.

On dwarf2json

We've forked dwarf2json to add support for function signatures and to generate more complete ISF files that include function metadata. This allows dwarffi to provide a richer experience when working with functions, including parameter types and return types. See the fork here

You may still use the original volatility version of dwarf2json if you don't need function signatures, but we recommend using our fork for the best experience with dwarffi.


🚀 Features

  • ISF-Native: No header rewriting. Point to a .json or .json.xz ISF file and use types immediately.
  • Cross-Platform Symbols:
    • DWARF-backed ISFs (common on Linux/ELF, embedded targets)
    • PDB-backed ISFs (common for Windows kernel/user-mode analysis toolchains)
  • Architecture & ABI Aware: Handles big-endian and little-endian layouts transparently, respects pointer width and packing.
  • Dynamic cdef: Compile C code on the fly to generate types, with automatic debug-type retention to prevent compilers from stripping unused definitions.
  • Recursive Typedef Handling: Automatic resolution and decay of typedef chains.
  • C-Style Magic:
    • Pointer arithmetic (ptr + 5)
    • Pointer subtraction (ptr2 - ptr1)
    • Array slicing (arr[1:5])
    • Deep struct initialization via nested dictionaries
  • Safety Semantics:
    • Automatic bit-masking
    • Sign extension
    • C-style integer overflow/underflow behavior
  • Anonymous Struct/Union Flattening: Access anonymous union members directly (ideal for register maps).
  • ISF Export Support: Save dynamically generated ISFs to .json or .json.xz.
  • Introspection Utilities:
    • inspect_layout() for pahole-style field offsets/padding
    • pretty_print() and to_dict() for human-readable / JSON-friendly inspection of instances
  • Live Memory Backends: Interface directly with QEMU, GDB, Volatility, or raw firmware dumps using a simple read/write API.
  • Pointer Chaining: Recursively dereference pointers (ptr.deref()) and stride through remote memory using C-style array indexing (ptr[5]).
  • Zero-Copy Performance: High-performance handler binding that automatically switches between zero-copy native buffer access and backend proxying.
  • Fuzzy Search: Find symbols and types across massive ISFs using glob or regex patterns.

📦 Installation

pip install dwarffi

Requirements for cdef()

To use dynamic compilation:

  • A C compiler (gcc, clang, or cross-compiler)
  • dwarf2json available in your PATH

NOTE: Some compilers may optimize away unused debug types. For example, with gcc, use: -fno-eliminate-unused-debug-types.


🛠️ Quick Start

Load an ISF (Linux/ELF DWARF)

from dwarffi import DFFI

# Accepts .json or .json.xz
ffi = DFFI("ubuntu:5.4.0-26-generic:64.json.xz")


list_head_type = ffi.typeof("list_head")
print("list_head sizeof:", ffi.sizeof(list_head_type))
print(list_head_type)

''' prints out:
struct list_head (size: 16 bytes) {
  [+0  ] pointer next;
  [+8  ] pointer prev;
}
'''

# make a new complex type
proc = ffi.new("struct task_struct", init={"pid": 1234, "comm": b"my_process"})


print(proc.pid)              # 1234
print(bytes(proc.comm))      # b'my_process\x00\x00\x00\x00\x00\x00'
print(ffi.string(proc.comm)) # b'my_process'

Download this example .json.xz here.


Load an ISF (Windows PDB-derived / Volatility-style)

from dwarffi import DFFI

# Volatility-style Windows symbols are typically .json.xz ISFs
ffi = DFFI("ntkrnlmp.pdb/<GUID>-<AGE>.json.xz")

le = ffi.typeof("struct _LIST_ENTRY")
buf = bytearray(ffi.sizeof(le))
inst = ffi.from_buffer("struct _LIST_ENTRY", buf)

inst.Flink = 0x1122334455667788
inst.Blink = 0x8877665544332211

print(ffi.pretty_print(inst))
print(ffi.to_dict(inst))

ffi.inspect_layout("struct _UNICODE_STRING")

Ghidra ISF scripts

dwarffi includes Ghidra scripts under src/dwarffi/ghidra_scripts.

Export the active Ghidra program to ISF:

analyzeHeadless /tmp/ghidra-project DffiExport \
  -import ./firmware.elf \
  -scriptPath ./src/dwarffi/ghidra_scripts \
  -postScript Ghidra2ISF.java ./firmware.isf.json \
  -deleteProject

The exporter writes base_types, user_types, enums, typedefs, symbols, and functions in the same ISF shape consumed by DFFI.

Import an ISF into the active Ghidra program:

analyzeHeadless /tmp/ghidra-project DffiImport \
  -import ./firmware.elf \
  -scriptPath ./src/dwarffi/ghidra_scripts \
  -postScript ISF2Ghidra.java ./firmware.isf.json

The importer creates a /ISF data type category, imports base types, structs, unions, enums, typedefs, arrays, pointers, and bitfields, then applies labels, data types, and function signatures when addresses are present.

Optional script arguments for both scripts:

--types-only
--no-symbols
--no-functions

CFFI-style cdef

We do support inline C definitions that compile down to DWARF and ISF on the fly. This is ideal for quick prototyping or when you have a small struct definition that isn't already in your ISF.

from dwarffi import DFFI

ffi = DFFI()
ffi.cdef("""
    struct sensor_data {
        uint32_t timestamp;
        int16_t  readings[3];
        uint8_t  status;
    };
""")

sensor = ffi.new("struct sensor_data", {
    "timestamp": 1234567,
    "readings": [10, -5, 20],
    "status": 0x01
})

print(f"Bytes: {ffi.to_bytes(sensor).hex()}")
print(f"Reading[1]: {sensor.readings[1]}")  # -5

🧩 Advanced Usage

Anonymous Unions

ffi.cdef("""
struct reg_map {
    union {
        uint32_t ALL;
        struct {
            uint16_t LOW;
            uint16_t HIGH;
        };
    };
};
""")

reg = ffi.new("struct reg_map")
reg.ALL = 0x12345678
print(hex(reg.HIGH))  # 0x1234

Pointer Arithmetic

ptr = ffi.cast("int *", 0x4000)
next_ptr = ptr + 1
print(hex(next_ptr.address))

🧠 Memory Backends & Live Data

dwarffi can bind to live external memory (debuggers, emulators, or remote targets). Instead of snapshotting memory into a local bytearray, you can use from_address() to interact with the target in real-time.

Using Raw Bytes (Mapping at Address 0) If you provide raw bytes or a bytearray as a backend, dwarffi treats it as a physical memory map starting at address 0x0.

# firmware.bin is 1MB
with open("firmware.bin", "rb") as f:
    ffi = DFFI(isf, backend=f.read())

# Map a header at its specific physical address
header = ffi.from_address("struct fw_header", 0x4000)
print(f"Magic: {hex(header.magic)}")

Implementing a Custom Backend (e.g., GDB)

You can wrap any memory access API by implementing the MemoryBackend interface.

from dwarffi.backend import MemoryBackend

class GDBBackend(MemoryBackend):
    def read(self, address: int, size: int) -> bytes:
        return gdb.selected_inferior().read_memory(address, size).tobytes()

    def write(self, address: int, data: bytes) -> None:
        gdb.selected_inferior().write_memory(address, data)

ffi = DFFI(isf, backend=GDBBackend())

# Now 'task' reads memory from GDB on-demand when you access fields
task = ffi.from_address("struct task_struct", 0xffff888000000000)
print(f"Current PID: {task.pid}")

Live Pointer Traversal

When a MemoryBackend is configured, Ptr objects become "live." Calling .deref() or using array indexing fetches the target memory from the backend automatically.

# Get a pointer to an array of nodes in kernel memory
list_ptr = ffi.from_address("struct node *", 0x2000)

# Chained dereferencing (node->next->next)
# Each .deref() triggers a backend read
third_node = list_ptr.deref().next.deref().next.deref()

# C-style array indexing on the backend
fifth_node = list_ptr[4]

Fuzzy Symbol Discovery

# Find all kernel syscall table entries
syscalls = ffi.search_symbols("__x64_sys_*")

for name, sym in syscalls.items():
    print(f"Found {name} at {hex(sym.address)}")

Walking a Process List

# Simulating a container_of walk through a kernel task list
init_task = ffi.from_address("struct task_struct", ffi.get_symbol("init_task").address)

# Walk the circular 'tasks' list_head
curr_list = init_task.tasks.next.deref()

while curr_list.address != init_task.tasks.address:
    # Use cast with address arithmetic to get the parent task_struct
    task_addr = curr_list.address - ffi.offsetof("struct task_struct", "tasks")
    task = ffi.cast("struct task_struct", task_addr)
    
    print(f"Process: {ffi.string(task.comm)} [PID: {task.pid}]")
    curr_list = curr_list.next.deref()

⚙️ How It Works

dwarffi operates in three phases:

1. Parsing

Loads one or more ISF files (.json or .json.xz) that represent a compiled type tree (e.g., derived from DWARF or PDB symbols).

2. Type Synthesis

Builds Python representations of:

  • Base types
  • Structs / unions
  • Enums
  • Typedef chains
  • Arrays
  • Pointers
  • Bitfields

3. Memory Mapping

Uses Python’s struct.pack / struct.unpack to:

  • Convert Python integers into architecture-accurate byte layouts
  • Apply endianness rules and pointer size
  • Respect alignment, padding, and bitfield masks

Instances are bound views into bytearray buffers. Field access directly reads/writes into the underlying buffer.


📚 Core API Reference

DFFI(path: str | Path | dict | None = None)

Create an empty instance or load an ISF (from a dict, .json, or .json.xz).

cdef(source, compiler="gcc", save_isf_to=None)

Compile C source → DWARF → ISF → load into current FFI.

new(ctype, init=None)

Allocate a new instance of a C type.

from_buffer(ctype, buffer)

Bind a type to existing memory.

sizeof(ctype)

Return size in bytes.

offsetof(ctype, field)

Return byte offset of a field.

cast(ctype, value)

Reinterpret memory or create pointer instances.

addressof(instance)

Return pointer to instance.

inspect_layout(ctype)

Print pahole-style offsets and padding.

pretty_print(cdata)

Recursively format bound instances/arrays/pointers as a readable tree.

to_dict(cdata)

Convert bound instances/arrays/pointers to Python-native structures.

from_address(ctype, address)

Binds a type to a specific address in the configured MemoryBackend. Returns a BoundTypeInstance or a Ptr.

search_symbols(pattern, use_regex=False)

Searches for symbols matching a glob (e.g., sys_call) or regex pattern across all loaded ISFs.

addressof(instance, *fields)

Returns a Ptr to an instance or a nested field. If the instance is backend-backed, the pointer address will be the absolute address in that backend.

Ptr.deref()

The core dereference operator. If the pointer targets another pointer, it actively resolves the chain by reading from the backend.


🤝 Contributing

Contributions are welcome!

python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytest

Project details


Download files

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

Source Distribution

dwarffi-0.0.38.tar.gz (143.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

dwarffi-0.0.38-py3-none-any.whl (64.9 kB view details)

Uploaded Python 3

dwarffi-0.0.38-cp310-abi3-win_amd64.whl (848.4 kB view details)

Uploaded CPython 3.10+Windows x86-64

dwarffi-0.0.38-cp310-abi3-manylinux2014_x86_64.whl (830.3 kB view details)

Uploaded CPython 3.10+

dwarffi-0.0.38-cp310-abi3-manylinux2014_aarch64.whl (731.0 kB view details)

Uploaded CPython 3.10+

dwarffi-0.0.38-cp310-abi3-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

dwarffi-0.0.38-cp310-abi3-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10+macOS 10.9+ x86-64

File details

Details for the file dwarffi-0.0.38.tar.gz.

File metadata

  • Download URL: dwarffi-0.0.38.tar.gz
  • Upload date:
  • Size: 143.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dwarffi-0.0.38.tar.gz
Algorithm Hash digest
SHA256 3f809b7623d66fc0cefea1ba4c60e4055b1df589f6115541ae11f7daeb1435c8
MD5 c476bbd6753634014690f8f9132d79a6
BLAKE2b-256 a462dddb81f64777655c2d44319b44e6e98599e7db48f2ae50b6028729a3ccbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38.tar.gz:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-py3-none-any.whl.

File metadata

  • Download URL: dwarffi-0.0.38-py3-none-any.whl
  • Upload date:
  • Size: 64.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dwarffi-0.0.38-py3-none-any.whl
Algorithm Hash digest
SHA256 0b3105499ccc7fcc32bdf95c1ef5828d9dc71a30247ec46b3b30aeaf634ac5e0
MD5 b2db1b62e6849225b813a63aacf424c0
BLAKE2b-256 d59cbe73635738669ea1c2e91b005a8e015660ae2c607527a04dc5e0f848ac42

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-py3-none-any.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: dwarffi-0.0.38-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 848.4 kB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dwarffi-0.0.38-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 005369f0b7d217a9c3c0ef4481928710b24e4725790dcedcb80cd4535b790bfa
MD5 3a88805f1681d877b211e3b1462a2780
BLAKE2b-256 f49f3f41355e73cca71a83edc17f4acc40bb14f476fa384f578b14e63d46f78c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-cp310-abi3-win_amd64.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-cp310-abi3-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dwarffi-0.0.38-cp310-abi3-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 588e449a80220426fda1f4e542fb45d9726b3bb9d28e964e66cb1a52b48d4d44
MD5 7e723d1759c9452a49cb6a722d9d810d
BLAKE2b-256 b085471f8a8c4afda41f97ec78a7c8e77796d2ad85b9cde88896100202fd1bc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-cp310-abi3-manylinux2014_x86_64.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-cp310-abi3-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dwarffi-0.0.38-cp310-abi3-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12ffeb3e11b9cdfd4273a1b78814dd89474e93a7570e78d05ed790e72316f133
MD5 91cbfd277d91cab8a991a07b1123d82d
BLAKE2b-256 eddf3005dd1fc4db91f2d8be55dba716e4c8082cf4d7b1d6745ac4143065553c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-cp310-abi3-manylinux2014_aarch64.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dwarffi-0.0.38-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6b507f8c806280091be89426090afa52fad6d1755b22291ab66858416e9660
MD5 49fdff577a14e33b13d42f793aa71e59
BLAKE2b-256 5e628becdf3d1e16733e33a381f768c4cd77e91b9301427b9044a7aaea94416c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dwarffi-0.0.38-cp310-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dwarffi-0.0.38-cp310-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6640dfd5961dda4aded95d32a75f9acafe8f3e536c89ecc64bf087ec957217e3
MD5 7adfd1af591a2e71191401eefe9d6a32
BLAKE2b-256 048dd834b2469dd68c66793498191b2ec065e81a695e3da1cc5e8052d25ffa2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dwarffi-0.0.38-cp310-abi3-macosx_10_9_x86_64.whl:

Publisher: publish.yml on rehosting/dwarffi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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