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
use core::fmt;

use alloc::{collections::BTreeMap, string::String, sync::Arc};
use tracing::info;

use crate::{
    fs::{
        self, DirTreverse, DirectoryNode, FileAttributes, FileNode, FileSystem, FileSystemError,
        Node,
    },
    power,
    sync::{once::OnceLock, spin::rwlock::RwLock},
};

use self::{
    keyboard_mouse::{KeyboardDeviceCreator, MouseDeviceCreator},
    pci::{PciDeviceConfig, PciDeviceProbeIterator},
};

pub mod clock;
pub mod ide;
pub mod keyboard_mouse;
pub mod net;
pub mod pci;
pub mod pipe;

static DEVICES: OnceLock<Arc<RwLock<Devices>>> = OnceLock::new();

pub(crate) const DEVICES_FILESYSTEM_CLUSTER_MAGIC: u64 = 0xdef1ce5;
pub(crate) const DEVICES_FILESYSTEM_ROOT_INODE_MAGIC: u64 = 0xdef1ce55007;

#[derive(Debug)]
struct Devices {
    devices: BTreeMap<String, Arc<dyn Device>>,
}

pub trait Device: Sync + Send + fmt::Debug {
    fn name(&self) -> &str;
    fn read(&self, _offset: u64, _buf: &mut [u8]) -> Result<u64, FileSystemError> {
        Err(FileSystemError::ReadNotSupported)
    }
    fn write(&self, _offset: u64, _buf: &[u8]) -> Result<u64, FileSystemError> {
        Err(FileSystemError::WriteNotSupported)
    }
    fn set_size(&self, _size: u64) -> Result<(), FileSystemError> {
        Err(FileSystemError::WriteNotSupported)
    }
    /// Informs the device that it is closed.
    fn close(&self) -> Result<(), FileSystemError> {
        Ok(())
    }
    /// Informs the device that it is cloned.
    fn clone_device(&self) -> Result<(), FileSystemError> {
        Ok(())
    }
    /// Open the device.
    /// This tells the device manager that when opening a file with this device name, it should
    /// instead use the device returned by this function.
    /// if `None`, it will just use the device directly.
    fn try_create(&self) -> Option<Result<Arc<dyn Device>, FileSystemError>> {
        None
    }
}

impl FileSystem for RwLock<Devices> {
    fn open_root(&self) -> Result<DirectoryNode, FileSystemError> {
        Ok(DirectoryNode::without_parent(
            String::from("/"),
            FileAttributes::DIRECTORY,
            DEVICES_FILESYSTEM_ROOT_INODE_MAGIC,
        ))
    }

    fn read_dir(
        &self,
        inode: &DirectoryNode,
        handler: &mut dyn FnMut(Node) -> DirTreverse,
    ) -> Result<(), FileSystemError> {
        assert_eq!(inode.start_cluster(), DEVICES_FILESYSTEM_ROOT_INODE_MAGIC);

        if inode.name().is_empty() || inode.name() == "/" {
            for node in self.read().devices.iter().map(|(name, device)| {
                FileNode::new_device(name.clone(), FileAttributes::EMPTY, device.clone()).into()
            }) {
                if let DirTreverse::Stop = handler(node) {
                    break;
                }
            }
            Ok(())
        } else {
            Err(FileSystemError::FileNotFound)
        }
    }

    fn number_global_refs(&self) -> usize {
        // we have `DEVICES` mutex globally stored
        1
    }

    fn unmount(self: Arc<Self>) {
        // clean the devices
        self.write().devices.clear();
    }
}

pub fn init_devices_mapping() {
    DEVICES
        .set(Arc::new(RwLock::new(Devices {
            devices: BTreeMap::new(),
        })))
        .expect("Devices already initialized");

    // initialize builtin devices
    register_device(Arc::new(power::PowerDevice));

    fs::mapping::mount("/devices", DEVICES.get().clone()).expect("Mapping failed");
}

pub fn register_device(device: Arc<dyn Device>) {
    let mut devices = DEVICES.get().write();
    assert!(
        !devices.devices.contains_key(device.name()),
        "Device {} already registered",
        device.name()
    );
    info!("Registered {} device", device.name());
    devices.devices.insert(String::from(device.name()), device);
}

pub fn probe_pci_devices() {
    let pci_device_iter = PciDeviceProbeIterator::new();
    for device in pci_device_iter {
        if probe_pci_driver(&device) {
            info!(
                "[{:02X}.{:02X}.{:02X}] Driver found for device: {:04X}:{:04X} - {}",
                device.bus,
                device.dev,
                device.func,
                device.vendor_id,
                device.device_id,
                device.device_type
            );
        } else {
            info!(
                "[{:02X}.{:02X}.{:02X}] No driver found for device: {:04X}:{:04X} - {}",
                device.bus,
                device.dev,
                device.func,
                device.vendor_id,
                device.device_id,
                device.device_type
            );
        }
    }
}

pub fn probe_pci_driver(pci_device: &PciDeviceConfig) -> bool {
    ide::try_register_ide_device(pci_device) || net::try_register_net_device(pci_device)
    // add more devices here
}

/// Devices such as PS/2 keyboard, mouse, serial ports, etc.
pub fn init_legacy_devices() {
    keyboard_mouse::init_device();
    register_device(Arc::new(KeyboardDeviceCreator));
    register_device(Arc::new(MouseDeviceCreator));
}