fstool 0.4.13

Build disk images and filesystems (ext2/3/4, MBR, GPT) from a directory tree and TOML spec, in the spirit of genext2fs.
Documentation
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
//! ISO 9660 writer — data-first, single-pass-data builder.
//!
//! File payloads are written to the device **as each `create_file` call
//! arrives**, into a data area that begins immediately after the volume
//! descriptors at a fixed LBA. The writer keeps only `(lba, size)` per
//! file — never the bytes — so RAM stays bounded by metadata regardless of
//! how large the contents are, and no temp file is ever created.
//!
//! On-disk order:
//!   - LBAs 0..15: system area (zero)
//!   - LBA 16: Primary Volume Descriptor
//!   - LBA 17: Joliet Supplementary Volume Descriptor (when enabled)
//!   - next LBA: Volume Descriptor Set Terminator
//!   - **file data** — each file sector-aligned, streamed in during add
//!   - L-path table + M-path table (PVD names)
//!   - L-path table + M-path table (Joliet names, when enabled)
//!   - PVD directory records (each dir's stream of records)
//!   - Joliet directory records
//!
//! Data precedes the path tables and directory records, which is legal:
//! every extent is referenced by absolute LBA, so a conformant reader does
//! not care that data comes first. The metadata can only be sized once the
//! whole tree is known, so it is laid out and written at `flush()` — after
//! the data cursor has come to rest.
//!
//! Streaming invariant: payloads are pumped through a 64 KiB scratch buffer
//! straight to the device. The writer never loads a file fully into memory.

use std::collections::BTreeMap;
use std::io::Read;
use std::path::{Path, PathBuf};

use crate::Result;
use crate::block::BlockDevice;
use crate::fs::{DeviceKind, FileMeta, FileSource};

use super::el_torito::BootCatalog;
use super::joliet::string_to_ucs2_be;

/// Logical sector size — fixed at 2 KiB by ECMA-119.
const SECTOR: u64 = 2048;
/// Fixed-position byte offset for the PVD (LBA 16).
const PVD_BYTE: u64 = 16 * SECTOR;

/// Format options. `volume_id` is required; everything else has sane
/// defaults.
#[derive(Debug, Clone)]
pub struct FormatOpts {
    pub volume_id: String,
    pub publisher_id: String,
    pub data_preparer_id: String,
    pub application_id: String,
    pub joliet: bool,
    pub rock_ridge: bool,
    pub el_torito: Option<BootCatalog>,
    /// UNIX timestamp used for all metadata timestamps.
    pub create_date: u32,
}

impl Default for FormatOpts {
    fn default() -> Self {
        Self {
            volume_id: "CDROM".into(),
            publisher_id: String::new(),
            data_preparer_id: String::new(),
            application_id: String::new(),
            joliet: true,
            rock_ridge: true,
            el_torito: None,
            create_date: 0,
        }
    }
}

impl FormatOpts {
    /// Apply a generic option-bag (CLI `-O key=val` / TOML
    /// `[filesystem.options]`) on top of these opts. Unknown keys are
    /// left in the map for the caller to flag. El Torito boot config is
    /// not yet plumbable through the bag — set it directly on
    /// `FormatOpts`.
    pub fn apply_options(&mut self, map: &mut crate::format_opts::OptionMap) -> crate::Result<()> {
        if let Some(s) = map.take_str("volume_id") {
            self.volume_id = s;
        }
        // Accept "volume_label" as a synonym so the same CLI key works
        // across filesystems.
        if let Some(s) = map.take_str("volume_label") {
            self.volume_id = s;
        }
        if let Some(s) = map.take_str("publisher_id") {
            self.publisher_id = s;
        }
        if let Some(s) = map.take_str("data_preparer_id") {
            self.data_preparer_id = s;
        }
        if let Some(s) = map.take_str("application_id") {
            self.application_id = s;
        }
        if let Some(b) = map.take_bool("joliet")? {
            self.joliet = b;
        }
        if let Some(b) = map.take_bool("rock_ridge")? {
            self.rock_ridge = b;
        }
        if let Some(t) = map.take_u32("create_date")? {
            self.create_date = t;
        }
        Ok(())
    }
}

/// One in-memory entry the writer is buffering. Kept private — the
/// public API speaks through [`crate::fs::Filesystem`].
///
/// A `File` records only the LBA where its data was streamed and the byte
/// size — the payload itself lives on the device, written during the
/// `create_file` call. Nothing here grows with file contents.
enum PendingEntry {
    File {
        #[allow(dead_code)]
        meta: FileMeta,
        /// Sector LBA where the body was streamed during add.
        lba: u32,
        /// Actual byte length written.
        size: u64,
    },
    Dir {
        #[allow(dead_code)]
        meta: FileMeta,
    },
    Symlink {
        #[allow(dead_code)]
        meta: FileMeta,
        target: PathBuf,
    },
    Device {
        #[allow(dead_code)]
        meta: FileMeta,
        #[allow(dead_code)]
        kind: DeviceKind,
        #[allow(dead_code)]
        major: u32,
        #[allow(dead_code)]
        minor: u32,
    },
}

/// Two-pass ISO 9660 writer. Construct with [`Iso9660Writer::new`],
/// stream entries via the Filesystem trait, then call `flush` (via the
/// trait) to lay out the image.
pub struct Iso9660Writer {
    opts: FormatOpts,
    /// Tree of entries keyed by normalized path. Root is implicit.
    entries: BTreeMap<PathBuf, PendingEntry>,
    /// Next free LBA in the data area. Initialised to the first sector
    /// past the volume descriptors and advanced as files stream in.
    data_cursor: u32,
    /// Total image byte length, set once `flush` lays out the metadata.
    /// Lets a repack truncate the over-provisioned backing file to fit.
    image_len: Option<u64>,
    /// Set once `flush` has run successfully.
    flushed: bool,
}

impl Iso9660Writer {
    pub fn new(opts: FormatOpts) -> Self {
        let data_cursor = data_start_lba(opts.joliet);
        Self {
            opts,
            entries: BTreeMap::new(),
            data_cursor,
            image_len: None,
            flushed: false,
        }
    }

