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
mod fat;
pub mod mapping;
mod mbr;
pub mod path;

use core::ops;

use alloc::{boxed::Box, string::String, sync::Arc, vec, vec::Vec};
use kernel_user_link::file::{BlockingMode, DirEntry, FileStat, FileType, OpenOptions};
use mapping::MappingError;
use path::PathBuf;
use tracing::info;

use crate::{
    devices::{
        ide::{self, IdeDeviceIndex, IdeDeviceType},
        Device, DEVICES_FILESYSTEM_CLUSTER_MAGIC,
    },
    sync::{once::OnceLock, spin::mutex::Mutex},
};

use self::{
    mbr::Mbr,
    path::{Component, Path},
};

/// This is not used at all, just an indicator in [`Directory::fetch_entries`]
pub(crate) const ANOTHER_FILESYSTEM_MAPPING_INODE_MAGIC: u64 = 0xf11356573e;
pub(crate) const NO_PARENT_DIR_SECTOR: u64 = 0xFFFF_FFFF_FFFF_FFFF;

static EMPTY_FILESYSTEM: OnceLock<Arc<EmptyFileSystem>> = OnceLock::new();

pub fn empty_filesystem() -> Arc<EmptyFileSystem> {
    EMPTY_FILESYSTEM
        .get_or_init(|| Arc::new(EmptyFileSystem))
        .clone()
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct FileAttributes(pub u8);

#[allow(dead_code)]
impl FileAttributes {
    pub const EMPTY: FileAttributes = FileAttributes(0);
    pub const READ_ONLY: FileAttributes = FileAttributes(0b0000_0001);
    pub const HIDDEN: FileAttributes = FileAttributes(0b0000_0010);
    pub const SYSTEM: FileAttributes = FileAttributes(0b0000_0100);
    pub const VOLUME_LABEL: FileAttributes = FileAttributes(0b0000_1000);
    pub const DIRECTORY: FileAttributes = FileAttributes(0b0001_0000);
    pub const ARCHIVE: FileAttributes = FileAttributes(0b0010_0000);

    pub fn read_only(self) -> bool {
        self.0 & Self::READ_ONLY.0 != 0
    }

    pub fn hidden(self) -> bool {
        self.0 & Self::HIDDEN.0 != 0
    }

    pub fn system(self) -> bool {
        self.0 & Self::SYSTEM.0 != 0
    }

    pub fn volume_label(self) -> bool {
        self.0 & Self::VOLUME_LABEL.0 != 0
    }

    pub fn directory(self) -> bool {
        self.0 & Self::DIRECTORY.0 != 0
    }

    pub fn archive(self) -> bool {
        self.0 & Self::ARCHIVE.0 != 0
    }

    fn contains(&self, other: FileAttributes) -> bool {
        self.0 & other.0 != 0
    }
}

impl ops::BitOr for FileAttributes {
    type Output = Self;

    fn bitor(self, rhs: Self) -> Self::Output {
        FileAttributes(self.0 | rhs.0)
    }
}

impl ops::BitOrAssign for FileAttributes {
    fn bitor_assign(&mut self, rhs: Self) {
        self.0 |= rhs.0;
    }
}

impl ops::BitAnd for FileAttributes {
    type Output = Self;

    fn bitand(self, rhs: Self) -> Self::Output {
        FileAttributes(self.0 & rhs.0)
    }
}

#[derive(Debug, Clone)]
pub struct BaseNode {
    name: String,
    attributes: FileAttributes,
    start_cluster: u64,
    parent_dir_sector: u64,
    /// The position of this file in the parent directory
    /// the size of the sector shouldn't exceed 16 bits
    /// this is element wise and not byte wise
    parent_dir_index: u16,
}

impl BaseNode {
    pub fn name(&self) -> &str {
        &self.name
    }

    pub fn start_cluster(&self) -> u64 {
        self.start_cluster
    }

    #[allow(dead_code)]
    pub fn attributes(&self) -> FileAttributes {
        self.attributes
    }

    #[allow(dead_code)]
    pub fn parent_dir_sector(&self) -> u64 {
        self.parent_dir_sector
    }

    #[allow(dead_code)]
    pub fn parent_dir_index(&self) -> u16 {
        self.parent_dir_index
    }
}

#[derive(Debug, Clone)]
pub struct FileNode {
    base: BaseNode,
    size: u64,
    device: Option<Arc<dyn Device>>,
}

impl FileNode {
    pub fn new_file(
        name: String,
        attributes: FileAttributes,
        start_cluster: u64,
        size: u64,
        parent_dir_sector: u64,
        parent_dir_index: u16,
    ) -> Self {
        assert!(!attributes.directory());
        Self {
            base: BaseNode {
                name,
                attributes,
                start_cluster,
                parent_dir_sector,
                parent_dir_index,
            },
            size,
            device: None,
        }
    }

    pub fn new_device(name: String, attributes: FileAttributes, device: Arc<dyn Device>) -> Self {
        assert!(!attributes.directory());
        Self {
            base: BaseNode {
                name,
                attributes,
                start_cluster: DEVICES_FILESYSTEM_CLUSTER_MAGIC,
                parent_dir_sector: NO_PARENT_DIR_SECTOR,
                parent_dir_index: 0,
            },
            size: 0,
            device: Some(device),
        }
    }

    pub fn size(&self) -> u64 {
        self.size
    }

    pub(self) fn set_size(&mut self, size: u64) {
        self.size = size;
    }

    pub fn try_open_device(&mut self) -> Result<(), FileSystemError> {
        if let Some(device) = self.device.take() {
            self.device = Some(device.try_create().unwrap_or(Ok(device))?);
        }

        Ok(())
    }
}

impl Drop for FileNode {
    fn drop(&mut self) {
        if let Some(device) = self.device.take() {
            device.close().expect("Failed to close device");
        }
    }
}

#[derive(Debug, Clone)]
pub struct DirectoryNode {
    base: BaseNode,
}

impl DirectoryNode {
    pub fn without_parent(name: String, attributes: FileAttributes, start_cluster: u64) -> Self {
        Self::new(name, attributes, start_cluster, NO_PARENT_DIR_SECTOR, 0)
    }

    pub fn new(
        name: String,
        attributes: FileAttributes,
        start_cluster: u64,
        parent_dir_sector: u64,
        parent_dir_index: u16,
    ) -> Self {
        assert!(attributes.directory());
        Self {
            base: BaseNode {
                name,
                attributes,
                start_cluster,
                parent_dir_sector,
                parent_dir_index,
            },
        }
    }
}

/// A node of the filesystem, it can be anything, a file, a device or a directory
#[derive(Debug, Clone)]
pub enum Node {
    File(FileNode),
    Directory(DirectoryNode),
}

impl From<FileNode> for Node {
    fn from(file: FileNode) -> Self {
        Self::File(file)
    }
}

impl From<DirectoryNode> for Node {
    fn from(dir: DirectoryNode) -> Self {
        Self::Directory(dir)
    }
}

impl Node {
    pub fn new(
        name: String,
        attributes: FileAttributes,
        start_cluster: u64,
        size: u64,
        parent_dir_sector: u64,
        parent_dir_index: u16,
    ) -> Self {
        if attributes.directory() {
            Self::Directory(DirectoryNode::new(
                name,
                attributes,
                start_cluster,
                parent_dir_sector,
                parent_dir_index,
            ))
        } else {
            Self::File(FileNode::new_file(
                name,
                attributes,
                start_cluster,
                size,
                parent_dir_sector,
                parent_dir_index,
            ))
        }
    }

    pub fn size(&self) -> u64 {
        match self {
            Self::File(file) => file.size,
            Self::Directory(_) => 0,
        }
    }

    pub fn name(&self) -> &str {
        match self {
            Self::File(file) => &file.name,
            Self::Directory(dir) => &dir.name,
        }
    }

    pub fn is_dir(&self) -> bool {
        matches!(self, Self::Directory(_))
    }

    pub fn into_dir(self) -> Result<DirectoryNode, FileSystemError> {
        match self {
            Self::Directory(dir) => Ok(dir),
            Self::File(_) => Err(FileSystemError::IsNotDirectory),
        }
    }

    pub fn into_file(self) -> Result<FileNode, FileSystemError> {
        match self {
            Self::File(file) => Ok(file),
            Self::Directory(_) => Err(FileSystemError::IsDirectory),
        }
    }

    #[allow(dead_code)]
    pub fn attributes(&self) -> FileAttributes {
        match self {
            Self::File(file) => file.attributes,
            Self::Directory(dir) => dir.attributes,
        }
    }

    pub fn as_file_stat(&self) -> FileStat {
        FileStat {
            size: self.size(),
            file_type: match self {
                Self::File(_) => FileType::File,
                Self::Directory(_) => FileType::Directory,
            },
        }
    }

    pub fn try_open_device(&mut self) -> Result<(), FileSystemError> {
        if let Self::File(file) = self {
            file.try_open_device()?;
        }

        Ok(())
    }
}

impl ops::Deref for FileNode {
    type Target = BaseNode;

    fn deref(&self) -> &Self::Target {
        &self.base
    }
}

impl ops::DerefMut for FileNode {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.base
    }
}

