File Formats¶
Proxmox File Archive Format (.pxar
)¶
Proxmox File Archive Format - Meta (.mpxar
)¶
Pxar metadata archive with same structure as a regular pxar archive, with the
exception of regular file payloads not being contained within the archive
itself, but rather being stored as payload references to the corresponding pxar
payload (.ppxar
) file.
Can be used to lookup all the archive entries and metadata without the size overhead introduced by the file payloads.
Proxmox File Archive Format - Payload (.ppxar
)¶
Pxar payload file storing regular file payloads to be referenced and accessed by
the corresponding pxar metadata (.mpxar
) archive. Contains a concatenation
of regular file payloads, each prefixed by a PAYLOAD header. Further, the
actual referenced payload entries might be separated by padding (full/partial
payloads not referenced), introduced when reusing chunks of a previous backup
run, when chunk boundaries did not aligned to payload entry offsets.
All headers are stored as little-endian.
|
header of |
|
header of |
Payload |
raw regular file payload |
Padding |
partial/full unreferenced payloads, caused by unaligned chunk boundary |
... |
further concatenation of payload header, payload and padding |
|
header of |
Data Blob Format (.blob
)¶
The data blob format is used to store small binary data. The magic number decides the exact format:
|
unencrypted |
uncompressed |
|
unencrypted |
compressed |
|
encrypted |
uncompressed |
|
encrypted |
compressed |
The compression algorithm used is zstd
. The encryption cipher is
AES_256_GCM
.
Unencrypted blobs use the following format:
|
|
|
Encrypted blobs additionally contain a 16 byte initialization vector (IV), followed by a 16 byte authenticated encryption (AE) tag, followed by the encrypted data:
|
|
|
|
|
Fixed Index Format (.fidx
)¶
All numbers are stored as little-endian.
|
|
|
Unique ID |
|
Creation Time (epoch) |
|
SHA-256 over the index (without header) |
|
Image size |
|
Chunk size |
|
Overall header size is one page (4096 bytes) |
|
First chunk digest |
|
Second chunk digest |
... |
Next chunk digest ... |
Dynamic Index Format (.didx
)¶
All numbers are stored as little-endian.
|
|
|
Unique ID |
|
Creation Time (epoch) |
|
SHA-256 over the index (without header) |
|
Overall header size is one page (4096 bytes) |
|
End of first chunk |
|
First chunk digest |
|
End of second chunk |
|
Second chunk digest |
... |
Next chunk offset/digest |