    /// Total image byte length, available after [`flush`](Self::flush).
    pub fn image_len(&self) -> Option<u64> {
        self.image_len
    }

    /// Stream a file body to the device immediately, recording only its
    /// LBA + size. The body is consumed here (the source may be a one-shot
    /// reader), so nothing needs to be re-opened at flush.
    pub fn add_file(
        &mut self,
        dev: &mut dyn BlockDevice,
        path: &Path,
        src: FileSource,
        meta: FileMeta,
    ) -> Result<()> {
        let (mut reader, _total) = src.open()?;
        self.stream_file(dev, path, &mut reader, meta)
    }

    /// Streaming entry point used by `create_file_streaming`: pull at most
    /// `len` bytes from `body` straight onto the device.
    pub fn add_file_streaming(
        &mut self,
        dev: &mut dyn BlockDevice,
        path: &Path,
        body: &mut dyn Read,
        len: u64,
        meta: FileMeta,
    ) -> Result<()> {
        let mut take = body.take(len);
        self.stream_file(dev, path, &mut take, meta)
    }

    /// Shared core: write `reader` to the data area at the current cursor,
    /// sector-pad the tail, advance the cursor, and record the entry.
    fn stream_file(
        &mut self,
        dev: &mut dyn BlockDevice,
        path: &Path,
        reader: &mut dyn Read,
        meta: FileMeta,
    ) -> Result<()> {
        let path = normalize(path)?;
        let lba = self.data_cursor;
        let base = u64::from(lba) * SECTOR;
        let mut scratch = vec![0u8; 64 * 1024];
        let mut written: u64 = 0;
        loop {
            let n = reader.read(&mut scratch)?;
            if n == 0 {
                break;
            }
            dev.write_at(base + written, &scratch[..n])?;
            written += n as u64;
        }
        // Zero-pad the final partial sector so the next file starts clean.
        let used = written % SECTOR;
        if used != 0 {
            let pad = vec![0u8; (SECTOR - used) as usize];
            dev.write_at(base + written, &pad)?;
        }
        // Empty files still occupy one LBA (an extent must point somewhere).
        self.data_cursor += sectors_for(written.max(1));
        self.entries.insert(
            path,
            PendingEntry::File {
                meta,
                lba,
                size: written,
            },
        );
        Ok(())
    }

    pub fn add_dir(&mut self, path: &Path, meta: FileMeta) -> Result<()> {
        let path = normalize(path)?;
        self.entries.insert(path, PendingEntry::Dir { meta });
        Ok(())
    }

    pub fn add_symlink(&mut self, path: &Path, target: &Path, meta: FileMeta) -> Result<()> {
        let path = normalize(path)?;
        self.entries.insert(
            path,
            PendingEntry::Symlink {
                meta,
                target: target.to_path_buf(),
            },
        );
        Ok(())
    }

    pub fn add_device(
        &mut self,
        path: &Path,
        kind: DeviceKind,
        major: u32,
        minor: u32,
        meta: FileMeta,
    ) -> Result<()> {
        let path = normalize(path)?;
        self.entries.insert(
            path,
            PendingEntry::Device {
                meta,
                kind,
                major,
                minor,
            },
        );
        Ok(())
    }

    pub fn remove_entry(&mut self, path: &Path) -> Result<()> {
        let path = normalize(path)?;
        if self.entries.remove(&path).is_none() {
            return Err(crate::Error::InvalidArgument(format!(
                "iso9660: no buffered entry at {}",
                path.display()
            )));
        }
        Ok(())
    }

    pub fn entry_count(&self) -> usize {
        self.entries.len()
    }

    /// Write the metadata (volume descriptors, path tables, directory
    /// records) to `dev`. File data was already streamed in during the
    /// `create_file` calls; this only lays out everything that references
    /// it. Idempotent.
    pub fn flush(&mut self, dev: &mut dyn BlockDevice) -> Result<()> {
        if self.flushed {
            return Ok(());
        }
        // Recover the LBA/size of every streamed file from the entries map.
        let mut file_lba: BTreeMap<PathBuf, (u32, u64)> = BTreeMap::new();
        for (path, entry) in &self.entries {
            if let PendingEntry::File { lba, size, .. } = entry {
                file_lba.insert(path.clone(), (*lba, *size));
            }
        }
        // Build the directory tree from the flat entries map.
        let tree = build_tree(&self.entries)?;
        // Metadata begins where the data area came to rest.
        let layout = compute_layout(&tree, &self.opts, self.data_cursor, file_lba);
        self.image_len = Some(u64::from(layout.total_sectors) * SECTOR);
        write_image(dev, &tree, &layout, &self.opts)?;
        self.flushed = true;
        Ok(())
    }
}

/// First sector of the data area: LBA 16 (PVD) + 1, plus an optional
/// Joliet SVD, plus the VDST.
fn data_start_lba(joliet: bool) -> u32 {
    16 + 1 + if joliet { 1 } else { 0 } + 1
}

/// One node in the layout tree. Constructed by `build_tree`; references
/// the source entry by absolute path so file data can be re-opened in
/// pass 2 without cloning `FileSource`.
struct Node {
    /// Absolute path including leading '/'.
    path: PathBuf,
    /// Last path component (or "/" for the root).
    name: String,
    /// File / dir / symlink / device.
    kind: NodeKind,
    /// Children keyed by name. `BTreeMap` keeps iteration in ISO-comparison
    /// order natively (matching the previous `Vec` + sort step) and makes
    /// `insert_node` / `find_node` O(log n) instead of the O(n) linear
    /// scans that turned bulk-inserts of a flat directory into O(n²).
    /// Empty for non-directories.
    children: BTreeMap<String, Node>,
}

enum NodeKind {
    Dir,
    File { size: u64 },
    Symlink { target: PathBuf },
    Device,
}

