wasi_virt_layer 0.4.0

A virtual layer for WASI modules
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
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
#![cfg(feature = "dynamic-fs")]

use crate::__private::wasip1;
use crate::memory::{WasmAccessDynCompatible, WasmAccessDynCompatibleRaw, WasmAccessName};
use crate::wasi::file::{BoxedInode, DerefToStrCustom, InodeIdCommon, Wasip1LFSBaseWrapper};
use crate::wasi::file::{DynamicLFS, Wasip1DynCompatibleLFS, Wasip1LFSBase};
use crate::{
    memory::{WasmAccess, WasmPathAccess, WasmPathComponent},
    wasi::file::{
        DefaultAddInfo, FilestatWithoutDevice, WasiAddInfo,
        dynamic::inode::{DirMap, Inode, InodeData, InodeId, InodeMetadata},
        stdio::StdIO,
    },
};
use alloc::{string::String, vec::Vec};
use smallstr::SmallString;

#[cfg(feature = "threads")]
use dashmap::DashMap;

#[cfg(not(feature = "threads"))]
use alloc::collections::BTreeMap;

#[cfg(not(feature = "threads"))]
use core::cell::UnsafeCell;

/// A local file system that allows runtime modifications
/// This structure implements many file operations.
/// However, it provides direct access, and there are no functions such as `open_file` to open files.
/// Therefore, operations on open files, such as moving the file cursor, are not possible.
/// Conversely, by using inodes, you can directly access files at deep levels.
pub struct StandardDynamicLFS<
    StdIo: StdIO + 'static,
    AddInfo: WasiAddInfo + 'static = DefaultAddInfo,
> {
    #[cfg(feature = "threads")]
    pub inodes: DashMap<InodeId, Inode<AddInfo>>,
    #[cfg(not(feature = "threads"))]
    pub inodes: UnsafeCell<BTreeMap<InodeId, Inode<AddInfo>>>,
    #[cfg(feature = "threads")]
    pub preopens: DashMap<InodeId, String>,
    #[cfg(not(feature = "threads"))]
    pub preopens: UnsafeCell<BTreeMap<InodeId, String>>,
    #[cfg(feature = "threads")]
    pub next_inode: std::sync::atomic::AtomicU32,
    #[cfg(not(feature = "threads"))]
    pub next_inode: UnsafeCell<InodeId>,
    __marker: core::marker::PhantomData<StdIo>,
}

impl<StdIo: StdIO + 'static, AddInfo: WasiAddInfo + 'static> core::fmt::Debug
    for StandardDynamicLFS<StdIo, AddInfo>
{
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        let mut debug_struct = f.debug_struct("StandardDynamicLFS");
        #[cfg(feature = "threads")]
        {
            debug_struct.field("inodes", &self.inodes);
            debug_struct.field("preopens", &self.preopens);
            debug_struct.field("next_inode", &self.next_inode);
        }
        #[cfg(not(feature = "threads"))]
        {
            debug_struct.field("inodes", unsafe { &*self.inodes.get() });
            debug_struct.field("preopens", unsafe { &*self.preopens.get() });
            debug_struct.field("next_inode", unsafe { &*self.next_inode.get() });
        }
        debug_struct.finish()
    }
}

impl<StdIo: StdIO + 'static, AddInfo: WasiAddInfo + Default + 'static>
    StandardDynamicLFS<StdIo, AddInfo>
{
    pub fn add_preopen(&self, name: impl Into<String>) -> InodeId {
        let name_str = name.into();

        let new_node = Inode {
            meta: InodeMetadata::new(
                wasip1::FILETYPE_DIRECTORY,
                wasip1::RIGHTS_FD_READ
                    | wasip1::RIGHTS_FD_READDIR
                    | wasip1::RIGHTS_FD_WRITE
                    | wasip1::RIGHTS_PATH_CREATE_DIRECTORY
                    | wasip1::RIGHTS_PATH_CREATE_FILE
                    | wasip1::RIGHTS_PATH_FILESTAT_GET
                    | wasip1::RIGHTS_PATH_FILESTAT_SET_SIZE
                    | wasip1::RIGHTS_PATH_FILESTAT_SET_TIMES
                    | wasip1::RIGHTS_PATH_LINK_SOURCE
                    | wasip1::RIGHTS_PATH_LINK_TARGET
                    | wasip1::RIGHTS_PATH_OPEN
                    | wasip1::RIGHTS_PATH_READLINK
                    | wasip1::RIGHTS_PATH_REMOVE_DIRECTORY
                    | wasip1::RIGHTS_PATH_RENAME_SOURCE
                    | wasip1::RIGHTS_PATH_RENAME_TARGET
                    | wasip1::RIGHTS_PATH_SYMLINK
                    | wasip1::RIGHTS_PATH_UNLINK_FILE,
                AddInfo::default(),
            ),
            data: InodeData::Dir(DirMap::new()),
        };

        let inode = self.allocate_inode(new_node);

        self.modify_inode(&inode, |node| {
            if let InodeData::Dir(map) = &mut node.data {
                map.insert(SmallString::from_str("."), inode);
                map.insert(SmallString::from_str(".."), inode);
            }
        });

        #[cfg(feature = "threads")]
        {
            self.preopens.insert(inode, name_str);
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &mut *self.preopens.get() }.insert(inode, name_str);
        }

        inode
    }

    pub fn add_dir(&self, parent: InodeId, name: &str) -> Result<InodeId, wasip1::Errno> {
        let mut map = DirMap::new();
        map.insert(SmallString::from_str("."), 0); // updated below
        map.insert(SmallString::from_str(".."), parent);
        let new_inode = Inode {
            meta: InodeMetadata::new(
                wasip1::FILETYPE_DIRECTORY,
                wasip1::RIGHTS_FD_READ
                    | wasip1::RIGHTS_FD_READDIR
                    | wasip1::RIGHTS_FD_WRITE
                    | wasip1::RIGHTS_PATH_CREATE_DIRECTORY
                    | wasip1::RIGHTS_PATH_CREATE_FILE
                    | wasip1::RIGHTS_PATH_FILESTAT_GET
                    | wasip1::RIGHTS_PATH_FILESTAT_SET_SIZE
                    | wasip1::RIGHTS_PATH_FILESTAT_SET_TIMES
                    | wasip1::RIGHTS_PATH_LINK_SOURCE
                    | wasip1::RIGHTS_PATH_LINK_TARGET
                    | wasip1::RIGHTS_PATH_OPEN
                    | wasip1::RIGHTS_PATH_READLINK
                    | wasip1::RIGHTS_PATH_REMOVE_DIRECTORY
                    | wasip1::RIGHTS_PATH_RENAME_SOURCE
                    | wasip1::RIGHTS_PATH_RENAME_TARGET
                    | wasip1::RIGHTS_PATH_SYMLINK
                    | wasip1::RIGHTS_PATH_UNLINK_FILE,
                AddInfo::default(),
            ),
            data: InodeData::Dir(map),
        };
        let new_id = self.allocate_inode(new_inode);

        self.modify_inode(&new_id, |node| {
            if let InodeData::Dir(map) = &mut node.data {
                map.insert(SmallString::from_str("."), new_id);
            }
        });

        let success = self
            .modify_inode(&parent, |node| {
                if let InodeData::Dir(parent_map) = &mut node.data {
                    parent_map.insert(SmallString::from_str(name), new_id);
                    true
                } else {
                    false
                }
            })
            .unwrap_or(false);

        if !success {
            return Err(wasip1::ERRNO_NOTDIR);
        }
        Ok(new_id)
    }

    pub fn add_file(
        &self,
        parent: InodeId,
        name: &str,
        content: Vec<u8>,
    ) -> Result<InodeId, wasip1::Errno> {
        let new_inode = Inode {
            meta: InodeMetadata::new(
                wasip1::FILETYPE_REGULAR_FILE,
                wasip1::RIGHTS_FD_READ | wasip1::RIGHTS_FD_WRITE | wasip1::RIGHTS_FD_FILESTAT_GET,
                AddInfo::default(),
            ),
            data: InodeData::File(content),
        };
        let new_id = self.allocate_inode(new_inode);

        let success = self
            .modify_inode(&parent, |node| {
                if let InodeData::Dir(parent_map) = &mut node.data {
                    parent_map.insert(SmallString::from_str(name), new_id);
                    true
                } else {
                    false
                }
            })
            .unwrap_or(false);

        if !success {
            return Err(wasip1::ERRNO_NOTDIR);
        }
        Ok(new_id)
    }
}

