mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-11 19:00:02 +01:00
- add loop module to initramfs image - modprobe loop before reencrypt start - add rd.luks.reencrypt_keyslot= - add conflict with dracut crypt module - drop to emergency_shell after reencryption
28 lines
817 B
Bash
Executable File
28 lines
817 B
Bash
Executable File
#!/bin/sh
|
|
|
|
REENC=$(getargs rd.luks.reencrypt=)
|
|
REENC_DEV=$(echo $REENC | sed 's/:.*//')
|
|
REENC_SIZE=$(echo $REENC | sed -n 's/.*://p')
|
|
|
|
REENC_KEY=$(getargs rd.luks.reencrypt_key=)
|
|
if [ -z "$REENC_KEY" ] ; then
|
|
REENC_KEY=none
|
|
fi
|
|
|
|
REENC_SLOT=$(getargs rd.luks.reencrypt_keyslot=)
|
|
if [ -z "$REENC_SLOT" ] ; then
|
|
REENC_SLOT=any
|
|
fi
|
|
|
|
if [ -n "$REENC_DEV" ] ; then
|
|
{
|
|
printf 'SUBSYSTEM!="block", GOTO="reenc_end"\n'
|
|
printf 'ACTION!="add|change", GOTO="reenc_end"\n'
|
|
printf 'KERNEL!="%s", GOTO="reenc_end"\n' $REENC_DEV
|
|
printf 'ENV{ID_FS_TYPE}=="crypto_LUKS", RUN+="/sbin/initqueue \
|
|
--unique --onetime --name crypt-reencrypt-%%k \
|
|
/sbin/reencrypt $env{DEVNAME} %s"\n' "$REENC_KEY $REENC_SLOT $REENC_SIZE"
|
|
printf 'LABEL="reenc_end"\n'
|
|
} > /etc/udev/rules.d/69-reencryption.rules
|
|
fi
|