/// Build the tree from the writer's flat `entries` map. Returns the
/// root node. Implicitly creates intermediate directories if a file
/// references a parent that wasn't explicitly added.
fn build_tree(entries: &BTreeMap<PathBuf, PendingEntry>) -> Result<Node> {
    let mut root = Node {
        path: PathBuf::from("/"),
        name: "/".to_string(),
        kind: NodeKind::Dir,
        children: BTreeMap::new(),
    };
    for (path, entry) in entries {
        let kind = match entry {
            PendingEntry::Dir { .. } => NodeKind::Dir,
            PendingEntry::File { size, .. } => NodeKind::File { size: *size },
            PendingEntry::Symlink { target, .. } => NodeKind::Symlink {
                target: target.clone(),
            },
            PendingEntry::Device { .. } => NodeKind::Device,
        };
        insert_node(&mut root, path, kind)?;
    }
    // `BTreeMap` already iterates in key (= name) order, so no separate
    // sort pass is needed.
    Ok(root)
}

fn insert_node(root: &mut Node, path: &Path, kind: NodeKind) -> Result<()> {
    let components: Vec<&str> = path
        .to_str()
        .unwrap()
        .trim_matches('/')
        .split('/')
        .filter(|c| !c.is_empty())
        .collect();
    if components.is_empty() {
        return Err(crate::Error::InvalidArgument(
            "iso9660: cannot insert root explicitly".into(),
        ));
    }
    let mut cur = root;
    for (i, comp) in components.iter().enumerate() {
        let is_leaf = i + 1 == components.len();
        let mut full = cur.path.clone();
        full.push(comp);
        let leaf_kind = || -> NodeKind {
            match &kind {
                NodeKind::Dir => NodeKind::Dir,
                NodeKind::File { size } => NodeKind::File { size: *size },
                NodeKind::Symlink { target } => NodeKind::Symlink {
                    target: target.clone(),
                },
                NodeKind::Device => NodeKind::Device,
            }
        };
        if cur.children.contains_key(*comp) {
            if is_leaf {
                cur.children.get_mut(*comp).unwrap().kind = leaf_kind();
            }
            cur = cur.children.get_mut(*comp).unwrap();
        } else {
            let child_kind = if is_leaf { leaf_kind() } else { NodeKind::Dir };
            cur.children.insert(
                (*comp).to_string(),
                Node {
                    path: full,
                    name: (*comp).to_string(),
                    kind: child_kind,
                    children: BTreeMap::new(),
                },
            );
            cur = cur.children.get_mut(*comp).unwrap();
        }
    }
    Ok(())
}

/// Layout results. Every directory in `dir_lba` has its LBA assigned;
/// every file in `file_lba` likewise.
struct Layout {
    /// LBA → byte size map of every directory's record stream.
    dir_lba: BTreeMap<PathBuf, (u32, u64)>,
    /// Same for the Joliet directory stream (parallel tree).
    joliet_dir_lba: BTreeMap<PathBuf, (u32, u64)>,
    /// LBA → byte size of each regular file's extent.
    file_lba: BTreeMap<PathBuf, (u32, u64)>,
    /// LBA of L-path table (PVD).
    l_path_lba: u32,
    /// LBA of M-path table (PVD).
    m_path_lba: u32,
    /// L / M path table LBAs for Joliet.
    joliet_l_path_lba: u32,
    joliet_m_path_lba: u32,
    /// Combined byte size of each path table (PVD).
    path_table_size: u32,
    /// Byte size of Joliet path tables.
    joliet_path_table_size: u32,
    /// LBA of the VDST terminator.
    vdst_lba: u32,
    /// Final total sectors (for PVD's volume_space_size).
    total_sectors: u32,
}

/// Lay out the metadata regions. File data has already been streamed to
/// the device (its LBAs/sizes arrive in `file_lba`); the path tables and
/// directory records are placed starting at `metadata_start`, the first
/// sector past the data area.
fn compute_layout(
    root: &Node,
    opts: &FormatOpts,
    metadata_start: u32,
    file_lba: BTreeMap<PathBuf, (u32, u64)>,
) -> Layout {
    let joliet = opts.joliet;
    // The VDST sits at a fixed sector right after the volume descriptors,
    // just before the data area.
    let vdst_lba = 16 + 1 + if joliet { 1 } else { 0 };
    // Metadata begins past the data area.
    let mut cursor: u32 = metadata_start;

    // Path tables come first in the metadata area. Compute sizes by
    // walking the tree.
    let pvd_dirs = collect_directories(root);
    let path_table_size = path_table_byte_size(&pvd_dirs, /*joliet*/ false);
    let l_path_lba = cursor;
    cursor += sectors_for(u64::from(path_table_size));
    let m_path_lba = cursor;
    cursor += sectors_for(u64::from(path_table_size));

    let (joliet_l_path_lba, joliet_m_path_lba, joliet_path_table_size) = if joliet {
        let size = path_table_byte_size(&pvd_dirs, /*joliet*/ true);
        let l = cursor;
        cursor += sectors_for(u64::from(size));
        let m = cursor;
        cursor += sectors_for(u64::from(size));
        (l, m, size)
    } else {
        (0, 0, 0)
    };

    // Directory record streams (PVD).
    let mut dir_lba: BTreeMap<PathBuf, (u32, u64)> = BTreeMap::new();
    for (path, _) in pvd_dirs.iter() {
        let n = find_node(root, path).unwrap();
        let is_root = path == &PathBuf::from("/");
        let size = dir_records_byte_size(n, opts, /*joliet*/ false, is_root);
        dir_lba.insert(path.clone(), (cursor, size));
        cursor += sectors_for(size);
    }

    // Joliet directory record streams.
    let mut joliet_dir_lba: BTreeMap<PathBuf, (u32, u64)> = BTreeMap::new();
    if joliet {
        for (path, _) in pvd_dirs.iter() {
            let n = find_node(root, path).unwrap();
            let size = dir_records_byte_size(n, opts, /*joliet*/ true, /*is_root*/ false);
            joliet_dir_lba.insert(path.clone(), (cursor, size));
            cursor += sectors_for(size);
        }
    }

    // File data already lives at the front of the image (streamed during
    // add); `file_lba` carries each file's LBA + size. `cursor` now points
    // at the end of all metadata, which is the total image size.

    Layout {
        dir_lba,
        joliet_dir_lba,
        file_lba,
        l_path_lba,
        m_path_lba,
        joliet_l_path_lba,
        joliet_m_path_lba,
        path_table_size,
        joliet_path_table_size,
        vdst_lba,
        total_sectors: cursor,
    }
}

