fat-rs/fat-fuse/src/inode.rs

153 lines
4.1 KiB
Rust
Raw Normal View History

use std::cell::{LazyCell, RefCell};
2025-07-27 23:17:03 +02:00
use std::time::SystemTime;
use chrono::{NaiveDateTime, NaiveTime};
use fat_bits::FatFs;
use fat_bits::dir::{DirEntry, DirIter};
2025-07-27 23:17:03 +02:00
use fuser::FileAttr;
use rand::{Rng, SeedableRng as _};
thread_local! {
/// SAFETY
///
/// do not access this directly, only invoke the get_random_u32 function
// static RNG: LazyCell<UnsafeCell<rand::rngs::SmallRng>> = LazyCell::new(|| UnsafeCell::new(rand::rngs::SmallRng::from_os_rng()));
/// performance should not be a bottleneck here, since we only need to occasionally generate u32s to
/// be used as generations in inodes
/// if at some point (contrary to expectations) it should become, can switch it to an UnsafeCell
static RNG: LazyCell<RefCell<rand::rngs::SmallRng>> = LazyCell::new(|| RefCell::new(rand::rngs::SmallRng::from_os_rng()));
}
fn get_random_u32() -> u32 {
// RNG.with(|x| unsafe {
// let rng = &mut (*x.get());
// rng.random::<u32>()
// })
RNG.with(|rng| rng.borrow_mut().random())
}
2025-07-27 23:17:03 +02:00
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
2025-07-27 23:17:03 +02:00
pub enum Kind {
File,
Dir,
}
impl From<Kind> for fuser::FileType {
fn from(value: Kind) -> Self {
match value {
Kind::File => fuser::FileType::RegularFile,
Kind::Dir => fuser::FileType::Directory,
}
}
}
const ROOT_INO: u64 = 1;
2025-07-27 23:17:03 +02:00
#[derive(Debug)]
#[allow(dead_code)]
pub struct Inode {
ino: u64,
generation: u32,
2025-07-27 23:17:03 +02:00
size: u64,
block_size: u32,
kind: Kind,
read_only: bool,
atime: SystemTime,
mtime: SystemTime,
// ctime: SystemTime,
crtime: SystemTime,
uid: u32,
gid: u32,
first_cluster: u32,
}
#[allow(dead_code)]
impl Inode {
pub fn new(fat_fs: &FatFs, dir_entry: DirEntry, uid: u32, gid: u32) -> Inode {
assert!(dir_entry.is_file() || dir_entry.is_dir());
let generation = get_random_u32();
2025-07-27 23:17:03 +02:00
let kind = if dir_entry.is_dir() {
Kind::Dir
} else {
Kind::File
};
let datetime_to_system = |datetime: NaiveDateTime| -> SystemTime {
datetime
.and_local_timezone(chrono::Local)
.single()
.map(|x| -> SystemTime { x.into() })
.unwrap_or(SystemTime::UNIX_EPOCH)
};
let atime = datetime_to_system(dir_entry.last_access_date().and_time(NaiveTime::default()));
let mtime = datetime_to_system(dir_entry.write_time());
let crtime = datetime_to_system(dir_entry.create_time());
Inode {
ino: dir_entry.first_cluster() as u64,
generation,
2025-07-27 23:17:03 +02:00
size: dir_entry.file_size() as u64,
block_size: fat_fs.bpb().bytes_per_sector() as u32,
kind,
read_only: dir_entry.is_readonly(),
atime,
mtime,
crtime,
uid,
gid,
first_cluster: dir_entry.first_cluster(),
}
}
pub fn file_attr(&self) -> FileAttr {
let perm = if self.read_only { 0o555 } else { 0o777 };
FileAttr {
ino: self.ino,
size: self.size,
blocks: self.size / self.block_size as u64,
atime: self.atime,
mtime: self.mtime,
ctime: self.mtime,
crtime: self.crtime,
kind: self.kind.into(),
perm,
nlink: 1,
uid: self.uid,
gid: self.gid,
rdev: 0,
blksize: self.block_size,
flags: 0,
}
}
pub fn dir_iter(&self, fat_fs: &FatFs) -> anyhow::Result<impl Iterator<Item = DirEntry>> {
anyhow::ensure!(self.kind == Kind::Dir, "cannot dir_iter on a file");
// TODO: the boxing here is not particularly pretty, but neccessary, since the DirIter for
// the root holds a
if self.ino == ROOT_INO {
// root dir
return Ok(fat_fs.root_dir_iter());
}
let chain_reader = fat_fs.chain_reader(self.first_cluster);
// TODO: get rid of this Box if the boxing is removed from root_dir_iter
Ok(DirIter::new(Box::new(chain_reader)))
}
2025-07-27 23:17:03 +02:00
}