Merge pull request #5 from gaotianyu1350/master

Add char device to simple file system
master
Wang Runji 6 years ago committed by GitHub
commit b421e751bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
.gitignore vendored

@ -3,3 +3,5 @@
Cargo.lock Cargo.lock
.idea .idea
/*.img /*.img
*.swp
*.iml

@ -12,20 +12,21 @@ use alloc::{
sync::{Arc, Weak}, sync::{Arc, Weak},
vec, vec,
vec::Vec, vec::Vec,
boxed::Box
}; };
use core::any::Any; use core::any::Any;
use core::fmt::{Debug, Error, Formatter}; use core::fmt::{Debug, Error, Formatter};
use core::mem::uninitialized; use core::mem::uninitialized;
use bitvec::BitVec; use bitvec::BitVec;
use spin::RwLock; use spin::{RwLock, RwLockReadGuard, RwLockWriteGuard};
use rcore_fs::dev::Device; use rcore_fs::dev::Device;
use rcore_fs::dirty::Dirty; use rcore_fs::dirty::Dirty;
use rcore_fs::util::*; use rcore_fs::util::*;
use rcore_fs::vfs::{self, FileSystem, FsError, INode, Timespec}; use rcore_fs::vfs::{self, FileSystem, FsError, INode, Timespec};
use self::structs::*; pub use self::structs::*;
mod structs; mod structs;
#[cfg(test)] #[cfg(test)]
@ -64,6 +65,7 @@ pub struct INodeImpl {
disk_inode: RwLock<Dirty<DiskINode>>, disk_inode: RwLock<Dirty<DiskINode>>,
/// Reference to SFS, used by almost all operations /// Reference to SFS, used by almost all operations
fs: Arc<SimpleFileSystem>, fs: Arc<SimpleFileSystem>,
device_inode_id: usize
} }
impl Debug for INodeImpl { impl Debug for INodeImpl {
@ -367,28 +369,74 @@ impl INodeImpl {
assert!(disk_inode.nlinks > 0); assert!(disk_inode.nlinks > 0);
disk_inode.nlinks -= 1; disk_inode.nlinks -= 1;
} }
pub fn link_inodeimpl(&self, name: &str, other: &Arc<INodeImpl>) -> vfs::Result<()> {
let info = self.metadata()?;
if info.type_ != vfs::FileType::Dir {
return Err(FsError::NotDir);
}
if info.nlinks <= 0 {
return Err(FsError::DirRemoved);
}
if !self.get_file_inode_id(name).is_none() {
return Err(FsError::EntryExist);
}
let child = other;
if !Arc::ptr_eq(&self.fs, &child.fs) {
return Err(FsError::NotSameFs);
}
if child.metadata()?.type_ == vfs::FileType::Dir {
return Err(FsError::IsDir);
}
let entry = DiskEntry {
id: child.id as u32,
name: Str256::from(name),
};
let mut disk_inode = self.disk_inode.write();
let old_size = disk_inode.size as usize;
self._resize(old_size + BLKSIZE)?;
self._write_at(old_size, entry.as_buf()).unwrap();
child.nlinks_inc();
Ok(())
}
} }
impl vfs::INode for INodeImpl { impl vfs::INode for INodeImpl {
fn read_at(&self, offset: usize, buf: &mut [u8]) -> vfs::Result<usize> { fn read_at(&self, offset: usize, buf: &mut [u8]) -> vfs::Result<usize> {
if self.disk_inode.read().type_ != FileType::File match self.disk_inode.read().type_ {
&& self.disk_inode.read().type_ != FileType::SymLink FileType::File => self._read_at(offset, buf),
{ FileType::SymLink => self._read_at(offset, buf),
return Err(FsError::NotFile); FileType::CharDevice => {
let device_inodes = self.fs.device_inodes.read();
let device_inode = device_inodes.get(&self.device_inode_id);
match device_inode {
Some(device) => device.read_at(offset, buf),
None => Err(FsError::DeviceError)
}
},
_ => Err(FsError::NotFile)
} }
self._read_at(offset, buf)
} }
fn write_at(&self, offset: usize, buf: &[u8]) -> vfs::Result<usize> { fn write_at(&self, offset: usize, buf: &[u8]) -> vfs::Result<usize> {
let DiskINode { type_, size, .. } = **self.disk_inode.read(); let DiskINode { type_, size, .. } = **self.disk_inode.read();
if type_ != FileType::File && type_ != FileType::SymLink { match type_ {
return Err(FsError::NotFile); FileType::File | FileType::SymLink => {
}
// resize if not large enough
let end_offset = offset + buf.len(); let end_offset = offset + buf.len();
if (size as usize) < end_offset { if (size as usize) < end_offset {
self._resize(end_offset)?; self._resize(end_offset)?;
} }
self._write_at(offset, buf) self._write_at(offset, buf)
},
FileType::CharDevice => {
let device_inodes = self.fs.device_inodes.write();
let device_inode = device_inodes.get(&self.device_inode_id);
match device_inode {
Some(device) => device.write_at(offset, buf),
None => Err(FsError::DeviceError)
}
},
_ => Err(FsError::NotFile)
}
} }
fn poll(&self) -> vfs::Result<vfs::PollStatus> { fn poll(&self) -> vfs::Result<vfs::PollStatus> {
Ok(vfs::PollStatus { Ok(vfs::PollStatus {
@ -403,7 +451,13 @@ impl vfs::INode for INodeImpl {
Ok(vfs::Metadata { Ok(vfs::Metadata {
dev: 0, dev: 0,
inode: self.id, inode: self.id,
size: disk_inode.size as usize, size: match disk_inode.type_ {
FileType::File | FileType::SymLink => disk_inode.size as usize,
FileType::Dir => disk_inode.size as usize,
FileType::CharDevice => 0,
FileType::BlockDevice => 0,
_ => panic!("Unknown file type"),
},
mode: 0o777, mode: 0o777,
type_: vfs::FileType::from(disk_inode.type_.clone()), type_: vfs::FileType::from(disk_inode.type_.clone()),
blocks: disk_inode.blocks as usize, blocks: disk_inode.blocks as usize,
@ -618,7 +672,19 @@ impl vfs::INode for INodeImpl {
Ok(String::from(entry.name.as_ref())) Ok(String::from(entry.name.as_ref()))
} }
fn io_control(&self, _cmd: u32, _data: usize) -> vfs::Result<()> { fn io_control(&self, _cmd: u32, _data: usize) -> vfs::Result<()> {
Err(FsError::NotSupported) if self.metadata().unwrap().type_ != vfs::FileType::CharDevice {
return Err(FsError::IOCTLError);
}
let device_inodes = self.fs.device_inodes.read();
let device_inode = device_inodes.get(&self.device_inode_id);
match device_inode {
Some(x) => { x.io_control(_cmd, _data) }
None => {
warn!("cannot find corresponding device inode in call_inoctl");
Err(FsError::IOCTLError)
}
}
} }
fn fs(&self) -> Arc<vfs::FileSystem> { fn fs(&self) -> Arc<vfs::FileSystem> {
self.fs.clone() self.fs.clone()
@ -626,6 +692,7 @@ impl vfs::INode for INodeImpl {
fn as_any_ref(&self) -> &Any { fn as_any_ref(&self) -> &Any {
self self
} }
} }
impl Drop for INodeImpl { impl Drop for INodeImpl {
@ -658,6 +725,8 @@ pub struct SimpleFileSystem {
device: Arc<Device>, device: Arc<Device>,
/// Pointer to self, used by INodes /// Pointer to self, used by INodes
self_ptr: Weak<SimpleFileSystem>, self_ptr: Weak<SimpleFileSystem>,
/// device inode
device_inodes: RwLock<BTreeMap<usize, Arc<DeviceINode>>>
} }
impl SimpleFileSystem { impl SimpleFileSystem {
@ -682,6 +751,7 @@ impl SimpleFileSystem {
inodes: RwLock::new(BTreeMap::new()), inodes: RwLock::new(BTreeMap::new()),
device, device,
self_ptr: Weak::default(), self_ptr: Weak::default(),
device_inodes: RwLock::new(BTreeMap::new())
} }
.wrap()) .wrap())
} }
@ -713,6 +783,7 @@ impl SimpleFileSystem {
inodes: RwLock::new(BTreeMap::new()), inodes: RwLock::new(BTreeMap::new()),
device, device,
self_ptr: Weak::default(), self_ptr: Weak::default(),
device_inodes: RwLock::new(BTreeMap::new())
} }
.wrap(); .wrap();
@ -766,17 +837,24 @@ impl SimpleFileSystem {
trace!("free block {:#x}", block_id); trace!("free block {:#x}", block_id);
} }
pub fn new_device_inode(&self, device_inode_id: usize, device_inode: Arc<DeviceINode>) {
self.device_inodes.write().insert(device_inode_id, device_inode);
}
/// Create a new INode struct, then insert it to self.inodes /// Create a new INode struct, then insert it to self.inodes
/// Private used for load or create INode /// Private used for load or create INode
fn _new_inode(&self, id: INodeId, disk_inode: Dirty<DiskINode>) -> Arc<INodeImpl> { fn _new_inode(&self, id: INodeId, disk_inode: Dirty<DiskINode>) -> Arc<INodeImpl> {
let device_inode_id = disk_inode.device_inode_id;
let inode = Arc::new(INodeImpl { let inode = Arc::new(INodeImpl {
id, id,
disk_inode: RwLock::new(disk_inode), disk_inode: RwLock::new(disk_inode),
fs: self.self_ptr.upgrade().unwrap(), fs: self.self_ptr.upgrade().unwrap(),
device_inode_id: device_inode_id
}); });
self.inodes.write().insert(id, Arc::downgrade(&inode)); self.inodes.write().insert(id, Arc::downgrade(&inode));
inode inode
} }
/// Get inode by id. Load if not in memory. /// Get inode by id. Load if not in memory.
/// ** Must ensure it's a valid INode ** /// ** Must ensure it's a valid INode **
fn get_inode(&self, id: INodeId) -> Arc<INodeImpl> { fn get_inode(&self, id: INodeId) -> Arc<INodeImpl> {
@ -812,6 +890,13 @@ impl SimpleFileSystem {
inode.init_direntry(parent)?; inode.init_direntry(parent)?;
Ok(inode) Ok(inode)
} }
/// Create a new INode chardevice
pub fn new_inode_chardevice(&self, device_inode_id: usize) -> vfs::Result<Arc<INodeImpl>> {
let id = self.alloc_block().ok_or(FsError::NoDeviceSpace)?;
let disk_inode = Dirty::new_dirty(DiskINode::new_chardevice(device_inode_id));
let new_inode = self._new_inode(id, disk_inode);
Ok(new_inode)
}
fn flush_weak_inodes(&self) { fn flush_weak_inodes(&self) {
let mut inodes = self.inodes.write(); let mut inodes = self.inodes.write();
let remove_ids: Vec<_> = inodes let remove_ids: Vec<_> = inodes
@ -857,6 +942,9 @@ impl vfs::FileSystem for SimpleFileSystem {
fn root_inode(&self) -> Arc<vfs::INode> { fn root_inode(&self) -> Arc<vfs::INode> {
self.get_inode(BLKN_ROOT) self.get_inode(BLKN_ROOT)
// let root = self.get_inode(BLKN_ROOT);
// root.create("dev", vfs::FileType::Dir, 0).expect("fail to create dev"); // what's mode?
// return root;
} }
fn info(&self) -> vfs::FsInfo { fn info(&self) -> vfs::FsInfo {
@ -914,6 +1002,8 @@ impl From<FileType> for vfs::FileType {
FileType::File => vfs::FileType::File, FileType::File => vfs::FileType::File,
FileType::SymLink => vfs::FileType::SymLink, FileType::SymLink => vfs::FileType::SymLink,
FileType::Dir => vfs::FileType::Dir, FileType::Dir => vfs::FileType::Dir,
FileType::CharDevice => vfs::FileType::CharDevice,
FileType::BlockDevice => vfs::FileType::BlockDevice,
_ => panic!("unknown file type"), _ => panic!("unknown file type"),
} }
} }

@ -4,7 +4,9 @@ use alloc::str;
use core::fmt::{Debug, Error, Formatter}; use core::fmt::{Debug, Error, Formatter};
use core::mem::{size_of, size_of_val}; use core::mem::{size_of, size_of_val};
use core::slice; use core::slice;
use core::any::Any;
use static_assertions::const_assert; use static_assertions::const_assert;
use crate::vfs;
/// On-disk superblock /// On-disk superblock
#[repr(C)] #[repr(C)]
@ -42,8 +44,19 @@ pub struct DiskINode {
pub indirect: u32, pub indirect: u32,
/// double indirect blocks /// double indirect blocks
pub db_indirect: u32, pub db_indirect: u32,
/// device inode id
pub device_inode_id: usize
} }
/*
pub trait DeviceINode : Any + Sync + Send{
fn read_at(&self, _offset: usize, buf: &mut [u8]) -> vfs::Result<usize>;
fn write_at(&self, _offset: usize, buf: &[u8]) -> vfs::Result<usize>;
}
*/
pub type DeviceINode = vfs::INode;
#[repr(C)] #[repr(C)]
pub struct IndirectBlock { pub struct IndirectBlock {
pub entries: [u32; BLK_NENTRY], pub entries: [u32; BLK_NENTRY],
@ -123,6 +136,7 @@ impl DiskINode {
direct: [0; NDIRECT], direct: [0; NDIRECT],
indirect: 0, indirect: 0,
db_indirect: 0, db_indirect: 0,
device_inode_id: NODEVICE
} }
} }
pub const fn new_symlink() -> Self { pub const fn new_symlink() -> Self {
@ -134,6 +148,7 @@ impl DiskINode {
direct: [0; NDIRECT], direct: [0; NDIRECT],
indirect: 0, indirect: 0,
db_indirect: 0, db_indirect: 0,
device_inode_id: NODEVICE
} }
} }
pub const fn new_dir() -> Self { pub const fn new_dir() -> Self {
@ -145,6 +160,19 @@ impl DiskINode {
direct: [0; NDIRECT], direct: [0; NDIRECT],
indirect: 0, indirect: 0,
db_indirect: 0, db_indirect: 0,
device_inode_id: NODEVICE
}
}
pub const fn new_chardevice(device_inode_id: usize) -> Self {
DiskINode {
size: 0,
type_: FileType::CharDevice,
nlinks: 0,
blocks: 0,
direct: [0; NDIRECT],
indirect: 0,
db_indirect: 0,
device_inode_id: device_inode_id
} }
} }
} }
@ -174,6 +202,8 @@ impl AsBuf for u32 {}
pub type BlockId = usize; pub type BlockId = usize;
pub type INodeId = BlockId; pub type INodeId = BlockId;
pub const NODEVICE: usize = 100;
/// magic number for sfs /// magic number for sfs
pub const MAGIC: u32 = 0x2f8dbe2b; pub const MAGIC: u32 = 0x2f8dbe2b;
/// size of block /// size of block
@ -220,6 +250,8 @@ pub enum FileType {
File = 1, File = 1,
Dir = 2, Dir = 2,
SymLink = 3, SymLink = 3,
CharDevice = 4,
BlockDevice = 5,
} }
const_assert!(o1; size_of::<SuperBlock>() <= BLKSIZE); const_assert!(o1; size_of::<SuperBlock>() <= BLKSIZE);

@ -138,6 +138,14 @@ impl INode {
} }
Ok(result) Ok(result)
} }
}
pub enum IOCTLError {
NotValidFD = 9, // EBADF
NotValidMemory = 14, // EFAULT
NotValidParam = 22, // EINVAL
NotCharDevice = 25, // ENOTTY
} }
#[derive(Debug, Default)] #[derive(Debug, Default)]
@ -244,6 +252,8 @@ pub enum FsError {
DirNotEmpty, //E_NOTEMPTY DirNotEmpty, //E_NOTEMPTY
WrongFs, //E_INVAL, when we find the content on disk is wrong when opening the device WrongFs, //E_INVAL, when we find the content on disk is wrong when opening the device
DeviceError, DeviceError,
IOCTLError,
NoDevice
} }
impl fmt::Display for FsError { impl fmt::Display for FsError {

Loading…
Cancel
Save