fn collect_directories(root: &Node) -> Vec<(PathBuf, u16)> {
    // Returns (path, parent_index_1based) per ECMA-119 path table
    // ordering — root has parent = 1 (itself). Breadth-first.
    let mut out: Vec<(PathBuf, u16)> = vec![(root.path.clone(), 1)];
    let mut queue: Vec<(usize, &Node)> = vec![(0, root)];
    while let Some((parent_idx_minus1, parent)) = queue.pop() {
        for child in parent.children.values() {
            if matches!(child.kind, NodeKind::Dir) {
                let parent_record = (parent_idx_minus1 + 1) as u16;
                out.push((child.path.clone(), parent_record));
                let new_idx = out.len() - 1;
                queue.push((new_idx, child));
            }
        }
    }
    out
}

fn find_node<'a>(root: &'a Node, path: &Path) -> Option<&'a Node> {
    if path == Path::new("/") {
        return Some(root);
    }
    let comps: Vec<&str> = path
        .to_str()?
        .trim_matches('/')
        .split('/')
        .filter(|c| !c.is_empty())
        .collect();
    let mut cur = root;
    for comp in comps {
        cur = cur.children.get(comp)?;
    }
    Some(cur)
}

fn sectors_for(bytes: u64) -> u32 {
    bytes.div_ceil(SECTOR) as u32
}

/// Compute the byte length of an ECMA-119 path table (sum of every
/// directory's path table record).
fn path_table_byte_size(dirs: &[(PathBuf, u16)], joliet: bool) -> u32 {
    let mut total: u32 = 0;
    for (path, _parent) in dirs {
        let name_bytes = if path == Path::new("/") {
            1u32 // root identifier = single 0x00 byte
        } else {
            let comp = path.file_name().unwrap().to_str().unwrap();
            iso_name_bytes(comp, joliet, /*directory*/ true) as u32
        };
        // Record: 1 (len_di) + 1 (xattr len) + 4 (extent) + 2 (parent)
        //         + name + (name % 2 == 1 ? 1 : 0) pad
        let pad = if name_bytes % 2 == 1 { 1 } else { 0 };
        total += 8 + name_bytes + pad;
    }
    total
}

/// Number of bytes the cooked identifier consumes on disk. For ISO
/// 9660 we use the uppercase 8.3-with-`;1` form; for Joliet, UCS-2 BE.
/// For directories we omit the `;1` suffix.
fn iso_name_bytes(name: &str, joliet: bool, directory: bool) -> usize {
    if joliet {
        // UCS-2 BE, 2 bytes per code unit.
        name.encode_utf16().count() * 2
    } else if directory {
        name.to_ascii_uppercase().len().max(1)
    } else {
        // Files include ";1" version suffix.
        name.to_ascii_uppercase().len() + 2
    }
}

/// Sum of the on-disk directory record bytes for `dir` and its
/// immediate children (i.e. one directory's worth of records, not
/// recursive).
fn dir_records_byte_size(dir: &Node, opts: &FormatOpts, joliet: bool, is_root: bool) -> u64 {
    let mut sum: u64 = 0;
    // "." and ".." entries — both 34 bytes (no name overhead).
    sum += 34 * 2;
    // Root's "." gets the 7-byte SP SUSP indicator under Rock Ridge.
    if is_root && opts.rock_ridge && !joliet {
        sum += 7;
    }
    let want_rr = opts.rock_ridge && !joliet;
    for child in dir.children.values() {
        sum += dir_record_size(child, want_rr, joliet) as u64;
    }
    // Round up to sector — ISO records don't straddle sectors. We
    // approximate by aligning the dir total to a sector boundary.
    align_records_to_sector(sum)
}

fn align_records_to_sector(bytes: u64) -> u64 {
    bytes.div_ceil(SECTOR) * SECTOR
}

/// Length of a single directory record on disk.
fn dir_record_size(node: &Node, rock_ridge: bool, joliet: bool) -> usize {
    let name_bytes = iso_name_bytes(&node.name, joliet, matches!(node.kind, NodeKind::Dir));
    // Pad name to even length (ECMA-119 §9.1.12).
    let name_pad = if name_bytes.is_multiple_of(2) { 1 } else { 0 };
    let base = 33 + name_bytes + name_pad;
    if rock_ridge {
        // Rock Ridge SUA size per child: NM (5 + name) + PX (36) +
        // optional SL for symlinks. The SP marker is on the root's "."
        // record only — `dir_records_byte_size` accounts for that.
        let nm = 5 + node.name.len();
        let px = 36;
        let sl = if let NodeKind::Symlink { target } = &node.kind {
            // SL entry: 5 byte header + 1 flag + each component (2 + bytes).
            let mut s = 5;
            for comp in target.to_str().unwrap_or("").split('/') {
                if comp.is_empty() {
                    s += 2; // ROOT flag
                } else {
                    s += 2 + comp.len();
                }
            }
            s
        } else {
            0
        };
        base + nm + px + sl
    } else {
        base
    }
}