impl ops::Deref for DirectoryNode {
    type Target = BaseNode;

    fn deref(&self) -> &Self::Target {
        &self.base
    }
}

impl ops::DerefMut for DirectoryNode {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.base
    }
}

impl ops::Deref for Node {
    type Target = BaseNode;

    fn deref(&self) -> &Self::Target {
        match self {
            Self::File(file) => file,
            Self::Directory(dir) => dir,
        }
    }
}

impl ops::DerefMut for Node {
    fn deref_mut(&mut self) -> &mut Self::Target {
        match self {
            Self::File(file) => file,
            Self::Directory(dir) => dir,
        }
    }
}

// This is some sort of cache or extra metadata the filesystem
// use to help implement the filesystem and improve performance
#[derive(Debug, Default)]
pub struct AccessHelper {
    current_cluster: u64,
    cluster_index: u64,
}

pub enum DirTreverse {
    Continue,
    Stop,
}

/// A filesystem trait, this is the main interface to interact with the filesystem
/// it is used to open files, directories, read and write files, etc.
pub trait FileSystem: Send + Sync {
    /// Open the root directory of the filesystem
    fn open_root(&self) -> Result<DirectoryNode, FileSystemError>;

    /// Read the directory entries in the `inode`, and call the handler for each entry
    /// The `handler` should return `DirTreverse::Stop` to stop the traversal
    fn read_dir(
        &self,
        inode: &DirectoryNode,
        handler: &mut dyn FnMut(Node) -> DirTreverse,
    ) -> Result<(), FileSystemError>;

    /// Traverse the directory in the `inode` and return the entry with the name `matcher`
    /// Most of the time, no need to implement this, as it is already implemented in the default
    /// using [`FileSystem::read_dir`]
    fn treverse_dir(&self, inode: &DirectoryNode, matcher: &str) -> Result<Node, FileSystemError> {
        let mut entry = None;
        self.read_dir(inode, &mut |inode| {
            if inode.name() == matcher {
                entry = Some(inode);
                DirTreverse::Stop
            } else {
                DirTreverse::Continue
            }
        })?;
        entry.ok_or(FileSystemError::FileNotFound)
    }

    /// Create a new entry in the `parent` directory with the `name` and `attributes`
    /// This could be a file or a directory, the `attributes` should specify the type
    fn create_node(
        &self,
        _parent: &DirectoryNode,
        _name: &str,
        _attributes: FileAttributes,
    ) -> Result<Node, FileSystemError> {
        Err(FileSystemError::OperationNotSupported)
    }

    /// Read the file in the `inode` at the `position` and put the data in `buf`
    /// The `access_helper` is used to store some extra metadata to help the filesystem
    /// manage the caches or any extra data it needs.
    fn read_file(
        &self,
        inode: &FileNode,
        position: u64,
        buf: &mut [u8],
        _access_helper: &mut AccessHelper,
    ) -> Result<u64, FileSystemError> {
        if let Some(device) = &inode.device {
            assert_eq!(inode.start_cluster, DEVICES_FILESYSTEM_CLUSTER_MAGIC);
            device.read(position, buf)
        } else {
            Err(FileSystemError::ReadNotSupported)
        }
    }

