cryptroot: Retry mounting drives, if key does not work (you may add it).
This commit is contained in:
parent
e2274764c4
commit
d990ce6bcb
|
@ -123,6 +123,13 @@ setup_mapping() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
get_crypt_type # set CRYPTTAB_TYPE to the type of crypt device
|
||||||
|
local count=0 maxtries="${CRYPTTAB_OPTION_tries:-3}" fstype vg rv
|
||||||
|
while [ $maxtries -le 0 ] || [ $count -lt $maxtries ]; do
|
||||||
|
if [ -z "${CRYPTTAB_OPTION_keyscript+x}" ] && [ "$CRYPTTAB_KEY" != "none" ]; then
|
||||||
|
# unlock via keyfile
|
||||||
|
unlock_mapping "$CRYPTTAB_KEY"
|
||||||
|
else
|
||||||
if [ -z "${CRYPTTAB_OPTION_keyscript+x}" ]; then
|
if [ -z "${CRYPTTAB_OPTION_keyscript+x}" ]; then
|
||||||
# Wait for USB to settle
|
# Wait for USB to settle
|
||||||
/bin/sleep 3
|
/bin/sleep 3
|
||||||
|
@ -140,13 +147,6 @@ setup_mapping() {
|
||||||
echo "done."
|
echo "done."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
get_crypt_type # set CRYPTTAB_TYPE to the type of crypt device
|
|
||||||
local count=0 maxtries="${CRYPTTAB_OPTION_tries:-3}" fstype vg rv
|
|
||||||
while [ $maxtries -le 0 ] || [ $count -lt $maxtries ]; do
|
|
||||||
if [ -z "${CRYPTTAB_OPTION_keyscript+x}" ] && [ "$CRYPTTAB_KEY" != "none" ]; then
|
|
||||||
# unlock via keyfile
|
|
||||||
unlock_mapping "$CRYPTTAB_KEY"
|
|
||||||
else
|
|
||||||
if [ -s /tmp/cryptkeys.txt ]; then
|
if [ -s /tmp/cryptkeys.txt ]; then
|
||||||
local keyfound
|
local keyfound
|
||||||
keyfound=0
|
keyfound=0
|
||||||
|
|
|
@ -115,7 +115,10 @@ randdata() {
|
||||||
key=$(echo "$seed" | openssl sha256 -hex | cut -d' ' -f2)
|
key=$(echo "$seed" | openssl sha256 -hex | cut -d' ' -f2)
|
||||||
iv=$(echo "$seed" | openssl sha512 -hex | cut -d' ' -f2)
|
iv=$(echo "$seed" | openssl sha512 -hex | cut -d' ' -f2)
|
||||||
fi
|
fi
|
||||||
|
# single core = 743MiB/s
|
||||||
< /dev/zero openssl enc -aes-128-ctr -K $key -iv $iv 2>/dev/null
|
< /dev/zero openssl enc -aes-128-ctr -K $key -iv $iv 2>/dev/null
|
||||||
|
# single core = 184MiB/s
|
||||||
|
# openssl rand 2000000000
|
||||||
}
|
}
|
||||||
export -f randdata
|
export -f randdata
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue