Ext2.rs

This crate was created with the purpose of being able to read and write on ext2 partitions, whether they are in block device or in the form of a simple disk image file.

It does not require any Unix kernel module to function. Originally, it was designed to open ext2 images from within a Docker container without the need for privileged mode.

This crate covers basic system calls:

Additionally, the crate also has its own implementation of OpenOptions.

You have full permissions on the files, and all specified paths must be absolute. Currently, this crate only works on Unix-like operating systems.

Disclaimer : This crate is still in its early stages and should be used with caution on existing system partitions.

Getting Started

Add the following dependency to your Cargo manifest...

```toml [dependencies] ext2 = "0.1"

or

ext2 = { version = "0.1" } ```

Example

First, create a new ext2 disk image named 'disk.img':

console dd if=/dev/zero of=disk.img bs=1024 count=1024 mkfs.ext2 disk.img

Open, the disk image, and write to the '/foo.raw' file :

```rust let f = std::fs::OpenOptions::new() // OpenOptions from std .read(true) .write(true) .open("disk.img") .expect("open filesystem failed"); let ext2 = ext2::Ext2::new(f).unwrap();

let mut f = ext2::OpenOptions::new() // OpenOptions from ext2
    .write(true)
    .create(true)
    .open("/foo.raw", ext2)
    .unwrap();
let b: Box<[u8; 1024 * 128]> = Box::new([42; 1024 * 128]);
let size = f.write(&*b).unwrap(); // write the box content to file

```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.