    /// Write the file in the `inode` at the `position` with the data in `buf`
    /// The `access_helper` is used to store some extra metadata to help the filesystem
    /// manage the caches or any extra data it needs.
    fn write_file(
        &self,
        inode: &mut FileNode,
        position: u64,
        buf: &[u8],
        _access_helper: &mut AccessHelper,
    ) -> Result<u64, FileSystemError> {
        if let Some(device) = &inode.device {
            assert_eq!(inode.start_cluster, DEVICES_FILESYSTEM_CLUSTER_MAGIC);
            device.write(position, buf)
        } else {
            Err(FileSystemError::WriteNotSupported)
        }
    }

    /// Tells the filesystem to flush the content of this file to disk or to the backing store
    /// if it needs to
    fn flush_file(
        &self,
        _inode: &mut FileNode,
        _access_helper: &mut AccessHelper,
    ) -> Result<(), FileSystemError> {
        Err(FileSystemError::WriteNotSupported)
    }

    /// Close the file in the `inode`, this is called when the file is dropped
    /// The `access_helper` is used to store some extra metadata to help the filesystem
    /// manage the caches or any extra data it needs.
    fn close_file(
        &self,
        _inode: &FileNode,
        _access_helper: AccessHelper,
    ) -> Result<(), FileSystemError> {
        Ok(())
    }

    /// Set the size of the file in the `inode` to `size`, this is used to truncate the file
    /// or to extend it
    fn set_file_size(&self, inode: &mut FileNode, size: u64) -> Result<(), FileSystemError> {
        if let Some(device) = &inode.device {
            assert_eq!(inode.start_cluster, DEVICES_FILESYSTEM_CLUSTER_MAGIC);
            device.set_size(size)
        } else {
            Err(FileSystemError::WriteNotSupported)
        }
    }

    /// The expected number of strong refs in `Arc` by default
    /// This is used to check if the filesystem is still in use before unmounting
    /// This is here because for some filesystems, it could be stored globally in some `Mutex`
    /// like `/devices` this reference should not be counted to know if its still in use
    fn number_global_refs(&self) -> usize {
        // no global refs by default
        0
    }

    /// Unmount the filesystem, this is called before the filesystem is dropped
    /// The reason we use this is that we can't force `Drop` to be implemented
    /// for `Arc<dyn FileSystem>`, so we have this instead
    fn unmount(self: Arc<Self>) {}
}

pub struct EmptyFileSystem;

impl FileSystem for EmptyFileSystem {
    fn open_root(&self) -> Result<DirectoryNode, FileSystemError> {
        Err(FileSystemError::FileNotFound)
    }

    fn read_dir(
        &self,
        _inode: &DirectoryNode,
        _handler: &mut dyn FnMut(Node) -> DirTreverse,
    ) -> Result<(), FileSystemError> {
        Err(FileSystemError::FileNotFound)
    }
}

#[derive(Debug)]
pub enum FileSystemError {
    PartitionTableNotFound,
    DeviceNotFound,
    DiskReadError { sector: u64, error: ide::IdeError },
    FatError(fat::FatError),
    FileNotFound,
    InvalidPath,
    MustBeAbsolute,
    IsNotDirectory,
    IsDirectory,
    ReadNotSupported,
    WriteNotSupported,
    OperationNotSupported,
    CouldNotSetFileLength,
    EndOfFile,
    BufferNotLargeEnough(usize),
    AlreadyExists,
    MappingError(MappingError),
}

/// Loads the hard disk specified in the argument
/// it will load the first partition (MBR) if any, otherwise it will treat the whole disk
/// as one partition
///
/// Creates a new filesystem mapping for `/` and the filesystem found
pub fn create_disk_mapping(hard_disk_index: usize) -> Result<(), FileSystemError> {
    let ide_index = IdeDeviceIndex {
        ty: IdeDeviceType::Ata,
        index: hard_disk_index,
    };

    let device = ide::get_ide_device(ide_index).ok_or(FileSystemError::DeviceNotFound)?;

    let mbr = Mbr::try_create_from_disk(&device)?;

    // load the first partition for now
    let first_partition = &mbr.partition_table[0];
    let filesystem = fat::load_fat_filesystem(
        device,
        first_partition.start_lba,
        first_partition.size_in_sectors,
    )?;
    info!(
        "Mapping / to FAT filesystem {:?} ({:?}), partition_type: 0x{:02X}",
        filesystem.volume_label(),
        filesystem.fat_type(),
        first_partition.partition_type
    );
    mapping::mount("/", Arc::new(Mutex::new(filesystem)))?;

    Ok(())
}

