2013-07-23 18:56:12 +02:00
|
|
|
{ config, pkgs, ... }:
|
2010-10-25 02:57:30 +02:00
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
2012-03-03 17:07:18 +01:00
|
|
|
luks = config.boot.initrd.luks;
|
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
openCommand = { name, device, keyFile, keyFileSize, allowDiscards, yubikey, ... }: ''
|
2012-03-03 17:07:18 +01:00
|
|
|
# Wait for luksRoot to appear, e.g. if on a usb drive.
|
|
|
|
# XXX: copied and adapted from stage-1-init.sh - should be
|
|
|
|
# available as a function.
|
|
|
|
if ! test -e ${device}; then
|
|
|
|
echo -n "waiting 10 seconds for device ${device} to appear..."
|
2012-06-27 15:43:54 +02:00
|
|
|
for try in $(seq 10); do
|
2012-03-03 17:07:18 +01:00
|
|
|
sleep 1
|
|
|
|
if test -e ${device}; then break; fi
|
2012-03-04 22:00:35 +01:00
|
|
|
echo -n .
|
2012-03-03 17:07:18 +01:00
|
|
|
done
|
|
|
|
echo "ok"
|
|
|
|
fi
|
|
|
|
|
2012-08-02 11:39:31 +02:00
|
|
|
${optionalString (keyFile != null) ''
|
2012-05-03 00:37:14 +02:00
|
|
|
if ! test -e ${keyFile}; then
|
|
|
|
echo -n "waiting 10 seconds for key file ${keyFile} to appear..."
|
|
|
|
for try in $(seq 10); do
|
|
|
|
sleep 1
|
|
|
|
if test -e ${keyFile}; then break; fi
|
|
|
|
echo -n .
|
|
|
|
done
|
|
|
|
echo "ok"
|
|
|
|
fi
|
|
|
|
''}
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
open_normally() {
|
|
|
|
cryptsetup luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} \
|
|
|
|
${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"}
|
|
|
|
}
|
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
${optionalString (luks.yubikeySupport && (yubikey != null)) ''
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
rbtohex() {
|
|
|
|
od -An -vtx1 | tr -d ' \n'
|
|
|
|
}
|
|
|
|
|
|
|
|
hextorb() {
|
|
|
|
tr '[:lower:]' '[:upper:]' | sed -e 's|\([0-9A-F]\{2\}\)|\\\\\\x\1|gI' | xargs printf
|
|
|
|
}
|
|
|
|
|
|
|
|
take() {
|
|
|
|
local c="$1"
|
|
|
|
shift
|
|
|
|
head -c $c "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
drop() {
|
2014-01-28 23:45:16 +01:00
|
|
|
local c="$1"
|
2014-01-28 04:02:51 +01:00
|
|
|
shift
|
|
|
|
if [ -e "$1" ]; then
|
|
|
|
cat "$1" | ( dd of=/dev/null bs="$c" count=1 2>/dev/null ; dd 2>/dev/null )
|
|
|
|
else
|
|
|
|
( dd of=/dev/null bs="$c" count=1 2>/dev/null ; dd 2>/dev/null )
|
|
|
|
fi
|
|
|
|
}
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
open_yubikey() {
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
mkdir -p ${yubikey.storage.mountPoint}
|
|
|
|
mount -t ${yubikey.storage.fsType} ${toString yubikey.storage.device} ${yubikey.storage.mountPoint}
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local uuid_r
|
2014-01-29 13:57:12 +01:00
|
|
|
uuid_r="$(take 32 ${yubikey.storage.mountPoint}${yubikey.storage.path})"
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local uuid_luks
|
|
|
|
uuid_luks="$(cryptsetup luksUUID ${device} | take 36 | tr -d '-')"
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local k_user
|
|
|
|
local challenge
|
|
|
|
local k_blob
|
|
|
|
local aes_blob_decrypted
|
|
|
|
local checksum_correct
|
|
|
|
local checksum
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
for try in $(seq 3); do
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
${optionalString yubikey.twoFactor ''
|
|
|
|
echo -n "Enter two-factor passphrase: "
|
|
|
|
read -s k_user
|
|
|
|
''}
|
|
|
|
|
|
|
|
challenge="$(echo -n $k_user$uuid_r$uuid_luks | openssl-wrap dgst -binary -sha1 | rbtohex)"
|
|
|
|
|
|
|
|
k_blob="$(ykchalresp -${toString yubikey.slot} -x $challenge 2>/dev/null)"
|
|
|
|
|
2014-01-29 13:57:12 +01:00
|
|
|
aes_blob_decrypted="$(drop 32 ${yubikey.storage.mountPoint}${yubikey.storage.path} | hextorb | openssl-wrap enc -d -aes-256-ctr -K $k_blob -iv $uuid_r | rbtohex)"
|
2014-01-28 04:02:51 +01:00
|
|
|
|
2014-01-29 13:57:12 +01:00
|
|
|
checksum="$(echo -n $aes_blob_decrypted | drop 168)"
|
2014-01-28 04:02:51 +01:00
|
|
|
if [ "$(echo -n $aes_blob_decrypted | hextorb | take 84 | openssl-wrap dgst -binary -sha512 | rbtohex)" == "$checksum" ]; then
|
|
|
|
checksum_correct=1
|
|
|
|
break
|
|
|
|
else
|
|
|
|
checksum_correct=0
|
|
|
|
echo "Authentication failed!"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$checksum_correct" != "1" ]; then
|
|
|
|
umount ${yubikey.storage.mountPoint}
|
|
|
|
echo "Maximum authentication errors reached"
|
|
|
|
exit 1
|
2014-01-25 03:27:12 +01:00
|
|
|
fi
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local k_yubi
|
2014-01-29 13:57:12 +01:00
|
|
|
k_yubi="$(echo -n $aes_blob_decrypted | take 40)"
|
2014-01-28 04:02:51 +01:00
|
|
|
|
|
|
|
local k_luks
|
2014-01-29 13:57:12 +01:00
|
|
|
k_luks="$(echo -n $aes_blob_decrypted | drop 40 | take 128)"
|
2014-01-28 04:02:51 +01:00
|
|
|
|
|
|
|
echo -n "$k_luks" | hextorb | cryptsetup luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} --key-file=-
|
2014-01-25 03:27:12 +01:00
|
|
|
|
|
|
|
update_failed=false
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local new_uuid_r
|
|
|
|
new_uuid_r="$(uuidgen)"
|
2014-01-25 03:27:12 +01:00
|
|
|
if [ $? != "0" ]; then
|
|
|
|
for try in $(seq 10); do
|
|
|
|
sleep 1
|
2014-01-28 04:02:51 +01:00
|
|
|
new_uuid_r="$(uuidgen)"
|
2014-01-25 03:27:12 +01:00
|
|
|
if [ $? == "0" ]; then break; fi
|
|
|
|
if [ $try -eq 10 ]; then update_failed=true; fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$update_failed" == false ]; then
|
2014-01-28 04:02:51 +01:00
|
|
|
new_uuid_r="$(echo -n $new_uuid_r | take 36 | tr -d '-')"
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local new_challenge
|
|
|
|
new_challenge="$(echo -n $k_user$new_uuid_r$uuid_luks | openssl-wrap dgst -binary -sha1 | rbtohex)"
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
local new_k_blob
|
|
|
|
new_k_blob="$(echo -n $new_challenge | hextorb | openssl-wrap dgst -binary -sha1 -mac HMAC -macopt hexkey:$k_yubi | rbtohex)"
|
2014-01-25 03:27:12 +01:00
|
|
|
|
2014-01-29 13:57:12 +01:00
|
|
|
echo -n "$new_uuid_r" > ${yubikey.storage.mountPoint}${yubikey.storage.path}
|
|
|
|
echo -n "$k_yubi$k_luks$checksum" | hextorb | openssl-wrap enc -e -aes-256-ctr -K "$new_k_blob" -iv "$new_uuid_r" | rbtohex >> ${yubikey.storage.mountPoint}${yubikey.storage.path}
|
2014-01-25 03:27:12 +01:00
|
|
|
else
|
2014-01-28 04:02:51 +01:00
|
|
|
echo "Warning: Could not obtain new UUID, current challenge persists!"
|
2014-01-25 03:27:12 +01:00
|
|
|
fi
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
umount ${yubikey.storage.mountPoint}
|
|
|
|
}
|
|
|
|
|
2014-01-28 20:39:25 +01:00
|
|
|
yubikey_missing=true
|
|
|
|
ykinfo -v 1>/dev/null 2>&1
|
|
|
|
if [ $? != "0" ]; then
|
2014-01-28 04:02:51 +01:00
|
|
|
echo -n "waiting 10 seconds for yubikey to appear..."
|
|
|
|
for try in $(seq 10); do
|
|
|
|
sleep 1
|
2014-01-28 20:39:25 +01:00
|
|
|
ykinfo -v 1>/dev/null 2>&1
|
|
|
|
if [ $? == "0" ]; then
|
|
|
|
yubikey_missing=false
|
|
|
|
break
|
|
|
|
fi
|
2014-01-28 04:02:51 +01:00
|
|
|
echo -n .
|
|
|
|
done
|
|
|
|
echo "ok"
|
2014-01-28 20:39:25 +01:00
|
|
|
else
|
|
|
|
yubikey_missing=false
|
2014-01-25 03:27:12 +01:00
|
|
|
fi
|
2014-01-28 04:02:51 +01:00
|
|
|
|
2014-01-28 20:39:25 +01:00
|
|
|
if [ "$yubikey_missing" == true ]; then
|
2014-01-28 04:02:51 +01:00
|
|
|
echo "no yubikey found, falling back to non-yubikey open procedure"
|
|
|
|
open_normally
|
|
|
|
else
|
|
|
|
open_yubikey
|
|
|
|
fi
|
|
|
|
''}
|
|
|
|
|
|
|
|
# open luksRoot and scan for logical volumes
|
|
|
|
${optionalString ((!luks.yubikeySupport) || (yubikey == null)) ''
|
|
|
|
open_normally
|
2014-01-25 03:27:12 +01:00
|
|
|
''}
|
2012-03-03 17:07:18 +01:00
|
|
|
'';
|
|
|
|
|
2012-03-04 22:00:35 +01:00
|
|
|
isPreLVM = f: f.preLVM;
|
|
|
|
preLVM = filter isPreLVM luks.devices;
|
|
|
|
postLVM = filter (f: !(isPreLVM f)) luks.devices;
|
|
|
|
|
2010-10-25 02:57:30 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2013-01-13 10:04:26 +01:00
|
|
|
boot.initrd.luks.mitigateDMAAttacks = mkOption {
|
2013-10-23 18:22:26 +02:00
|
|
|
type = types.bool;
|
2013-01-13 10:04:26 +01:00
|
|
|
default = true;
|
|
|
|
description = ''
|
2013-07-23 18:56:12 +02:00
|
|
|
Unless enabled, encryption keys can be easily recovered by an attacker with physical
|
|
|
|
access to any machine with PCMCIA, ExpressCard, ThunderBolt or FireWire port.
|
|
|
|
More information: http://en.wikipedia.org/wiki/DMA_attack
|
2013-01-13 10:04:26 +01:00
|
|
|
|
2013-07-23 18:56:12 +02:00
|
|
|
This option blacklists FireWire drivers, but doesn't remove them. You can manually
|
|
|
|
load the drivers if you need to use a FireWire device, but don't forget to unload them!
|
2013-01-13 10:04:26 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2013-01-13 11:44:16 +01:00
|
|
|
boot.initrd.luks.cryptoModules = mkOption {
|
2013-10-23 18:22:26 +02:00
|
|
|
type = types.listOf types.string;
|
2013-07-23 18:56:12 +02:00
|
|
|
default =
|
2013-10-09 19:11:47 +02:00
|
|
|
[ "aes" "aes_generic" "blowfish" "twofish"
|
|
|
|
"serpent" "cbc" "xts" "lrw" "sha1" "sha256" "sha512"
|
|
|
|
(if pkgs.stdenv.system == "x86_64-linux" then "aes_x86_64" else "aes_i586")
|
2013-07-23 18:56:12 +02:00
|
|
|
];
|
2013-01-13 11:44:16 +01:00
|
|
|
description = ''
|
2013-07-23 18:56:12 +02:00
|
|
|
A list of cryptographic kernel modules needed to decrypt the root device(s).
|
|
|
|
The default includes all common modules.
|
2013-01-13 11:44:16 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2012-03-03 17:07:18 +01:00
|
|
|
boot.initrd.luks.devices = mkOption {
|
|
|
|
default = [ ];
|
2012-03-04 22:00:35 +01:00
|
|
|
example = [ { name = "luksroot"; device = "/dev/sda3"; preLVM = true; } ];
|
2012-05-15 22:45:01 +02:00
|
|
|
description = ''
|
2012-03-03 17:07:18 +01:00
|
|
|
The list of devices that should be decrypted using LUKS before trying to mount the
|
2010-10-25 02:57:30 +02:00
|
|
|
root partition. This works for both LVM-over-LUKS and LUKS-over-LVM setups.
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2012-03-03 17:07:18 +01:00
|
|
|
The devices are decrypted to the device mapper names defined.
|
2010-10-25 02:57:30 +02:00
|
|
|
|
2012-03-03 17:07:18 +01:00
|
|
|
Make sure that initrd has the crypto modules needed for decryption.
|
2010-10-25 02:57:30 +02:00
|
|
|
'';
|
2012-03-04 22:00:35 +01:00
|
|
|
|
2013-03-14 17:09:21 +01:00
|
|
|
type = types.listOf types.optionSet;
|
2012-03-04 22:00:35 +01:00
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
name = mkOption {
|
|
|
|
example = "luksroot";
|
|
|
|
type = types.string;
|
2012-04-26 14:21:45 +02:00
|
|
|
description = "Named to be used for the generated device in /dev/mapper.";
|
2012-03-04 22:00:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
device = mkOption {
|
|
|
|
example = "/dev/sda2";
|
|
|
|
type = types.string;
|
2012-04-26 16:53:58 +02:00
|
|
|
description = "Path of the underlying block device.";
|
2012-03-04 22:00:35 +01:00
|
|
|
};
|
|
|
|
|
2012-05-03 00:37:14 +02:00
|
|
|
keyFile = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = "/dev/sdb1";
|
|
|
|
type = types.nullOr types.string;
|
|
|
|
description = ''
|
|
|
|
The name of the file (can be a raw device or a partition) that
|
|
|
|
should be used as the decryption key for the encrypted device. If
|
|
|
|
not specified, you will be prompted for a passphrase instead.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
keyFileSize = mkOption {
|
|
|
|
default = null;
|
|
|
|
example = 4096;
|
|
|
|
type = types.nullOr types.int;
|
|
|
|
description = ''
|
|
|
|
The size of the key file. Use this if only the beginning of the
|
|
|
|
key file should be used as a key (often the case if a raw device
|
|
|
|
or partition is used as key file). If not specified, the whole
|
|
|
|
<literal>keyFile</literal> will be used decryption, instead of just
|
|
|
|
the first <literal>keyFileSize</literal> bytes.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2012-03-04 22:00:35 +01:00
|
|
|
preLVM = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2012-04-26 14:21:45 +02:00
|
|
|
description = "Whether the luksOpen will be attempted before LVM scan or after it.";
|
2012-03-04 22:00:35 +01:00
|
|
|
};
|
2012-07-17 13:10:00 +02:00
|
|
|
|
|
|
|
allowDiscards = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to allow TRIM requests to the underlying device. This option
|
|
|
|
has security implications, please read the LUKS documentation before
|
|
|
|
activating in.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
yubikey = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.optionSet;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = ''
|
|
|
|
The options to use for this LUKS device in Yubikey-PBA.
|
|
|
|
If null (the default), Yubikey-PBA will be disabled for this device.
|
|
|
|
'';
|
2014-01-25 03:27:12 +01:00
|
|
|
|
|
|
|
options = {
|
|
|
|
twoFactor = mkOption {
|
2014-01-28 23:45:16 +01:00
|
|
|
default = true;
|
2014-01-25 03:27:12 +01:00
|
|
|
type = types.bool;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = "Whether to use a passphrase and a Yubikey (true), or only a Yubikey (false)";
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
slot = mkOption {
|
2014-01-25 03:27:12 +01:00
|
|
|
default = 2;
|
|
|
|
type = types.int;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = "Which slot on the Yubikey to challenge";
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
storage = mkOption {
|
2014-01-25 03:27:12 +01:00
|
|
|
type = types.optionSet;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = "Options related to the authentication record";
|
2014-01-25 03:27:12 +01:00
|
|
|
|
|
|
|
options = {
|
|
|
|
device = mkOption {
|
|
|
|
default = /dev/sda1;
|
|
|
|
type = types.path;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = ''
|
|
|
|
An unencrypted device that will temporarily be mounted in stage-1.
|
|
|
|
Must contain the authentication record for this LUKS device.
|
|
|
|
'';
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
fsType = mkOption {
|
|
|
|
default = "vfat";
|
|
|
|
type = types.string;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = "The filesystem of the unencrypted device";
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mountPoint = mkOption {
|
2014-01-28 04:02:51 +01:00
|
|
|
default = "/crypt-storage";
|
2014-01-25 03:27:12 +01:00
|
|
|
type = types.string;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = "Path where the unencrypted device will be mounted in stage-1";
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
|
2014-01-28 04:02:51 +01:00
|
|
|
path = mkOption {
|
|
|
|
default = "/crypt-storage/default";
|
2014-01-25 03:27:12 +01:00
|
|
|
type = types.string;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = ''
|
|
|
|
Absolute path of the authentication record on the unencrypted device with
|
|
|
|
that device's root directory as "/".
|
|
|
|
'';
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2013-10-23 18:22:26 +02:00
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
2010-10-25 02:57:30 +02:00
|
|
|
};
|
2013-10-23 18:22:26 +02:00
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
boot.initrd.luks.yubikeySupport = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
2014-01-28 23:45:16 +01:00
|
|
|
description = ''
|
|
|
|
Enables support for authenticating with a Yubikey on LUKS devices.
|
|
|
|
See the NixOS wiki for information on how to properly setup a LUKS device
|
|
|
|
and a Yubikey to work with this feature.
|
|
|
|
'';
|
2014-01-25 03:27:12 +01:00
|
|
|
};
|
2010-10-25 02:57:30 +02:00
|
|
|
};
|
|
|
|
|
2012-05-15 22:45:01 +02:00
|
|
|
config = mkIf (luks.devices != []) {
|
2010-10-25 02:57:30 +02:00
|
|
|
|
2013-01-13 10:04:26 +01:00
|
|
|
# actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested
|
|
|
|
boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
|
|
|
|
["firewire_ohci" "firewire_core" "firewire_sbp2"];
|
|
|
|
|
2012-03-03 17:07:18 +01:00
|
|
|
# Some modules that may be needed for mounting anything ciphered
|
2013-10-09 19:11:47 +02:00
|
|
|
boot.initrd.availableKernelModules = [ "dm_mod" "dm_crypt" "cryptd" ] ++ luks.cryptoModules;
|
2010-10-25 02:57:30 +02:00
|
|
|
|
2011-12-28 22:46:40 +01:00
|
|
|
# copy the cryptsetup binary and it's dependencies
|
2010-10-25 02:57:30 +02:00
|
|
|
boot.initrd.extraUtilsCommands = ''
|
2011-12-28 22:46:40 +01:00
|
|
|
cp -pdv ${pkgs.cryptsetup}/sbin/cryptsetup $out/bin
|
|
|
|
# XXX: do we have a function that does this?
|
|
|
|
for lib in $(ldd $out/bin/cryptsetup |grep '=>' |grep /nix/store/ |cut -d' ' -f3); do
|
|
|
|
cp -pdvn $lib $out/lib
|
|
|
|
cp -pvn $(readlink -f $lib) $out/lib
|
|
|
|
done
|
2014-01-28 04:02:51 +01:00
|
|
|
|
2014-01-25 03:27:12 +01:00
|
|
|
${optionalString luks.yubikeySupport ''
|
|
|
|
cp -pdv ${pkgs.utillinux}/bin/uuidgen $out/bin
|
|
|
|
for lib in $(ldd $out/bin/uuidgen |grep '=>' |grep /nix/store/ |cut -d' ' -f3); do
|
|
|
|
cp -pdvn $lib $out/lib
|
|
|
|
cp -pvn $(readlink -f $lib) $out/lib
|
|
|
|
done
|
|
|
|
|
|
|
|
cp -pdv ${pkgs.ykpers}/bin/ykchalresp $out/bin
|
|
|
|
for lib in $(ldd $out/bin/ykchalresp |grep '=>' |grep /nix/store/ |cut -d' ' -f3); do
|
|
|
|
cp -pdvn $lib $out/lib
|
|
|
|
cp -pvn $(readlink -f $lib) $out/lib
|
|
|
|
done
|
2014-01-28 04:02:51 +01:00
|
|
|
|
|
|
|
cp -pdv ${pkgs.ykpers}/bin/ykinfo $out/bin
|
|
|
|
for lib in $(ldd $out/bin/ykinfo |grep '=>' |grep /nix/store/ |cut -d' ' -f3); do
|
|
|
|
cp -pdvn $lib $out/lib
|
|
|
|
cp -pvn $(readlink -f $lib) $out/lib
|
|
|
|
done
|
|
|
|
|
|
|
|
cp -pdv ${pkgs.openssl}/bin/openssl $out/bin
|
|
|
|
for lib in $(ldd $out/bin/openssl |grep '=>' |grep /nix/store/ |cut -d' ' -f3); do
|
|
|
|
cp -pdvn $lib $out/lib
|
|
|
|
cp -pvn $(readlink -f $lib) $out/lib
|
|
|
|
done
|
|
|
|
|
|
|
|
mkdir -p $out/etc/ssl
|
|
|
|
cp -pdv ${pkgs.openssl}/etc/ssl/openssl.cnf $out/etc/ssl
|
|
|
|
|
|
|
|
cat > $out/bin/openssl-wrap <<EOF
|
|
|
|
#!$out/bin/sh
|
|
|
|
EOF
|
|
|
|
chmod +x $out/bin/openssl-wrap
|
2014-01-25 03:27:12 +01:00
|
|
|
''}
|
2011-12-28 22:46:40 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
boot.initrd.extraUtilsCommandsTest = ''
|
2011-12-28 23:37:38 +01:00
|
|
|
$out/bin/cryptsetup --version
|
2014-01-25 03:27:12 +01:00
|
|
|
${optionalString luks.yubikeySupport ''
|
|
|
|
$out/bin/uuidgen --version
|
|
|
|
$out/bin/ykchalresp -V
|
2014-01-28 04:02:51 +01:00
|
|
|
$out/bin/ykinfo -V
|
|
|
|
cat > $out/bin/openssl-wrap <<EOF
|
|
|
|
#!$out/bin/sh
|
|
|
|
export OPENSSL_CONF=$out/etc/ssl/openssl.cnf
|
|
|
|
$out/bin/openssl "\$@"
|
|
|
|
EOF
|
|
|
|
$out/bin/openssl-wrap version
|
2014-01-25 03:27:12 +01:00
|
|
|
''}
|
2010-10-25 02:57:30 +02:00
|
|
|
'';
|
|
|
|
|
2012-03-04 22:00:35 +01:00
|
|
|
boot.initrd.preLVMCommands = concatMapStrings openCommand preLVM;
|
|
|
|
boot.initrd.postDeviceCommands = concatMapStrings openCommand postLVM;
|
2012-03-08 21:49:26 +01:00
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.cryptsetup ];
|
2010-10-25 02:57:30 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
}
|