#userspace #file #space #user #ext4 #read-file

ext4fs

Rust implementation of ext4 file system used in user space

1 unstable release

0.1.0 Jan 16, 2024

#566 in Filesystem

Apache-2.0

49KB
1K SLoC

crates.io docs.rs

ext4fs-rs

Rust implementation of ext4 file system in user space. The ext4 file system can be read directly without mounting, write operations are not supported yet. Your contributions are welcome.

⚠️⚠️⚠️ The current api is not stable, it may be modified later, and more tests and documentation will need to be added.

Example

  • New File System
// Read a raw ext4 image file.
let file = std::fs::File::open("testdata/test.ext4").unwrap();
let reader = BufReader::new(file);
let mut fs = ext4fs::FileSystem::from_reader(reader).unwrap();
  • Iterate a directory
let rd = fs.read_dir("/dir1").unwrap();
for x in rd {
    println!("{}", x.unwrap().get_name_str());
}
  • Stat a file
let m = fs.metadata("/hello.txt").unwrap();
println!(
    "uid={} gid={} permissions={:o} len={} created={:?} accessed={:?} modified={:?}",
    m.uid(),
    m.gid(),
    m.permissions(),
    m.len(),
    m.created(),
    m.accessed(),
    m.modified(),
);
  • Read symlink
let p = fs.read_link("/hello.txt.lnk").unwrap();
println!("{}", p.to_str().unwrap());
  • Read all contents of file
let b = fs.read("/hello.txt").unwrap();
assert_eq!("hello\n", String::from_utf8_lossy(&b).to_string());
  • Read file on demand
let mut f = fs.open("/hello.txt").unwrap();
f.seek(std::io::SeekFrom::Start(2)).unwrap();
let mut buf = String::new();
f.read_to_string(&mut buf).unwrap();

Dependencies

~0.7–1.4MB
~31K SLoC