impl<StdIo: StdIO + 'static, AddInfo: WasiAddInfo + 'static> StandardDynamicLFS<StdIo, AddInfo> {
    /// Creates a new StandardDynamicLFS without any pre-existing inodes.
    /// Root directories and preopens should be added via `add_preopen`.
    pub fn new() -> Self {
        Self {
            #[cfg(feature = "threads")]
            inodes: DashMap::new(),
            #[cfg(not(feature = "threads"))]
            inodes: UnsafeCell::new(BTreeMap::new()),
            #[cfg(feature = "threads")]
            preopens: DashMap::new(),
            #[cfg(not(feature = "threads"))]
            preopens: UnsafeCell::new(BTreeMap::new()),
            #[cfg(feature = "threads")]
            next_inode: std::sync::atomic::AtomicU32::new(0),
            #[cfg(not(feature = "threads"))]
            next_inode: UnsafeCell::new(0),
            __marker: core::marker::PhantomData,
        }
    }

    fn read_inode<F, R>(&self, id: &InodeId, f: F) -> Option<R>
    where
        F: FnOnce(&Inode<AddInfo>) -> R,
    {
        #[cfg(feature = "threads")]
        {
            self.inodes.get(id).map(|i| f(&i))
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &*self.inodes.get() }.get(id).map(f)
        }
    }

    fn modify_inode<F, R>(&self, id: &InodeId, f: F) -> Option<R>
    where
        F: FnOnce(&mut Inode<AddInfo>) -> R,
    {
        #[cfg(feature = "threads")]
        {
            self.inodes.get_mut(id).map(|mut i| f(&mut i))
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &mut *self.inodes.get() }.get_mut(id).map(|i| f(i))
        }
    }

    fn insert_inode(&self, id: InodeId, inode: Inode<AddInfo>) {
        #[cfg(feature = "threads")]
        {
            self.inodes.insert(id, inode);
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &mut *self.inodes.get() }.insert(id, inode);
        }
    }

    fn remove_inode(&self, id: &InodeId) -> Option<Inode<AddInfo>> {
        #[cfg(feature = "threads")]
        {
            self.inodes.remove(id).map(|(_, i)| i)
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &mut *self.inodes.get() }.remove(id)
        }
    }

    pub fn read_file(&self, inode: InodeId) -> Result<alloc::vec::Vec<u8>, wasip1::Errno> {
        self.read_inode(&inode, |node| {
            if let InodeData::File(ref vec) = node.data {
                Ok(vec.clone())
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    pub fn write_file(
        &self,
        inode: InodeId,
        content: alloc::vec::Vec<u8>,
    ) -> Result<(), wasip1::Errno> {
        self.modify_inode(&inode, |node| {
            if let InodeData::File(ref mut vec) = node.data {
                *vec = content;
                Ok(())
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    pub fn metadata(&self, inode: InodeId) -> Result<InodeMetadata<AddInfo>, wasip1::Errno>
    where
        AddInfo: Clone,
    {
        self.read_inode(&inode, |node| Ok(node.meta.clone()))
            .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    pub fn set_metadata(
        &self,
        inode: InodeId,
        metadata: InodeMetadata<AddInfo>,
    ) -> Result<(), wasip1::Errno> {
        self.modify_inode(&inode, |node| {
            node.meta = metadata;
            Ok(())
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    pub fn read_dir(
        &self,
        inode: InodeId,
    ) -> Result<alloc::vec::Vec<(alloc::string::String, InodeId)>, wasip1::Errno> {
        self.read_inode(&inode, |node| {
            if let InodeData::Dir(ref map) = node.data {
                Ok(map
                    .iter()
                    .map(|(name, id)| (alloc::string::String::from(name.as_str()), *id))
                    .collect())
            } else {
                Err(wasip1::ERRNO_NOTDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    pub fn remove_file(&self, parent: InodeId, name: &str) -> Result<(), wasip1::Errno> {
        let name_small = SmallString::<[u8; 32]>::from_str(name);
        let target_id = self
            .read_inode(&parent, |node| {
                if let InodeData::Dir(ref map) = node.data {
                    map.get(&name_small).copied().ok_or(wasip1::ERRNO_NOENT)
                } else {
                    Err(wasip1::ERRNO_NOTDIR)
                }
            })
            .unwrap_or(Err(wasip1::ERRNO_BADF))?;

        let is_file = self
            .read_inode(&target_id, |node| {
                node.meta.filetype != wasip1::FILETYPE_DIRECTORY
            })
            .unwrap_or(false);

        if !is_file {
            return Err(wasip1::ERRNO_ISDIR);
        }

        self.modify_inode(&parent, |node| {
            if let InodeData::Dir(ref mut map) = node.data {
                map.remove(&name_small);
            }
        });

        self.remove_inode(&target_id);
        Ok(())
    }

    pub fn remove_dir(&self, parent: InodeId, name: &str) -> Result<(), wasip1::Errno> {
        let name_small = SmallString::<[u8; 32]>::from_str(name);
        let target_id = self
            .read_inode(&parent, |node| {
                if let InodeData::Dir(ref map) = node.data {
                    map.get(&name_small).copied().ok_or(wasip1::ERRNO_NOENT)
                } else {
                    Err(wasip1::ERRNO_NOTDIR)
                }
            })
            .unwrap_or(Err(wasip1::ERRNO_BADF))?;

        let (is_dir, is_empty) = self
            .read_inode(&target_id, |node| {
                if let InodeData::Dir(ref map) = node.data {
                    let mut empty = true;
                    for key in map.keys() {
                        if key.as_str() != "." && key.as_str() != ".." {
                            empty = false;
                            break;
                        }
                    }
                    (true, empty)
                } else {
                    (false, false)
                }
            })
            .unwrap_or((false, false));

        if !is_dir {
            return Err(wasip1::ERRNO_NOTDIR);
        }
        if !is_empty {
            return Err(wasip1::ERRNO_NOTEMPTY);
        }

        self.modify_inode(&parent, |node| {
            if let InodeData::Dir(ref mut map) = node.data {
                map.remove(&name_small);
            }
        });

        self.remove_inode(&target_id);
        Ok(())
    }

    pub fn add_symlink(
        &self,
        parent: InodeId,
        name: &str,
        target: &str,
    ) -> Result<InodeId, wasip1::Errno> {
        let new_inode = Inode {
            meta: InodeMetadata::new(
                wasip1::FILETYPE_SYMBOLIC_LINK,
                wasip1::RIGHTS_FD_READ | wasip1::RIGHTS_PATH_READLINK,
                AddInfo::DEFAULT,
            ),
            data: InodeData::Symlink(alloc::string::String::from(target)),
        };
        let new_id = self.allocate_inode(new_inode);

        let success = self
            .modify_inode(&parent, |node| {
                if let InodeData::Dir(parent_map) = &mut node.data {
                    parent_map.insert(SmallString::from_str(name), new_id);
                    true
                } else {
                    false
                }
            })
            .unwrap_or(false);

        if !success {
            self.remove_inode(&new_id);
            return Err(wasip1::ERRNO_NOTDIR);
        }
        Ok(new_id)
    }

    pub fn rename(
        &self,
        old_parent: InodeId,
        old_name: &str,
        new_parent: InodeId,
        new_name: &str,
    ) -> Result<(), wasip1::Errno> {
        let old_name_small = SmallString::<[u8; 32]>::from_str(old_name);
        let new_name_small = SmallString::<[u8; 32]>::from_str(new_name);

        let target_id = self
            .read_inode(&old_parent, |node| {
                if let InodeData::Dir(ref map) = node.data {
                    map.get(&old_name_small).copied().ok_or(wasip1::ERRNO_NOENT)
                } else {
                    Err(wasip1::ERRNO_NOTDIR)
                }
            })
            .unwrap_or(Err(wasip1::ERRNO_BADF))?;

        // 1. Try to insert into new parent
        let success_insert = self
            .modify_inode(&new_parent, |node| {
                if let InodeData::Dir(ref mut map) = node.data {
                    map.insert(new_name_small.clone(), target_id);
                    true
                } else {
                    false
                }
            })
            .unwrap_or(false);

        if !success_insert {
            return Err(wasip1::ERRNO_NOTDIR);
        }

        // 2. Remove from old parent
        let success_remove = self
            .modify_inode(&old_parent, |node| {
                if let InodeData::Dir(ref mut map) = node.data {
                    map.remove(&old_name_small).is_some()
                } else {
                    false
                }
            })
            .unwrap_or(false);

        if !success_remove {
            // Revert insert if remove failed
            self.modify_inode(&new_parent, |node| {
                if let InodeData::Dir(ref mut map) = node.data {
                    map.remove(&new_name_small);
                }
            });
            return Err(wasip1::ERRNO_BADF);
        }

        // 3. Update ".." if it's a directory
        self.modify_inode(&target_id, |node| {
            if let InodeData::Dir(ref mut map) = node.data {
                map.insert(SmallString::from_str(".."), new_parent);
            }
        });

        Ok(())
    }

    pub fn get_inode_by_path_str(&self, start_inode: InodeId, path: &str) -> Option<InodeId> {
        let mut current_inode = start_inode;
        for component in path.split('/') {
            if component.is_empty() || component == "." {
                continue;
            } else if component == ".." {
                let parent = self
                    .read_inode(&current_inode, |node| match &node.data {
                        InodeData::Dir(map) => map.get(&SmallString::from_str("..")).copied(),
                        _ => None,
                    })
                    .flatten();

                if let Some(parent_id) = parent {
                    current_inode = parent_id;
                } else {
                    return None;
                }
            } else {
                let name = SmallString::<[u8; 32]>::from_str(component);
                let child = self
                    .read_inode(&current_inode, |node| match &node.data {
                        InodeData::Dir(map) => map.get(&name).copied(),
                        _ => None,
                    })
                    .flatten();

                if let Some(child_id) = child {
                    current_inode = child_id;
                } else {
                    return None;
                }
            }
        }
        Some(current_inode)
    }

    fn read_preopen<F, R>(&self, inode: &InodeId, f: F) -> Option<R>
    where
        F: FnOnce(&String) -> R,
    {
        #[cfg(feature = "threads")]
        {
            self.preopens.get(inode).map(|s| f(&s))
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &*self.preopens.get() }.get(inode).map(f)
        }
    }

    pub fn allocate_inode(&self, inode: Inode<AddInfo>) -> InodeId {
        let id;
        #[cfg(feature = "threads")]
        {
            id = self
                .next_inode
                .fetch_add(1, core::sync::atomic::Ordering::SeqCst) as InodeId;
        }
        #[cfg(not(feature = "threads"))]
        {
            id = unsafe { *self.next_inode.get() };
            unsafe { *self.next_inode.get() += 1 };
        }
        self.insert_inode(id, inode);
        id
    }

    pub fn update_next_inode(&self, min_val: InodeId) {
        #[cfg(feature = "threads")]
        {
            let mut current = self.next_inode.load(core::sync::atomic::Ordering::SeqCst);
            while current < min_val as u32 {
                match self.next_inode.compare_exchange_weak(
                    current,
                    min_val as u32,
                    core::sync::atomic::Ordering::SeqCst,
                    core::sync::atomic::Ordering::Relaxed,
                ) {
                    Ok(_) => break,
                    Err(x) => current = x,
                }
            }
        }
        #[cfg(not(feature = "threads"))]
        {
            let current = unsafe { &mut *self.next_inode.get() };
            if *current < min_val {
                *current = min_val;
            }
        }
    }

    fn get_inode_for_path_inner(
        &self,
        dir_ino: &InodeId,
        path: impl crate::memory::WasmPathAccessCommon,
    ) -> Option<InodeId> {
        use crate::memory::WasmPathComponentCommon;
        let mut current_inode = *dir_ino;

        for component in path.components_common() {
            if component.as_cur_dir() {
                continue;
            } else if component.as_parent_dir() {
                let parent = self
                    .read_inode(&current_inode, |node| match &node.data {
                        InodeData::Dir(map) => map.get(&SmallString::from_str("..")).copied(),
                        _ => None,
                    })
                    .flatten();

                if let Some(parent_id) = parent {
                    current_inode = parent_id;
                } else {
                    return None;
                }
            } else if component.as_root_dir() {
                current_inode = 0;
            } else if let Some(name_iter) = component.as_normal() {
                let mut s = SmallString::<[u8; 32]>::new();
                for b in name_iter {
                    s.push(b as char);
                }
                let child = self
                    .read_inode(&current_inode, |node| match &node.data {
                        InodeData::Dir(map) => map.get(&s).copied(),
                        _ => None,
                    })
                    .flatten();

                if let Some(child_id) = child {
                    current_inode = child_id;
                } else {
                    return None;
                }
            }
        }
        Some(current_inode)
    }

    pub fn get_inode_for_path<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        dir_ino: &InodeId,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Option<InodeId> {
        let path = WasmPathAccess::<Wasm>::new(path_ptr, path_len);
        self.get_inode_for_path_inner(dir_ino, path)
    }

    pub fn get_inode_for_path_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        dir_ino: &InodeId,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Option<InodeId> {
        let path = crate::memory::WasmPathAccessDynCompatible::new(access, path_ptr, path_len);
        self.get_inode_for_path_inner(dir_ino, path)
    }

    pub fn resolve_inode(&self, inode: InodeId, _depth: usize) -> Option<InodeId> {
        Some(inode)
    }
}

impl<StdIo: StdIO + 'static, AddInfo: WasiAddInfo + Default + 'static> Wasip1LFSBase
    for StandardDynamicLFS<StdIo, AddInfo>
{
    type Inode = InodeId;

    fn fd_write_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        self.modify_inode(&inode, |inode_entry| {
            if let InodeData::File(ref mut vec) = inode_entry.data {
                let mut buf = alloc::vec![0u8; data_len];
                Wasm::memcpy_to(&mut buf, data);
                vec.extend_from_slice(&buf);
                let mtim = inode_entry.meta.add_info.modification_time();
                inode_entry.meta.add_info.set_modification_time(mtim + 1); // Simplistic time update
                Ok(data_len)
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_write_stdout_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::write_direct::<Wasm>(data, data_len)
        }
        #[cfg(feature = "multi_memory")]
        {
            let mut buf = alloc::vec![0u8; data_len];
            Wasm::memcpy_to(&mut buf, data);
            StdIo::write(&buf)
        }
    }

    fn fd_write_stderr_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::ewrite_direct::<Wasm>(data, data_len)
        }
        #[cfg(feature = "multi_memory")]
        {
            let mut buf = alloc::vec![0u8; data_len];
            Wasm::memcpy_to(&mut buf, data);
            StdIo::ewrite(&buf)
        }
    }

    fn is_dir(&self, inode: &Self::Inode) -> bool {
        self.read_inode(&inode, |i| matches!(i.data, InodeData::Dir(_)))
            .unwrap_or(false)
    }

    fn fd_readdir_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        buf: *mut u8,
        buf_len: usize,
        cookie: wasip1::Dircookie,
    ) -> Result<(wasip1::Size, wasip1::Dircookie), wasip1::Errno> {
        let dir_map = self
            .read_inode(&inode, |i| match &i.data {
                InodeData::Dir(map) => Some(map.clone()),
                _ => None,
            })
            .flatten()
            .ok_or(wasip1::ERRNO_NOTDIR)?;

        let mut current_cookie = cookie as usize;
        let mut total_written = 0;
        let mut out_ptr = buf;
        let mut rem_len = buf_len;

        for (i, (name, &child_inode)) in dir_map.iter().enumerate() {
            if i < current_cookie {
                continue;
            }
            let filetype = self
                .read_inode(&child_inode, |c| c.meta.filetype)
                .ok_or(wasip1::ERRNO_NOENT)?;
            let name_bytes = name.as_bytes();
            let entry = wasip1::Dirent {
                d_next: (i + 1) as u64,
                d_ino: child_inode as u64,
                d_namlen: name_bytes.len() as u32,
                d_type: filetype,
            };

            let entry_size = core::mem::size_of::<wasip1::Dirent>();

            if rem_len < entry_size {
                break;
            }

            // Write dirent
            let entry_slice =
                unsafe { core::slice::from_raw_parts(&entry as *const _ as *const u8, entry_size) };
            Wasm::memcpy(out_ptr, entry_slice);

            out_ptr = unsafe { out_ptr.add(entry_size) };
            rem_len -= entry_size;
            total_written += entry_size;

            // Write name
            let write_name_len = core::cmp::min(name_bytes.len(), rem_len);
            if write_name_len > 0 {
                Wasm::memcpy(out_ptr, &name_bytes[..write_name_len]);
                out_ptr = unsafe { out_ptr.add(write_name_len) };
                rem_len -= write_name_len;
                total_written += write_name_len;
            }

            current_cookie = i + 1;
            if rem_len == 0 {
                break;
            }
        }

        Ok((total_written, current_cookie as u64))
    }

    fn path_filestat_get_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        flags: wasip1::Lookupflags,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<FilestatWithoutDevice, wasip1::Errno> {
        let mut target_inode = self
            .get_inode_for_path::<Wasm>(inode, path_ptr, path_len)
            .ok_or(wasip1::ERRNO_NOENT)?;

        if flags & wasip1::LOOKUPFLAGS_SYMLINK_FOLLOW == wasip1::LOOKUPFLAGS_SYMLINK_FOLLOW {
            target_inode = self
                .resolve_inode(target_inode, 0)
                .ok_or(wasip1::ERRNO_LOOP)?;
        }

        self.fd_filestat_get_raw::<Wasm>(&target_inode)
    }

    fn fd_prestat_get_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
    ) -> Result<wasip1::Prestat, wasip1::Errno> {
        self.read_preopen(&inode, |name| {
            Ok(wasip1::Prestat {
                tag: 0,
                u: wasip1::PrestatU {
                    dir: wasip1::PrestatDir {
                        pr_name_len: name.len() as usize,
                    },
                },
            })
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_prestat_dir_name_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        dir_path_ptr: *mut u8,
        dir_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        self.read_preopen(&inode, |name| {
            let copy_len = core::cmp::min(name.len(), dir_path_len);
            if copy_len > 0 {
                Wasm::memcpy(dir_path_ptr, &name.as_bytes()[..copy_len]);
            }
            Ok(())
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_filestat_get_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
    ) -> Result<FilestatWithoutDevice, wasip1::Errno> {
        self.read_inode(&inode, |node| {
            Ok(FilestatWithoutDevice {
                ino: *inode as u64,
                filetype: node.meta.filetype,
                nlink: node.meta.nlink,
                size: node.meta.size(&node.data),
                atim: node.meta.add_info.access_time(),
                mtim: node.meta.add_info.modification_time(),
                ctim: node.meta.add_info.creation_time(),
            })
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_pread_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        buf: *mut u8,
        buf_len: usize,
        offset: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        self.modify_inode(&inode, |node| {
            if let InodeData::File(ref file_data) = node.data {
                if offset >= file_data.len() {
                    return Ok(0);
                }
                let available = file_data.len() - offset;
                let read_len = core::cmp::min(buf_len, available);
                Wasm::memcpy(buf, &file_data[offset..offset + read_len]);
                let atim = node.meta.add_info.access_time();
                node.meta.add_info.set_access_time(atim + 1);
                Ok(read_len)
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_read_stdin_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        buf: *mut u8,
        buf_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::read_direct::<Wasm>(buf, buf_len)
        }

        #[cfg(feature = "multi_memory")]
        {
            let mut internal_buf = alloc::vec![0u8; buf_len];
            let read = StdIo::read(&mut internal_buf).map_err(|_| wasip1::ERRNO_IO)?;
            Wasm::memcpy(buf, &internal_buf[..read]);
            Ok(read)
        }
    }

    fn path_open_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        dir_ino: &Self::Inode,
        _: wasip1::Fdflags,
        path_ptr: *const u8,
        path_len: usize,
        o_flags: wasip1::Oflags,
        fs_rights_base: wasip1::Rights,
        _: wasip1::Rights,
        _: wasip1::Fdflags,
    ) -> Result<Self::Inode, wasip1::Errno> {
        if let Some(inode) = self.get_inode_for_path::<Wasm>(dir_ino, path_ptr, path_len) {
            if o_flags & wasip1::OFLAGS_EXCL == wasip1::OFLAGS_EXCL {
                return Err(wasip1::ERRNO_EXIST);
            }
            if o_flags & wasip1::OFLAGS_DIRECTORY == wasip1::OFLAGS_DIRECTORY
                && !self.is_dir(&inode)
            {
                return Err(wasip1::ERRNO_NOTDIR);
            }
            if o_flags & wasip1::OFLAGS_TRUNC == wasip1::OFLAGS_TRUNC {
                self.modify_inode(&inode, |node| {
                    if let InodeData::File(ref mut vec) = node.data {
                        vec.clear();
                    }
                });
            }
            Ok(inode)
        } else {
            if o_flags & wasip1::OFLAGS_CREAT == wasip1::OFLAGS_CREAT {
                let path = WasmPathAccess::<Wasm>::new(path_ptr, path_len);
                let components: Vec<_> = path.components().collect();

                if components.is_empty() {
                    return Err(wasip1::ERRNO_NOENT);
                }

                // For simplicity, we assume creation only happens in `dir_ino` directly
                // and the path is just a single Normal component.
                // Full path traversal for creation is complex and not fully implemented here.
                if components.len() == 1 {
                    if let WasmPathComponent::Normal(name) = &components[0] {
                        let mut s = SmallString::<[u8; 32]>::new();
                        for j in 0..name.len() {
                            s.push(name.get(j) as char);
                        }

                        let is_dir = o_flags & wasip1::OFLAGS_DIRECTORY == wasip1::OFLAGS_DIRECTORY;
                        let filetype = if is_dir {
                            wasip1::FILETYPE_DIRECTORY
                        } else {
                            wasip1::FILETYPE_REGULAR_FILE
                        };

                        let data = if is_dir {
                            let mut map = DirMap::new();
                            map.insert(SmallString::from_str("."), 0); // Self (will update)
                            map.insert(SmallString::from_str(".."), *dir_ino); // Parent
                            InodeData::Dir(map)
                        } else {
                            InodeData::File(Vec::new())
                        };

                        let new_inode = Inode {
                            meta: InodeMetadata::new(filetype, fs_rights_base, AddInfo::default()),
                            data,
                        };

                        let new_id = self.allocate_inode(new_inode);

                        // Update self reference if dir
                        if is_dir {
                            self.modify_inode(&new_id, |node| {
                                if let InodeData::Dir(map) = &mut node.data {
                                    map.insert(SmallString::from_str("."), new_id);
                                }
                            });
                        }

                        // Link in parent
                        self.modify_inode(&dir_ino, |node| {
                            if let InodeData::Dir(dir_map) = &mut node.data {
                                dir_map.insert(s, new_id);
                            }
                        });

                        return Ok(new_id);
                    }
                }
                Err(wasip1::ERRNO_NOENT)
            } else {
                Err(wasip1::ERRNO_NOENT)
            }
        }
    }

    fn path_readlink_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        inode: &Self::Inode,
        path_ptr: *const u8,
        path_len: usize,
        buf: *mut u8,
        buf_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        let target_inode = self
            .get_inode_for_path::<Wasm>(inode, path_ptr, path_len)
            .ok_or(wasip1::ERRNO_NOENT)?;

        self.read_inode(&target_inode, |node| {
            if let InodeData::Symlink(ref target) = node.data {
                let target_bytes = target.as_bytes();
                let n = core::cmp::min(target_bytes.len(), buf_len);
                Wasm::memcpy(buf, &target_bytes[..n]);
                Ok(n)
            } else {
                Err(wasip1::ERRNO_INVAL)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn path_create_directory_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        dir_ino: &Self::Inode,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let path = WasmPathAccess::<Wasm>::new(path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.is_empty() {
            return Err(wasip1::ERRNO_NOENT);
        }

        if components.len() == 1 {
            if let WasmPathComponent::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                if self
                    .get_inode_for_path::<Wasm>(dir_ino, path_ptr, path_len)
                    .is_some()
                {
                    return Err(wasip1::ERRNO_EXIST);
                }

                let mut map = DirMap::new();
                map.insert(SmallString::from_str("."), 0); // Will update
                map.insert(SmallString::from_str(".."), *dir_ino);

                let new_inode = Inode {
                    meta: InodeMetadata::new(wasip1::FILETYPE_DIRECTORY, 0, AddInfo::default()),
                    data: InodeData::Dir(map),
                };

                let new_id = self.allocate_inode(new_inode);
                self.modify_inode(&new_id, |node| {
                    if let InodeData::Dir(map) = &mut node.data {
                        map.insert(SmallString::from_str("."), new_id);
                    }
                });

                self.modify_inode(&dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(s, new_id);
                    }
                });

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_link_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        old_dir_ino: &Self::Inode,
        _: wasip1::Lookupflags,
        old_path_ptr: *const u8,
        old_path_len: usize,
        new_dir_ino: &Self::Inode,
        new_path_ptr: *const u8,
        new_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let new_path = WasmPathAccess::<Wasm>::new(new_path_ptr, new_path_len);
        let new_components: Vec<_> = new_path.components().collect();

        if new_components.len() == 1 {
            if let WasmPathComponent::Normal(new_name) = &new_components[0] {
                let mut new_s = SmallString::<[u8; 32]>::new();
                for j in 0..new_name.len() {
                    new_s.push(new_name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path::<Wasm>(old_dir_ino, old_path_ptr, old_path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_PERM);
                }

                self.modify_inode(&new_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(new_s, inode);
                    }
                });

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_remove_directory_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        dir_ino: &Self::Inode,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let path = WasmPathAccess::<Wasm>::new(path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.len() == 1 {
            if let WasmPathComponent::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path::<Wasm>(dir_ino, path_ptr, path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if !self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_NOTDIR);
                }

                // Check if directory is empty (only "." and "..")
                let is_empty = self
                    .read_inode(&inode, |node| {
                        if let InodeData::Dir(dir_map) = &node.data {
                            dir_map.len() <= 2
                        } else {
                            false
                        }
                    })
                    .unwrap_or(false);

                if !is_empty {
                    return Err(wasip1::ERRNO_NOTEMPTY);
                }

                self.modify_inode(&dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&s);
                    }
                });
                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_rename_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        old_dir_ino: &Self::Inode,
        old_path_ptr: *const u8,
        old_path_len: usize,
        new_dir_ino: &Self::Inode,
        new_path_ptr: *const u8,
        new_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let old_path = WasmPathAccess::<Wasm>::new(old_path_ptr, old_path_len);
        let old_components: Vec<_> = old_path.components().collect();
        let new_path = WasmPathAccess::<Wasm>::new(new_path_ptr, new_path_len);
        let new_components: Vec<_> = new_path.components().collect();

        if old_components.len() == 1 && new_components.len() == 1 {
            if let (WasmPathComponent::Normal(old_name), WasmPathComponent::Normal(new_name)) =
                (&old_components[0], &new_components[0])
            {
                let mut old_s = SmallString::<[u8; 32]>::new();
                for j in 0..old_name.len() {
                    old_s.push(old_name.get(j) as char);
                }
                let mut new_s = SmallString::<[u8; 32]>::new();
                for j in 0..new_name.len() {
                    new_s.push(new_name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path::<Wasm>(old_dir_ino, old_path_ptr, old_path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                // Remove from old
                self.modify_inode(&old_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&old_s);
                    }
                });

                // Add to new
                self.modify_inode(&new_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(new_s, inode);
                    }
                });

                // If it's a directory, update ".."
                if self.is_dir(&inode) {
                    self.modify_inode(&inode, |node| {
                        if let InodeData::Dir(dir_map) = &mut node.data {
                            dir_map.insert(SmallString::from_str(".."), *new_dir_ino);
                        }
                    });
                }

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_unlink_file_raw<Wasm: WasmAccess + WasmAccessName + 'static>(
        &self,
        dir_ino: &Self::Inode,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let path = WasmPathAccess::<Wasm>::new(path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.len() == 1 {
            if let WasmPathComponent::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path::<Wasm>(dir_ino, path_ptr, path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_ISDIR);
                }

                self.modify_inode(&dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&s);
                    }
                });
                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }
}

impl<B: BoxedInode, StdIo: StdIO + 'static, AddInfo: WasiAddInfo + Default + 'static>
    Wasip1DynCompatibleLFS<B> for StandardDynamicLFS<StdIo, AddInfo>
{
    fn fd_write_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        let inode_id = Self::downcast_inode(inode);
        self.modify_inode(&inode_id, |inode_entry| {
            if let InodeData::File(ref mut vec) = inode_entry.data {
                let mut buf = alloc::vec![0u8; data_len];
                access.memcpy_to_with(&mut buf, data);
                vec.extend_from_slice(&buf);
                let mtim = inode_entry.meta.add_info.modification_time();
                inode_entry.meta.add_info.set_modification_time(mtim + 1); // Simplistic time update
                Ok(data_len)
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_write_stdout_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::write_direct_dyn_compatible(access, data, data_len)
        }
        #[cfg(feature = "multi_memory")]
        {
            let mut buf = alloc::vec![0u8; data_len];
            access.memcpy_to_with(&mut buf, data);
            StdIo::write(&buf)
        }
    }

    fn fd_write_stderr_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        data: *const u8,
        data_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::ewrite_direct_dyn_compatible(access, data, data_len)
        }
        #[cfg(feature = "multi_memory")]
        {
            let mut buf = alloc::vec![0u8; data_len];
            access.memcpy_to_with(&mut buf, data);
            StdIo::ewrite(&buf)
        }
    }

    fn fd_readdir_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        buf: *mut u8,
        buf_len: usize,
        cookie: wasip1::Dircookie,
    ) -> Result<(wasip1::Size, wasip1::Dircookie), wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        let dir_map = self
            .read_inode(&inode, |i| match &i.data {
                InodeData::Dir(map) => Some(map.clone()),
                _ => None,
            })
            .flatten()
            .ok_or(wasip1::ERRNO_NOTDIR)?;

        let mut current_cookie = cookie as usize;
        let mut total_written = 0;
        let mut out_ptr = buf;
        let mut rem_len = buf_len;

        for (i, (name, &child_inode)) in dir_map.iter().enumerate() {
            if i < current_cookie {
                continue;
            }
            let filetype = self
                .read_inode(&child_inode, |c| c.meta.filetype)
                .ok_or(wasip1::ERRNO_NOENT)?;
            let name_bytes = name.as_bytes();
            let entry = wasip1::Dirent {
                d_next: (i + 1) as u64,
                d_ino: child_inode as u64,
                d_namlen: name_bytes.len() as u32,
                d_type: filetype,
            };

            let entry_size = core::mem::size_of::<wasip1::Dirent>();

            if rem_len < entry_size {
                break;
            }

            // Write dirent
            let entry_slice =
                unsafe { core::slice::from_raw_parts(&entry as *const _ as *const u8, entry_size) };
            access.memcpy_with(out_ptr, entry_slice);

            out_ptr = unsafe { out_ptr.add(entry_size) };
            rem_len -= entry_size;
            total_written += entry_size;

            // Write name
            let write_name_len = core::cmp::min(name_bytes.len(), rem_len);
            if write_name_len > 0 {
                access.memcpy_with(out_ptr, &name_bytes[..write_name_len]);
                out_ptr = unsafe { out_ptr.add(write_name_len) };
                rem_len -= write_name_len;
                total_written += write_name_len;
            }

            current_cookie = i + 1;
            if rem_len == 0 {
                break;
            }
        }

        Ok((total_written, current_cookie as u64))
    }

    fn path_filestat_get_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        flags: wasip1::Lookupflags,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<FilestatWithoutDevice, wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        let mut target_inode = self
            .get_inode_for_path_dyn_compatible(access, inode, path_ptr, path_len)
            .ok_or(wasip1::ERRNO_NOENT)?;

        if flags & wasip1::LOOKUPFLAGS_SYMLINK_FOLLOW == wasip1::LOOKUPFLAGS_SYMLINK_FOLLOW {
            target_inode = self
                .resolve_inode(target_inode, 0)
                .ok_or(wasip1::ERRNO_LOOP)?;
        }

        Wasip1DynCompatibleLFS::<B>::fd_filestat_get_raw_dyn_compatible(self, access, &target_inode)
    }

    fn fd_prestat_get_raw_dyn_compatible(
        &self,
        _: &dyn crate::memory::WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
    ) -> Result<wasip1::Prestat, wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        self.read_preopen(&inode, |name| {
            Ok(wasip1::Prestat {
                tag: 0,
                u: wasip1::PrestatU {
                    dir: wasip1::PrestatDir {
                        pr_name_len: name.len() as usize,
                    },
                },
            })
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }
    fn fd_prestat_dir_name_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        dir_path_ptr: *mut u8,
        dir_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        self.read_preopen(&inode, |name| {
            let copy_len = core::cmp::min(name.len(), dir_path_len);
            if copy_len > 0 {
                access.memcpy_with(dir_path_ptr, &name.as_bytes()[..copy_len]);
            }
            Ok(())
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_filestat_get_raw_dyn_compatible(
        &self,
        _: &dyn crate::memory::WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
    ) -> Result<FilestatWithoutDevice, wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        self.read_inode(&inode, |node| {
            Ok(FilestatWithoutDevice {
                ino: *inode as u64,
                filetype: node.meta.filetype,
                nlink: node.meta.nlink,
                size: node.meta.size(&node.data),
                atim: node.meta.add_info.access_time(),
                mtim: node.meta.add_info.modification_time(),
                ctim: node.meta.add_info.creation_time(),
            })
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_pread_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        buf: *mut u8,
        buf_len: usize,
        offset: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        let inode = Self::downcast_inode(inode);

        self.modify_inode(&inode, |node| {
            if let InodeData::File(ref file_data) = node.data {
                if offset >= file_data.len() {
                    return Ok(0);
                }
                let available = file_data.len() - offset;
                let read_len = core::cmp::min(buf_len, available);
                access.memcpy_with(buf, &file_data[offset..offset + read_len]);
                let atim = node.meta.add_info.access_time();
                node.meta.add_info.set_access_time(atim + 1);
                Ok(read_len)
            } else {
                Err(wasip1::ERRNO_ISDIR)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn fd_read_stdin_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        buf: *mut u8,
        buf_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        #[cfg(not(feature = "multi_memory"))]
        {
            StdIo::read_direct_dyn_compatible(access, buf, buf_len)
        }

        #[cfg(feature = "multi_memory")]
        {
            let mut internal_buf = alloc::vec![0u8; buf_len];
            let read = StdIo::read(&mut internal_buf).map_err(|_| wasip1::ERRNO_IO)?;
            access.memcpy_with(buf, &internal_buf[..read]);
            Ok(read)
        }
    }

    fn path_open_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        dir_ino: &dyn InodeIdCommon,
        _: wasip1::Fdflags,
        path_ptr: *const u8,
        path_len: usize,
        o_flags: wasip1::Oflags,
        fs_rights_base: wasip1::Rights,
        _: wasip1::Rights,
        _: wasip1::Fdflags,
    ) -> Result<B, wasip1::Errno> {
        let dir_ino = Self::downcast_inode(dir_ino);

        if let Some(inode) =
            self.get_inode_for_path_dyn_compatible(access, &dir_ino, path_ptr, path_len)
        {
            if o_flags & wasip1::OFLAGS_EXCL == wasip1::OFLAGS_EXCL {
                return Err(wasip1::ERRNO_EXIST);
            }
            if o_flags & wasip1::OFLAGS_DIRECTORY == wasip1::OFLAGS_DIRECTORY
                && !self.is_dir(&inode)
            {
                return Err(wasip1::ERRNO_NOTDIR);
            }
            if o_flags & wasip1::OFLAGS_TRUNC == wasip1::OFLAGS_TRUNC {
                self.modify_inode(&inode, |node| {
                    if let InodeData::File(ref mut vec) = node.data {
                        vec.clear();
                    }
                });
            }
            Ok(B::from_inode_with_ty::<Self>(inode))
        } else {
            if o_flags & wasip1::OFLAGS_CREAT == wasip1::OFLAGS_CREAT {
                let path =
                    crate::memory::WasmPathAccessDynCompatible::new(access, path_ptr, path_len);
                let components: Vec<_> = path.components().collect();

                if components.is_empty() {
                    return Err(wasip1::ERRNO_NOENT);
                }

                if components.len() == 1 {
                    if let crate::memory::WasmPathComponentDynCompatible::Normal(name) =
                        &components[0]
                    {
                        let mut s = SmallString::<[u8; 32]>::new();
                        for j in 0..name.len() {
                            s.push(name.get(j) as char);
                        }

                        let is_dir = o_flags & wasip1::OFLAGS_DIRECTORY == wasip1::OFLAGS_DIRECTORY;
                        let filetype = if is_dir {
                            wasip1::FILETYPE_DIRECTORY
                        } else {
                            wasip1::FILETYPE_REGULAR_FILE
                        };

                        let data = if is_dir {
                            let mut map = DirMap::new();
                            map.insert(SmallString::from_str("."), 0); // Self (will update)
                            map.insert(SmallString::from_str(".."), *dir_ino);
                            InodeData::Dir(map)
                        } else {
                            InodeData::File(Vec::new())
                        };

                        let new_inode = Inode {
                            meta: InodeMetadata::new(filetype, fs_rights_base, AddInfo::default()),
                            data,
                        };

                        let new_id = self.allocate_inode(new_inode);

                        // Update self reference if dir
                        if is_dir {
                            self.modify_inode(&new_id, |node| {
                                if let InodeData::Dir(map) = &mut node.data {
                                    map.insert(SmallString::from_str("."), new_id);
                                }
                            });
                        }

                        // Link in parent
                        self.modify_inode(&dir_ino, |node| {
                            if let InodeData::Dir(dir_map) = &mut node.data {
                                dir_map.insert(s, new_id);
                            }
                        });

                        return Ok(B::from_inode_with_ty::<Self>(new_id));
                    }
                }
                Err(wasip1::ERRNO_NOENT)
            } else {
                Err(wasip1::ERRNO_NOENT)
            }
        }
    }

    fn path_readlink_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        inode: &dyn InodeIdCommon,
        path_ptr: *const u8,
        path_len: usize,
        buf: *mut u8,
        buf_len: usize,
    ) -> Result<wasip1::Size, wasip1::Errno> {
        let inode_id = Self::downcast_inode(inode);
        let target_inode = self
            .get_inode_for_path_dyn_compatible(access, &inode_id, path_ptr, path_len)
            .ok_or(wasip1::ERRNO_NOENT)?;

        self.read_inode(&target_inode, |node| {
            if let InodeData::Symlink(ref target) = node.data {
                let target_bytes = target.as_bytes();
                let n = core::cmp::min(target_bytes.len(), buf_len);
                access.memcpy_with(buf, &target_bytes[..n]);
                Ok(n)
            } else {
                Err(wasip1::ERRNO_INVAL)
            }
        })
        .unwrap_or(Err(wasip1::ERRNO_BADF))
    }

    fn path_create_directory_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        dir_inode: &dyn InodeIdCommon,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let dir_ino = Self::downcast_inode(dir_inode);
        let path = crate::memory::WasmPathAccessDynCompatible::new(access, path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.is_empty() {
            return Err(wasip1::ERRNO_NOENT);
        }

        if components.len() == 1 {
            if let crate::memory::WasmPathComponentDynCompatible::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                if self
                    .get_inode_for_path_dyn_compatible(access, dir_ino, path_ptr, path_len)
                    .is_some()
                {
                    return Err(wasip1::ERRNO_EXIST);
                }

                let mut map = DirMap::new();
                map.insert(SmallString::from_str("."), 0); // Will update
                map.insert(SmallString::from_str(".."), *dir_ino);

                let new_inode = Inode {
                    meta: InodeMetadata::new(wasip1::FILETYPE_DIRECTORY, 0, AddInfo::default()),
                    data: InodeData::Dir(map),
                };

                let new_id = self.allocate_inode(new_inode);
                self.modify_inode(&new_id, |node| {
                    if let InodeData::Dir(map) = &mut node.data {
                        map.insert(SmallString::from_str("."), new_id);
                    }
                });

                self.modify_inode(dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(s, new_id);
                    }
                });

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_link_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        old_dir_inode: &dyn InodeIdCommon,
        _: wasip1::Lookupflags,
        old_path_ptr: *const u8,
        old_path_len: usize,
        new_dir_inode: &dyn InodeIdCommon,
        new_path_ptr: *const u8,
        new_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let old_dir_ino = Self::downcast_inode(old_dir_inode);
        let new_dir_ino = Self::downcast_inode(new_dir_inode);
        let new_path =
            crate::memory::WasmPathAccessDynCompatible::new(access, new_path_ptr, new_path_len);
        let new_components: Vec<_> = new_path.components().collect();

        if new_components.len() == 1 {
            if let crate::memory::WasmPathComponentDynCompatible::Normal(new_name) =
                &new_components[0]
            {
                let mut new_s = SmallString::<[u8; 32]>::new();
                for j in 0..new_name.len() {
                    new_s.push(new_name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path_dyn_compatible(
                        access,
                        old_dir_ino,
                        old_path_ptr,
                        old_path_len,
                    )
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_PERM);
                }

                self.modify_inode(new_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(new_s, inode);
                    }
                });

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_remove_directory_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        dir_inode: &dyn InodeIdCommon,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let dir_ino = Self::downcast_inode(dir_inode);
        let path = crate::memory::WasmPathAccessDynCompatible::new(access, path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.len() == 1 {
            if let crate::memory::WasmPathComponentDynCompatible::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path_dyn_compatible(access, dir_ino, path_ptr, path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if !self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_NOTDIR);
                }

                // Check if directory is empty (only "." and "..")
                let is_empty = self
                    .read_inode(&inode, |node| {
                        if let InodeData::Dir(dir_map) = &node.data {
                            dir_map.len() <= 2
                        } else {
                            false
                        }
                    })
                    .unwrap_or(false);

                if !is_empty {
                    return Err(wasip1::ERRNO_NOTEMPTY);
                }

                self.modify_inode(dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&s);
                    }
                });
                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_rename_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        old_dir_inode: &dyn InodeIdCommon,
        old_path_ptr: *const u8,
        old_path_len: usize,
        new_dir_inode: &dyn InodeIdCommon,
        new_path_ptr: *const u8,
        new_path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let old_dir_ino = Self::downcast_inode(old_dir_inode);
        let new_dir_ino = Self::downcast_inode(new_dir_inode);
        let old_path =
            crate::memory::WasmPathAccessDynCompatible::new(access, old_path_ptr, old_path_len);
        let old_components: Vec<_> = old_path.components().collect();
        let new_path =
            crate::memory::WasmPathAccessDynCompatible::new(access, new_path_ptr, new_path_len);
        let new_components: Vec<_> = new_path.components().collect();

        if old_components.len() == 1 && new_components.len() == 1 {
            if let (
                crate::memory::WasmPathComponentDynCompatible::Normal(old_name),
                crate::memory::WasmPathComponentDynCompatible::Normal(new_name),
            ) = (&old_components[0], &new_components[0])
            {
                let mut old_s = SmallString::<[u8; 32]>::new();
                for j in 0..old_name.len() {
                    old_s.push(old_name.get(j) as char);
                }
                let mut new_s = SmallString::<[u8; 32]>::new();
                for j in 0..new_name.len() {
                    new_s.push(new_name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path_dyn_compatible(
                        access,
                        old_dir_ino,
                        old_path_ptr,
                        old_path_len,
                    )
                    .ok_or(wasip1::ERRNO_NOENT)?;

                // Remove from old
                self.modify_inode(old_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&old_s);
                    }
                });

                // Add to new
                self.modify_inode(new_dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.insert(new_s, inode);
                    }
                });

                // If it's a directory, update ".."
                if self.is_dir(&inode) {
                    self.modify_inode(&inode, |node| {
                        if let InodeData::Dir(dir_map) = &mut node.data {
                            dir_map.insert(SmallString::from_str(".."), *new_dir_ino);
                        }
                    });
                }

                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn path_unlink_file_raw_dyn_compatible(
        &self,
        access: &dyn WasmAccessDynCompatibleRaw,
        dir_inode: &dyn InodeIdCommon,
        path_ptr: *const u8,
        path_len: usize,
    ) -> Result<(), wasip1::Errno> {
        let dir_ino = Self::downcast_inode(dir_inode);
        let path = crate::memory::WasmPathAccessDynCompatible::new(access, path_ptr, path_len);
        let components: Vec<_> = path.components().collect();

        if components.len() == 1 {
            if let crate::memory::WasmPathComponentDynCompatible::Normal(name) = &components[0] {
                let mut s = SmallString::<[u8; 32]>::new();
                for j in 0..name.len() {
                    s.push(name.get(j) as char);
                }

                let inode = self
                    .get_inode_for_path_dyn_compatible(access, dir_ino, path_ptr, path_len)
                    .ok_or(wasip1::ERRNO_NOENT)?;

                if self.is_dir(&inode) {
                    return Err(wasip1::ERRNO_ISDIR);
                }

                self.modify_inode(dir_ino, |node| {
                    if let InodeData::Dir(dir_map) = &mut node.data {
                        dir_map.remove(&s);
                    }
                });
                return Ok(());
            }
        }
        Err(wasip1::ERRNO_NOTSUP)
    }

    fn pre_open_inodes(
        &self,
        f: &mut dyn for<'a> FnMut(&'a dyn crate::wasi::file::Wasip1DynCompatibleLFSSlice),
    ) {
        #[derive(Debug)]
        struct PreOpenInodesIndex<'a, StdIo: StdIO + 'static, AddInfo: WasiAddInfo + 'static>(
            &'a StandardDynamicLFS<StdIo, AddInfo>,
        );

        impl<'a, StdIo: StdIO + 'static, AddInfo: WasiAddInfo + 'static>
            crate::wasi::file::Wasip1DynCompatibleLFSSlice
            for PreOpenInodesIndex<'a, StdIo, AddInfo>
        {
            fn index(
                &self,
                idx: usize,
                f: &mut dyn for<'b, 'c> FnMut(
                    Option<(
                        &'b dyn InodeIdCommon,
                        &'c dyn crate::wasi::file::DerefToStrCustom,
                    )>,
                ),
            ) {
                #[cfg(feature = "threads")]
                {
                    if let Some(entry) = self.0.preopens.iter().nth(idx) {
                        let inode = entry.key();
                        let name = entry.value();
                        f(Some((
                            inode as &dyn InodeIdCommon,
                            name as &dyn crate::wasi::file::DerefToStrCustom,
                        )));
                    } else {
                        f(None);
                    }
                }
                #[cfg(not(feature = "threads"))]
                {
                    let map = unsafe { &*self.0.preopens.get() };
                    if let Some((inode, name)) = map.iter().nth(idx) {
                        f(Some((
                            inode as &dyn InodeIdCommon,
                            name as &dyn crate::wasi::file::DerefToStrCustom,
                        )));
                    } else {
                        f(None);
                    }
                }
            }
        }

        f(&PreOpenInodesIndex(self));
    }
}

impl<StdIo: StdIO + 'static, AddInfo: WasiAddInfo + Default + 'static> DynamicLFS
    for StandardDynamicLFS<StdIo, AddInfo>
{
    fn pre_open_inodes(&self) -> impl IntoIterator<Item = (Self::Inode, impl DerefToStrCustom)> {
        #[cfg(feature = "threads")]
        {
            self.preopens.iter().map(|v| {
                let (ino, name) = v.pair();

                (*ino, name.clone())
            })
        }
        #[cfg(not(feature = "threads"))]
        {
            unsafe { &*self.preopens.get() }
                .iter()
                .map(|(ino, name)| (*ino, name.clone()))
        }
    }
}