140314b30SXiaoye Zheng use crate::arch::kvm::vmx::vcpu::VcpuContextFrame; 240314b30SXiaoye Zheng use crate::arch::KVMArch; 302343d0bSLoGin use crate::driver::base::device::device_number::DeviceNumber; 440314b30SXiaoye Zheng use crate::filesystem::devfs::DevFS; 540314b30SXiaoye Zheng use crate::filesystem::vfs::{ 602343d0bSLoGin core::generate_inode_id, file::FileMode, FilePrivateData, FileSystem, FileType, IndexNode, 702343d0bSLoGin Metadata, 840314b30SXiaoye Zheng }; 940314b30SXiaoye Zheng use crate::mm::VirtAddr; 1040314b30SXiaoye Zheng use crate::syscall::user_access::copy_from_user; 1140314b30SXiaoye Zheng use crate::virt::kvm::vcpu::Vcpu; 1240314b30SXiaoye Zheng use crate::virt::kvm::vm; 1340314b30SXiaoye Zheng use crate::{filesystem, kdebug}; 1491e9d4abSLoGin use crate::{libs::spinlock::SpinLock, time::TimeSpec}; 1540314b30SXiaoye Zheng use alloc::{ 1640314b30SXiaoye Zheng string::String, 1740314b30SXiaoye Zheng sync::{Arc, Weak}, 1840314b30SXiaoye Zheng vec::Vec, 1940314b30SXiaoye Zheng }; 2091e9d4abSLoGin use system_error::SystemError; 2140314b30SXiaoye Zheng 2240314b30SXiaoye Zheng // pub const KVM_API_VERSION:u32 = 12; 2340314b30SXiaoye Zheng pub const KVM_RUN: u32 = 0x00; 2440314b30SXiaoye Zheng // pub const KVM_GET_REGS: u32 = 0x01; 2540314b30SXiaoye Zheng pub const KVM_SET_REGS: u32 = 0x02; 2640314b30SXiaoye Zheng 2740314b30SXiaoye Zheng // pub const GUEST_STACK_SIZE:usize = 1024; 2840314b30SXiaoye Zheng // pub const HOST_STACK_SIZE:usize = 0x1000 * 6; 2940314b30SXiaoye Zheng 3040314b30SXiaoye Zheng /* 3140314b30SXiaoye Zheng * ioctls for /dev/vm fds: 3240314b30SXiaoye Zheng */ 3340314b30SXiaoye Zheng // pub const KVM_CREATE_VCPU: u32 = 0x00; 3440314b30SXiaoye Zheng // pub const KVM_SET_USER_MEMORY_REGION: u32 = 0x01; 3540314b30SXiaoye Zheng // pub const KVM_GET_DIRTY_LOG: u32 = 0x02; 3640314b30SXiaoye Zheng // pub const KVM_IRQFD: u32 = 0x03; 3740314b30SXiaoye Zheng // pub const KVM_IOEVENTFD: u32 = 0x04; 3840314b30SXiaoye Zheng // pub const KVM_IRQ_LINE_STATUS: u32 = 0x05; 3940314b30SXiaoye Zheng 4040314b30SXiaoye Zheng // #[derive(Debug)] 4140314b30SXiaoye Zheng // pub struct InodeInfo { 4240314b30SXiaoye Zheng // kvm: Arc<Hypervisor>, 4340314b30SXiaoye Zheng // } 4440314b30SXiaoye Zheng 4540314b30SXiaoye Zheng #[derive(Debug)] 4640314b30SXiaoye Zheng pub struct VcpuInode { 4740314b30SXiaoye Zheng /// uuid 暂时不知道有什么用(x 4840314b30SXiaoye Zheng // uuid: Uuid, 4940314b30SXiaoye Zheng /// 指向自身的弱引用 5040314b30SXiaoye Zheng self_ref: Weak<LockedVcpuInode>, 5140314b30SXiaoye Zheng /// 指向inode所在的文件系统对象的指针 5240314b30SXiaoye Zheng fs: Weak<DevFS>, 5340314b30SXiaoye Zheng /// INode 元数据 5440314b30SXiaoye Zheng metadata: Metadata, 5540314b30SXiaoye Zheng // fdata: InodeInfo, 5640314b30SXiaoye Zheng } 5740314b30SXiaoye Zheng 5840314b30SXiaoye Zheng #[derive(Debug)] 5940314b30SXiaoye Zheng pub struct LockedVcpuInode(SpinLock<VcpuInode>); 6040314b30SXiaoye Zheng 6140314b30SXiaoye Zheng impl LockedVcpuInode { 6240314b30SXiaoye Zheng pub fn new() -> Arc<Self> { 6340314b30SXiaoye Zheng let inode = VcpuInode { 6440314b30SXiaoye Zheng self_ref: Weak::default(), 6540314b30SXiaoye Zheng fs: Weak::default(), 6640314b30SXiaoye Zheng metadata: Metadata { 6740314b30SXiaoye Zheng dev_id: 1, 6840314b30SXiaoye Zheng inode_id: generate_inode_id(), 6940314b30SXiaoye Zheng size: 0, 7040314b30SXiaoye Zheng blk_size: 0, 7140314b30SXiaoye Zheng blocks: 0, 7240314b30SXiaoye Zheng atime: TimeSpec::default(), 7340314b30SXiaoye Zheng mtime: TimeSpec::default(), 7440314b30SXiaoye Zheng ctime: TimeSpec::default(), 7540314b30SXiaoye Zheng file_type: FileType::KvmDevice, // 文件夹,block设备,char设备 7640314b30SXiaoye Zheng mode: filesystem::vfs::syscall::ModeType::S_IALLUGO, 7740314b30SXiaoye Zheng nlinks: 1, 7840314b30SXiaoye Zheng uid: 0, 7940314b30SXiaoye Zheng gid: 0, 8002343d0bSLoGin raw_dev: DeviceNumber::default(), // 这里用来作为device number 8140314b30SXiaoye Zheng }, 8240314b30SXiaoye Zheng // fdata: InodeInfo { 8340314b30SXiaoye Zheng // kvm: kvm, 8440314b30SXiaoye Zheng // }, 8540314b30SXiaoye Zheng }; 8640314b30SXiaoye Zheng 8740314b30SXiaoye Zheng let result = Arc::new(LockedVcpuInode(SpinLock::new(inode))); 8840314b30SXiaoye Zheng result.0.lock().self_ref = Arc::downgrade(&result); 8940314b30SXiaoye Zheng 9040314b30SXiaoye Zheng return result; 9140314b30SXiaoye Zheng } 9240314b30SXiaoye Zheng } 9340314b30SXiaoye Zheng 9440314b30SXiaoye Zheng impl IndexNode for LockedVcpuInode { 9540314b30SXiaoye Zheng fn as_any_ref(&self) -> &dyn core::any::Any { 9640314b30SXiaoye Zheng self 9740314b30SXiaoye Zheng } 9840314b30SXiaoye Zheng 9940314b30SXiaoye Zheng fn open(&self, _data: &mut FilePrivateData, _mode: &FileMode) -> Result<(), SystemError> { 10040314b30SXiaoye Zheng kdebug!("file private data:{:?}", _data); 10140314b30SXiaoye Zheng return Ok(()); 10240314b30SXiaoye Zheng } 10340314b30SXiaoye Zheng 10440314b30SXiaoye Zheng fn close(&self, _data: &mut FilePrivateData) -> Result<(), SystemError> { 10540314b30SXiaoye Zheng return Ok(()); 10640314b30SXiaoye Zheng } 10740314b30SXiaoye Zheng 10840314b30SXiaoye Zheng fn metadata(&self) -> Result<Metadata, SystemError> { 10940314b30SXiaoye Zheng return Ok(self.0.lock().metadata.clone()); 11040314b30SXiaoye Zheng } 11140314b30SXiaoye Zheng 11240314b30SXiaoye Zheng fn fs(&self) -> Arc<dyn FileSystem> { 11340314b30SXiaoye Zheng return self.0.lock().fs.upgrade().unwrap(); 11440314b30SXiaoye Zheng } 11540314b30SXiaoye Zheng 11640314b30SXiaoye Zheng fn list(&self) -> Result<Vec<String>, SystemError> { 11740314b30SXiaoye Zheng Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) 11840314b30SXiaoye Zheng } 11940314b30SXiaoye Zheng 12040314b30SXiaoye Zheng fn set_metadata(&self, metadata: &Metadata) -> Result<(), SystemError> { 12140314b30SXiaoye Zheng let mut inode = self.0.lock(); 12240314b30SXiaoye Zheng inode.metadata.atime = metadata.atime; 12340314b30SXiaoye Zheng inode.metadata.mtime = metadata.mtime; 12440314b30SXiaoye Zheng inode.metadata.ctime = metadata.ctime; 12540314b30SXiaoye Zheng inode.metadata.mode = metadata.mode; 12640314b30SXiaoye Zheng inode.metadata.uid = metadata.uid; 12740314b30SXiaoye Zheng inode.metadata.gid = metadata.gid; 12840314b30SXiaoye Zheng 12940314b30SXiaoye Zheng return Ok(()); 13040314b30SXiaoye Zheng } 13140314b30SXiaoye Zheng 13240314b30SXiaoye Zheng /// @brief io control接口 13340314b30SXiaoye Zheng /// 13440314b30SXiaoye Zheng /// @param cmd 命令 13540314b30SXiaoye Zheng /// @param data 数据 13640314b30SXiaoye Zheng /// 13740314b30SXiaoye Zheng /// @return 成功:Ok() 13840314b30SXiaoye Zheng /// 失败:Err(错误码) 139*52da9a59SGnoCiYeH fn ioctl( 140*52da9a59SGnoCiYeH &self, 141*52da9a59SGnoCiYeH cmd: u32, 142*52da9a59SGnoCiYeH data: usize, 143*52da9a59SGnoCiYeH _private_data: &FilePrivateData, 144*52da9a59SGnoCiYeH ) -> Result<usize, SystemError> { 14540314b30SXiaoye Zheng match cmd { 14640314b30SXiaoye Zheng 0xdeadbeef => { 14740314b30SXiaoye Zheng kdebug!("kvm_cpu ioctl"); 14840314b30SXiaoye Zheng Ok(0) 14940314b30SXiaoye Zheng } 15040314b30SXiaoye Zheng KVM_RUN => { 15140314b30SXiaoye Zheng kdebug!("kvm_cpu ioctl"); 15240314b30SXiaoye Zheng // let guest_stack = vec![0xCC; GUEST_STACK_SIZE]; 15340314b30SXiaoye Zheng // let host_stack = vec![0xCC; HOST_STACK_SIZE]; 15440314b30SXiaoye Zheng // let guest_rsp = guest_stack.as_ptr() as u64 + GUEST_STACK_SIZE as u64; 15540314b30SXiaoye Zheng // let host_rsp = (host_stack.as_ptr() as u64) + HOST_STACK_SIZE as u64; 15640314b30SXiaoye Zheng // let hypervisor = Hypervisor::new(1, host_rsp, 0).expect("Cannot create hypervisor"); 15740314b30SXiaoye Zheng // let vcpu = VmxVcpu::new(1, Arc::new(Mutex::new(hypervisor)), host_rsp, guest_rsp, guest_code as *const () as u64).expect("Cannot create VcpuData"); 15840314b30SXiaoye Zheng // vcpu.virtualize_cpu().expect("Cannot virtualize cpu"); 15940314b30SXiaoye Zheng let vcpu = vm(0).unwrap().vcpu[0].clone(); 16040314b30SXiaoye Zheng vcpu.lock().virtualize_cpu()?; 16140314b30SXiaoye Zheng KVMArch::kvm_arch_vcpu_ioctl_run(vcpu.as_ref())?; 16240314b30SXiaoye Zheng Ok(0) 16340314b30SXiaoye Zheng } 16440314b30SXiaoye Zheng KVM_SET_REGS => { 16540314b30SXiaoye Zheng let mut kvm_regs = VcpuContextFrame::default(); 16640314b30SXiaoye Zheng unsafe { 16740314b30SXiaoye Zheng copy_from_user( 16840314b30SXiaoye Zheng core::slice::from_raw_parts_mut( 16940314b30SXiaoye Zheng (&mut kvm_regs as *mut _) as *mut u8, 17040314b30SXiaoye Zheng core::mem::size_of::<VcpuContextFrame>(), 17140314b30SXiaoye Zheng ), 17240314b30SXiaoye Zheng VirtAddr::new(data), 17340314b30SXiaoye Zheng )?; 17440314b30SXiaoye Zheng } 17540314b30SXiaoye Zheng kdebug!( 17640314b30SXiaoye Zheng "rip={:x}, rflags={:x}, rsp={:x}, rax={:x}", 17740314b30SXiaoye Zheng kvm_regs.rip, 17840314b30SXiaoye Zheng kvm_regs.rflags, 17940314b30SXiaoye Zheng kvm_regs.regs[6], 18040314b30SXiaoye Zheng kvm_regs.regs[0], 18140314b30SXiaoye Zheng ); 18240314b30SXiaoye Zheng 18340314b30SXiaoye Zheng let vcpu = vm(0).unwrap().vcpu[0].clone(); 18440314b30SXiaoye Zheng vcpu.lock().set_regs(kvm_regs)?; 18540314b30SXiaoye Zheng 18640314b30SXiaoye Zheng Ok(0) 18740314b30SXiaoye Zheng } 18840314b30SXiaoye Zheng _ => { 18940314b30SXiaoye Zheng kdebug!("kvm_cpu ioctl"); 19040314b30SXiaoye Zheng Ok(usize::MAX) 19140314b30SXiaoye Zheng } 19240314b30SXiaoye Zheng } 19340314b30SXiaoye Zheng } 19440314b30SXiaoye Zheng /// 读设备 - 应该调用设备的函数读写,而不是通过文件系统读写 19540314b30SXiaoye Zheng fn read_at( 19640314b30SXiaoye Zheng &self, 19740314b30SXiaoye Zheng _offset: usize, 19840314b30SXiaoye Zheng _len: usize, 19940314b30SXiaoye Zheng _buf: &mut [u8], 20040314b30SXiaoye Zheng _data: &mut FilePrivateData, 20140314b30SXiaoye Zheng ) -> Result<usize, SystemError> { 20240314b30SXiaoye Zheng Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) 20340314b30SXiaoye Zheng } 20440314b30SXiaoye Zheng 20540314b30SXiaoye Zheng /// 写设备 - 应该调用设备的函数读写,而不是通过文件系统读写 20640314b30SXiaoye Zheng fn write_at( 20740314b30SXiaoye Zheng &self, 20840314b30SXiaoye Zheng _offset: usize, 20940314b30SXiaoye Zheng _len: usize, 21040314b30SXiaoye Zheng _buf: &[u8], 21140314b30SXiaoye Zheng _data: &mut FilePrivateData, 21240314b30SXiaoye Zheng ) -> Result<usize, SystemError> { 21340314b30SXiaoye Zheng Err(SystemError::EOPNOTSUPP_OR_ENOTSUP) 21440314b30SXiaoye Zheng } 21540314b30SXiaoye Zheng } 216