//! # Schemes //! A scheme is a primitive for handling filesystem syscalls in Redox. //! Schemes accept paths from the kernel for `open`, and file descriptors that they generate //! are then passed for operations like `close`, `read`, `write`, etc. //! //! The kernel validates paths and file descriptors before they are passed to schemes, //! also stripping the scheme identifier of paths if necessary. use alloc::sync::Arc; use alloc::boxed::Box; use alloc::collections::BTreeMap; use alloc::vec::Vec; use core::sync::atomic::AtomicUsize; use spin::{Once, RwLock, RwLockReadGuard, RwLockWriteGuard}; use crate::syscall::error::*; use crate::syscall::scheme::Scheme; use self::debug::DebugScheme; use self::event::EventScheme; use self::initfs::InitFsScheme; use self::irq::IrqScheme; use self::itimer::ITimerScheme; use self::memory::MemoryScheme; use self::pipe::PipeScheme; use self::proc::ProcScheme; use self::root::RootScheme; use self::sys::SysScheme; use self::time::TimeScheme; /// `debug:` - provides access to serial console pub mod debug; /// `event:` - allows reading of `Event`s which are registered using `fevent` pub mod event; /// `initfs:` - a readonly filesystem used for initializing the system pub mod initfs; /// `irq:` - allows userspace handling of IRQs pub mod irq; /// `itimer:` - support for getitimer and setitimer pub mod itimer; /// When compiled with "live" feature - `disk:` - embedded filesystem for live disk #[cfg(feature="live")] pub mod live; /// `memory:` - a scheme for accessing physical memory pub mod memory; /// `pipe:` - used internally by the kernel to implement `pipe` pub mod pipe; /// `proc:` - allows tracing processes and reading/writing their memory pub mod proc; /// `:` - allows the creation of userspace schemes, tightly dependent on `user` pub mod root; /// `sys:` - system information, such as the context list and scheme list pub mod sys; /// `time:` - allows reading time, setting timeouts and getting events when they are met pub mod time; /// A wrapper around userspace schemes, tightly dependent on `root` pub mod user; /// Limit on number of schemes pub const SCHEME_MAX_SCHEMES: usize = 65_536; // Unique identifier for a scheme namespace. int_like!(SchemeNamespace, AtomicSchemeNamespace, usize, AtomicUsize); // Unique identifier for a scheme. int_like!(SchemeId, AtomicSchemeId, usize, AtomicUsize); // Unique identifier for a file descriptor. int_like!(FileHandle, AtomicFileHandle, usize, AtomicUsize); pub struct SchemeIter<'a> { inner: Option<::alloc::collections::btree_map::Iter<'a, Box<[u8]>, SchemeId>> } impl<'a> Iterator for SchemeIter<'a> { type Item = (&'a Box<[u8]>, &'a SchemeId); fn next(&mut self) -> Option { self.inner.as_mut().and_then(|iter| iter.next()) } } /// Scheme list type pub struct SchemeList { map: BTreeMap>>, names: BTreeMap, SchemeId>>, next_ns: usize, next_id: usize } impl SchemeList { /// Create a new scheme list. pub fn new() -> Self { let mut list = SchemeList { map: BTreeMap::new(), names: BTreeMap::new(), // Scheme namespaces always start at 1. 0 is a reserved namespace, the null namespace next_ns: 1, next_id: 1 }; list.new_root(); list } /// Initialize a new namespace fn new_ns(&mut self) -> SchemeNamespace { let ns = SchemeNamespace(self.next_ns); self.next_ns += 1; self.names.insert(ns, BTreeMap::new()); self.insert(ns, Box::new(*b""), |scheme_id| Arc::new(Box::new(RootScheme::new(ns, scheme_id)))).unwrap(); self.insert(ns, Box::new(*b"event"), |_| Arc::new(Box::new(EventScheme))).unwrap(); self.insert(ns, Box::new(*b"itimer"), |_| Arc::new(Box::new(ITimerScheme::new()))).unwrap(); self.insert(ns, Box::new(*b"memory"), |_| Arc::new(Box::new(MemoryScheme::new()))).unwrap(); self.insert(ns, Box::new(*b"sys"), |_| Arc::new(Box::new(SysScheme::new()))).unwrap(); self.insert(ns, Box::new(*b"time"), |scheme_id| Arc::new(Box::new(TimeScheme::new(scheme_id)))).unwrap(); ns } /// Initialize the root namespace fn new_root(&mut self) { // Do common namespace initialization let ns = self.new_ns(); // These schemes should only be available on the root self.insert(ns, Box::new(*b"debug"), |scheme_id| Arc::new(Box::new(DebugScheme::new(scheme_id)))).unwrap(); self.insert(ns, Box::new(*b"initfs"), |_| Arc::new(Box::new(InitFsScheme::new()))).unwrap(); self.insert(ns, Box::new(*b"irq"), |scheme_id| Arc::new(Box::new(IrqScheme::new(scheme_id)))).unwrap(); self.insert(ns, Box::new(*b"proc"), |scheme_id| Arc::new(Box::new(ProcScheme::new(scheme_id)))).unwrap(); #[cfg(feature = "live")] { self.insert(ns, Box::new(*b"disk/live"), |_| Arc::new(Box::new(self::live::DiskScheme::new()))).unwrap(); } // Pipe is special and needs to be in the root namespace self.insert(ns, Box::new(*b"pipe"), |scheme_id| Arc::new(Box::new(PipeScheme::new(scheme_id)))).unwrap(); } pub fn make_ns(&mut self, from: SchemeNamespace, names: &[&[u8]]) -> Result { // Create an empty namespace let to = self.new_ns(); // Copy requested scheme IDs for name in names.iter() { let id = if let Some((id, _scheme)) = self.get_name(from, name) { id } else { return Err(Error::new(ENODEV)); }; if let Some(ref mut names) = self.names.get_mut(&to) { assert!(names.insert(name.to_vec().into_boxed_slice(), id).is_none()); } else { panic!("scheme namespace not found"); } } Ok(to) } pub fn iter(&self) -> ::alloc::collections::btree_map::Iter>> { self.map.iter() } pub fn iter_name(&self, ns: SchemeNamespace) -> SchemeIter { SchemeIter { inner: self.names.get(&ns).map(|names| names.iter()) } } /// Get the nth scheme. pub fn get(&self, id: SchemeId) -> Option<&Arc>> { self.map.get(&id) } pub fn get_name(&self, ns: SchemeNamespace, name: &[u8]) -> Option<(SchemeId, &Arc>)> { if let Some(names) = self.names.get(&ns) { if let Some(&id) = names.get(name) { return self.get(id).map(|scheme| (id, scheme)); } } None } /// Create a new scheme. pub fn insert(&mut self, ns: SchemeNamespace, name: Box<[u8]>, scheme_fn: F) -> Result where F: Fn(SchemeId) -> Arc> { if let Some(names) = self.names.get(&ns) { if names.contains_key(&name) { return Err(Error::new(EEXIST)); } } if self.next_id >= SCHEME_MAX_SCHEMES { self.next_id = 1; } while self.map.contains_key(&SchemeId(self.next_id)) { self.next_id += 1; } /* Allow scheme list to grow if required if self.next_id >= SCHEME_MAX_SCHEMES { return Err(Error::new(EAGAIN)); } */ let id = SchemeId(self.next_id); self.next_id += 1; let scheme = scheme_fn(id); assert!(self.map.insert(id, scheme).is_none()); if let Some(ref mut names) = self.names.get_mut(&ns) { assert!(names.insert(name, id).is_none()); } else { // Nonexistent namespace, posssibly null namespace return Err(Error::new(ENODEV)); } Ok(id) } /// Remove a scheme pub fn remove(&mut self, id: SchemeId) { assert!(self.map.remove(&id).is_some()); for (_ns, names) in self.names.iter_mut() { let mut remove = Vec::with_capacity(1); for (name, name_id) in names.iter() { if name_id == &id { remove.push(name.clone()); } } for name in remove { assert!(names.remove(&name).is_some()); } } } } /// Schemes list static SCHEMES: Once> = Once::new(); /// Initialize schemes, called if needed fn init_schemes() -> RwLock { RwLock::new(SchemeList::new()) } /// Get the global schemes list, const pub fn schemes() -> RwLockReadGuard<'static, SchemeList> { SCHEMES.call_once(init_schemes).read() } /// Get the global schemes list, mutable pub fn schemes_mut() -> RwLockWriteGuard<'static, SchemeList> { SCHEMES.call_once(init_schemes).write() }