[cleanup] Consolidate temporary file creation

This commit is contained in:
hellekin 2014-10-28 09:46:23 -03:00 committed by Jaromil
parent 226fd2a0f8
commit 14ed549a55

91
tomb
View File

@ -259,7 +259,7 @@ _plot() {
} }
# Provide a random filename in shared memory # Provide a random filename in shared memory
tmp_create() { _tmp_create tmp_create() {
local tfile="${TMPPREFIX}${RANDOM}" # Temporary file local tfile="${TMPPREFIX}${RANDOM}" # Temporary file
@ -274,17 +274,12 @@ tmp_create() {
_verbose "Created tempfile: ::1 temp file::" $tfile _verbose "Created tempfile: ::1 temp file::" $tfile
TOMBTMPFILES+=($tfile) TOMBTMPFILES+=($tfile)
print - $tfile # Print it so it can be stored into a variable
return 0 return 0
} }
# Print the name of the latest temporary file created
tmp_new() {
print - "${TOMBTMPFILES[${#TOMBTMPFILES}]}"
}
# Check if swap is activated # Check if swap is activated
# Return 0 if NO swap is used, 1 if swap is used. # Return 0 if NO swap is used, 1 if swap is used.
# Return 1 if any of the swaps is not encrypted. # Return 1 if any of the swaps is not encrypted.
@ -829,10 +824,10 @@ _load_key load_key() {
# contains tweaks for different gpg versions # contains tweaks for different gpg versions
gpg_decrypt() { gpg_decrypt() {
# fix for gpg 1.4.11 where the --status-* options don't work ;^/ # fix for gpg 1.4.11 where the --status-* options don't work ;^/
gpgver=`gpg --version --no-permission-warning | awk '/^gpg/ {print $3}'` local gpgver=$(gpg --version --no-permission-warning | awk '/^gpg/ {print $3}')
gpgpass="$1\n$TOMBKEY" local gpgpass="$1\n$TOMBKEY"
if [ "$gpgver" = "1.4.11" ]; then [[ $gpgver == "1.4.11" ]] && {
_verbose "GnuPG is version 1.4.11 - adopting status fix." _verbose "GnuPG is version 1.4.11 - adopting status fix."
TOMBSECRET=`print - "$gpgpass" | \ TOMBSECRET=`print - "$gpgpass" | \
@ -840,22 +835,21 @@ gpg_decrypt() {
ret=$? ret=$?
unset gpgpass unset gpgpass
else # using status-file in gpg != 1.4.11 } || { # using status-file in gpg != 1.4.11
# TODO: use mkfifo # TODO: use mkfifo
tmp_create local statusfile=$(_tmp_create)
_status=`tmp_new`
TOMBSECRET=`print - "$gpgpass" | \ TOMBSECRET=`print - "$gpgpass" | \
gpg --batch --passphrase-fd 0 --no-tty --no-options \ gpg --batch --passphrase-fd 0 --no-tty --no-options \
--status-fd 2 --no-mdc-warning --no-permission-warning \ --status-fd 2 --no-mdc-warning --no-permission-warning \
--no-secmem-warning 2> $_status` --no-secmem-warning 2> $statusfile`
unset gpgpass unset gpgpass
grep 'DECRYPTION_OKAY' $_status > /dev/null grep 'DECRYPTION_OKAY' $statusfile > /dev/null
ret=$? ret=$?
fi }
return $ret return $ret
} }
@ -955,48 +949,43 @@ ask_key_password() {
# change tomb key password # change tomb key password
change_passwd() { change_passwd() {
local tmpnewkey lukskey c tombpass tombpasstmp
_check_swap _check_swap
load_key load_key
_message "Commanded to change password for tomb key ::1 key::" $TOMBKEYFILE _message "Commanded to change password for tomb key ::1 key::" $TOMBKEYFILE
local tmpnewkey lukskey c tombpass tombpasstmp tmpnewkey=$(_tmp_create)
tmp_create
tmpnewkey=`tmp_new`
if option_is_set --tomb-old-pwd; then if option_is_set --tomb-old-pwd; then
tomb_old_pwd="`option_value --tomb-old-pwd`" local tomboldpwd="`option_value --tomb-old-pwd`"
_verbose "tomb-old-pwd = ::1 old pass::" $tomb_old_pwd _verbose "tomb-old-pwd = ::1 old pass::" $tomboldpwd
ask_key_password "$tomb_old_pwd" ask_key_password "$tomboldpwd"
else else
ask_key_password ask_key_password
fi fi
[[ $? == 0 ]] || _failure "No valid password supplied."
{ test $? = 0 } || {
_failure "No valid password supplied." }
_success "Changing password for ::1 key file::" $TOMBKEYFILE _success "Changing password for ::1 key file::" $TOMBKEYFILE
# Here $TOMBSECRET contains the key material in clear # Here $TOMBSECRET contains the key material in clear
if option_is_set --tomb-pwd; then { option_is_set --tomb-pwd } && {
tomb_new_pwd="`option_value --tomb-pwd`" local tombpwd="`option_value --tomb-pwd`"
_verbose "tomb-pwd = ::1 new pass::" $tomb_new_pwd _verbose "tomb-pwd = ::1 new pass::" $tombpwd
gen_key "$tomb_new_pwd" >> "$tmpnewkey" gen_key "$tombpwd" >> "$tmpnewkey"
else } || {
gen_key >> "$tmpnewkey" gen_key >> "$tmpnewkey"
fi }
if ! is_valid_key "`cat $tmpnewkey`"; then { is_valid_key "$(cat $tmpnewkey)" } || {
_failure "Error: the newly generated keyfile does not seem valid." _failure "Error: the newly generated keyfile does not seem valid." }
else
# copy the new key as the original keyfile name # Copy the new key as the original keyfile name
cp -f "${tmpnewkey}" $TOMBKEYFILE cp -f "${tmpnewkey}" $TOMBKEYFILE
_success "Your passphrase was successfully updated." _success "Your passphrase was successfully updated."
fi
return 0 return 0
} }
@ -1591,19 +1580,16 @@ change_tomb_key() {
_failure "No valid password supplied for the new key." } _failure "No valid password supplied for the new key." }
new_secret=$TOMBSECRET new_secret=$TOMBSECRET
# danger zone: due to cryptsetup limitations, in setkey we need # Danger zone: due to cryptsetup limitations, in setkey we need
# to write the bare unencrypted key on the tmpfs. # to write the bare unencrypted key on the tmpfs.
tmp_create local newsecretfile=$(_tmp_create)
new_secret_file=`tmp_new`
print -n - "$new_secret" >> $new_secret_file
print -n - "$old_secret"| \
cryptsetup --key-file - luksChangeKey "$nstloop" "$new_secret_file"
{ test $? = 0 } || {
_failure "Unexpected error in luksChangeKey." }
cryptsetup luksClose "${mapper}" print -n - "$new_secret" >> $newsecretfile
{ test $? = 0 } || { print -n - "$old_secret" | \
_failure "Unexpected error in luksClose." } cryptsetup --key-file - luksChangeKey "$nstloop" "$newsecretfile"
[[ $? == 0 ]] || _failure "Unexpected error in luksChangeKey."
cryptsetup luksClose "${mapper}" || _failure "Unexpected error in luksClose."
_success "Succesfully changed key for tomb: ::1 tomb file::" $TOMBFILE _success "Succesfully changed key for tomb: ::1 tomb file::" $TOMBFILE
_message "The new key is: ::1 new key::" $newkey _message "The new key is: ::1 new key::" $newkey
@ -2096,8 +2082,7 @@ index_tombs() {
# here we use swish to index file contents # here we use swish to index file contents
[[ $SWISH == 1 ]] && { [[ $SWISH == 1 ]] && {
_message "Indexing ::1 tomb name:: contents..." $tombname _message "Indexing ::1 tomb name:: contents..." $tombname
tmp_create local swishrc=$(_tmp_create)
swishrc=`tmp_new`
cat <<EOF > $swishrc cat <<EOF > $swishrc
# index directives # index directives