mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-22 08:53:29 +00:00
707 lines
23 KiB
Rust
707 lines
23 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
|
|
use core::{
|
|
sync::atomic::{AtomicU32, Ordering},
|
|
time::Duration,
|
|
};
|
|
|
|
use inherit_methods_macro::inherit_methods;
|
|
|
|
use crate::{
|
|
fs::{
|
|
device::Device,
|
|
path::mount::MountNode,
|
|
utils::{FileSystem, Inode, InodeMode, InodeType, Metadata, NAME_MAX},
|
|
},
|
|
prelude::*,
|
|
process::{Gid, Uid},
|
|
};
|
|
|
|
lazy_static! {
|
|
static ref DCACHE: Mutex<BTreeMap<DentryKey, Arc<Dentry_>>> = Mutex::new(BTreeMap::new());
|
|
}
|
|
|
|
/// The Dentry_ cache to accelerate path lookup
|
|
pub struct Dentry_ {
|
|
inode: Arc<dyn Inode>,
|
|
name_and_parent: RwLock<Option<(String, Arc<Dentry_>)>>,
|
|
this: Weak<Dentry_>,
|
|
children: Mutex<Children>,
|
|
flags: AtomicU32,
|
|
}
|
|
|
|
impl Dentry_ {
|
|
/// Create a new root Dentry_ with the giving inode.
|
|
///
|
|
/// It is been created during the construction of MountNode struct. The MountNode
|
|
/// struct holds an arc reference to this root Dentry_.
|
|
pub(super) fn new_root(inode: Arc<dyn Inode>) -> Arc<Self> {
|
|
let root = Self::new(inode, DentryOptions::Root);
|
|
DCACHE.lock().insert(root.key(), root.clone());
|
|
root
|
|
}
|
|
|
|
/// Internal constructor.
|
|
fn new(inode: Arc<dyn Inode>, options: DentryOptions) -> Arc<Self> {
|
|
Arc::new_cyclic(|weak_self| Self {
|
|
inode,
|
|
flags: AtomicU32::new(DentryFlags::empty().bits()),
|
|
name_and_parent: match options {
|
|
DentryOptions::Leaf(name_and_parent) => RwLock::new(Some(name_and_parent)),
|
|
_ => RwLock::new(None),
|
|
},
|
|
this: weak_self.clone(),
|
|
children: Mutex::new(Children::new()),
|
|
})
|
|
}
|
|
|
|
/// Get the name of Dentry_.
|
|
///
|
|
/// Returns "/" if it is a root Dentry_.
|
|
pub fn name(&self) -> String {
|
|
match self.name_and_parent.read().as_ref() {
|
|
Some(name_and_parent) => name_and_parent.0.clone(),
|
|
None => String::from("/"),
|
|
}
|
|
}
|
|
|
|
/// Get the parent.
|
|
///
|
|
/// Returns None if it is root Dentry_.
|
|
pub fn parent(&self) -> Option<Arc<Self>> {
|
|
self.name_and_parent
|
|
.read()
|
|
.as_ref()
|
|
.map(|name_and_parent| name_and_parent.1.clone())
|
|
}
|
|
|
|
fn set_name_and_parent(&self, name: &str, parent: Arc<Self>) {
|
|
let mut name_and_parent = self.name_and_parent.write();
|
|
*name_and_parent = Some((String::from(name), parent));
|
|
}
|
|
|
|
/// Get the arc reference to self.
|
|
fn this(&self) -> Arc<Self> {
|
|
self.this.upgrade().unwrap()
|
|
}
|
|
|
|
/// Get the DentryKey.
|
|
pub fn key(&self) -> DentryKey {
|
|
DentryKey::new(self)
|
|
}
|
|
|
|
/// Get the inode.
|
|
pub fn inode(&self) -> &Arc<dyn Inode> {
|
|
&self.inode
|
|
}
|
|
|
|
/// Get the DentryFlags.
|
|
fn flags(&self) -> DentryFlags {
|
|
let flags = self.flags.load(Ordering::Relaxed);
|
|
DentryFlags::from_bits(flags).unwrap()
|
|
}
|
|
|
|
/// Check if this dentry is a descendant (child, grandchild, or
|
|
/// great-grandchild, etc.) of another dentry.
|
|
pub fn is_descendant_of(&self, ancestor: &Arc<Self>) -> bool {
|
|
let mut parent = self.parent();
|
|
while let Some(p) = parent {
|
|
if Arc::ptr_eq(&p, ancestor) {
|
|
return true;
|
|
}
|
|
parent = p.parent();
|
|
}
|
|
false
|
|
}
|
|
|
|
pub fn is_mountpoint(&self) -> bool {
|
|
self.flags().contains(DentryFlags::MOUNTED)
|
|
}
|
|
|
|
pub fn set_mountpoint_dentry(&self) {
|
|
self.flags
|
|
.fetch_or(DentryFlags::MOUNTED.bits(), Ordering::Release);
|
|
}
|
|
|
|
pub fn clear_mountpoint(&self) {
|
|
self.flags
|
|
.fetch_and(!(DentryFlags::MOUNTED.bits()), Ordering::Release);
|
|
}
|
|
|
|
/// Currently, the root Dentry_ of a fs is the root of a mount.
|
|
pub fn is_root_of_mount(&self) -> bool {
|
|
self.name_and_parent.read().as_ref().is_none()
|
|
}
|
|
|
|
/// Create a Dentry_ by making inode.
|
|
pub fn create(&self, name: &str, type_: InodeType, mode: InodeMode) -> Result<Arc<Self>> {
|
|
if self.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
let mut children = self.children.lock();
|
|
if children.find_dentry(name).is_some() {
|
|
return_errno!(Errno::EEXIST);
|
|
}
|
|
|
|
let child = {
|
|
let inode = self.inode.create(name, type_, mode)?;
|
|
let dentry = Self::new(
|
|
inode,
|
|
DentryOptions::Leaf((String::from(name), self.this())),
|
|
);
|
|
children.insert_dentry(&dentry);
|
|
dentry
|
|
};
|
|
Ok(child)
|
|
}
|
|
|
|
/// Lookup a Dentry_ from DCACHE.
|
|
pub fn lookup_via_cache(&self, name: &str) -> Option<Arc<Dentry_>> {
|
|
let mut children = self.children.lock();
|
|
children.find_dentry(name)
|
|
}
|
|
|
|
/// Lookup a Dentry_ from filesystem.
|
|
pub fn lookup_via_fs(&self, name: &str) -> Result<Arc<Dentry_>> {
|
|
let mut children = self.children.lock();
|
|
let inode = self.inode.lookup(name)?;
|
|
let inner = Self::new(
|
|
inode,
|
|
DentryOptions::Leaf((String::from(name), self.this())),
|
|
);
|
|
children.insert_dentry(&inner);
|
|
Ok(inner)
|
|
}
|
|
|
|
fn insert_dentry(&self, child_dentry: &Arc<Dentry_>) {
|
|
let mut children = self.children.lock();
|
|
children.insert_dentry(child_dentry);
|
|
}
|
|
|
|
/// Create a Dentry_ by making a device inode.
|
|
pub fn mknod(&self, name: &str, mode: InodeMode, device: Arc<dyn Device>) -> Result<Arc<Self>> {
|
|
if self.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
let mut children = self.children.lock();
|
|
if children.find_dentry(name).is_some() {
|
|
return_errno!(Errno::EEXIST);
|
|
}
|
|
|
|
let child = {
|
|
let inode = self.inode.mknod(name, mode, device)?;
|
|
let dentry = Self::new(
|
|
inode,
|
|
DentryOptions::Leaf((String::from(name), self.this())),
|
|
);
|
|
children.insert_dentry(&dentry);
|
|
dentry
|
|
};
|
|
Ok(child)
|
|
}
|
|
|
|
/// Link a new name for the Dentry_ by linking inode.
|
|
pub fn link(&self, old: &Arc<Self>, name: &str) -> Result<()> {
|
|
if self.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
let mut children = self.children.lock();
|
|
if children.find_dentry(name).is_some() {
|
|
return_errno!(Errno::EEXIST);
|
|
}
|
|
let old_inode = old.inode();
|
|
self.inode.link(old_inode, name)?;
|
|
let dentry = Self::new(
|
|
old_inode.clone(),
|
|
DentryOptions::Leaf((String::from(name), self.this())),
|
|
);
|
|
children.insert_dentry(&dentry);
|
|
Ok(())
|
|
}
|
|
|
|
/// Delete a Dentry_ by unlinking inode.
|
|
pub fn unlink(&self, name: &str) -> Result<()> {
|
|
if self.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
let mut children = self.children.lock();
|
|
let _ = children.find_dentry_with_checking_mountpoint(name)?;
|
|
self.inode.unlink(name)?;
|
|
children.delete_dentry(name);
|
|
Ok(())
|
|
}
|
|
|
|
/// Delete a directory Dentry_ by rmdiring inode.
|
|
pub fn rmdir(&self, name: &str) -> Result<()> {
|
|
if self.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
let mut children = self.children.lock();
|
|
let _ = children.find_dentry_with_checking_mountpoint(name)?;
|
|
self.inode.rmdir(name)?;
|
|
children.delete_dentry(name);
|
|
Ok(())
|
|
}
|
|
|
|
/// Rename a Dentry_ to the new Dentry_ by renaming inode.
|
|
pub fn rename(&self, old_name: &str, new_dir: &Arc<Self>, new_name: &str) -> Result<()> {
|
|
if old_name == "." || old_name == ".." || new_name == "." || new_name == ".." {
|
|
return_errno_with_message!(Errno::EISDIR, "old_name or new_name is a directory");
|
|
}
|
|
if self.inode.type_() != InodeType::Dir || new_dir.inode.type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
|
|
// Self and new_dir are same Dentry_, just modify name
|
|
if Arc::ptr_eq(&self.this(), new_dir) {
|
|
if old_name == new_name {
|
|
return Ok(());
|
|
}
|
|
let mut children = self.children.lock();
|
|
let old_dentry = children.find_dentry_with_checking_mountpoint(old_name)?;
|
|
let _ = children.find_dentry_with_checking_mountpoint(new_name)?;
|
|
self.inode.rename(old_name, &self.inode, new_name)?;
|
|
match old_dentry.as_ref() {
|
|
Some(dentry) => {
|
|
children.delete_dentry(old_name);
|
|
dentry.set_name_and_parent(new_name, self.this());
|
|
children.insert_dentry(dentry);
|
|
}
|
|
None => {
|
|
children.delete_dentry(new_name);
|
|
}
|
|
}
|
|
} else {
|
|
// Self and new_dir are different Dentry_
|
|
let (mut self_children, mut new_dir_children) =
|
|
write_lock_children_on_two_dentries(self, new_dir);
|
|
let old_dentry = self_children.find_dentry_with_checking_mountpoint(old_name)?;
|
|
let _ = new_dir_children.find_dentry_with_checking_mountpoint(new_name)?;
|
|
self.inode.rename(old_name, &new_dir.inode, new_name)?;
|
|
match old_dentry.as_ref() {
|
|
Some(dentry) => {
|
|
self_children.delete_dentry(old_name);
|
|
dentry.set_name_and_parent(new_name, new_dir.this());
|
|
new_dir_children.insert_dentry(dentry);
|
|
}
|
|
None => {
|
|
new_dir_children.delete_dentry(new_name);
|
|
}
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[inherit_methods(from = "self.inode")]
|
|
impl Dentry_ {
|
|
pub fn fs(&self) -> Arc<dyn FileSystem>;
|
|
pub fn sync_all(&self) -> Result<()>;
|
|
pub fn sync_data(&self) -> Result<()>;
|
|
pub fn metadata(&self) -> Metadata;
|
|
pub fn type_(&self) -> InodeType;
|
|
pub fn mode(&self) -> Result<InodeMode>;
|
|
pub fn set_mode(&self, mode: InodeMode) -> Result<()>;
|
|
pub fn size(&self) -> usize;
|
|
pub fn resize(&self, size: usize) -> Result<()>;
|
|
pub fn owner(&self) -> Result<Uid>;
|
|
pub fn set_owner(&self, uid: Uid) -> Result<()>;
|
|
pub fn group(&self) -> Result<Gid>;
|
|
pub fn set_group(&self, gid: Gid) -> Result<()>;
|
|
pub fn atime(&self) -> Duration;
|
|
pub fn set_atime(&self, time: Duration);
|
|
pub fn mtime(&self) -> Duration;
|
|
pub fn set_mtime(&self, time: Duration);
|
|
pub fn ctime(&self) -> Duration;
|
|
pub fn set_ctime(&self, time: Duration);
|
|
}
|
|
|
|
impl Debug for Dentry_ {
|
|
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
|
|
f.debug_struct("Dentry_")
|
|
.field("inode", &self.inode)
|
|
.field("flags", &self.flags())
|
|
.finish()
|
|
}
|
|
}
|
|
|
|
/// DentryKey is the unique identifier for Dentry_ in DCACHE.
|
|
///
|
|
/// For none-root dentries, it uses self's name and parent's pointer to form the key,
|
|
/// meanwhile, the root Dentry_ uses "/" and self's pointer to form the key.
|
|
#[derive(Debug, Clone, Hash, PartialOrd, Ord, Eq, PartialEq)]
|
|
pub struct DentryKey {
|
|
name: String,
|
|
parent_ptr: usize,
|
|
}
|
|
|
|
impl DentryKey {
|
|
/// Form the DentryKey for the Dentry_.
|
|
pub fn new(dentry: &Dentry_) -> Self {
|
|
let (name, parent) = match dentry.name_and_parent.read().as_ref() {
|
|
Some(name_and_parent) => name_and_parent.clone(),
|
|
None => (String::from("/"), dentry.this()),
|
|
};
|
|
Self {
|
|
name,
|
|
parent_ptr: Arc::as_ptr(&parent) as usize,
|
|
}
|
|
}
|
|
}
|
|
|
|
bitflags! {
|
|
struct DentryFlags: u32 {
|
|
const MOUNTED = 1 << 0;
|
|
}
|
|
}
|
|
|
|
enum DentryOptions {
|
|
Root,
|
|
Leaf((String, Arc<Dentry_>)),
|
|
}
|
|
|
|
struct Children {
|
|
inner: BTreeMap<String, Weak<Dentry_>>,
|
|
}
|
|
|
|
impl Children {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
inner: BTreeMap::new(),
|
|
}
|
|
}
|
|
|
|
pub fn insert_dentry(&mut self, dentry: &Arc<Dentry_>) {
|
|
// Do not cache it in DCACHE and children if is not cacheable.
|
|
// When we look up it from the parent, it will always be newly created.
|
|
if !dentry.inode().is_dentry_cacheable() {
|
|
return;
|
|
}
|
|
|
|
DCACHE.lock().insert(dentry.key(), dentry.clone());
|
|
self.inner.insert(dentry.name(), Arc::downgrade(dentry));
|
|
}
|
|
|
|
pub fn delete_dentry(&mut self, name: &str) -> Option<Arc<Dentry_>> {
|
|
self.inner
|
|
.remove(name)
|
|
.and_then(|d| d.upgrade())
|
|
.and_then(|d| DCACHE.lock().remove(&d.key()))
|
|
}
|
|
|
|
pub fn find_dentry(&mut self, name: &str) -> Option<Arc<Dentry_>> {
|
|
if let Some(dentry) = self.inner.get(name) {
|
|
dentry.upgrade().or_else(|| {
|
|
self.inner.remove(name);
|
|
None
|
|
})
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
pub fn find_dentry_with_checking_mountpoint(
|
|
&mut self,
|
|
name: &str,
|
|
) -> Result<Option<Arc<Dentry_>>> {
|
|
let dentry = self.find_dentry(name);
|
|
if let Some(dentry) = dentry.as_ref() {
|
|
if dentry.is_mountpoint() {
|
|
return_errno_with_message!(Errno::EBUSY, "dentry is mountpint");
|
|
}
|
|
}
|
|
Ok(dentry)
|
|
}
|
|
}
|
|
|
|
fn write_lock_children_on_two_dentries<'a>(
|
|
this: &'a Dentry_,
|
|
other: &'a Dentry_,
|
|
) -> (MutexGuard<'a, Children>, MutexGuard<'a, Children>) {
|
|
let this_key = this.key();
|
|
let other_key = other.key();
|
|
if this_key < other_key {
|
|
let this = this.children.lock();
|
|
let other = other.children.lock();
|
|
(this, other)
|
|
} else {
|
|
let other = other.children.lock();
|
|
let this = this.children.lock();
|
|
(this, other)
|
|
}
|
|
}
|
|
|
|
/// The Dentry can represent a location in the mount tree.
|
|
#[derive(Debug)]
|
|
pub struct Dentry {
|
|
mount_node: Arc<MountNode>,
|
|
inner: Arc<Dentry_>,
|
|
this: Weak<Dentry>,
|
|
}
|
|
|
|
impl Dentry {
|
|
/// Create a new Dentry to represent the root directory of a file system.
|
|
pub fn new_fs_root(mount_node: Arc<MountNode>) -> Arc<Self> {
|
|
Self::new(mount_node.clone(), mount_node.root_dentry().clone())
|
|
}
|
|
|
|
/// Crete a new Dentry to represent the child directory of a file system.
|
|
pub fn new_fs_child(&self, name: &str, type_: InodeType, mode: InodeMode) -> Result<Arc<Self>> {
|
|
let new_child_dentry = self.inner.create(name, type_, mode)?;
|
|
Ok(Self::new(self.mount_node.clone(), new_child_dentry.clone()))
|
|
}
|
|
|
|
/// Internal constructor.
|
|
fn new(mount_node: Arc<MountNode>, inner: Arc<Dentry_>) -> Arc<Self> {
|
|
Arc::new_cyclic(|weak_self| Self {
|
|
mount_node,
|
|
inner,
|
|
this: weak_self.clone(),
|
|
})
|
|
}
|
|
|
|
/// Lookup a Dentry.
|
|
pub fn lookup(&self, name: &str) -> Result<Arc<Self>> {
|
|
if self.inner.inode().type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
if !self.inner.inode().mode()?.is_executable() {
|
|
return_errno!(Errno::EACCES);
|
|
}
|
|
if name.len() > NAME_MAX {
|
|
return_errno!(Errno::ENAMETOOLONG);
|
|
}
|
|
|
|
let dentry = match name {
|
|
"." => self.this(),
|
|
".." => self.effective_parent().unwrap_or_else(|| self.this()),
|
|
name => {
|
|
let children_inner = self.inner.lookup_via_cache(name);
|
|
match children_inner {
|
|
Some(inner) => Self::new(self.mount_node().clone(), inner.clone()),
|
|
None => {
|
|
let fs_inner = self.inner.lookup_via_fs(name)?;
|
|
Self::new(self.mount_node().clone(), fs_inner.clone())
|
|
}
|
|
}
|
|
}
|
|
};
|
|
let dentry = dentry.get_top_dentry();
|
|
Ok(dentry)
|
|
}
|
|
|
|
/// Get the absolute path.
|
|
///
|
|
/// It will resolve the mountpoint automatically.
|
|
pub fn abs_path(&self) -> String {
|
|
let mut path = self.effective_name();
|
|
let mut dir_dentry = self.this();
|
|
|
|
while let Some(parent_dir_dentry) = dir_dentry.effective_parent() {
|
|
path = {
|
|
let parent_name = parent_dir_dentry.effective_name();
|
|
if parent_name != "/" {
|
|
parent_name + "/" + &path
|
|
} else {
|
|
parent_name + &path
|
|
}
|
|
};
|
|
dir_dentry = parent_dir_dentry;
|
|
}
|
|
debug_assert!(path.starts_with('/'));
|
|
path
|
|
}
|
|
|
|
/// Get the effective name of Dentry.
|
|
///
|
|
/// If it is the root of mount, it will go up to the mountpoint to get the name
|
|
/// of the mountpoint recursively.
|
|
fn effective_name(&self) -> String {
|
|
if !self.inner.is_root_of_mount() {
|
|
return self.inner.name();
|
|
}
|
|
|
|
let Some(parent) = self.mount_node.parent() else {
|
|
return self.inner.name();
|
|
};
|
|
let Some(mountpoint) = self.mount_node.mountpoint_dentry() else {
|
|
return self.inner.name();
|
|
};
|
|
|
|
let parent_inner = Self::new(
|
|
self.mount_node.parent().unwrap().upgrade().unwrap().clone(),
|
|
self.mount_node.mountpoint_dentry().unwrap().clone(),
|
|
);
|
|
parent_inner.effective_name()
|
|
}
|
|
|
|
/// Get the effective parent of Dentry.
|
|
///
|
|
/// If it is the root of mount, it will go up to the mountpoint to get the parent
|
|
/// of the mountpoint recursively.
|
|
fn effective_parent(&self) -> Option<Arc<Self>> {
|
|
if !self.inner.is_root_of_mount() {
|
|
return Some(Self::new(
|
|
self.mount_node.clone(),
|
|
self.inner.parent().unwrap().clone(),
|
|
));
|
|
}
|
|
|
|
let parent = self.mount_node.parent()?;
|
|
let mountpoint = self.mount_node.mountpoint_dentry()?;
|
|
|
|
let parent_dentry = Self::new(parent.upgrade().unwrap(), mountpoint.clone());
|
|
parent_dentry.effective_parent()
|
|
}
|
|
|
|
/// Get the top Dentry of self.
|
|
///
|
|
/// When different file systems are mounted on the same mount point.
|
|
/// For example, first `mount /dev/sda1 /mnt` and then `mount /dev/sda2 /mnt`.
|
|
/// After the second mount is completed, the content of the first mount will be overridden.
|
|
/// We need to recursively obtain the top Dentry.
|
|
fn get_top_dentry(&self) -> Arc<Self> {
|
|
if !self.inner.is_mountpoint() {
|
|
return self.this();
|
|
}
|
|
match self.mount_node.get(self) {
|
|
Some(child_mount) => {
|
|
Self::new(child_mount.clone(), child_mount.root_dentry().clone()).get_top_dentry()
|
|
}
|
|
None => self.this(),
|
|
}
|
|
}
|
|
|
|
/// Make this Dentry's inner to be a mountpoint,
|
|
/// and set the mountpoint of the child mount to this Dentry's inner.
|
|
pub(super) fn set_mountpoint(&self, child_mount: Arc<MountNode>) {
|
|
child_mount.set_mountpoint_dentry(&self.inner);
|
|
self.inner.set_mountpoint_dentry();
|
|
}
|
|
|
|
/// Mount the fs on this Dentry. It will make this Dentry's inner to be a mountpoint.
|
|
///
|
|
/// If the given mountpoint has already been mounted, then its mounted child mount
|
|
/// will be updated.
|
|
/// The root Dentry cannot be mounted.
|
|
///
|
|
/// Return the mounted child mount.
|
|
pub fn mount(&self, fs: Arc<dyn FileSystem>) -> Result<Arc<MountNode>> {
|
|
if self.inner.inode().type_() != InodeType::Dir {
|
|
return_errno!(Errno::ENOTDIR);
|
|
}
|
|
if self.effective_parent().is_none() {
|
|
return_errno_with_message!(Errno::EINVAL, "can not mount on root");
|
|
}
|
|
let child_mount = self.mount_node().mount(fs, &self.this())?;
|
|
self.set_mountpoint(child_mount.clone());
|
|
Ok(child_mount)
|
|
}
|
|
|
|
/// Unmount and return the mounted child mount.
|
|
///
|
|
/// Note that the root mount cannot be unmounted.
|
|
pub fn unmount(&self) -> Result<Arc<MountNode>> {
|
|
if !self.inner.is_root_of_mount() {
|
|
return_errno_with_message!(Errno::EINVAL, "not mounted");
|
|
}
|
|
|
|
let mount_node = self.mount_node.clone();
|
|
let Some(mountpoint_dentry) = mount_node.mountpoint_dentry() else {
|
|
return_errno_with_message!(Errno::EINVAL, "cannot umount root mount");
|
|
};
|
|
|
|
let mountpoint_mount_node = mount_node.parent().unwrap().upgrade().unwrap();
|
|
let mountpoint = Self::new(mountpoint_mount_node.clone(), mountpoint_dentry.clone());
|
|
|
|
let child_mount = mountpoint_mount_node.unmount(&mountpoint)?;
|
|
mountpoint_dentry.clear_mountpoint();
|
|
Ok(child_mount)
|
|
}
|
|
|
|
/// Create a Dentry by making a device inode.
|
|
pub fn mknod(&self, name: &str, mode: InodeMode, device: Arc<dyn Device>) -> Result<Arc<Self>> {
|
|
let inner = self.inner.mknod(name, mode, device)?;
|
|
Ok(Self::new(self.mount_node.clone(), inner.clone()))
|
|
}
|
|
|
|
/// Link a new name for the Dentry by linking inode.
|
|
pub fn link(&self, old: &Arc<Self>, name: &str) -> Result<()> {
|
|
if !Arc::ptr_eq(&old.mount_node, &self.mount_node) {
|
|
return_errno_with_message!(Errno::EXDEV, "cannot cross mount");
|
|
}
|
|
self.inner.link(&old.inner, name)
|
|
}
|
|
|
|
/// Delete a Dentry by unlinking inode.
|
|
pub fn unlink(&self, name: &str) -> Result<()> {
|
|
self.inner.unlink(name)
|
|
}
|
|
|
|
/// Delete a directory Dentry by rmdiring inode.
|
|
pub fn rmdir(&self, name: &str) -> Result<()> {
|
|
self.inner.rmdir(name)
|
|
}
|
|
|
|
/// Rename a Dentry to the new Dentry by renaming inode.
|
|
pub fn rename(&self, old_name: &str, new_dir: &Arc<Self>, new_name: &str) -> Result<()> {
|
|
if !Arc::ptr_eq(&self.mount_node, &new_dir.mount_node) {
|
|
return_errno_with_message!(Errno::EXDEV, "cannot cross mount");
|
|
}
|
|
self.inner.rename(old_name, &new_dir.inner, new_name)
|
|
}
|
|
|
|
/// Bind mount the Dentry to the destination Dentry.
|
|
///
|
|
/// If recursive is true, it will bind mount the whole mount tree
|
|
/// to the destination Dentry. Otherwise, it will only bind mount
|
|
/// the root mount node.
|
|
pub fn bind_mount_to(&self, dst_dentry: &Arc<Self>, recursive: bool) -> Result<()> {
|
|
let src_mount = self
|
|
.mount_node
|
|
.clone_mount_node_tree(&self.inner, recursive);
|
|
src_mount.graft_mount_node_tree(dst_dentry)?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Get the arc reference to self.
|
|
fn this(&self) -> Arc<Self> {
|
|
self.this.upgrade().unwrap()
|
|
}
|
|
|
|
/// Get the mount node of this Dentry.
|
|
pub fn mount_node(&self) -> &Arc<MountNode> {
|
|
&self.mount_node
|
|
}
|
|
}
|
|
|
|
#[inherit_methods(from = "self.inner")]
|
|
impl Dentry {
|
|
pub fn fs(&self) -> Arc<dyn FileSystem>;
|
|
pub fn sync_all(&self) -> Result<()>;
|
|
pub fn sync_data(&self) -> Result<()>;
|
|
pub fn metadata(&self) -> Metadata;
|
|
pub fn type_(&self) -> InodeType;
|
|
pub fn mode(&self) -> Result<InodeMode>;
|
|
pub fn set_mode(&self, mode: InodeMode) -> Result<()>;
|
|
pub fn size(&self) -> usize;
|
|
pub fn resize(&self, size: usize) -> Result<()>;
|
|
pub fn owner(&self) -> Result<Uid>;
|
|
pub fn set_owner(&self, uid: Uid) -> Result<()>;
|
|
pub fn group(&self) -> Result<Gid>;
|
|
pub fn set_group(&self, gid: Gid) -> Result<()>;
|
|
pub fn atime(&self) -> Duration;
|
|
pub fn set_atime(&self, time: Duration);
|
|
pub fn mtime(&self) -> Duration;
|
|
pub fn set_mtime(&self, time: Duration);
|
|
pub fn ctime(&self) -> Duration;
|
|
pub fn set_ctime(&self, time: Duration);
|
|
pub fn key(&self) -> DentryKey;
|
|
pub fn inode(&self) -> &Arc<dyn Inode>;
|
|
pub fn is_root_of_mount(&self) -> bool;
|
|
pub fn is_mountpoint(&self) -> bool;
|
|
}
|