#ext4 #no-std

no-std ext4-view

No-std compatible Rust library for reading ext4 filesystems

6 releases (3 breaking)

new 0.5.0 Sep 5, 2024
0.4.2 Aug 8, 2024
0.4.1 Jul 31, 2024
0.3.0 Jul 3, 2024
0.2.0 Jun 27, 2024

#122 in Filesystem

Download history 104/week @ 2024-06-22 125/week @ 2024-06-29 14/week @ 2024-07-06 1/week @ 2024-07-13 272/week @ 2024-07-27 149/week @ 2024-08-03 86/week @ 2024-08-10 27/week @ 2024-08-17 43/week @ 2024-08-24 77/week @ 2024-08-31

267 downloads per month

MIT/Apache

185KB
3.5K SLoC

ext4-view-rs

Crates.io Docs.rs codecov.io

This repository provides a Rust crate that allows read-only access to an ext4 filesystem. Write access is an explicit non-goal. The crate is no_std, so it can be used in embedded contexts. However, it does require alloc.

Usage

Add the dependency:

cargo add ext4-view

Basic example:

use ext4_view::{Ext4, Metadata};

// Load the filesystem. The data source can be be anything that
// implements the `Ext4Read` trait. The simplest source is a
// `Vec<u8>` containing the whole filesystem.
let fs_data: Vec<u8> = get_fs_data_from_somewhere();
let fs = Ext4::load(Box::new(fs_data))?;

// If the `std` feature is enabled, you can load a filesystem by path:
let fs = Ext4::load_from_path(std::path::Path::new("some-fs.bin"))?;

// The `Ext4` type has methods very similar to `std::fs`:
let path = "/some/file/path";
let file_data: Vec<u8> = fs.read(path)?;
let file_str: String = fs.read_to_string(path)?;
let exists: bool = fs.exists(path)?;
let metadata: Metadata = fs.metadata(path)?;
for entry in fs.read_dir("/some/dir")? {
    let entry = entry?;
    println!("{}", entry.path().display());
}

Design Goals

In order of importance:

  1. Correct
    • All valid ext4 filesystems should be readable.
    • Invalid data should never cause crashes, panics, or non-terminating loops.
    • No unsafe code in the main package (it is allowed in dependencies).
    • Well tested.
  2. Easy to use
    • The API should follow the conventions of std::fs where possible.
  3. Good performance
    • Performance should not come at the expense of correctness or ease of use.

Non-goals:

  • Write support.
  • Recovery of corrupt filesystems.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Contributing

See the code of conduct and contributing.md.

Bug reports and PRs are welcome!

Disclaimer

This project is not an official Google project. It is not supported by Google and Google specifically disclaims all warranties as to its quality, merchantability, or fitness for a particular purpose.

Dependencies

~210KB