/// Write the metadata: system area, volume descriptors, path tables, and
/// directory records. File data is already on the device (streamed during
/// add), so this never touches the data area.
fn write_image(
    dev: &mut dyn BlockDevice,
    root: &Node,
    layout: &Layout,
    opts: &FormatOpts,
) -> Result<()> {
    // 0. System area — zero bytes 0..16*2048.
    let zero = vec![0u8; SECTOR as usize];
    for s in 0u64..16 {
        dev.write_at(s * SECTOR, &zero)?;
    }

    // 1. PVD at LBA 16.
    let pvd = encode_pvd(layout, opts, root, /*joliet*/ false);
    dev.write_at(PVD_BYTE, &pvd)?;

    // 2. Joliet SVD at LBA 17 if enabled.
    if opts.joliet {
        let svd = encode_pvd(layout, opts, root, /*joliet*/ true);
        dev.write_at(17 * SECTOR, &svd)?;
    }

    // 3. VDST terminator.
    let mut vdst = vec![0u8; SECTOR as usize];
    vdst[0] = 0xFF;
    vdst[1..6].copy_from_slice(b"CD001");
    vdst[6] = 0x01;
    dev.write_at(u64::from(layout.vdst_lba) * SECTOR, &vdst)?;

    // 4. Path tables (L + M) for PVD.
    let dirs = collect_directories(root);
    let (lpath, mpath) = encode_path_tables(&dirs, &layout.dir_lba, /*joliet*/ false);
    dev.write_at(u64::from(layout.l_path_lba) * SECTOR, &lpath)?;
    dev.write_at(u64::from(layout.m_path_lba) * SECTOR, &mpath)?;

    // 5. Joliet path tables.
    if opts.joliet {
        let (lpath, mpath) =
            encode_path_tables(&dirs, &layout.joliet_dir_lba, /*joliet*/ true);
        dev.write_at(u64::from(layout.joliet_l_path_lba) * SECTOR, &lpath)?;
        dev.write_at(u64::from(layout.joliet_m_path_lba) * SECTOR, &mpath)?;
    }

    // 6. PVD directory records — one stream per directory.
    for (path, _) in dirs.iter() {
        let (lba, _size) = layout.dir_lba.get(path).copied().unwrap();
        let node = find_node(root, path).unwrap();
        let parent_path = parent_of(path);
        let parent_node = find_node(root, &parent_path).unwrap();
        let parent_lba = layout.dir_lba.get(&parent_path).copied().unwrap().0;
        let self_lba = lba;
        let is_root = path == &PathBuf::from("/");
        let stream = encode_dir_records(
            node,
            parent_node,
            self_lba,
            parent_lba,
            &layout.dir_lba,
            &layout.file_lba,
            opts,
            /*joliet*/ false,
            /*is_root*/ is_root,
        );
        dev.write_at(u64::from(lba) * SECTOR, &stream)?;
    }

    // 7. Joliet directory records.
    if opts.joliet {
        for (path, _) in dirs.iter() {
            let (lba, _) = layout.joliet_dir_lba.get(path).copied().unwrap();
            let node = find_node(root, path).unwrap();
            let parent_path = parent_of(path);
            let parent_node = find_node(root, &parent_path).unwrap();
            let parent_lba = layout.joliet_dir_lba.get(&parent_path).copied().unwrap().0;
            let stream = encode_dir_records(
                node,
                parent_node,
                lba,
                parent_lba,
                &layout.joliet_dir_lba,
                &layout.file_lba,
                opts,
                /*joliet*/ true,
                /*is_root*/ false,
            );
            dev.write_at(u64::from(lba) * SECTOR, &stream)?;
        }
    }

    // File data needs no pass here: it was streamed straight to the data
    // area (LBAs from `layout.file_lba`) during each `create_file` call.

    Ok(())
}

fn parent_of(p: &Path) -> PathBuf {
    if p == Path::new("/") {
        return PathBuf::from("/");
    }
    p.parent()
        .map(|x| x.to_path_buf())
        .unwrap_or_else(|| PathBuf::from("/"))
}

fn encode_pvd(layout: &Layout, opts: &FormatOpts, root: &Node, joliet: bool) -> Vec<u8> {
    let mut buf = vec![0u8; SECTOR as usize];
    buf[0] = if joliet { 2 } else { 1 };
    buf[1..6].copy_from_slice(b"CD001");
    buf[6] = 1; // version

    // system_id (32) at offset 8, volume_id (32) at offset 40.
    // For Joliet, both are UCS-2 BE space-padded.
    if joliet {
        // Escape sequences at offset 88 (UCS-2 level 3 = "%/E").
        buf[88..91].copy_from_slice(b"%/E");
        let sys = string_to_ucs2_be("");
        write_padded_ucs2(&mut buf[8..40], &sys);
        let vol = string_to_ucs2_be(&opts.volume_id);
        write_padded_ucs2(&mut buf[40..72], &vol);
    } else {
        write_padded_ascii(&mut buf[8..40], "LINUX");
        write_padded_ascii(&mut buf[40..72], &opts.volume_id);
    }

    // volume_space_size (both endian) at offset 80.
    put_both_u32(&mut buf[80..88], layout.total_sectors);
    // logical block size = 2048.
    put_both_u16(&mut buf[128..132], 2048);
    // path table size.
    let pts = if joliet {
        layout.joliet_path_table_size
    } else {
        layout.path_table_size
    };
    put_both_u32(&mut buf[132..140], pts);
    // L and M path table LBAs.
    let (lp, mp) = if joliet {
        (layout.joliet_l_path_lba, layout.joliet_m_path_lba)
    } else {
        (layout.l_path_lba, layout.m_path_lba)
    };
    buf[140..144].copy_from_slice(&lp.to_le_bytes());
    buf[148..152].copy_from_slice(&mp.to_be_bytes());

    // Root directory record at offset 156, exactly 34 bytes.
    let root_dirs = if joliet {
        &layout.joliet_dir_lba
    } else {
        &layout.dir_lba
    };
    let (root_lba, root_size) = root_dirs.get(Path::new("/")).copied().unwrap();
    let root_rec = encode_root_dir_record(root_lba, root_size);
    buf[156..156 + 34].copy_from_slice(&root_rec);

    // Volume set / publisher / preparer / application identifiers.
    if joliet {
        let app = string_to_ucs2_be(&opts.application_id);
        let pub_ = string_to_ucs2_be(&opts.publisher_id);
        let prep = string_to_ucs2_be(&opts.data_preparer_id);
        write_padded_ucs2(&mut buf[190..318], &[]); // volume set
        write_padded_ucs2(&mut buf[318..446], &pub_);
        write_padded_ucs2(&mut buf[446..574], &prep);
        write_padded_ucs2(&mut buf[574..702], &app);
    } else {
        write_padded_ascii(&mut buf[190..318], ""); // volume set
        write_padded_ascii(&mut buf[318..446], &opts.publisher_id);
        write_padded_ascii(&mut buf[446..574], &opts.data_preparer_id);
        write_padded_ascii(&mut buf[574..702], &opts.application_id);
    }
    // Copyright / abstract / bibliographic file ids — zero/space pad.
    write_padded_ascii(&mut buf[702..739], "");
    write_padded_ascii(&mut buf[739..776], "");
    write_padded_ascii(&mut buf[776..813], "");

    // Dates (17 bytes each) — all zero is acceptable per ECMA-119 §8.4.26
    // ("not specified" = all '0' (0x30) digits + 0 GMT offset). mkisofs
    // does emit current time; we use the opts.create_date if set.
    let date_bytes = encode_iso_long_date(opts.create_date);
    buf[813..830].copy_from_slice(&date_bytes); // creation
    buf[830..847].copy_from_slice(&date_bytes); // modification
    // Expiration + effective = "not specified" (all zeros are fine).
    // File structure version
    buf[881] = 1;
    let _ = root;
    buf
}

fn encode_root_dir_record(lba: u32, size: u64) -> [u8; 34] {
    let mut r = [0u8; 34];
    r[0] = 34; // len_dr
    r[1] = 0; // ext attr len
    put_both_u32(&mut r[2..10], lba);
    put_both_u32(&mut r[10..18], size as u32);
    // Date: all zeros = "not specified" (7 bytes at offset 18).
    // flags (offset 25): directory.
    r[25] = 0x02;
    // file_unit_size (26), interleave_gap (27) = 0.
    // volume_seq_number (28..32) = both-endian 1.
    put_both_u16(&mut r[28..32], 1);
    r[32] = 1; // identifier length
    r[33] = 0x00; // root identifier
    r
}

/// Encode an ECMA-119 17-byte long-form date from a UNIX epoch.
fn encode_iso_long_date(epoch: u32) -> [u8; 17] {
    let mut d = [b'0'; 17];
    d[16] = 0; // GMT offset
    if epoch == 0 {
        return d;
    }
    // Days-from-civil — inverse of the read-side decoder. We can be
    // approximate; mkisofs's output uses GM time and zeros below.
    let days = epoch / 86400;
    let h = (epoch / 3600) % 24;
    let m = (epoch / 60) % 60;
    let s = epoch % 60;
    let (y, mo, da) = days_to_ymd(i64::from(days) + 719468);
    let yr = y as u32;
    let s_year = format!("{yr:04}");
    let s_month = format!("{mo:02}");
    let s_day = format!("{da:02}");
    let s_hour = format!("{h:02}");
    let s_min = format!("{m:02}");
    let s_sec = format!("{s:02}");
    d[0..4].copy_from_slice(s_year.as_bytes());
    d[4..6].copy_from_slice(s_month.as_bytes());
    d[6..8].copy_from_slice(s_day.as_bytes());
    d[8..10].copy_from_slice(s_hour.as_bytes());
    d[10..12].copy_from_slice(s_min.as_bytes());
    d[12..14].copy_from_slice(s_sec.as_bytes());
    d[14..16].copy_from_slice(b"00"); // hundredths
    d
}

/// Hinnant's "days from civil" inverse for ISO timestamps.
fn days_to_ymd(z: i64) -> (i64, i64, i64) {
    let era = if z >= 0 { z } else { z - 146096 } / 146097;
    let doe = z - era * 146097;
    let yoe = (doe - doe / 1460 + doe / 36524 - doe / 146096) / 365;
    let y = yoe + era * 400;
    let doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
    let mp = (5 * doy + 2) / 153;
    let d = doy - (153 * mp + 2) / 5 + 1;
    let m = if mp < 10 { mp + 3 } else { mp - 9 };
    let y = if m <= 2 { y + 1 } else { y };
    (y, m, d)
}

fn put_both_u16(buf: &mut [u8], v: u16) {
    buf[0..2].copy_from_slice(&v.to_le_bytes());
    buf[2..4].copy_from_slice(&v.to_be_bytes());
}

fn put_both_u32(buf: &mut [u8], v: u32) {
    buf[0..4].copy_from_slice(&v.to_le_bytes());
    buf[4..8].copy_from_slice(&v.to_be_bytes());
}

fn write_padded_ascii(buf: &mut [u8], s: &str) {
    let bytes = s.as_bytes();
    let n = bytes.len().min(buf.len());
    buf[..n].copy_from_slice(&bytes[..n]);
    for b in &mut buf[n..] {
        *b = b' ';
    }
}

fn write_padded_ucs2(buf: &mut [u8], ucs: &[u8]) {
    let n = ucs.len().min(buf.len() / 2 * 2);
    buf[..n].copy_from_slice(&ucs[..n]);
    // Pad with 0x00 0x20 (space) in UCS-2 BE.
    for chunk in buf[n..].chunks_exact_mut(2) {
        chunk[0] = 0x00;
        chunk[1] = 0x20;
    }
}

/// Encode the L (little-endian) and M (big-endian) path tables for
/// the set of `dirs`. Order in `dirs` is the path-table-index order,
/// so directory N's PT entry uses parent N's 1-based index.
fn encode_path_tables(
    dirs: &[(PathBuf, u16)],
    dir_lba: &BTreeMap<PathBuf, (u32, u64)>,
    joliet: bool,
) -> (Vec<u8>, Vec<u8>) {
    let mut lpath: Vec<u8> = Vec::new();
    let mut mpath: Vec<u8> = Vec::new();
    for (path, parent_idx) in dirs {
        let (lba, _) = dir_lba.get(path).copied().unwrap();
        let name_bytes = if path == Path::new("/") {
            vec![0u8]
        } else {
            let comp = path.file_name().unwrap().to_str().unwrap();
            iso_identifier_bytes(comp, joliet, /*directory*/ true)
        };
        let len_di = name_bytes.len() as u8;
        // L (little-endian) — extent LE then parent LE.
        lpath.push(len_di);
        lpath.push(0); // ext attr length
        lpath.extend_from_slice(&lba.to_le_bytes());
        lpath.extend_from_slice(&parent_idx.to_le_bytes());
        lpath.extend_from_slice(&name_bytes);
        if name_bytes.len() % 2 == 1 {
            lpath.push(0);
        }
        // M (big-endian).
        mpath.push(len_di);
        mpath.push(0);
        mpath.extend_from_slice(&lba.to_be_bytes());
        mpath.extend_from_slice(&parent_idx.to_be_bytes());
        mpath.extend_from_slice(&name_bytes);
        if name_bytes.len() % 2 == 1 {
            mpath.push(0);
        }
    }
    (lpath, mpath)
}

