Skip to main content

Crate memf_format

Crate memf_format 

Source
Expand description

Physical memory dump format parsers.

Modules§

avml
AVML v2 dump format provider.
elf_core
ELF core dump format provider.
hiberfil
Windows hibernation file (hiberfil.sys) format provider.
kdump
Kdump (makedumpfile / diskdump) format provider.
lime
LiME (Linux Memory Extractor) dump format provider.
raw
Raw (contiguous) memory dump format provider.
test_builders
Synthetic dump builders for unit tests.
vmware
VMware .vmss/.vmsn state file format provider.
win_crashdump
Windows crash dump (.dmp) format provider.

Structs§

DumpMetadata
Optional metadata extracted from dump file headers.
PhysicalRange
A contiguous range of physical memory present in the dump.

Enums§

Error
Error type for memf-format operations.
MachineType
Machine architecture identified from a dump header.

Traits§

FormatPlugin
A plugin that can detect and open a specific dump format.
PhysicalMemoryProvider
A provider of physical memory from a dump file.

Functions§

open_dump
Open a dump file by probing all registered format plugins.
open_dump_with_raw_fallback
Like open_dump, but accepts the raw format as a last resort.

Type Aliases§

Result
A Result alias for memf-format.