Device mapper explained
The device mapper is a framework provided by the Linux kernel for mapping physical block devices onto higher-level virtual block devices. It forms the foundation of the logical volume manager (LVM), software RAIDs and dm-crypt disk encryption, and offers additional features such as file system snapshots.[1]
Device mapper works by passing data from a virtual block device, which is provided by the device mapper itself, to another block device. Data can be also modified in transition, which is performed, for example, in the case of device mapper providing disk encryption or simulation of unreliable hardware behavior.
This article focuses on the device mapper implementation in the Linux kernel, but the device mapper functionality is also available in both NetBSD and DragonFly BSD.[2] [3]
Usage
Applications (like LVM2 and Enterprise Volume Management System (EVMS)) that need to create new mapped devices talk to the device mapper via the libdevmapper.so
shared library, which in turn issues ioctls to the /dev/mapper/control
device node.[4] Configuration of the device mapper can be also examined and configured interactivelyor from shell scriptsby using the utility.[5] [6]
Both of these two userspace components have their source code maintained alongside the LVM2 source.[7]
Features
Functions provided by the device mapper include linear, striped and error mappings, as well as crypt and multipath targets. For example, two disks may be concatenated into one logical volume with a pair of linear mappings, one for each disk. As another example, crypt target encrypts the data passing through the specified device, by using the Linux kernel's Crypto API.
, the following mapping targets are available:
- cache allows creation of hybrid volumes, by using solid-state drives (SSDs) as caches for hard disk drives (HDDs)
- clone will permit usage before a transfer is complete.
- crypt provides data encryption, by using the Linux kernel's Crypto API
- delay delays reads and/or writes to different devices (used for testing)
- era behaves in a way similar to the linear target, while it keeps track of blocks that were written to within a user-defined period of time[8]
- error simulates I/O errors for all mapped blocks (used for testing)
- flakey simulates periodic unreliable behaviour (used for testing)
- linear maps a continuous range of blocks onto another block device
- mirror maps a mirrored logical device, while providing data redundancy
- multipath supports the mapping of multipathed devices, through usage of their path groups
- raid offers an interface to the Linux kernel's software RAID driver (md)
- snapshot and snapshot-origin used for creation of LVM snapshots, as part of the underlying copy-on-write scheme
- striped stripes the data across physical devices, with the number of stripes and the striping chunk size as parameters
- thin allows creation of devices larger than the underlying physical device, physical space is allocated only when written to
- zero an equivalent of
/dev/zero
, all reads return blocks of zeros, and writes are discarded
Applications
Linux kernel features and projects built on top of the device mapper include the following:
- cryptsetup utility used to conveniently setup disk encryption based on dm-crypt
- dm-crypt/LUKS mapping target that provides volume encryption
- dm-cache mapping target that allows creation of hybrid volumes
- dm-integrity mapping target that provides data integrity, either using checksumming or cryptographic verification,[9] [10] also used with LUKS[11]
- dm-log-writes mapping target that uses two devices, passing through the first device and logging the write operations performed to it on the second device[12]
- dm-verity validates the data blocks contained in a file system against a list of cryptographic hash values, developed as part of the ChromiumOS project[13]
- provides access to "fake" RAID configurations via the device mapper
- DM Multipath provides I/O failover and load-balancing of block devices within the Linux kernel
- Docker uses device mapper to create copy-on-write storage for software containers
- DRBD (Distributed Replicated Block Device)
- EVMS (deprecated)
- utility called from hotplug upon device maps creation and deletion
- LVM2 logical volume manager for the Linux kernel
- VeraCrypt - Linux version of TrueCrypt
- VDO - Virtual Data Optimizer
External links
Notes and References
- Web site: Logical Volume Manager Administration, Appendix A. The Device Mapper . 2013-09-29 . Red Hat.
- Web site: NetBSD Kernel Interfaces Manual: dm(4) . 2008-08-30 . 2015-01-25 . netbsd.gw.com . 2014-07-19 . https://web.archive.org/web/20140719152701/http://netbsd.gw.com/cgi-bin/man-cgi?dm+4+NetBSD-current . dead .
- Web site: DragonFly On-Line Manual Pages: dm(4) . 2010-07-28 . 2014-06-06 . dragonflybsd.org.
- Web site: libdevmapper.h . 2013-09-29 . sourceware.org .
- Web site: dmsetup(8) - Linux man page . 2013-10-22 . man.cx.
- Web site: Logical Volume Manager Administration . Appendix A.2. The dmsetup Command . 2013-09-29 . Red Hat.
- Web site: Device-mapper Resource Page . 2013-09-29 . sourceware.org.
- Web site: 6. Block layer . Linux kernel 3.15 . 2014-06-08 . 2014-06-15 . kernelnewbies.org.
- Web site: dm-integrity . 2018-04-30 . 2018-05-08 . cryptosetup project.
- Web site: dm-integrity target . 2017-05-13 . 2018-05-08 . kernel.org.
- Web site: cryptsetup - manage plain dm-crypt and LUKS encrypted volumes . 2018-01-01 . 2018-05-08.
- Web site: Linux kernel documentation: Documentation/device-mapper/log-writes.txt . 2015-05-29 . 2015-10-13 . kernel.org.
- Web site: dm-verity . 2011-09-19 . 2015-10-13 . Jonathan Corbet . LWN.net.