/// Build the cooked identifier bytes for one directory entry / path
/// table record.
fn iso_identifier_bytes(name: &str, joliet: bool, directory: bool) -> Vec<u8> {
    if joliet {
        return string_to_ucs2_be(name);
    }
    let mut s = name.to_ascii_uppercase();
    if !directory {
        s.push_str(";1");
    }
    s.into_bytes()
}

/// Encode the directory record stream for `dir`: "." + ".." + each
/// child. Total length is padded to a sector boundary.
///
/// When `is_root` is true and Rock Ridge is active on this stream
/// (PVD, not Joliet), the "." record carries an extra 7-byte `SP`
/// System Use entry per IEEE P1282 §5.3. The `SP` entry announces to
/// conformant SUSP parsers (e.g. `isoinfo -d`) that Rock Ridge entries
/// follow; without it, those parsers report "No SUSP/Rock Ridge
/// present" and skip the per-record `NM` / `PX` / `SL`.
#[allow(clippy::too_many_arguments)]
fn encode_dir_records(
    dir: &Node,
    parent: &Node,
    self_lba: u32,
    parent_lba: u32,
    dir_lba: &BTreeMap<PathBuf, (u32, u64)>,
    file_lba: &BTreeMap<PathBuf, (u32, u64)>,
    opts: &FormatOpts,
    joliet: bool,
    is_root: bool,
) -> Vec<u8> {
    let mut buf: Vec<u8> = Vec::new();
    // "." entry — for the root directory under Rock Ridge we append the
    // SP System Use entry so SUSP-aware parsers pick up the RR fields.
    let self_size = dir_lba.get(&dir.path).copied().unwrap().1;
    let want_sp_on_dot = is_root && opts.rock_ridge && !joliet;
    if want_sp_on_dot {
        buf.extend_from_slice(&encode_dot_record_with_sp(self_lba, self_size, 0x00));
    } else {
        buf.extend_from_slice(&encode_dot_record(self_lba, self_size, 0x00));
    }
    // ".." entry
    let parent_size = dir_lba.get(&parent.path).copied().unwrap().1;
    buf.extend_from_slice(&encode_dot_record(parent_lba, parent_size, 0x01));

    for child in dir.children.values() {
        let rec = encode_child_record(child, dir_lba, file_lba, opts, joliet);
        // Records can't straddle a 2K boundary.
        let sector_used = buf.len() as u64 % SECTOR;
        if sector_used + rec.len() as u64 > SECTOR {
            let pad = (SECTOR - sector_used) as usize;
            buf.extend(std::iter::repeat_n(0u8, pad));
        }
        buf.extend_from_slice(&rec);
    }
    // Pad final sector.
    let used = buf.len() as u64 % SECTOR;
    if used != 0 {
        let pad = (SECTOR - used) as usize;
        buf.extend(std::iter::repeat_n(0u8, pad));
    }
    buf
}

fn encode_dot_record(lba: u32, size: u64, ident: u8) -> [u8; 34] {
    let mut r = [0u8; 34];
    r[0] = 34;
    put_both_u32(&mut r[2..10], lba);
    put_both_u32(&mut r[10..18], size as u32);
    r[25] = 0x02; // directory flag
    put_both_u16(&mut r[28..32], 1);
    r[32] = 1;
    r[33] = ident;
    r
}

/// The 7-byte SP entry that lives in the SUA of the root's "." record.
/// Layout per IEEE P1282 §5.3 / SUSP §5.3:
///   "SP" + len=7 + version=1 + 0xBE + 0xEF + bytes_skipped=0
const SP_ENTRY: [u8; 7] = *b"SP\x07\x01\xBE\xEF\x00";

/// Encode the "." record with an SP System Use entry appended. The
/// identifier is one byte (0x00) so the SUA starts at offset 34 with no
/// padding (ECMA-119 §9.1.12). Total length: 34 + 7 = 41 bytes.
fn encode_dot_record_with_sp(lba: u32, size: u64, ident: u8) -> [u8; 41] {
    let mut r = [0u8; 41];
    r[0] = 41; // len_dr including SUA
    put_both_u32(&mut r[2..10], lba);
    put_both_u32(&mut r[10..18], size as u32);
    r[25] = 0x02; // directory flag
    put_both_u16(&mut r[28..32], 1);
    r[32] = 1;
    r[33] = ident;
    // SUA starts at offset 34 (len_fi=1 is odd → no pad byte).
    r[34..41].copy_from_slice(&SP_ENTRY);
    r
}

