use core::fmt::Debug; use alloc::{ string::{String, ToString}, sync::{Arc, Weak}, vec::Vec, }; use hashbrown::HashMap; use log::warn; use system_error::SystemError; use crate::{ driver::{ base::{ char::CharDevOps, device::{ device_number::{DeviceNumber, Major}, driver::Driver, }, kobject::KObject, }, tty::tty_port::TtyPortState, }, libs::{ rwlock::RwLock, spinlock::{SpinLock, SpinLockGuard}, }, }; use super::{ termios::{Termios, WindowSize}, tty_core::{TtyCore, TtyCoreData}, tty_ldisc::TtyLdiscManager, tty_port::{DefaultTtyPort, TtyPort}, }; lazy_static! { pub static ref TTY_DRIVERS: SpinLock>> = SpinLock::new(Vec::new()); } pub enum TtyDriverPrivateData { Unused, /// true表示主设备 false表示从设备 Pty(bool), } pub struct TtyDriverManager; impl TtyDriverManager { pub fn lookup_tty_driver(dev_num: DeviceNumber) -> Option<(usize, Arc)> { let drivers_guard = TTY_DRIVERS.lock(); for driver in drivers_guard.iter() { let base = DeviceNumber::new(driver.major, driver.minor_start); if dev_num < base || dev_num.data() > base.data() + driver.device_count { continue; } return Some(((dev_num.data() - base.data()) as usize, driver.clone())); } None } /// ## 注册驱动 pub fn tty_register_driver(mut driver: TtyDriver) -> Result, SystemError> { // 查看是否注册设备号 if driver.major == Major::UNNAMED_MAJOR { let dev_num = CharDevOps::alloc_chardev_region( driver.minor_start, driver.device_count, driver.name, )?; driver.major = dev_num.major(); driver.minor_start = dev_num.minor(); } else { let dev_num = DeviceNumber::new(driver.major, driver.minor_start); CharDevOps::register_chardev_region(dev_num, driver.device_count, driver.name)?; } driver.flags |= TtyDriverFlag::TTY_DRIVER_INSTALLED; // 加入全局TtyDriver表 let driver = Arc::new(driver); TTY_DRIVERS.lock().push(driver.clone()); // TODO: 加入procfs? Ok(driver) } } #[allow(dead_code)] #[derive(Debug)] #[cast_to([sync] Driver)] pub struct TtyDriver { /// /proc/tty中使用的驱动程序名称 driver_name: String, /// 用于构造/dev节点名称,例如name设置为tty,则按照name_base分配节点tty0,tty1等 name: &'static str, /// 命名基数 name_base: usize, /// 主设备号 major: Major, /// 起始次设备号 minor_start: u32, /// 最多支持的tty数量 device_count: u32, /// tty驱动程序类型 tty_driver_type: TtyDriverType, /// 驱动程序子类型 tty_driver_sub_type: TtyDriverSubType, /// 每个tty的默认termios init_termios: Termios, /// 懒加载termios,在tty设备关闭时,会将termios按照设备的index保存进这个集合,以便下次打开使用 saved_termios: Vec, /// 驱动程序标志 flags: TtyDriverFlag, /// pty链接此driver的入口 other_pty_driver: RwLock>, /// 具体类型的tty驱动方法 driver_funcs: Arc, /// 管理的tty设备列表 ttys: SpinLock>>, /// 管理的端口列表 ports: RwLock>>, // procfs入口? } impl TtyDriver { #[allow(clippy::too_many_arguments)] pub fn new( count: u32, node_name: &'static str, node_name_base: usize, major: Major, minor_start: u32, tty_driver_type: TtyDriverType, default_termios: Termios, driver_funcs: Arc, ) -> Self { let mut ports: Vec> = Vec::with_capacity(count as usize); for _ in 0..count { ports.push(Arc::new(DefaultTtyPort::new())) } TtyDriver { driver_name: Default::default(), name: node_name, name_base: node_name_base, major, minor_start, device_count: count, tty_driver_type, tty_driver_sub_type: Default::default(), init_termios: default_termios, flags: TtyDriverFlag::empty(), other_pty_driver: Default::default(), driver_funcs, ttys: SpinLock::new(HashMap::new()), saved_termios: Vec::with_capacity(count as usize), ports: RwLock::new(ports), } } pub fn tty_line_name(&self, index: usize) -> String { if self .flags .contains(TtyDriverFlag::TTY_DRIVER_UNNUMBERED_NODE) { return self.name.to_string(); } else { return format!("{}{}", self.name, index + self.name_base); } } pub fn add_tty(&self, tty_core: Arc) { self.ttys.lock().insert(tty_core.core().index(), tty_core); } #[inline] pub fn driver_funcs(&self) -> Arc { self.driver_funcs.clone() } #[inline] pub fn init_termios(&self) -> Termios { self.init_termios } #[inline] pub fn init_termios_mut(&mut self) -> &mut Termios { &mut self.init_termios } #[inline] pub fn other_pty_driver(&self) -> Option> { self.other_pty_driver.read().upgrade() } pub fn set_other_pty_driver(&self, driver: Weak) { *self.other_pty_driver.write() = driver } #[inline] pub fn set_subtype(&mut self, tp: TtyDriverSubType) { self.tty_driver_sub_type = tp; } #[inline] pub fn ttys(&self) -> SpinLockGuard>> { self.ttys.lock() } #[inline] pub fn saved_termios(&self) -> &Vec { &self.saved_termios } #[inline] pub fn flags(&self) -> TtyDriverFlag { self.flags } #[inline] fn lookup_tty(&self, index: usize) -> Option> { let ret = self .driver_funcs() .lookup(index, TtyDriverPrivateData::Unused); if let Err(SystemError::ENOSYS) = ret { let device_guard = self.ttys.lock(); return device_guard.get(&index).cloned(); } ret.ok() } fn standard_install(&self, tty_core: Arc) -> Result<(), SystemError> { let tty = tty_core.core(); tty.init_termios(); // TODO:设置termios波特率? tty.add_count(); self.ttys.lock().insert(tty.index(), tty_core); Ok(()) } fn driver_install_tty(driver: Arc, tty: Arc) -> Result<(), SystemError> { let res = tty.install(driver.clone(), tty.clone()); if let Err(err) = res { if err == SystemError::ENOSYS { return driver.standard_install(tty); } else { return Err(err); } } driver.add_tty(tty); Ok(()) } pub fn init_tty_device( driver: Arc, index: usize, ) -> Result, SystemError> { let tty = TtyCore::new(driver.clone(), index); Self::driver_install_tty(driver.clone(), tty.clone())?; let core = tty.core(); if core.port().is_none() { let ports = driver.ports.read(); ports[core.index()].setup_internal_tty(Arc::downgrade(&tty)); tty.set_port(ports[core.index()].clone()); } TtyLdiscManager::ldisc_setup(tty.clone(), tty.core().link())?; Ok(tty) } /// ## 通过设备号找到对应驱动并且初始化Tty pub fn open_tty(index: usize, driver: Arc) -> Result, SystemError> { let tty = match driver.lookup_tty(index) { Some(tty) => { // TODO: 暂时这么写,因为还没写TtyPort if tty.core().port().is_none() { warn!("{} port is None", tty.core().name()); } else if tty.core().port().unwrap().state() == TtyPortState::KOPENED { return Err(SystemError::EBUSY); } tty.reopen()?; tty } None => Self::init_tty_device(driver, index)?, }; return Ok(tty); } pub fn tty_driver_type(&self) -> TtyDriverType { self.tty_driver_type } pub fn tty_driver_sub_type(&self) -> TtyDriverSubType { self.tty_driver_sub_type } } impl KObject for TtyDriver { fn as_any_ref(&self) -> &dyn core::any::Any { todo!() } fn set_inode(&self, _inode: Option>) { todo!() } fn inode(&self) -> Option> { todo!() } fn parent(&self) -> Option> { todo!() } fn set_parent(&self, _parent: Option>) { todo!() } fn kset(&self) -> Option> { todo!() } fn set_kset(&self, _kset: Option>) { todo!() } fn kobj_type(&self) -> Option<&'static dyn crate::driver::base::kobject::KObjType> { todo!() } fn set_kobj_type(&self, _ktype: Option<&'static dyn crate::driver::base::kobject::KObjType>) { todo!() } fn name(&self) -> alloc::string::String { todo!() } fn set_name(&self, _name: alloc::string::String) { todo!() } fn kobj_state( &self, ) -> crate::libs::rwlock::RwLockReadGuard { todo!() } fn kobj_state_mut( &self, ) -> crate::libs::rwlock::RwLockWriteGuard { todo!() } fn set_kobj_state(&self, _state: crate::driver::base::kobject::KObjectState) { todo!() } } impl Driver for TtyDriver { fn id_table(&self) -> Option { todo!() } fn devices( &self, ) -> alloc::vec::Vec> { todo!() } fn add_device(&self, _device: alloc::sync::Arc) { todo!() } fn delete_device(&self, _device: &alloc::sync::Arc) { todo!() } fn set_bus(&self, _bus: Option>) { todo!() } } pub trait TtyOperation: Sync + Send + Debug { fn install(&self, _driver: Arc, _tty: Arc) -> Result<(), SystemError> { return Err(SystemError::ENOSYS); } fn open(&self, tty: &TtyCoreData) -> Result<(), SystemError>; /// ## 获取可写字符数 fn write_room(&self, _tty: &TtyCoreData) -> usize { // 默认 2048 } fn write(&self, tty: &TtyCoreData, buf: &[u8], nr: usize) -> Result; fn flush_chars(&self, tty: &TtyCoreData); fn put_char(&self, _tty: &TtyCoreData, _ch: u8) -> Result<(), SystemError> { Err(SystemError::ENOSYS) } fn start(&self, _tty: &TtyCoreData) -> Result<(), SystemError> { Err(SystemError::ENOSYS) } fn stop(&self, _tty: &TtyCoreData) -> Result<(), SystemError> { Err(SystemError::ENOSYS) } fn flush_buffer(&self, _tty: &TtyCoreData) -> Result<(), SystemError> { Err(SystemError::ENOSYS) } fn ioctl(&self, tty: Arc, cmd: u32, arg: usize) -> Result<(), SystemError>; fn chars_in_buffer(&self) -> usize { 0 } fn set_termios(&self, _tty: Arc, _old_termios: Termios) -> Result<(), SystemError> { Err(SystemError::ENOSYS) } fn lookup( &self, _index: usize, _priv_data: TtyDriverPrivateData, ) -> Result, SystemError> { Err(SystemError::ENOSYS) } fn close(&self, tty: Arc) -> Result<(), SystemError>; fn resize(&self, _tty: Arc, _winsize: WindowSize) -> Result<(), SystemError>; } #[allow(dead_code)] #[derive(Debug, PartialEq, Copy, Clone)] pub enum TtyDriverType { System, Console, Serial, Pty, Scc, Syscons, } #[allow(dead_code)] #[derive(Debug, PartialEq, Copy, Clone)] pub enum TtyDriverSubType { Undefined, Tty, Console, Syscons, Sysptmx, PtyMaster, PtySlave, SerialNormal, } impl Default for TtyDriverSubType { fn default() -> Self { Self::Undefined } } bitflags! { pub struct TtyDriverFlag: u32 { /// 表示 tty 驱动程序已安装 const TTY_DRIVER_INSTALLED = 0x0001; /// 请求 tty 层在最后一个进程关闭设备时重置 termios 设置 const TTY_DRIVER_RESET_TERMIOS = 0x0002; /// 表示驱动程序将保证在设置了该标志的 tty 上不设置任何特殊字符处理标志(原模式) const TTY_DRIVER_REAL_RAW = 0x0004; /// 以下四个标志位为内存分配相关,目前设计无需使用 const TTY_DRIVER_DYNAMIC_DEV = 0x0008; const TTY_DRIVER_DEVPTS_MEM = 0x0010; const TTY_DRIVER_HARDWARE_BREAK = 0x0020; const TTY_DRIVER_DYNAMIC_ALLOC = 0x0040; /// 表示不创建带有编号的 /dev 节点。 /// 例如,创建 /dev/ttyprintk 而不是 /dev/ttyprintk0。仅在为单个 tty 设备分配驱动程序时适用。 const TTY_DRIVER_UNNUMBERED_NODE = 0x0080; } }