Disk Encryption with dm-crypt and LUKS on Linux

dm-crypt is a Linux Device-mapper target that provides transparent encryption of block devices using the kernel crypto API. Plain dm-crypt supports only one passphrase and does not store any metadata on-disk.

Linux Unified Key Setup (LUKS) is a dm-crypt extension and the preferred way to set up disk encryption with dm-crypt. LUKS is a disk encryption standard that adds a header and a key-slot at the start of the device, called a LUKS container. LUKS supports multiple passphrases that can be individually changed and revoked. Passphrases are protected using the PBKDF2 key derivation function, which is also described in RFC 2898.

First, securely erase the target device.

Next, set up a LUKS device with your desired encryption parameters. The appropriate level of encryption is situation-dependent. I highly recommend choosing algorithms for which your system can use hardware acceleration (for example, the Intel AES-NI instruction set that was introduced with Westmere). Choosing cipher and hash algorithms is discussed at length elsewhere and is beyond the scope of this article.

  1. Initialize a LUKS device and set the initial passphrase. For the block cipher I chose XTS-AES with a 256-bit key (XTS-AES 128), which is recommended in NIST SP 800-38E and used in Apple FileVault 2. For the PBKDF2 passphrase hash I chose SHA-256 with 5 seconds of processing time.

    sudo cryptsetup --cipher aes-xts-plain64 --key-size 256 --hash sha256 --iter-time 5000 --use-random --verify-passphrase luksFormat /dev/sdz
  2. Open and map the encrypted device. Use --allow-discards if using an SSD that supports TRIM.

    sudo cryptsetup --allow-discards luksOpen /dev/sdz secure
  3. Create and mount a filesystem on the encrypted device. Use -o discard if using an SSD that supports TRIM.

    sudo mkfs.ext4 /dev/mapper/secure
    sudo mount -o noatime,discard /dev/mapper/secure /secure

Finally, configure your system to map and mount the encrypted device during boot. These steps vary by distribution and whether you are encrypting the root filesystem, which requires updating your initramfs.

Here is an example configuring a non-root encrypted device on Gentoo Linux.

  1. Add the LUKS device to /etc/conf.d/dmcrypt.

    target="secure"
    source="/dev/sdz"
    options="--allow-discards"
  2. Add the dmcrypt service to the boot runlevel.

    sudo rc-update add dmcrypt boot
  3. Add the encrypted filesystem to /etc/fstab.

    /dev/mapper/secure      /secure         ext4            noatime,discard 0 2

Additional reading:

‹ Latest entries