fn encode_child_record(
    child: &Node,
    dir_lba: &BTreeMap<PathBuf, (u32, u64)>,
    file_lba: &BTreeMap<PathBuf, (u32, u64)>,
    opts: &FormatOpts,
    joliet: bool,
) -> Vec<u8> {
    let (lba, size) = match &child.kind {
        NodeKind::Dir => dir_lba.get(&child.path).copied().unwrap_or((0, 0)),
        NodeKind::File { size } => file_lba.get(&child.path).copied().unwrap_or((0, *size)),
        // Symlinks / devices have no data extent; lba=0, size=0. The
        // file kind (regular / symlink / device) is encoded via Rock
        // Ridge entries in the SUA — fsck and the kernel iso9660 driver
        // both treat a zero-length zero-LBA record as "metadata only".
        _ => (0, 0),
    };

    let name_bytes = iso_identifier_bytes(&child.name, joliet, matches!(child.kind, NodeKind::Dir));
    let len_fi = name_bytes.len() as u8;
    let name_pad = if name_bytes.len().is_multiple_of(2) {
        1
    } else {
        0
    };

    let want_rr = opts.rock_ridge && !joliet;
    let mut sua: Vec<u8> = Vec::new();
    if want_rr {
        // NM entry.
        sua.extend_from_slice(b"NM");
        let nm_len = 5 + child.name.len();
        sua.push(nm_len as u8);
        sua.push(1); // version
        sua.push(0); // flags
        sua.extend_from_slice(child.name.as_bytes());
        // PX entry (mode + nlink + uid + gid, both-endian).
        sua.extend_from_slice(b"PX");
        sua.push(36); // len
        sua.push(1); // version
        let mode: u32 = match &child.kind {
            NodeKind::Dir => 0o040755,
            NodeKind::File { .. } => 0o100644,
            NodeKind::Symlink { .. } => 0o120777,
            NodeKind::Device => 0o020644,
        };
        let mut both = [0u8; 32];
        put_both_u32(&mut both[0..8], mode);
        put_both_u32(&mut both[8..16], 1); // nlink
        put_both_u32(&mut both[16..24], 0); // uid
        put_both_u32(&mut both[24..32], 0); // gid
        sua.extend_from_slice(&both);
        // SL entry for symlinks.
        if let NodeKind::Symlink { target } = &child.kind {
            let mut comps_bytes: Vec<u8> = Vec::new();
            for comp in target.to_str().unwrap_or("").split('/') {
                if comp.is_empty() {
                    // ROOT marker (flag 0x08, len 0).
                    comps_bytes.push(0x08);
                    comps_bytes.push(0);
                } else {
                    let bytes = comp.as_bytes();
                    comps_bytes.push(0x00);
                    comps_bytes.push(bytes.len() as u8);
                    comps_bytes.extend_from_slice(bytes);
                }
            }
            sua.extend_from_slice(b"SL");
            sua.push((5 + comps_bytes.len()) as u8);
            sua.push(1); // version
            sua.push(0); // flags
            sua.extend_from_slice(&comps_bytes);
        }
    }

    let base = 33 + name_bytes.len() + name_pad;
    let total = base + sua.len();
    let mut rec = vec![0u8; total];
    rec[0] = total as u8;
    put_both_u32(&mut rec[2..10], lba);
    put_both_u32(&mut rec[10..18], size as u32);
    // Date — 7 bytes at offset 18, all zero = "not specified".
    let flags = if matches!(child.kind, NodeKind::Dir) {
        0x02
    } else {
        0x00
    };
    rec[25] = flags;
    put_both_u16(&mut rec[28..32], 1); // volume seq
    rec[32] = len_fi;
    rec[33..33 + name_bytes.len()].copy_from_slice(&name_bytes);
    let sua_start = base;
    rec[sua_start..sua_start + sua.len()].copy_from_slice(&sua);
    rec
}

fn normalize(path: &Path) -> Result<PathBuf> {
    let s = path
        .to_str()
        .ok_or_else(|| crate::Error::InvalidArgument("iso9660: non-UTF-8 path".into()))?;
    let trimmed = s.trim_end_matches('/');
    if trimmed.is_empty() || trimmed == "/" {
        return Err(crate::Error::InvalidArgument(
            "iso9660: cannot create root explicitly".into(),
        ));
    }
    if !trimmed.starts_with('/') {
        return Err(crate::Error::InvalidArgument(format!(
            "iso9660: path must be absolute: {trimmed}"
        )));
    }
    Ok(PathBuf::from(trimmed))
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::block::{BlockDevice, MemoryBackend};
    use crate::fs::FileMeta;
    use std::io::Cursor;

    #[test]
    fn root_dot_record_carries_sp_marker() {
        // Build a minimal RR-enabled image, then re-read the first
        // directory record of the root extent and confirm its SUA opens
        // with the canonical SP signature.
        let mut dev = MemoryBackend::new(4 * 1024 * 1024);
        let opts = FormatOpts {
            volume_id: "SPCHECK".into(),
            joliet: false,
            rock_ridge: true,
            ..FormatOpts::default()
        };
        let mut w = Iso9660Writer::new(opts);
        w.add_dir(Path::new("/sub"), FileMeta::default()).unwrap();
        w.flush(&mut dev).unwrap();

        let iso = super::super::Iso9660::open(&mut dev).unwrap();
        // Root extent LBA from the PVD's embedded root dir record.
        let root_lba = iso.pvd.root.extent_lba;
        let mut buf = vec![0u8; super::super::SECTOR_SIZE as usize];
        dev.read_at(
            u64::from(root_lba) * u64::from(super::super::SECTOR_SIZE),
            &mut buf,
        )
        .unwrap();
        let len_dr = buf[0] as usize;
        let dot = super::super::directory::DirRecord::decode(&buf[..len_dr]).unwrap();
        // Identifier is the single 0x00 byte for "." per ECMA-119.
        assert_eq!(dot.identifier, vec![0x00]);
        // SUA begins with the SP entry.
        assert!(
            dot.system_use.len() >= 7,
            "root '.' record SUA too short: {} bytes",
            dot.system_use.len(),
        );
        assert_eq!(
            &dot.system_use[..7],
            b"SP\x07\x01\xBE\xEF\x00",
            "root '.' SUA does not begin with the SP marker",
        );

        // Sanity: child records on the root must NOT carry SP. Walk to
        // the second record in the stream and confirm its SUA starts
        // with NM (or anything else but SP).
        let second_off = len_dr;
        let len2 = buf[second_off] as usize;
        let dotdot =
            super::super::directory::DirRecord::decode(&buf[second_off..second_off + len2])
                .unwrap();
        assert!(
            dotdot.system_use.len() < 2 || &dotdot.system_use[..2] != b"SP",
            "'..' record unexpectedly carries an SP entry",
        );
    }

    #[test]
    fn write_then_read_round_trip() {
        let mut dev = MemoryBackend::new(8 * 1024 * 1024);
        let opts = FormatOpts {
            volume_id: "ROUNDTRIP".into(),
            ..FormatOpts::default()
        };
        let mut w = Iso9660Writer::new(opts);
        w.add_dir(Path::new("/etc"), FileMeta::default()).unwrap();
        let body = b"hello world\n".to_vec();
        let src = FileSource::Reader {
            reader: Box::new(Cursor::new(body.clone())),
            len: body.len() as u64,
        };
        w.add_file(&mut dev, Path::new("/etc/conf"), src, FileMeta::default())
            .unwrap();
        w.flush(&mut dev).unwrap();

        // Re-open through the reader.
        let iso = super::super::Iso9660::open(&mut dev).unwrap();
        assert_eq!(iso.volume_id(), "ROUNDTRIP");
        let root = iso.list_path(&mut dev, "/").unwrap();
        let names: Vec<_> = root.iter().map(|d| d.name.clone()).collect();
        assert!(names.iter().any(|n| n == "etc"));
        let etc = iso.list_path(&mut dev, "/etc").unwrap();
        assert!(etc.iter().any(|d| d.name == "conf"));
    }
}