- Shell 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| .gitignore | ||
| .SRCINFO | ||
| 95-smartcard.rules | ||
| CONTRIBUTORS.md | ||
| COPYING | ||
| cryptsetup-gpg-dropin-generator | ||
| initramfs-scencrypt.install | ||
| kexec-example.sh | ||
| PKGBUILD | ||
| README.md | ||
| scencrypt-hook | ||
| scencrypt-install | ||
| scencrypt-migrate | ||
| systemd-cryptsetup-pgp-keyfile@.service | ||
| systemd-gpg-decrypt | ||
| systemd-gpg-decrypt@.service | ||
| systemd-initramfs-gpg-init | ||
| systemd-initramfs-gpg-init.service | ||
GnuPG hook for Arch Linux initcpio
This initcpio hook allows you to use a PGP-compatible smart card during early boot to decrypt your full disk encrypted system.
Why?
This is a great solution if you want the best possible encryption strength, but without having to type a huge passphrase in every time you boot. Using a hardware-backed RSA key on a PGP smart card, with the card performing decryption of the FDE key on-chip without releasing the private key to the OS, gives you extremely strong protection from attacks, even sophisticated/well-equipped adversaries.
As is the case with all LUKS systems, anyone who gets root on your box after it's booted can run dmsetup table --showkeys to dump the master key, the changing of which requires a complete wipe of your disk, in contrast to LUKS user key changing which requires only wiping and replacing the key slot. So don't let an adversary get root - watch your setuid programs, sudo rights, running services, etc. carefully.
PGP smart cards have varying options for PIN limits and reset or self-destruct functionality - choose one that fits your needs.
This hook has only been tested with the YubiKey NEO.
Disclaimer
Use this hook at your own risk. It's highly recommended to have a backup key somewhere, in case you lose or destroy your primary key.
Configuration process
- Install Arch onto a LUKS encrypted system and get it booting using the stock
encrypthook and passphrase. (Beyond the scope of this document) - Configure your smartcard and get it working to the point that you can encrypt and decrypt things on your machine using the card. (Beyond the scope of this document)
- Generate a new random key and encrypt it:
dd if=/dev/random bs=64 count=1 | gpg --encrypt -r your@email.tld > disk.bin.gpg - Decrypt the key into memory so you can add it to your LUKS volume:
gpg --decrypt -o /dev/shm/disk.bin disk.bin.gpg sudo cryptsetup luksAddKey /dev/your_luks_device /dev/shm/disk.binshred -u -n1 /dev/shm/disk.binto delete the decrypteddisk.binfile from memory.- Edit
/etc/crypttabto include your encrypted device. The line will look somewhat like:arch_crypt /dev/your_luks_device none pgp-keyfile=/etc/disk-keys/disk.bin.gpg,discard - Edit
/etc/mkinitcpio.confand add thescencrypthook. If you are using a traditional initramfs, do not leave bothencryptandscencryptenabled. If you are using systemd in your rootfs, you must leave sd-encrypt enabled. - Export public keys (when using a smartcard) or private keys (when using software decryption) into a
.ascfile in/etc/initcpio/gpg/public-keys.d. - Run
mkinitcpio -p linux. If there are no errors, reboot with your smart card plugged in to find out if it works. - (Optional) Remove previously-used passphrases so that only your GPG-encrypted key file can unseal the disk. Optionally, enroll a recovery key that is saved offline.
Migration from v1.x
To facilitate compatibility with systemd-cryptsetup, version 2.x requires the PGP key file to be passed in the fourth column as pgp-keyfile=... rather than the third column in crypttab.
A script called scencrypt-migrate is included which will automatically rewrite your crypttab (and save a backup in /etc/crypttab.old, of course). While the non-systemd version of the hook attempts to support the old format, this will not remain supported and may be subject to cleanup in the future.
The scencrypt-migrate script will also attempt to export your PGP keys to the new storage location. Be advised that it only attempts to export public keys, so if your private key is normally bundled into the initramfs, you'll need to export this manually.
Once your crypttab has been migrated, you can switch to a systemd-based initramfs by replacing the udev hook with systemd, and adding the sd-encrypt hook after scencrypt.
Technical details
The hook works by copying your encrypted key file to the initramfs, decrypting it in memory, passing it to LUKS to unseal the disk, and then using shred to overwrite it in memory.
Behind the scenes, gpg starts scdaemon, which talks to pcscd and pinentry-tty to get your PIN and pass it to the card along with the payload for decryption.
For installations using a systemd-based initramfs, the process is a little more complicated, because the PIN comes in through systemd-ask-password and a series of units and dependencies is used to allow the same keyfile to be used for multiple disks while only asking for the PIN once.
The private key itself is held securely on the smartcard - it cannot be released even with the PIN on hand. But the decryption is quick because the payload is small. Once the disk is mounted, the smartcard can safely be removed from the system - the result of the decryption is merely a "key encryption key" (KEK) that LUKS uses to decrypt the real data encryption key (DEK). There is an excellent white paper written by one of the original LUKS authors detailing LUKS's extensive anti-forensic hardening.
The hook will prefer cryptkey= kernel cmdline argument if present. It uses the same options as the stock encrypt hook, refer to the cryptsetup package for details. This allows you to use kexec without having to re-insert your YubiKey. For this to work you can kexec-load a initrd which contains the plain key file. For security reasons that initrd shall only reside in RAM. Have a look at kexec-example.sh.
How to contribute
- Fork the repository
- If you're fixing a bug, create an issue for it. New features/enhancements don't need an issue created.
- Work in a branch ideally named after the issue you're working on, if applicable
- When ready for review, open a pull request.
- Don't update version numbers - the maintainers will do this when new versions are released.
- If you're a first time contributor, add your name, PGP key ID and GitHub username to CONTIRBUTORS.md. If you have not done this, your pull request will not be accepted.