pub fn unmount_all() {
    // unmount all filesystems
    mapping::unmount_all();
}

/// Open the inode of a path, this include directories and files.
///
/// This function must be called with an absolute path. Otherwise it will return [`FileSystemError::MustBeAbsolute`].
pub(crate) fn open_inode<P: AsRef<Path>>(
    path: P,
) -> Result<(PathBuf, Arc<dyn FileSystem>, Node), FileSystemError> {
    if !path.as_ref().is_absolute() {
        // this is an internal kernel only result, this function must be called with an absolute path
        return Err(FileSystemError::MustBeAbsolute);
    }

    let (mut canonical_path, remaining, mut mapping_node) = mapping::get_mapping(path.as_ref())?;
    let mut filesystem = mapping_node.filesystem();

    let opening_dir = path.as_ref().has_last_separator();
    let mut remaining_components = remaining.components().peekable();

    let mut dir = filesystem.open_root()?;
    if remaining.is_root() || remaining.is_empty() {
        return Ok((canonical_path, filesystem, dir.into()));
    }

    // used to know when to switch to different mappings
    let mut children_after_mapping = 0;
    while let Some(component) = remaining_components.next() {
        let name = match component {
            Component::RootDir | Component::CurDir => continue,
            Component::Normal("") => continue,
            Component::ParentDir => {
                if children_after_mapping == 0 {
                    // reached the end, i.e. this exceeded the filesystem mapping
                    // we should get another mapping
                    let parent = mapping_node.parent();
                    if let Some(parent) = parent {
                        mapping_node = parent.clone();
                        assert!(canonical_path.pop(), "must have parent");
                        filesystem = mapping_node.filesystem();
                        dir = filesystem.open_root()?;
                    }
                } else {
                    children_after_mapping -= 1;
                    assert!(canonical_path.pop(), "must have parent");
                }
                continue;
            }
            Component::Normal(name) => name,
        };
        // if we are still at the end of the mapping
        if children_after_mapping == 0 {
            if let Some(child_mapping) = mapping_node.try_find_child(name) {
                mapping_node = child_mapping;
                canonical_path.push(name);
                filesystem = mapping_node.filesystem();
                children_after_mapping = 0;
                dir = filesystem.open_root()?;
                continue;
            }
        }

        children_after_mapping += 1;
        canonical_path.push(name);

        let mut entry = filesystem.treverse_dir(&dir, name)?;

        if remaining_components.peek().is_some() {
            if let Node::Directory(dir_node) = entry {
                dir = dir_node;
            } else {
                return Err(FileSystemError::IsNotDirectory);
            }
        } else {
            return if opening_dir {
                if entry.is_dir() {
                    Ok((canonical_path, filesystem, entry))
                } else {
                    Err(FileSystemError::IsNotDirectory)
                }
            } else {
                // open the device if it is a device
                entry.try_open_device()?;
                Ok((canonical_path, filesystem, entry))
            };
        }
    }

    // should never reach here, but for some reason, if we got some path length but no components
    // we should just return the root entry
    Ok((canonical_path, filesystem, dir.into()))
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct FileAccess {
    read: bool,
    write: bool,
}

impl FileAccess {
    pub const READ: Self = Self {
        read: true,
        write: false,
    };
    pub const WRITE: Self = Self {
        read: false,
        write: true,
    };

    fn new(read: bool, write: bool) -> Self {
        Self { read, write }
    }

    fn is_read(&self) -> bool {
        self.read
    }

    fn is_write(&self) -> bool {
        self.write
    }
}

impl ops::BitOr for FileAccess {
    type Output = Self;

    fn bitor(self, rhs: Self) -> Self::Output {
        Self {
            read: self.read || rhs.read,
            write: self.write || rhs.write,
        }
    }
}

/// A handle to a file, it has the inode which controls the properties of the node in the filesystem
pub struct File {
    filesystem: Arc<dyn FileSystem>,
    path: Box<Path>,
    inode: FileNode,
    position: u64,
    is_terminal: bool,
    blocking_mode: BlockingMode,
    access_helper: AccessHelper,
    file_access: FileAccess,
}

/// A handle to a directory, it has the inode which controls the properties of the node in the filesystem
#[allow(dead_code)]
pub struct Directory {
    inode: DirectoryNode,
    path: Box<Path>,
    position: u64,
    dir_entries: Option<Vec<Node>>,
    filesystem: Arc<dyn FileSystem>,
}

/// A node in the filesystem, can be a file or a directory
#[allow(dead_code)]
#[repr(u8)]
pub enum FilesystemNode {
    File(File),
    Directory(Directory),
}

#[allow(dead_code)]
impl File {
    pub fn open<P: AsRef<Path>>(path: P) -> Result<Self, FileSystemError> {
        Self::open_blocking(path, BlockingMode::None, OpenOptions::default())
    }

    pub fn open_blocking<P: AsRef<Path>>(
        path: P,
        blocking_mode: BlockingMode,
        open_options: OpenOptions,
    ) -> Result<Self, FileSystemError> {
        let (canonical_path, mut node, filesystem) = match open_inode(path.as_ref()) {
            Ok((canonical_path, filesystem, inode)) => {
                if open_options.is_create_new() {
                    return Err(FileSystemError::AlreadyExists);
                }

                (canonical_path, inode.into_file()?, filesystem)
            }
            Err(FileSystemError::FileNotFound)
                if open_options.is_create() || open_options.is_create_new() =>
            {
                let path = path.as_ref();
                let (canonical_path, filesystem, parent_inode) =
                    open_inode(path.parent().unwrap())?;
                let filename = path.file_name().unwrap();
                if filename == "." || filename == ".." || filename == "/" {
                    return Err(FileSystemError::InvalidPath);
                }
                let node = filesystem.create_node(
                    &parent_inode.into_dir()?,
                    filename,
                    FileAttributes::EMPTY,
                )?;
                (
                    canonical_path,
                    node.into_file()
                        .expect("This should be a valid file, we created it"),
                    filesystem,
                )
            }
            Err(e) => return Err(e),
        };

        if open_options.is_truncate() {
            if open_options.is_write() {
                filesystem.set_file_size(&mut node, 0)?;
            } else {
                return Err(FileSystemError::WriteNotSupported);
            }
        }

        let pos = if open_options.is_append() {
            node.size()
        } else {
            0
        };

        let access = FileAccess::new(open_options.is_read(), open_options.is_write());

        Self::from_inode(node, canonical_path, filesystem, pos, blocking_mode, access)
    }

    pub fn from_inode<P: AsRef<Path>>(
        inode: FileNode,
        path: P,
        filesystem: Arc<dyn FileSystem>,
        position: u64,
        blocking_mode: BlockingMode,
        file_access: FileAccess,
    ) -> Result<Self, FileSystemError> {
        Ok(Self {
            filesystem,
            path: path.as_ref().into(),
            inode,
            position,
            is_terminal: false,
            blocking_mode,
            access_helper: AccessHelper::default(),
            file_access,
        })
    }

    pub fn read(&mut self, buf: &mut [u8]) -> Result<u64, FileSystemError> {
        if !self.file_access.is_read() {
            return Err(FileSystemError::ReadNotSupported);
        }

        let count = match self.blocking_mode {
            BlockingMode::None => self.filesystem.read_file(
                &self.inode,
                self.position,
                buf,
                &mut self.access_helper,
            )?,
            BlockingMode::Line => {
                // read until \n or \0
                let mut i = 0;
                loop {
                    let mut char_buf = 0;
                    let read_byte = self.filesystem.read_file(
                        &self.inode,
                        self.position,
                        core::slice::from_mut(&mut char_buf),
                        &mut self.access_helper,
                    );

                    let read_byte = match read_byte {
                        Ok(read_byte) => read_byte,
                        Err(FileSystemError::EndOfFile) => {
                            // if we reached the end of the file, we return i
                            return Ok(i as u64);
                        }
                        Err(e) => return Err(e),
                    };

                    // only put if we can, otherwise, eat the byte and continue
                    if read_byte == 1 {
                        if i < buf.len() {
                            buf[i] = char_buf;
                            i += 1;
                        }
                        if char_buf == b'\n' || char_buf == b'\0' {
                            break;
                        }
                    } else {
                        // TODO: add IO waiting
                        for _ in 0..100 {
                            core::hint::spin_loop();
                        }
                    }
                }
                i as u64
            }
            BlockingMode::Block(size) => {
                // TODO: support block size > 1
                assert_eq!(size, 1, "Only block size 1 is supported");

                // try to read until we have something
                loop {
                    let read_byte = self.filesystem.read_file(
                        &self.inode,
                        self.position,
                        buf,
                        &mut self.access_helper,
                    );

                    let read_byte = match read_byte {
                        Ok(read_byte) => read_byte,
                        Err(FileSystemError::EndOfFile) => {
                            // if we reached the end of the file, we return 0
                            break 0;
                        }
                        Err(e) => return Err(e),
                    };

                    // only if the result is not 0, we can return
                    if read_byte != 0 {
                        break read_byte;
                    }
                    // otherwise we wait
                    // TODO: add IO waiting
                    for _ in 0..100 {
                        core::hint::spin_loop();
                    }
                }
            }
        };

        self.position += count;
        Ok(count)
    }

    pub fn write(&mut self, buf: &[u8]) -> Result<u64, FileSystemError> {
        if !self.file_access.is_write() {
            return Err(FileSystemError::WriteNotSupported);
        }

        let written = self.filesystem.write_file(
            &mut self.inode,
            self.position,
            buf,
            &mut self.access_helper,
        )?;
        self.position += written;
        Ok(written)
    }

    pub fn flush(&mut self) -> Result<(), FileSystemError> {
        if !self.file_access.is_write() {
            return Err(FileSystemError::WriteNotSupported);
        }

        self.filesystem
            .flush_file(&mut self.inode, &mut self.access_helper)
    }

    pub fn seek(&mut self, position: u64) -> Result<(), FileSystemError> {
        self.position = position;
        Ok(())
    }

    pub fn filesize(&self) -> u64 {
        self.inode.size()
    }

    pub fn path(&self) -> &Path {
        &self.path
    }

    pub fn read_to_end(&mut self) -> Result<Vec<u8>, FileSystemError> {
        let mut buf = vec![0; self.inode.size() as usize];
        let mut position = 0;
        loop {
            let read = self.read(&mut buf[position..])?;
            if read == 0 {
                break;
            }
            position += read as usize;
        }
        Ok(buf)
    }

    pub fn is_blocking(&self) -> bool {
        self.blocking_mode != BlockingMode::None
    }

    pub fn blocking_mode(&self) -> BlockingMode {
        self.blocking_mode
    }

    pub fn set_blocking(&mut self, blocking_mode: BlockingMode) {
        self.blocking_mode = blocking_mode;
    }

    pub fn is_terminal(&self) -> bool {
        self.is_terminal
    }

    pub fn set_terminal(&mut self, is_terminal: bool) {
        self.is_terminal = is_terminal;
    }

    pub fn size(&self) -> u64 {
        self.inode.size()
    }

    pub fn current_position(&self) -> u64 {
        self.position
    }

    pub fn set_size(&mut self, size: u64) -> Result<(), FileSystemError> {
        if !self.file_access.is_write() {
            return Err(FileSystemError::WriteNotSupported);
        }

        self.filesystem.set_file_size(&mut self.inode, size)
    }

    /// This is a move verbose method than `Clone::clone`, as I want it to be
    /// more explicit to the user that this is not a normal `clone` operation.
    pub fn clone_inherit(&self) -> Self {
        let s = Self {
            filesystem: self.filesystem.clone(),
            path: self.path.clone(),
            inode: self.inode.clone(),
            position: 0,
            is_terminal: self.is_terminal,
            blocking_mode: self.blocking_mode,
            access_helper: AccessHelper::default(),
            file_access: self.file_access,
        };

        // inform the device of a clone operation
        if let Some(device) = s.inode.device.as_ref() {
            device
                .clone_device()
                // TODO: maybe use error handling instead
                .expect("Failed to clone device for file")
        }

        s
    }
}

impl Drop for File {
    fn drop(&mut self) {
        self.filesystem
            .close_file(&self.inode, core::mem::take(&mut self.access_helper))
            .expect("Failed to close file");
    }
}

#[allow(dead_code)]
impl Directory {
    pub fn open<P: AsRef<Path>>(path: P) -> Result<Self, FileSystemError> {
        let (canonical_path, filesystem, inode) = open_inode(path.as_ref())?;

        Self::from_inode(inode.into_dir()?, canonical_path, filesystem, 0)
    }

    pub fn from_inode<P: AsRef<Path>>(
        inode: DirectoryNode,
        path: P,
        filesystem: Arc<dyn FileSystem>,
        position: u64,
    ) -> Result<Self, FileSystemError> {
        Ok(Self {
            path: path.as_ref().into(),
            inode,
            position,
            dir_entries: None,
            filesystem,
        })
    }

    fn fetch_entries(&mut self) -> Result<(), FileSystemError> {
        if self.dir_entries.is_none() {
            let mut dir_entries = Vec::new();
            self.filesystem.read_dir(&self.inode, &mut |entry| {
                dir_entries.push(entry);
                DirTreverse::Continue
            })?;
            // add entries from the root mappings
            mapping::on_all_matching_mappings(&self.path, |path, _fs| {
                // only add path with one component
                if path.components().count() == 1 {
                    dir_entries.push(
                        DirectoryNode::without_parent(
                            path.components().next().unwrap().as_str().into(),
                            FileAttributes::DIRECTORY,
                            ANOTHER_FILESYSTEM_MAPPING_INODE_MAGIC,
                        )
                        .into(),
                    );
                }
            })?;

            self.dir_entries = Some(dir_entries);
        }

        Ok(())
    }

    pub fn path(&self) -> &Path {
        &self.path
    }

    pub fn create_node(
        &mut self,
        name: &str,
        attributes: FileAttributes,
    ) -> Result<FilesystemNode, FileSystemError> {
        let node = self.filesystem.create_node(&self.inode, name, attributes)?;

        let path = self.path.join(name);

        match node {
            Node::File(file) => Ok(File::from_inode(
                file,
                path,
                self.filesystem.clone(),
                0,
                BlockingMode::None,
                // TODO: for now, set it as readable and writable, find a better way to handle that
                FileAccess::READ | FileAccess::WRITE,
            )?
            .into()),
            Node::Directory(directory) => {
                Ok(Directory::from_inode(directory, path, self.filesystem.clone(), 0)?.into())
            }
        }
    }

    pub fn read(&mut self, entries: &mut [DirEntry]) -> Result<usize, FileSystemError> {
        self.fetch_entries()?;

        let dir_entries = self
            .dir_entries
            .as_ref()
            .expect("Entries must be initialized");

        let mut i = 0;
        while i < entries.len() {
            if self.position >= dir_entries.len() as u64 {
                break;
            }

            let entry = &dir_entries[self.position as usize];
            entries[i] = DirEntry {
                stat: entry.as_file_stat(),
                name: entry.name().into(),
            };
            i += 1;
            self.position += 1;
        }

        Ok(i)
    }
}

impl Clone for Directory {
    fn clone(&self) -> Self {
        Self {
            inode: self.inode.clone(),
            path: self.path.clone(),
            position: 0,
            dir_entries: None, // allow for refetch
            filesystem: self.filesystem.clone(),
        }
    }
}

#[allow(dead_code)]
impl FilesystemNode {
    pub fn as_file(&self) -> Result<&File, FileSystemError> {
        match self {
            Self::File(file) => Ok(file),
            Self::Directory(_) => Err(FileSystemError::IsDirectory),
        }
    }

    pub fn as_file_mut(&mut self) -> Result<&mut File, FileSystemError> {
        match self {
            Self::File(file) => Ok(file),
            Self::Directory(_) => Err(FileSystemError::IsDirectory),
        }
    }

    pub fn as_dir_mut(&mut self) -> Result<&mut Directory, FileSystemError> {
        match self {
            Self::File(_) => Err(FileSystemError::IsNotDirectory),
            Self::Directory(dir) => Ok(dir),
        }
    }
}

impl From<File> for FilesystemNode {
    fn from(file: File) -> Self {
        Self::File(file)
    }
}

impl From<Directory> for FilesystemNode {
    fn from(dir: Directory) -> Self {
        Self::Directory(dir)
    }
}