Difference between revisions of "Dm-crypt (简体中文)"
m (Change to zh_CN translateme.) |
Kynikos.bot (talk | contribs) (use https for links to archlinux.org) |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 2: | Line 2: | ||
[[Category:File systems (简体中文)]] | [[Category:File systems (简体中文)]] | ||
[[Category:简体中文]] | [[Category:简体中文]] | ||
− | + | [[en:dm-crypt with LUKS]] | |
+ | [[ru:System Encryption with LUKS]] | ||
{{Article summary start}} | {{Article summary start}} | ||
{{Article summary text|这个向导会向你展示如何如何使用dm-crypt和LUKS加密硬盘。}} | {{Article summary text|这个向导会向你展示如何如何使用dm-crypt和LUKS加密硬盘。}} | ||
Line 522: | Line 523: | ||
HOOKS="... '''usb''' encrypt ... filesystems ..." | HOOKS="... '''usb''' encrypt ... filesystems ..." | ||
− | Generate a new image (maybe you should take a copy of your old | + | Generate a new image (maybe you should take a copy of your old kernel img before): |
− | mkinitcpio - | + | # mkinitcpio -p linux |
==== Storing the key as plain (visible) file ==== | ==== Storing the key as plain (visible) file ==== | ||
Line 529: | Line 530: | ||
You have to add a kernel parameter in your menu.lst (grub), it should look something like this: | You have to add a kernel parameter in your menu.lst (grub), it should look something like this: | ||
− | kernel / | + | kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:vfat:/secretkey |
This assumes <tt>/dev/usbstick</tt> is the FAT partition of your choice. Replace it by <tt>/dev/disk/by-...</tt> or whatever your device is. | This assumes <tt>/dev/usbstick</tt> is the FAT partition of your choice. Replace it by <tt>/dev/disk/by-...</tt> or whatever your device is. | ||
Line 554: | Line 555: | ||
Now you have to add a kernel parameter in your menu.lst (Grub), it should look something like this: | Now you have to add a kernel parameter in your menu.lst (Grub), it should look something like this: | ||
− | kernel / | + | kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:2048:2048 |
Format for the cryptkey option: | Format for the cryptkey option: | ||
cryptkey=BLOCKDEVICE:OFFSET:SIZE | cryptkey=BLOCKDEVICE:OFFSET:SIZE | ||
OFFSET and SIZE match in this example, but this is coincidence - they can differ (and often will). An other possible example could be | OFFSET and SIZE match in this example, but this is coincidence - they can differ (and often will). An other possible example could be | ||
− | kernel / | + | kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:8192:2048 |
That's all, reboot and have fun! And look if your partitions still work after that ;-). | That's all, reboot and have fun! And look if your partitions still work after that ;-). | ||
Line 628: | Line 629: | ||
==== Encrypted swap with suspend-to-disk support ==== | ==== Encrypted swap with suspend-to-disk support ==== | ||
− | {{Warning | Don't use this setup with a key file, please read about the issue reported here: | + | {{Warning | Don't use this setup with a key file, please read about the issue reported here: https://wiki.archlinux.org/index.php/Talk:System_Encryption_with_LUKS_for_dm-crypt#Suspend_to_disk_instructions_are_insecure}} |
To be able to resume after suspending the computer to disk (hibernate), it is required to keep the swap filesystem intact. Therefore, it is required to have a presistent LUKS swap partition, which can be stored on the disk or input manually at startup. Because the resume takes place before the crypttab can be used, it is required to create a hook in mkinitcpio.conf to open the swap LUKS device before resuming. The following setup has the disadvantage of having to insert a key manually for the swap partition. | To be able to resume after suspending the computer to disk (hibernate), it is required to keep the swap filesystem intact. Therefore, it is required to have a presistent LUKS swap partition, which can be stored on the disk or input manually at startup. Because the resume takes place before the crypttab can be used, it is required to create a hook in mkinitcpio.conf to open the swap LUKS device before resuming. The following setup has the disadvantage of having to insert a key manually for the swap partition. | ||
Line 670: | Line 671: | ||
6. Add the hook ''openswap'' in the HOOKS array in ''/etc/mkinitcpio.conf'', before ''filesystem'', but '''after''' ''encrypt'' which is mandatory as well.<br><br> | 6. Add the hook ''openswap'' in the HOOKS array in ''/etc/mkinitcpio.conf'', before ''filesystem'', but '''after''' ''encrypt'' which is mandatory as well.<br><br> | ||
7. Regenerate the boot image: | 7. Regenerate the boot image: | ||
− | # mkinitcpio -p | + | # mkinitcpio -p linux |
8. Add the mapped partition to ''/etc/fstab'': | 8. Add the mapped partition to ''/etc/fstab'': | ||
/dev/mapper/swapDevice swap swap defaults 0 0 | /dev/mapper/swapDevice swap swap defaults 0 0 | ||
9. Set-up your system to resume from ''/dev/mapper/swapDevice''. For example, if you use GRUB with kernel hibernation support, add "resume=/dev/mapper/swapDevice" to the kernel line in ''/boot/grub/menu.lst''. A line with encrypted root and swap partitions can look like this: | 9. Set-up your system to resume from ''/dev/mapper/swapDevice''. For example, if you use GRUB with kernel hibernation support, add "resume=/dev/mapper/swapDevice" to the kernel line in ''/boot/grub/menu.lst''. A line with encrypted root and swap partitions can look like this: | ||
− | kernel / | + | kernel /vmlinuz-linux cryptdevice=/dev/sda2:rootDevice root=/dev/mapper/rootDevice resume=/dev/mapper/swapDevice ro |
At boot time, the ''openswap'' hook will open the swap partition so the kernel resume may use it. If you use special hooks for resuming from hibernation, make sure they stand '''after''' ''openswap'' in the HOOKS array. Please note that because of initrd opening swap there is no entry for swapDevice in /etc/crypttab needed in this case. | At boot time, the ''openswap'' hook will open the swap partition so the kernel resume may use it. If you use special hooks for resuming from hibernation, make sure they stand '''after''' ''openswap'' in the HOOKS array. Please note that because of initrd opening swap there is no entry for swapDevice in /etc/crypttab needed in this case. | ||
Line 708: | Line 709: | ||
=== Install Bootloader === | === Install Bootloader === | ||
'''GRUB:''' You have to make some small changes to the entries generated by the installer by replacing <tt>/dev/mapper/root</tt> with <tt>/dev/sda3</tt>. The corrected config looks like this: | '''GRUB:''' You have to make some small changes to the entries generated by the installer by replacing <tt>/dev/mapper/root</tt> with <tt>/dev/sda3</tt>. The corrected config looks like this: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
For kernel >= 2.6.30: | For kernel >= 2.6.30: | ||
# (0) Arch Linux | # (0) Arch Linux | ||
title Arch Linux | title Arch Linux | ||
root (hd0,0) | root (hd0,0) | ||
− | kernel / | + | kernel /vmlinuz-linux cryptdevice=/dev/sda3:root root=/dev/mapper/root ro |
− | initrd / | + | initrd /initramfs-linux.img |
'''LILO:''' On Lilo, edit the Arch Linux section on /etc/lilo.conf and include a line for append option, over the initrd, with the "root=/dev/sda3" param. The append section make the same kernel line on grub. Also, you can ommit the root option, over the image option. The section look like this: | '''LILO:''' On Lilo, edit the Arch Linux section on /etc/lilo.conf and include a line for append option, over the initrd, with the "root=/dev/sda3" param. The append section make the same kernel line on grub. Also, you can ommit the root option, over the image option. The section look like this: | ||
# Arch Linux lilo section | # Arch Linux lilo section | ||
− | image = / | + | image = /vmlinuz-linux |
# root = /dev/sda3 | # root = /dev/sda3 | ||
label = Arch | label = Arch | ||
− | initrd = / | + | initrd = /initramfs-linux.img |
append = "root=/dev/sda3" | append = "root=/dev/sda3" | ||
read-only | read-only | ||
Line 911: | Line 907: | ||
If you want to do this on a software RAID partition, there's one more thing you need to do. Just setting the /dev/mdX device in /lib/initcpio/hooks/encrypt is not enough; the encrypt hook will fail to find the key for some reason, and not prompt for a passphrase either. It looks like the RAID devices aren't brought up until after the encrypt hook is run. You can solve this by putting the RAID array in /boot/grub/menu.lst, like | If you want to do this on a software RAID partition, there's one more thing you need to do. Just setting the /dev/mdX device in /lib/initcpio/hooks/encrypt is not enough; the encrypt hook will fail to find the key for some reason, and not prompt for a passphrase either. It looks like the RAID devices aren't brought up until after the encrypt hook is run. You can solve this by putting the RAID array in /boot/grub/menu.lst, like | ||
− | kernel /boot/ | + | kernel /boot/vmlinuz-linux md=1,/dev/hda5,/dev/hdb5 |
If you set up your root partition as a RAID array you will notice the similarities with that setup ;-). Grub can handle multiple array definitions just fine: | If you set up your root partition as a RAID array you will notice the similarities with that setup ;-). Grub can handle multiple array definitions just fine: | ||
− | kernel /boot/ | + | kernel /boot/vmlinuz-linux root=/dev/md0 ro md=0,/dev/sda1,/dev/sdb1 md=1,/dev/sda5,/dev/sdb5,/dev/sdc5 |
=== LVM&dm-crypt manually (short version) === | === LVM&dm-crypt manually (short version) === |
Revision as of 00:58, 6 December 2012
Template:Article summary start Template:Article summary text Template:Article summary end
Contents
- 1 介绍
- 2 Initial Setup
- 3 Configuring LUKS
- 3.1 Mapping Physical Partitions to LUKS
- 3.2 Storing the Key File
- 3.3 Encrypting the Swap partition
- 4 Installing the system
- 5 Remote unlocking of the root (or other) partition
- 6 Backup the cryptheader
- 7 Encrypting a loopback filesystem
- 8 Encrypting a LVM setup
- 9 Resources
介绍
为什么使用加密?
最简单的说法是加密是保证隐私的一种方法。
现在有两种分区级的加密方法数据级加密 和 系统级加密。
数据级加密,定义为对用户的数据进行加密,有如下好处:
- 防止对敏感数据的未授权访问。
- 在丢弃旧硬盘时能更加安心。
但是数据级加密同时也有很多明显的缺点。在现代计算机里,会有很多后台进程在磁盘的不加密区域保存下你加了密的信息。这使加密失去了意义
系统级加密, 定义为对操作系统和用户数据的加密,能帮助处理不充分的数据加密。系统加密有如下好处:
- 防止对操作系统的未授权访问。
- 防止对被操作系统缓存的私人文件的未授权访问。
In the context of overall system security, system encryption should be viewed as an adjunct to the existing security mechanisms of the operating system that focuses on physical attempts to breach system security which includes:
- Attempts to bypass the operating system by inserting a boot CD/USB
- Copying, modifying, or removing the harddisk drives when the computer is off
Despite the use of system encryption, there are still points of physical insecurity. These issues revolve around the /boot partition which must remain unencrypted in order for the machine to properly boot. However system encryption is presently the best way to minimize the loss of data privacy by physical attempts at invasion.
What methods are avaliable for System Encryption?
There are multiple current methods that can be employed for system encryption including:
loop-AES (loop-AES)
- loop-AES is a descendant of cryptoloop and is a secure and fast solution to system encryption.
- However loop-AES is considered less user friendly than other options as it requires non-standard kernel support.
standard device-mapper encryption (dm-crypt)
- This is the standard device mapper which can be used for those who like to have control over all aspects partition management.
LUKS for dm-crypt (LUKS home page)
- LUKS stores all of the needed setup information for dm-crypt on the disk itself and abstracts partition and key management in an attempt to improve ease of use.
- Briefly some key features that LUKS provides include:
- Support for either passphrase or keyfiles as encryption keys
- Per partition key creation and revocation
- Multiple passphrases or keyfiles for a particular partition
Caveats
For any type of encryption the security of your privacy is dependent on two things:
- The complexity/availability of your key
- The usage of a proven encryption algorithm
Key Complexity and Availability
The user provided key used for encryption, whether a passphrase or a keyfile, must be complex enough that is it not easy to guess. Having a strong encryption algorithm does nothing to provide privacy if the key used for encryption is too simple. The tenets of strong keys are based on length and randomness. There are many sources available with instructions on how to create strong encryption keys.
Part of key complexity is key availability. For example a complex key written on a sticky note pasted to the computer's keyboard would not provide much in the way privacy. Therefore in addition to creating a strong key, maintaining it in a secure location is necessary as well.
Encryption Algorithm
There are many peer-reviewed encryption algorithms in existence. The encryption algorithms and block ciphers used in any of the mentioned methods for applying encryption in this wiki page are considered strong algorithms that have been subjected to cryptographic review by the cryptography community.
System Encryption
System encryption provides security against unauthorized physical access to a machine that is powered off. It does not effect any security advantages for a system that is powered on with its partitions mounted in an unencrypted state. For a powered on user accessible system the normal precautions to prevent viruses, trojans, worms, or other attempts to access private data should be exercised. Furthermore, system encryption has been shown to be penetrable in cases where a system has been recently shutdown. This is due to the fact that cessation of power does not immediately degrade data that was stored in RAM prior to shutdown. Therefore someone with physical access to your computer within a few moments of shutdown could cool the RAM modules and use them extract your encryption key - thus obtaining access to your data.
Data Encryption
There are two common forms of data encryption:
- Encryption of data partitions on the same physical disk as the system.
- Encryption of data partitions on separate physical disks from the system.
Encryption of data partitions on the same physical disk as the system.
The most common form of data encryption is encrypting the /home partition.
In cases where the encrypted data are located on the same physical disk as the system accessing the drive the privacy of data has already been decrease by orders of magnitude when compared to system encryption. The reason for this that the host operating systems employ background methods to assist the user in the access and management of their data. The problem lies in where these processes store this data which is most commonly in the unencrypted system partition.
For example, mlocate will scan all currently mounted file systems regularly and write the list of filenames to /var/lib/mlocate/mlocate.db, which is located in the non-encrypted root or /var partition. Thus an attacker will have a list of all filenames for that computer, even the ones on the encrypted /home partition, readily available to assist them in accessing the encrypted data present the disk.
Some have compared this to reducing the level of security from partition based encryption to filesystem level encryption like System Encryption with eCryptfs.
Encryption of data partitions on separate physical disks from the system.
Popular forms of data encryption on physically separate partitions include the encryption of removable media such as:
- USB Flash Drives
- External Harddisk Drives or Separate Internal Harddisk Drives
- CD/DVD/Blue-Ray Optical Media
- Magnetic Storage Media
The most important part of this form of data encryption is to remember that the encryption protects the privacy of the data that is located within the encrypted media only when it is not mounted. Data encryption does not protect the privacy of data once it is made accessible to a system. For example, attaching an encrypted USB Flash Drive, and subsequently decrypting a file for use temporarily on a non-secured system could result in remnants of that file existing on the host system in an unencrypted form.
Initial Setup
Overview and Preparation
Arch安装程序带有整套的工具用来进行系统级加密。可以通过手动或者在arch安装程序的菜单界面中完成加密磁盘的设置。安装一个加密的系统跟安装不加密的系统很像。所以你可以在设定完加密的分区后按 Official Arch Linux Install Guide 或者 Beginners' Guide (简体中文) 操作。
创建一个加密的系统一般有以下几个步骤:
- 安全擦除磁盘
- 分区并设置加密(可选LVM)
- 正常的软件包选择和安装
- 系统配置
安全擦除磁盘
安全擦除磁盘一般是通过对整个磁盘重写随机数据来达到目的的。
为什么对磁盘进行安全擦除
有两种磁盘,新的和旧的。两种都需要进行安全地重写。其中的原因略有不同,但都是为了保证加密分区里的隐私数据的安全。
- New Harddisk Drives
- In harddrives that have been directly purchased from a manufacturer there is no preexisting private data to protect. The problem is that there is no consistency in what is presently on the drive. Ideally the drive should be completely filled with random bits. However some drives have been overwritten completely with zeros. Therefore once the drive is used to write encrypted data it is relatively simple to identify where the encrypted data ends and the zeroed data begins compared to a drive that was written with random data before usage as an encrypted drive. Since an encrypted partition is supposed to be indistinguishable from random data, the lack of random data on a zeroed drive makes an encrypted drive an easier target for cryptanalysis.
- Used Harddisk Drives
- Repartitioning or reformatting a used harddrive removes the file system structure for identifying where the original data was located while leaving the actual data intact on the drive itself. It is relatively straight forward using data tools like Foremost to access the remnant data. Therefore harddrives should be securely overwritten with random data prior to encryption to prevent unintentional data recovery.
Overwriting a harddisk drive with random data.
There are two sources of random data commonly used for securely overwritting harddisk partitions.
- urandom
- badblocks
Using urandom
#dd if=/dev/urandom of=/dev/<drive> bs=1M
Where /dev/<drive>
is the drive to be encrypted.
Using badblocks
#badblocks -c 10240 -wsvt random /dev/<drive>
Where /dev/<drive>
is the drive to be encrypted.
Partitioning
After the drive has been securely overwritten it is time to create partitions and begin setting up an encrypted system.
There are multiple ways to create disk partitions:
- Standard partitions
- LVM
- RAID
LUKS is compatible in systems that require both LVM and/or RAID as well as with with standard primary, extended, and logical partitions.
Standard Partitions
These are the partitions that most people are familiar with. They come in 3 flavors, primary partitions, extended partitions, and logical partitions.
- Primary Partitions: These are the main partitions recognized by a BIOS. There can be up to 4 of these stored in the MBR.
- Extended Partitions: These are primary partitions that also define another partition within themselves they were created to supersede the original 4 partition limit of primary partitions.
- Logical Partitions: These are the partitions that are defined within extended partitions.
LVM: Linux Volume Manager
The LVM allows for creation of volume groups for systems that require complex combinations of multiple harddisk drives and partitions that are not possible with standard partitions. The LVM is covered in detail in the Arch LVM Wiki Page which is suggested reading prior to continuing with the instructions on setting up LUKS with LVM located below.
How does LVM fit into the overall system?
There is a growing preference towards logical volume management of LUKS encrypted physical media (LVM on LUKs). It is possible there may exist usage scenarios where encrypting logical volumes rather than physical disks is required (LUKs on LVM). However the deployment of LVM on LUKS is considered much more generalizable. One reason for this that using LUKS as the lowest level of infrastructure most closely approximates the deployment of physical disks with built-in hardware encryption. In which case, logical volume management would be layered on top of the hardware encryption - usage of LUKS would be superfluous.
Creating Disk Partitions
Disk partitions are created using:
# cfdisk
This will display a graphical interface for creating disk partitions.
There are 2 required partitions for any encrypted system:
- A root file system
- /
- Will be encrypted and store all system and user files (/usr, /bin, /var, /home, etc.)
- An initial boot partition
- /boot
- Will not be encrypted; the bootloader needs to access the /boot directory where it will load the initrd/encryption modules needed to load the rest of the system (which is encrypted). For this reason /boot needs to reside on its own, unencrypted, partition.
Single Disk Systems
Depending on the system demands, there may be additional partitions desired. These partitions can be individually created at this level by defining separate primary or extended/logical partitions. However if LVM is to be employed, the space unoccupied by /boot and swap should be defined as single large partition which will be divided up later at the logical volume manager level.
Multiple Disk Systems
In systems that will have multiple harddisk drives, the same options exist as a single disk system. After the creation of the /boot and swap partitions, the remaining free space on physical disks can divided up into their respective partitions at this level, or large partitions can define all free space per physical disk with intent to partition them within the LVM.
Configuring LUKS
Creating LUKS partitions with a passphrase is supported by the /arch/setup program.
This section of the Wiki will cover how to manually utilize LUKS from the command line to encrypt a system.
The steps for accomplishing this through the graphical installer are very similar and can be located in dialogue for manual configuration of the hard drive.
Mapping Physical Partitions to LUKS
Once the desired partitions are created it is time to format them as LUKS partitions and then mount them through the device mapper.
When creating LUKS partitions they must be associated with a key.
A key is either a:
- Passphrase
- Keyfile
It is possible to define up to 8 different keys per LUKS partition.
Using LUKS to Format Partitions with a Passphrase
Cryptsetup is used to interface with LUKS for formatting, mounting and unmounting encrypted partitions.
A full list of options cryptsetup accepts can be found in the [Cryptsetup Manpage]
The options used here are:
- -c defines the cipher type
- -y prompts for password confirmation on password creation
- -s defines the key size
- luksFormat addresses the LUKS extensions built into cryptsetup.
In the following examples for creating LUKS partitions we will use AES with XTS, at present this is most generally used preferred cipher.
Other ciphers can be used with cryptsetup and details about them can be found [Wikipedia: BlockCipher]
Formating LUKS Partitions
In order to format a desired partition as an encrypted LUKS partition execute:
# cryptsetup -c <cipher> -y -s <key size> luksFormat /dev/<partition name> Enter passphrase: <password> Verify passphrase: <password>
This should be repeated for all partitions except for /boot and possibly swap.
Example:
- cryptsetup -c aes-xts-plain -y -s 512 luksFormat /dev/sda2
- Will create and encrypted root partition using the AES cipher
Unlocking/Mapping LUKS Partitions with the Device Mapper
Once the LUKS partitions have been created it is time to unlock them.
The unlocking process will map the partitions to a new device name using the device mapper. This alerts the kernel that /dev/<partition name> is actually an encrypted device and should be addressed through LUKS using the /dev/mapper/<name> so as not to overwrite the encrypted data.
In order to open an encrypted LUKS partition execute:
# cryptsetup luksOpen /dev/<partition name> <device-mapper name> Enter any LUKS passphrase: <password> key slot 0 unlocked. Command successful.
Usually the device mapped name is descriptive of the function of the partition that is mapped, example:
- cryptsetup luksOpen /dev/sda2 swap
- Once opened the swap partition device address would be /dev/mapper/swap instead of /dev/sda2
- cryptsetup luksOpen /dev/sda3 root
- Once opened the root partition device address would be /dev/mapper/root instead of /dev/sda3
Using LUKS to Format Partitions with a Keyfile
What is a Keyfile?
A keyfiles is any file in which the data contained within is used as the passphrase to unlock an encrypted volume. Therefore if these files are lost or changed, decrypting the volume will no longer be possible.
Why use a Keyfile?
There are many kinds of keyfiles, each type of keyfile used has benefits and disadvantages summarized below:
- keyfile.passphrase:
- this is my passphrase I would have typed during boot but I've placed in a file instead
This is a keyfile containing a simple passphrase. The benefit of this type of keyfile is that if the file is lost the data it contained is known and hopefully easily remembered by the owner of the encrypted volume. However the disadvantage is that this does not add any security over entering a passphrase during the initial system start.
- keyfile.randomtext:
- fjqweifj830149-57 819y4my1- 38t1934yt8-91m 34co3;t8y;9p3y-
This is a keyfile containing a block of random characters. The benefit of this type of keyfile is that it is much more resistant to dictionary attacks than a simple passphrase. An additional strength of keyfiles can be utilized in this situation which is the length of data used. Since this is not a string meant to be memorized by a person for entry, it is trivial to create files containing thousands of random characters as the key. The disadvantage is that if this file is lost or changed, it will most likely not be possible to access the encrypted volume without a backup passphrase.
- keyfile.binary:
- where any binary file, images, text, video could be chosen as the keyfile
This is a binary file that has been defined as a keyfile. When identifying files as candidates for a keyfile, it is recommended to choose files that are relatively static such as photos, music, video clips. The benefit of these files is that they serve a dual function which can make them harder to identify as keyfiles. Instead of having a text file with a large amount of random text, the keyfile would like a regular image file, or music clip to the casual observer. The disadvantage is that if this file is lost or changed, it will most likely not be possible to access the encrypted volume without a backup passphrase. Additionally, there is a theoretical loss of randomness when compared to a randomly generated text file. This is due to the fact that images, videos, music have some intrinsic relationship between neighboring bits of data that is not existent for a text file. However this is controversial and has never been exploited publicly.
Creating a Keyfile with Random Characters
Here dd is used to generate a keyfile of 2048bits of random characters.
# dd if=/dev/urandom of=mykeyfile bs=512 count=4
The usage of dd is similar to initially wiping the volume with random data prior to encryption. While badblocks may also be used, most key files are on the order of a few kilobytes and there is no noticable speed difference between dd, or badblocks.
Creating a new LUKS encrypted partition with a Keyfile
When creating a new LUKS encrypted partition a keyfile may be associated with the partition on its creation using:
# cryptsetup -c <desired cipher> -s <key size> -v luksFormat /dev/<volume to encrypt> /path/to/mykeyfile
This is accomplished by appending the bold area to the standard cryptsetup command which defines where the keyfile is located.
Adding Additional Passphrases or Keyfiles to a LUKS Encrypted Partition
LUKS supports the association of up to 8 keys with any single encrypted volume. Keys can be either keyfiles or passphrases.
Once an encrytped partition has been created, the initial key is associated at slot0. Additional keys will occupy slots 1 - 7.
The addition of new keys to an encrypted partition is accomplished using cryptsetup with luksAddKey extension.
# cryptsetup luksAddKey /dev/<encrypted volume> /path/to/mykeyfile
Where /dev/<encrypted volume> is the volume that is to have the new key associated with it.
If the bolded area is present cryptsetup will look for the keyfile defined at that location to associate with the encrypted volume specified.
Storing the Key File
External Storage on a USB Drive
Preparation for permanent device names
For reading the file from an USB stick it's important to access it through a permanent device name. The numbering of the normal device names e.g. /dev/sdb1 is somewhat arbitrary and depends on how many storage devices are attached and in what order etc. So in order to assure that the encrypt HOOK in the initcpio finds your keyfile you have to use a permanent device name.
Quick method
A quick method (as opposed to setting up a udev rule) for doing so involves referencing your removable device by its label (or UUID). To find your label or UUID, plug in your USB drive and run
# ls -l /dev/disk/by-label/ lrwxrwxrwx 1 root root 10 12. Feb 10:11 Keys -> ../../sdb1
or
# ls -l /dev/disk/by-uuid/ lrwxrwxrwx 1 root root 10 12. Feb 10:11 4803-8A7B -> ../../sdb1
In this case I labeled the vfat partition on my USB drive as "Keys" so my device is always symlinked in /dev/disk/by-label/Keys, or If I had wanted to use the UUID I would find /dev/disk/by-uuid/4803-8A7B. This allows me to have a consistent naming of my USB devices regardless of the order they are plugged into the system. These device names can be used in the "cryptkey" kernel option or any where else. Filesystem UUIDs are stored in the filesystem itself, meaning that the UUID will be the same if you plug it into any other computer, and that a dd backup of it will always have the same UUID since dd does a bitwise copy.
Note: If you plan to store the keyfile between MBR and the 1st partition you cannot use this method, since it only allows access to the partitions (sdb1,sdb2,...) but not to the usb device (sdb) itself. Create a UDEV rule instead as described in the following section.
Using UDEV
Optionally you may choose to set up your stick with an udev rule. There's some documentation in the Arch wiki about that already, if you want more in-depth, structural info, read this guide. Here's quickly how it goes.
Get the serial number from your USB stick:
lsusb -v | grep -A 5 Vendor
Create a udev-rule for it:
echo 'KERNEL=="sd*", ATTRS{serial}=="$SERIAL", SYMLINK+="$SYMLINK%n"' > /etc/udev/rules.d/8-usbstick.rules
Replace $SYMLINK and $SERIAL with their respective values. %n will expand to the partition (just like sda is subdivided into sda1, sda2, ...). You do not need to go with the 'serial' attribute, if you have a custom rule of your own, you can put it in as well (e.g. using the vendor name).
Rescan your sysfs:
udevadm trigger
Now check the contents of dev:
ls /dev
It should show your device with your desired name.
Generating the keyfile
Optionally you can mount a tmpfs for storing the temporary keyfile.
# mkdir ./mytmpfs # mount tmpfs ./mytmpfs -t tmpfs -o size=32m # cd ./mytmpfs
The advantage is that it resides in RAM and not on a physical disk, so after unmounting your keyfile is securly gone. So copy your keyfile to some place you consider as secure before unmounting. If you are planning to store the keyfile as a plain file on your USB device, you can also simply execute the following command in the corresponding directory, e.g. /media/sdb1
The keyfile can be of arbitrary content and size. We'll generate a random temporary keyfile of 2048 bytes:
# dd if=/dev/urandom of=secretkey bs=512 count=4
If you stored your temporary keyfile on a physical storage, remember to not just (re)move the keyfile later on, but use something like
cp secretkey /destination/path shred --remove --zero secretkey
to securely overwrite it. (However due to journaling filesystems this is also not 100% secure.)
Add the temporary keyfile with cryptsetup:
# cryptsetup luksAddKey /dev/sda2 secretkey Enter any LUKS passphrase: key slot 0 unlocked. Command successful.
Storing the keyfile
To store the key file, you have two options. The first is less risky than the other, but perhaps a bit more secure (if you consider security by obscurity as more secure). In any case you have to do some further configuration, if not already done above
Configuration of initcpio
You have to add two extra modules in your /etc/mkinitcpio.conf, one for the stick's file system and one for the codepage. Further if you created a udev-rule you should tell mkinitcpio about it:
MODULES="ata_generic ata_piix nls_cp437 vfat" FILES="/etc/udev/rules.d/8-usbstick.rules"
In this example it's assumed, that you use a FAT formated stick. Replace those module names if you use another file system on your USB stick (e.g. ext2) or another codepage. Users running the stock Arch kernel should stick to the codepage mentioned here.
In addition insert the usb hook somewhere before the encrypt hook.
HOOKS="... usb encrypt ... filesystems ..."
Generate a new image (maybe you should take a copy of your old kernel img before):
# mkinitcpio -p linux
Storing the key as plain (visible) file
Be sure to choose a plain name for your key - a bit of 'security through obscurity' is always nice ;-). Avoid using dots (hidden files) and similar characters - the encrypt hook will fail to find the keyfile during the boot process.
You have to add a kernel parameter in your menu.lst (grub), it should look something like this:
kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:vfat:/secretkey
This assumes /dev/usbstick is the FAT partition of your choice. Replace it by /dev/disk/by-... or whatever your device is.
That's all, reboot and have fun!
Storing the key between MBR and 1st partition
We'll write the key directly between MBR and first partition.
WARNING: you should only follow this step if you know what you are doing - it can cause data loss and damage your partitions or MBR on the stick!
If you have a bootloader installed on your drive you have to adjust the values. E.g. Grub needs the first 16 sectors (actually, it depends on the type of the file system, so don't rely on this too much), you would have to replace seek=4 with seek=16; otherwise you would overwrite parts of your Grub installation. When in doubt, take a look at the first 64 sectors of your drive and decide on your own where to place your key.
Optional If you don't know if you've got enough free space before the first partition you can do
dd if=/dev/usbstick of=64sectors bs=512 count=64 # gives you copy of your first 64 sectors hexcurse 64sectors # determine free space xxd 64sectors | less # alternative hex viewer
Write your key to the disk:
dd if=secretkey of=/dev/usbstick bs=512 seek=4
If everything went fine you can now overwrite and delete your temporary secretkey as noted above. You should not simply use rm as the keyfile would only be unlinked from your filesystem and be left physically intact.
Now you have to add a kernel parameter in your menu.lst (Grub), it should look something like this:
kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:2048:2048
Format for the cryptkey option:
cryptkey=BLOCKDEVICE:OFFSET:SIZE
OFFSET and SIZE match in this example, but this is coincidence - they can differ (and often will). An other possible example could be
kernel /vmlinuz-linux root=/dev/hda3 ro vga=791 cryptkey=/dev/usbstick:8192:2048
That's all, reboot and have fun! And look if your partitions still work after that ;-).
Encrypting the Swap partition
Encrypting Swap without Suspend Support
In systems where suspend to disk is not a desired feature, it is possible to create a swap file that will have a random passphrase with each boot.
This is accomplished by using dm-crypt directly without LUKS extensions.
Execute the following command to setup a randomly encrypted swap partition:
# echo <device-mapper name> <swap physical partition> SWAP "-c aes-xts-plain -h whirlpool -s 512" >> /mnt/etc/crypttab
This command adds the following swap partition details to /mnt/etc/crypttab:
- 'echo' and '>> /mnt/etc/crypttab' adds the command to the file /mnt/etc/crypttab directly
- SWAP identifies the partition as a swap partition
- -c defines a cipher
- -h defines a hash algorithm
- -s defines the key size
Example (/dev/sda2 is the physical swap partition and /dev/mapper/swapmapper is the device-mapper):
- echo swapmapper /dev/sda2 SWAP "-c aes-xts-plain -h whirlpool -s 512" >> /mnt/etc/crypttab
- Maps /dev/sda2 to /dev/mapper/swapmapper as a swap partition which is encrypted by AES with Whirlpool as the hash algorithm.
There are many hash algorithms that can be employed, for further details [Cryptographic Hash Functions].
If the partition chosen for swap was previously a LUKS partition, crypttab will not overwite to partition to create a swap partition. This is safetly measure to prevent data loss from accidental miss identification of the swap partition in crypttab. In order to use such a partition the LUKS header must be removed. This can be accomplished by
# dd if=/dev/zero of=/dev/sda2
Using UUIDs with encrypted swap partitions
If there are multiple hard drives installed in the system, their naming order (sda, sdb,...) can occasionally be scrambled upon boot. When /etc/rc.sysinit parses the /etc/crypttab file and sees the SWAP line, it will create a new dm-crypt mapping backed by that device partition and initialize encrypted swap space on top of it. This operation destroys all data on the partition, which can be catastrophic if the disk names have been switched upon reboot. To prevent such mistakes on multi-drive systems, always reference disk partitions using UUIDs rather than device names. /etc/rc.sysinit will refuse to overwrite any known file system, partition table, RAID/LVM volume or valid LUKS partition.
Create a regular swap partition with a new UUID:
# mkswap /dev/sdaX # where X is your swap partition number
Note the new random UUID and edit /etc/crypttab
swap /dev/disk/by-uuid/<your UUID> SWAP --offset 8 -c aes-xts-plain -h whirlpool -s 512
The --offset parameter will prevent the UUID (stored within the first eight 512 byte blocks) from being overwritten by cryptsetup each time new encrypted swap space is initialized.
Edit your /etc/rc.sysinit, find the following lines
/sbin/blkid -p "$2" &>/dev/null if [[ $? -eq 2 ]]; then _overwriteokay=1 fi
and replace it with
/sbin/blkid -p "$2" &>/dev/null if [[ $? -eq 2 || $(/sbin/blkid -p "$2" -s TYPE|/bin/grep "swap") ]]; then _overwriteokay=1 fi
An additional advantage of this method is that the swap partition can be shared among several operating systems, in encrypted and unencrypted forms.
Encrypted swap with suspend-to-disk support
To be able to resume after suspending the computer to disk (hibernate), it is required to keep the swap filesystem intact. Therefore, it is required to have a presistent LUKS swap partition, which can be stored on the disk or input manually at startup. Because the resume takes place before the crypttab can be used, it is required to create a hook in mkinitcpio.conf to open the swap LUKS device before resuming. The following setup has the disadvantage of having to insert a key manually for the swap partition.
If you want to use a partition which is currently used by the system, you have to disable it, first:
# swapoff /dev/<device>
To create the swap partition, follow steps similar to those described in mapping partitions above.
1. Format the partition you want to use as swap with cryptsetup. For performance reasons, you might want to use different ciphers with different key sizes. A benchmark can be found here.
# cryptsetup -c aes-xts-plain -s 512 -h sha512 -v luksFormat /dev/<device>
Check result with:
# cryptsetup luksDump /dev/<device>
2. Open the partition in /dev/mapper:
# cryptsetup luksOpen /dev/<device> swapDevice
3. Create a swap filesystem inside the mapped partition:
# mkswap /dev/mapper/swapDevice
Now you should have a LUKS swap partition which asks for the passphrase before mounting. Make sure you remove any line in /etc/crypttab which uses this device. Now you have to create a hook to open the swap at boot time.
4. Create a file /lib/initcpio/hooks/openswap containing the open command:
# vim: set ft=sh: run_hook () { cryptsetup luksOpen /dev/<device> swapDevice }
5. Then create and edit the hook setup file /lib/initcpio/install/openswap as:
# vim: set ft=sh: install () { MODULES="" BINARIES="" FILES="" SCRIPT="openswap" } help () { cat<<HELPEOF This opens the swap encrypted partition /dev/<device> in /dev/mapper/swapDevice HELPEOF }
6. Add the hook openswap in the HOOKS array in /etc/mkinitcpio.conf, before filesystem, but after encrypt which is mandatory as well.
7. Regenerate the boot image:
# mkinitcpio -p linux
8. Add the mapped partition to /etc/fstab:
/dev/mapper/swapDevice swap swap defaults 0 0
9. Set-up your system to resume from /dev/mapper/swapDevice. For example, if you use GRUB with kernel hibernation support, add "resume=/dev/mapper/swapDevice" to the kernel line in /boot/grub/menu.lst. A line with encrypted root and swap partitions can look like this:
kernel /vmlinuz-linux cryptdevice=/dev/sda2:rootDevice root=/dev/mapper/rootDevice resume=/dev/mapper/swapDevice ro
At boot time, the openswap hook will open the swap partition so the kernel resume may use it. If you use special hooks for resuming from hibernation, make sure they stand after openswap in the HOOKS array. Please note that because of initrd opening swap there is no entry for swapDevice in /etc/crypttab needed in this case.
Installing the system
Now that /dev/mapper/root and /dev/mapper/home are in place, we can enter the regular Arch setup script to install the system into the encrypted volumes.
# /arch/setup
Prepare hard drive
Skip the Partitioning and Auto-Prepare business and go straight to manually configuration. Instead of choosing the hardware devices (/dev/sdaX) directly you have to select the mapper devices created above: Choose /dev/mapper/root for your root and /dev/mapper/home as home partition respectively and format them with any filesystem you like. The same is valid for a swap partition which is set up like the home partition. Make sure you mount /dev/sda1 as the /boot partition or else the installer will not properly set up the bootloader.
Select and Install packages
Select and install the packages as usual, the base package contains all required programs.
Configure System
Note: encrypt hook is only needed if your root partition is a LUKS partition (or for a LUKS partition that needs to be mounted before root). Encrypt hook is not needed in case any other partition (swap, for example) is encrypted. System initialization scripts (rc.sysinit and /etc/crypttab among others) take care of those.
Afterwards you can check the files presented to you by the installer, the most important one being /etc/mkinitcpio.conf. For detailed info on mkinitcpio (and its configuration) refer to Mkinitcpio.You have to make sure that your HOOKS looks somehow like this:
HOOKS="... encrypt ... filesystems ..."
It is important that the encrypt hook comes before the filesystems one. If you store your key on an external USB device (e.g. a USB stick), you need to add the USB hook too:
HOOKS="... usb encrypt ... filesystems ..."
For safety, add in usb before encrypt; not sure if they're run in the order they appear in mkinitcpio.conf or not. If you need support for foreign keymaps for your encryption password you have to specify the hook 'keymap' as well. I suggest to put this in mkinitcpio.conf right before 'encrypt'.
If you have USB keyboard you need the "usbinput" hook in mkinitcpio.conf. Without it, no USB keyboard will work in early userspace.
If your root partition is a LUKS partition add the used filesystem to the MODULES section.
MODULES="... ext3 ext4 xfs ..."
Install Bootloader
GRUB: You have to make some small changes to the entries generated by the installer by replacing /dev/mapper/root with /dev/sda3. The corrected config looks like this: For kernel >= 2.6.30:
# (0) Arch Linux title Arch Linux root (hd0,0) kernel /vmlinuz-linux cryptdevice=/dev/sda3:root root=/dev/mapper/root ro initrd /initramfs-linux.img
LILO: On Lilo, edit the Arch Linux section on /etc/lilo.conf and include a line for append option, over the initrd, with the "root=/dev/sda3" param. The append section make the same kernel line on grub. Also, you can ommit the root option, over the image option. The section look like this:
# Arch Linux lilo section image = /vmlinuz-linux # root = /dev/sda3 label = Arch initrd = /initramfs-linux.img append = "root=/dev/sda3" read-only
Exit Install
Now that the install is finished the only thing left to do is add entries to the /etc/crypttab file so you don't have to enter the passphrase for all encrypted partitions. This works only for non-root partitions e.g. /home, swap, etc.
# vi /etc/crypttab
Add the following line for the /home partition
home /dev/sda5 "myotherpassword"
You can also use a keyfile instead of a passphrase. If not already done, create a keyfile and add the key to the corresponding LUKS partition as described above. Then add the following information to the /etc/crypttab file for automounting:
home /dev/sda5 /path/of/your/keyfile
After rebooting you should now be presented with the text
A password is required to access the root filesystem:
followed by a prompt for any LUKS password. Type it in and everything should boot. Once you've logged in, have a look at your mounted partitions by typing mount. You should have /dev/mapper/root mounted at / and, if you set up a separate encrypted home partition, /dev/mapper/home mounted at /home. If you set up encrypted swap, swapon -s should have /dev/mapper/swap listed as your swap partition.
Remote unlocking of the root (or other) partition
If you want to be able to reboot a fully LUKS encrypted system remotely or start it with a Wake-on-LAN service you will need a way to enter a passphrase for the root partition/volume at startup. This can be achived by running the "net" hook along with a ssh server in initrd. Install the dropbear_initrd_encrypt package from AUR and follow the post installation instructions. Replace the "encrypt" hook with "encryptssh" in /etc/mkinitcpio.conf. Put the "net" hook early in the HOOKS array if your dhcp server takes a long time to assign an IP address.
If you simply would like a nice solution to mount other encrypted partitions (like /home) remotely you may want to look at the following forum thread.
Backup the cryptheader
When the header of your crypted partition was destroyed, you will not be able to decrypt your data. So creating a backup of the headers and storing them on another disk might be a good idea.
Attention: Many people recommend NOT to backup the cryptheader, even so it's a single point failure! In short, the problem is, that LUKS isn't aware of the duplicated cryptheader, which contains the masterkey which is used to encrypt all files on your partition. Of course this masterkey is encrypted with your passphrases or keyfiles. But if one of those gets compromised and you want to revoke it you have to do this on all copies of the cryptheader! I.e. if someone has got your cryptheader and one of your keys he can decrypt the masterkey and access all your data. Of course the same is true for all backups you create of your partions. So you decide if you are one of those paranoids brave enough to go without a backup for the sake of security or not. See also [1] for further details on this.
Backup
First you have to find out the payload offset of the crypted partition (replace sdaX with the corresponding partition)
cryptsetup luksDump /dev/sdaX | grep "Payload offset" Payload offset: 4040
Now that you know the value, you can backup the header with a simple dd command
dd if=/dev/sdaX of=./backup.img bs=512 count=4040
Note: you can also backup the header into a tmpfs/ramfs and encrypt it with gpg or whatever before writing it to a physical disk. Of course you can wrap your encrypted backup into another encryption layer and so on until you feel safe enough :-)
Restore
Be careful before restore: make sure that you chose the right partition (again replace sdaX with the corresponding partition). Restoring the wrong header or restoring to an unencrypted partition will cause data loss.
dd if=./backup.img of=/dev/sdX bs=512 count=4040
Encrypting a loopback filesystem
[This paragraph has been merged from another page; its consistency with the other paragraphs should be improved]
Preparation and mapping
So, let's start by creating an encrypted container!
dd if=/dev/zero of=/bigsecret bs=1M count=10 # you can also use if=/dev/urandom, if you're really paranoid
This will create the file 'bigsecret' with a size of 10 megabytes.
losetup /dev/loop0 /bigsecret
This will create the device node /dev/loop0, so that we can mount/use our container. (Note: if it gives you the error "/dev/loop0: No such file or directory", you need to first load the kernel module with modprobe loop)
cryptsetup luksFormat /dev/loop0
This will ask you for a password for your new container file. (Note: if you get an error like "Command failed: Failed to setup dm-crypt key mapping. Check kernel for support for the aes-cbc-essiv:sha256 cipher spec and verify that /dev/loop0 contains at least 133 sectors", then run modprobe dm-mod)
cryptsetup luksOpen /dev/loop0 secret
The encrypted container is now available through the devicefile /dev/mapper/secret. Now we are able to create a partition in the container:
mkfs.ext2 /dev/mapper/secret
and mount it...
mkdir /mnt/secret mount -t ext2 /dev/mapper/secret /mnt/secret
We can now use the container as if it was a normal partition! To unmount the container:
umount /mnt/secret cryptsetup luksClose secret losetup -d /dev/loop0 # free the loopdevice.
so, if you want to mount the container again, you just apply the following commands:
losetup /dev/loop0 /bigsecret cryptsetup luksOpen /dev/loop0 secret mount -t ext2 /dev/mapper/secret /mnt/secret
Pretty easy, huh?
Encrypt using a key-file
Let's first generate a 2048 Byte random keyfile :
dd if=/dev/urandom of=keyfile bs=1k count=2
We can now format our container using this key
cryptsetup luksFormat /dev/loop0 keyfile
or our partition :
cryptsetup luksFormat /dev/hda2 keyfile
Once formatted, we can now open the luks device using the key:
cryptsetup -d keyfile luksOpen /dev/loop0 container
You can now like before format the device /dev/mapper/container with your favorite filesystem and then mount it just as easily.
The keyfile is now the only key to your file. I personally advise to encrypt your keyfile using your private GPG key and storing an offsite secured copy of the file.
Resizing the loopback filesystem
First we should unmount the encrypted container:
umount /mnt/secret cryptsetup luksClose secret losetup -d /dev/loop0 # free the loopdevice.
After this we need to create a second file with the size of the data we want to add:
dd if=/dev/zero of=zeros bs=1M count=1024
You could use /dev/urandom instead of /dev/zero if you're paranoid, but /dev/zero should be faster on older computers. Next we need to add the created file to our container. Be careful to really use TWO ">", or you will override your current container!
cat zeros >> /bigsecret
Now we have to map the container to the loopdevice:
losetup /dev/loop0 /bigsecret cryptsetup luksOpen /dev/loop0 secret
After this we will resize the encrypted part of the container to the maximum size of the container file:
cryptsetup resize secret
Finally we can resize the filesystem. Here is an example for ext2/3/4:
e2fsck -f /dev/mapper/secret # Just doing a filesystem check, because it's a bad idea to resize a broken fs resize2fs /dev/mapper/secret
You can now mount your container again:
mount /dev/mapper/secret /mnt/secret
Encrypting a LVM setup
It's really easy to use encryption with LVM. If you don't know how to set up LVM, then read Installing_with_Software_RAID_or_LVM.
The easiest and best method is to set up LVM on top of the encrypted partition instead of the other way around. This link here is easy to follow and explains everything: Arch Linux: LVM on top of an encrypted partition
The most important thing in setting LVM on top of encryption is, that you need to have encrypt hook before lvm2 hook (and those two before filesystems hook, but that's repeating). Because they are processed in order.
To use encryption on top of LVM, you have to first setup your lvm volumes and then use them as base for the encrypted partitions. That means in short that you have to setup lvm at first. Then follow this guide, but replace all occurrences of /dev/sdXy in the guide with its lvm counterpart. (eg: /dev/sda5 -> /dev/<volume group name>/home).
Don't forget to add the "encrypt" hook in /etc/mkinitcpio.conf before the "lvm2" hook, if you chose to set up encrypted partition on top of LVM. Also remember to change USELVM in /etc/rc.conf to yes.
LVM with Arch Linux Installer (>2009.08)
Since Arch Linux images 2009.08 LVM and dm_crypt is supported by the installer out of the box. This makes it very easy to configure your system for LVM on dm-crypt or vice versa. Actually the configuration is done exactly as without LVM, see the corresponding section above. It differs only in two aspects.
The partition and filesystem choice
Create a small, unencrypted boot partition and use the remaining space for a single partion which can later be split up into multiple logic volumes by LVM.
For a LVM-on-dm-crypt system set up the filesystems and mounting points for example like this:
/dev/sda1 raw->ext2;yes;/boot;no_opts;no_label;no_params /dev/sda2 raw->dm_crypt;yes;no_mountpoint;no_opts;sda2crypt;-c_aes-xts-plain_-y_-s_512 /dev/mapper/sda2crypt dm_crypt->lvm-vg;yes;no_mountpoint;no_opts;no_label;no_params /dev/mapper/sda2crypt+ lvm-pv->lvm-vg;yes;no_mountpoint;no_opts;cryptpool;no_params /dev/mapper/cryptpool lvm-vg(cryptpool)->lvm-lv;yes;no_mountpoint;no_opts;cryptroot;10000M|lvm-lv;yes;no_mountpoint;no_opts;crypthome;20000M /dev/mapper/cryptpool-cryptroot lvm-lv(cryptroot)->ext3;yes;/;no_opts;cryptroot;no_params /dev/mapper/cryptpool-crypthome lvm-lv(crypthome)->ext3;yes;/home;no_opts;cryptroot;no_params
The configuration stage
- In /etc/rc.conf set USELVM="yes"
- In /etc/mkinitcpio.conf add encrypt before lvm2 in the HOOKS variable if you set up LVM on top of the encrypted partition.
That's it for the LVM & dm_crypt specific part. The rest is done as usual.
Applying this to a non-root partition
You might get tempted to apply all this fancy stuff to a non-root partition. Arch does not support this out of the box, however, you can easily change the cryptdev and cryptname values in /lib/initcpio/hooks/encrypt (the first one to your /dev/sd* partition, the second to the name you want to attribute). That should be enough.
The big advantage is you can have everything automated, while setting up /etc/crypttab with an external key file (i.e. not on any internal HD partition) can be a pain - you need to make sure the USB/FireWire/... device gets mounted before the encrypted partition, which means you have to change fstab order (at least).
Of course, if the cryptsetup package gets upgraded, you will have to change this script again. However, this solution is to be preferred over hacking rc.sysinit or similar files. Unlike /etc/crypttab, only one partition is supported, but with some further hacking one should be able to have multiple partitions unlocked.
If you want to do this on a software RAID partition, there's one more thing you need to do. Just setting the /dev/mdX device in /lib/initcpio/hooks/encrypt is not enough; the encrypt hook will fail to find the key for some reason, and not prompt for a passphrase either. It looks like the RAID devices aren't brought up until after the encrypt hook is run. You can solve this by putting the RAID array in /boot/grub/menu.lst, like
kernel /boot/vmlinuz-linux md=1,/dev/hda5,/dev/hdb5
If you set up your root partition as a RAID array you will notice the similarities with that setup ;-). Grub can handle multiple array definitions just fine:
kernel /boot/vmlinuz-linux root=/dev/md0 ro md=0,/dev/sda1,/dev/sdb1 md=1,/dev/sda5,/dev/sdb5,/dev/sdc5
LVM&dm-crypt manually (short version)
Notes
If you're enough smart enough for this, you'll be smart enough to ignore/replace LVM-specific things if you don't want to use LVM.
Partitioning scheme
/dev/sda1 -> /boot /dev/sda2 -> LVM
The commands =
cryptsetup -d /dev/random -c aes-xts-plain -s 512 create lvm /dev/sda2 dd if=/dev/urandom of=/dev/mapper/lvm cryptsetup remove lvm lvm pvcreate /dev/sda2 lvm vgcreate lvm /dev/sda2 lvm lvcreate -L 10G -n root lvm lvm lvcreate -L 500M -n swap lvm lvm lvcreate -L 500M -n tmp lvm lvm lvcreate -l 100%FREE -n home lvm cryptsetup luksFormat -c aes-xts-plain -s 512 /dev/lvm/root cryptsetup luksOpen /dev/lvm/root root mkreiserfs /dev/mapper/root mount /dev/mapper/root /mnt dd if=/dev/zero of=/dev/sda1 bs=1M mkreiserfs /dev/sda1 mkdir /mnt/boot mount /dev/sda1 /mnt/boot mkdir -p -m 700 /mnt/etc/luks-keys dd if=/dev/random of=/mnt/etc/luks-keys/home bs=1 count=256
Install Arch Linux
/arch/setup
Configuration
/etc/rc.conf
Change USELVM="no" to USELVM="yes".
/etc/mkinitcpio.conf
Put lvm2 and encrypt (in that order) before filesystems in the HOOKS variable. Again, note that you are setting encryption on top of LVM.)
Change root=/dev/hda3 to root=/dev/lvm/root.
For kernel >= 2.6.30, you should change root=/dev/hda3 to:
cryptdevice=/dev/lvm/root:root root=/dev/mapper/root
/etc/fstab
/dev/mapper/root / reiserfs defaults 0 1 /dev/sda1 /boot reiserfs defaults 0 2 /dev/mapper/tmp /tmp tmpfs defaults 0 0 /dev/mapper/swap none swap sw 0 0
/etc/crypttab
swap /dev/lvm/swap SWAP -c aes-xts-plain -h whirlpool -s 512 tmp /dev/lvm/tmp /dev/urandom -c aes-xts-plain -s 512
After reboot
The commands
cryptsetup luksFormat -c aes-xts-plain -s 512 /dev/lvm/home /etc/luks-keys/home cryptsetup luksOpen -d /etc/luks-keys/home /dev/lvm/home home mkreiserfs /dev/mapper/home mount /dev/mapper/home /home
/etc/crypttab
home /dev/lvm/home /etc/luks-keys/home
/etc/fstab
/dev/mapper/home /home reiserfs defaults 0 0
/ on lvm on luks
Make sure your kernel commandline looks like this:
root=/dev/mapper/<volume-group>-<logical-volume> cryptdevice=/dev/<luks-part>:<volume-group>
for example:
root=/dev/mapper/vg-arch cryptdevice=/dev/sda4:vg
Or like this:
cryptdevice=/dev/<volume-group>/<logical-volume>:root root=/dev/mapper/root
Resources
- Setup Archlinux on top of raid, LVM2 and encrypted partitions
- FreeOTFE - Supports unlocking LUKS encrypted volumes in Microsoft Windows.