loop (4) - Linux Manuals
loop: loop devices
NAME
loop, loop-control - loop devices
SYNOPSIS
#include <linux/loop.h>DESCRIPTION
The loop device is a block device that maps its data blocks not to a physical device such as a hard disk or optical disk drive, but to the blocks of a regular file in a filesystem or to another block device. This can be useful for example to provide a block device for a filesystem image stored in a file, so that it can be mounted with the mount(8) command. You could do$ dd if=/dev/zero of=file.img bs=1MiB count=10 $ sudo losetup /dev/loop4 file.img $ sudo mkfs -t ext4 /dev/loop4 $ sudo mkdir /myloopdev $ sudo mount /dev/loop4 /myloopdev
See losetup(8) for another example.
A transfer function can be specified for each loop device for encryption and decryption purposes.
The following ioctl(2) operations are provided by the loop block device:
- LOOP_SET_FD
- Associate the loop device with the open file whose file descriptor is passed as the (third) ioctl(2) argument.
- LOOP_CLR_FD
- Disassociate the loop device from any file descriptor.
- LOOP_SET_STATUS
- Set the status of the loop device using the (third) ioctl(2) argument. This argument is a pointer to a loop_info structure, defined in <linux/loop.h> as:
-
struct loop_info {
int lo_number; /* ioctl r/o */
dev_t lo_device; /* ioctl r/o */
unsigned long lo_inode; /* ioctl r/o */
dev_t lo_rdevice; /* ioctl r/o */
int lo_offset;
int lo_encrypt_type;
int lo_encrypt_key_size; /* ioctl w/o */
int lo_flags; /* ioctl r/w (r/o before
Linux 2.6.25) */
char lo_name[LO_NAME_SIZE];
unsigned char lo_encrypt_key[LO_KEY_SIZE];
/* ioctl w/o */
unsigned long lo_init[2];
char reserved[4]; }; - The encryption type (lo_encrypt_type) should be one of LO_CRYPT_NONE, LO_CRYPT_XOR, LO_CRYPT_DES, LO_CRYPT_FISH2, LO_CRYPT_BLOW, LO_CRYPT_CAST128, LO_CRYPT_IDEA, LO_CRYPT_DUMMY, LO_CRYPT_SKIPJACK, or (since Linux 2.6.0) LO_CRYPT_CRYPTOAPI.
- The lo_flags field is a bit mask that can include zero or more of the following:
-
- LO_FLAGS_READ_ONLY
- The loopback device is read-only.
- LO_FLAGS_AUTOCLEAR (since Linux 2.6.25)
- The loopback device will autodestruct on last close.
- LO_FLAGS_PARTSCAN (since Linux 3.2)
- Allow automatic partition scanning.
- LO_FLAGS_DIRECT_IO (since Linux 4.10)
- Use direct I/O mode to access the backing file.
- The only lo_flags that can be modified by LOOP_SET_STATUS are LO_FLAGS_AUTOCLEAR and LO_FLAGS_PARTSCAN.
- LOOP_GET_STATUS
- Get the status of the loop device. The (third) ioctl(2) argument must be a pointer to a struct loop_info.
- LOOP_CHANGE_FD (since Linux 2.6.5)
- Switch the backing store of the loop device to the new file identified file descriptor specified in the (third) ioctl(2) argument, which is an integer. This operation is possible only if the loop device is read-only and the new backing store is the same size and type as the old backing store.
- LOOP_SET_CAPACITY (since Linux 2.6.30)
- Resize a live loop device. One can change the size of the underlying backing store and then use this operation so that the loop driver learns about the new size. This operation takes no argument.
- LOOP_SET_DIRECT_IO (since Linux 4.10)
- Set DIRECT I/O mode on the loop device, so that it can be used to open backing file. The (third) ioctl(2) argument is an unsigned long value. A nonzero represents direct I/O mode.
- LOOP_SET_BLOCK_SIZE (since Linux 4.14)
- Set the block size of the loop device. The (third) ioctl(2) argument is an unsigned long value. This value must be a power of two in the range [512,pagesize]; otherwise, an EINVAL error results.
- LOOP_CONFIGURE (since Linux 5.8)
- Setup and configure all loop device parameters in a single step using the (third) ioctl(2) argument. This argument is a pointer to a loop_config structure, defined in <linux/loop.h> as:
- struct loop_config {
__u32 fd;
__u32 block_size;