dissect.archive.vma¶
Module Contents¶
Classes¶
Proxmox VMA. |
|
Basic buffered stream that provides aligned reads. |
- class dissect.archive.vma.VMA(fh: BinaryIO)¶
Proxmox VMA.
Parse and provide a readable object for devices in a Proxmox VMA backup file. VMA is designed to be streamed for extraction, so we need to do some funny stuff to create a readable object from it. Performance is not optimal, so it’s generally advised to extract a VMA instead. The
vma-extractutility can be used for that.- fh¶
- header¶
- version¶
- uuid¶
- property creation_time: datetime.datetime¶
- blob_string(offset: int) str¶
- class dissect.archive.vma.Device(vma: VMA, dev_id: int, name: str, size: int)¶
- vma¶
- id¶
- name¶
- size¶
- __repr__() str¶
- open() DeviceDataStream¶
- class dissect.archive.vma.Extent(fh: BinaryIO, offset: int)¶
- fh¶
- offset¶
- data_offset¶
- header¶
- uuid¶
- size¶
- blocks¶
- __repr__() str¶
- class dissect.archive.vma.DeviceDataStream(device: Device)¶
Bases:
dissect.util.stream.AlignedStreamBasic buffered stream that provides aligned reads.
- Must be subclassed for various stream implementations. Subclasses can implement:
_read()_seek()
The offset and length for
_readare guaranteed to be aligned for streams of a known size. If your stream has an unknown size (i.e.size == None), reads of length-1(i.e. read until EOF) will be passed through to your implementation of_read. The only time that overriding_seekwould make sense is if there’s no known size of your stream, but still want to provideSEEK_ENDfunctionality.Most subclasses of
AlignedStreamtake one or more file-like objects as source. Operations on these subclasses, like reading, will modify the source file-like object as a side effect.- Parameters:
size – The size of the stream. This is used in read and seek operations.
Noneif unknown.align – The alignment size. Read operations are aligned on this boundary. Also determines buffer size.
- _seek(pos: int, whence: int = 0) int¶
Calculate and return the new stream position after a seek.
- device¶
- vma¶