1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
//! Disk Image Support for VM Encoding
//!
//! This module provides native support for encoding virtual machine disk images
//! directly into engrams without requiring external mounting tools.
//!
//! # Architecture Overview
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────────┐
//! │ Disk Image Pipeline │
//! ├─────────────────────────────────────────────────────────────────────┤
//! │ │
//! │ ┌──────────────┐ ┌──────────────┐ ┌──────────────────────┐ │
//! │ │ QCOW2/Raw │───▶│ Partition │───▶│ Filesystem │ │
//! │ │ Image │ │ Table │ │ Traversal │ │
//! │ │ (qcow2.rs) │ │ (part.rs) │ │ (filesystem.rs) │ │
//! │ └──────────────┘ └──────────────┘ └──────────────────────┘ │
//! │ │ │ │ │
//! │ ▼ ▼ ▼ │
//! │ ┌──────────────────────────────────────────────────────────────┐ │
//! │ │ Async Block Device API │ │
//! │ │ (tokio + tokio-uring when available) │ │
//! │ └──────────────────────────────────────────────────────────────┘ │
//! │ │ │
//! │ ▼ │
//! │ ┌──────────────────────────────────────────────────────────────┐ │
//! │ │ EmbrFS Encoder │ │
//! │ │ (compression profiles per path) │ │
//! │ └──────────────────────────────────────────────────────────────┘ │
//! │ │
//! └─────────────────────────────────────────────────────────────────────┘
//! ```
//!
//! # Why Native Disk Image Support?
//!
//! 1. **No External Dependencies**: Avoids requiring `qemu-nbd`, `losetup`, or
//! root privileges for mounting disk images.
//!
//! 2. **Async I/O Performance**: Uses `tokio-uring` on Linux for io_uring-based
//! I/O which is 2-3x faster than traditional read/write syscalls for large
//! sequential operations.
//!
//! 3. **Cross-Platform**: Works on Linux, macOS, and Windows without needing
//! platform-specific block device utilities.
//!
//! 4. **VM Workflow Integration**: Enables encoding QCOW2 images directly from
//! QEMU/KVM workflows without intermediate conversion steps.
//!
//! # Supported Formats
//!
//! | Format | Read | Write | Backing Files | Compression |
//! |--------|------|-------|---------------|-------------|
//! | QCOW2 | ✅ | ✅ | ✅ | ✅ |
//! | Raw | ✅ | ✅ | N/A | N/A |
//!
//! # Supported Partition Tables
//!
//! | Type | Read | Write | Notes |
//! |------|------|-------|-------|
//! | GPT | ✅ | ✅ | UEFI systems, disks >2TB |
//! | MBR | ✅ | ✅ | Legacy systems, <2TB limit |
//!
//! # Supported Filesystems
//!
//! | Filesystem | Read | Write | Notes |
//! |------------|------|-------|-------|
//! | ext4 | ✅ | ❌ | Most common Linux FS |
//! | ext2/ext3 | ✅ | ❌ | Via ext4 compat |
//!
//! # Example Usage
//!
//! ```rust,ignore
//! use embeddenator_fs::disk::{DiskImage, ImageFormat};
//!
//! // Open a QCOW2 image
//! let image = DiskImage::open("vm.qcow2", ImageFormat::Qcow2).await?;
//!
//! // List partitions
//! for partition in image.partitions()? {
//! println!("Partition {}: {} bytes", partition.name, partition.size);
//! }
//!
//! // Traverse filesystem and encode to engram
//! let encoder = image.encoder_for_partition(0)?;
//! encoder.encode_to_engram(&mut embrfs, |path, progress| {
//! println!("{}: {:.1}%", path, progress * 100.0);
//! }).await?;
//! ```
//!
//! # Feature Flags
//!
//! - `disk-image`: Full support with `tokio-uring` (Linux only, fastest)
//! - `disk-image-portable`: Support without `tokio-uring` (cross-platform)
pub use ;
pub use Qcow2Image;
pub use RawImage;
pub use ;
pub use FilesystemTraverser;
/// Disk image format detection and handling
/// Unified disk image interface
///
/// # Why a Unified Interface?
///
/// Different image formats (QCOW2, raw) have different internal structures
/// but present the same logical view: a sequence of bytes representing a
/// block device. This trait abstracts over format differences so the
/// partition and filesystem layers don't need format-specific code.
/// Synchronous block device interface for use with sync libraries (e.g., ext4 crate)
///
/// This trait is used when interfacing with synchronous filesystem libraries
/// that require blocking I/O operations.
/// Reader that wraps a BlockDeviceSync to read from a specific partition
///
/// This implements `positioned_io2::ReadAt` which is required by the ext4 crate.
/// Open a disk image with automatic format detection
///
/// # Example
///
/// ```rust,ignore
/// let image = open_image("vm.qcow2").await?;
/// println!("Image size: {} bytes", image.size());
/// ```
pub async