loopdev-3

Crates.ioloopdev-3
lib.rsloopdev-3
version0.5.1
sourcesrc
created_at2023-12-20 19:19:02.782761
updated_at2024-03-04 20:25:50.294907
descriptionSetup and control loop devices
homepage
repositoryhttps://github.com/stratis-storage/loopdev-3
max_upload_size
id1075781
size32,122
Bryan Gurney (bgurney-rh)

documentation

https://docs.rs/loopdev-3

README

loopdev

Setup and control loop devices.

Provides rust interface with similar functionality to the Linux utility losetup.

Documentation

Examples

use loopdev::LoopControl;
let lc = LoopControl::open().unwrap();
let ld = lc.next_free().unwrap();

println!("{}", ld.path().unwrap().display());

ld.attach_file("disk.img").unwrap();
// ...
ld.detach().unwrap();

Development

Running The Tests Locally

Unfortunately the tests require root only syscalls and thus must be run as root. There is little point in mocking out these syscalls as I want to test they actually function as expected and if they were to be mocked out then the tests would not really be testing anything useful.

A vagrant file is provided that can be used to create an environment to safely run these tests locally as root. With Vagrant and VirtualBox installed you can do the following to run the tests.

vagrant up
vagrant ssh
sudo -i
cd /vagrant
cargo test

Note that the tests are built with root privileges, but since vagrant maps this directory back to the host as your normal user there is minimal issues with this. At worst the vagrant box will become trashed and can be rebuilt in minutes.

Commit count: 147

cargo fmt