9 unstable releases (3 breaking)

Uses old Rust 2015

0.4.0 Oct 27, 2021
0.3.0 Jul 2, 2021
0.2.2 Jun 17, 2021
0.2.1 Oct 4, 2018
0.1.0 May 20, 2016

#750 in Hardware support

Download history 3565/week @ 2023-11-20 4820/week @ 2023-11-27 5482/week @ 2023-12-04 6304/week @ 2023-12-11 5094/week @ 2023-12-18 2917/week @ 2023-12-25 3532/week @ 2024-01-01 5414/week @ 2024-01-08 3397/week @ 2024-01-15 3290/week @ 2024-01-22 3330/week @ 2024-01-29 3852/week @ 2024-02-05 4808/week @ 2024-02-12 4831/week @ 2024-02-19 4469/week @ 2024-02-26 2389/week @ 2024-03-04

16,722 downloads per month
Used in 4 crates

MIT license

16KB
264 lines

Build Status crates.io

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.

Dependencies

~0–2.5MB
~35K SLoC