2013-06-12 09:12:33 +00:00
|
|
|
#!/usr/bin/zsh
|
|
|
|
#
|
|
|
|
# Iterates through various tests on the tomb script
|
|
|
|
|
|
|
|
T="../../tomb"
|
|
|
|
source ${T} source
|
2013-06-12 11:41:12 +00:00
|
|
|
dummypass=test
|
2014-06-08 18:31:42 +00:00
|
|
|
dummypassnew=changetest
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-10-23 21:31:55 +00:00
|
|
|
GLOBAL_RESULT=0
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
notice() { print; yes "${@}"; print; }
|
|
|
|
error() { _warning " ${@}"; }
|
|
|
|
tt() {
|
|
|
|
start_loops=(`sudo losetup -a |cut -d: -f1`)
|
2013-06-12 11:36:50 +00:00
|
|
|
start_temps=(`find /dev/shm -name 'tomb*'`)
|
2013-06-20 08:26:12 +00:00
|
|
|
${T} -D ${=@}
|
2013-06-12 09:12:33 +00:00
|
|
|
res=$?
|
|
|
|
loops=(`sudo losetup -a |cut -d: -f1`)
|
2013-06-12 11:36:50 +00:00
|
|
|
temps=(`find /dev/shm -name 'tomb*'`)
|
|
|
|
|
|
|
|
{ test "${#start_loops}" = "${#loops}" } || {
|
|
|
|
error "loop device usage change to ${#loops}" }
|
|
|
|
{ test "${#start_temps}" = "${#temps}" } || {
|
|
|
|
error "temp files usage change to ${#temps}" }
|
2013-06-12 09:12:33 +00:00
|
|
|
print " Tomb command returns $res"
|
|
|
|
return $res
|
|
|
|
}
|
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
# check for auxiliary programs
|
2014-11-14 17:52:44 +00:00
|
|
|
KDF=1
|
2013-06-12 11:36:50 +00:00
|
|
|
STEGHIDE=1
|
|
|
|
RESIZER=1
|
|
|
|
command -v steghide > /dev/null || STEGHIDE=0
|
|
|
|
command -v e2fsck resize2fs > /dev/null || RESIZER=0
|
|
|
|
command -v tomb-kdb-pbkdf2 > /dev/null || KDF=0
|
2014-06-08 18:31:42 +00:00
|
|
|
command -v qrencode > /dev/null || QRENCODE=0
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
typeset -A results
|
2014-06-08 18:31:42 +00:00
|
|
|
tests=(dig forge lock badpass open close passwd chksum bind setkey)
|
2013-06-12 11:36:50 +00:00
|
|
|
{ test $RESIZER = 1 } && { tests+=(resize) }
|
|
|
|
{ test $KDF = 1 } && { tests+=(kdforge kdfpass kdflock kdfopen) }
|
2014-08-06 05:43:25 +00:00
|
|
|
{ test $STEGHIDE = 1 } && { tests+=(stgin stgout stgopen stgpipe stgimpl) }
|
2014-06-08 18:31:42 +00:00
|
|
|
{ test $QRENCODE = 1 } && { tests+=(qrenc) }
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
notice "Loading test suite"
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
# functions that can be called singularly
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
test-tomb-create() {
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
notice "wiping all test.tomb* in /tmp"
|
|
|
|
sudo rm -f /tmp/test.tomb{,.key,.new.key}
|
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
notice "Testing creation: dig"
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
tt dig -s 20 /tmp/test.tomb
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
{ test $? = 0 } && { results+=(dig SUCCESS) }
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
notice "Testing creation: forge"
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt forge /tmp/test.tomb.key \
|
2014-11-22 00:50:08 +00:00
|
|
|
--ignore-swap --unsafe --tomb-pwd ${dummypass} --use-urandom
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
{ test $? = 0 } && {
|
|
|
|
results+=(forge SUCCESS)
|
|
|
|
#
|
|
|
|
say "Dump of clear key contents to examine them:"
|
|
|
|
print ${dummypass} \
|
|
|
|
| gpg --batch --passphrase-fd 0 --no-tty --no-options -d /tmp/test.tomb.key \
|
|
|
|
| hexdump -C
|
|
|
|
echo --
|
|
|
|
}
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
notice "Testing creation: lock"
|
2013-06-20 08:26:12 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt lock /tmp/test.tomb -k /tmp/test.tomb.key \
|
2014-11-22 00:50:08 +00:00
|
|
|
--ignore-swap --unsafe --tomb-pwd ${dummypass}
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
{ test $? = 0 } && { results+=(lock SUCCESS) }
|
2013-06-20 10:46:20 +00:00
|
|
|
}
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
test-bind-hooks() {
|
|
|
|
notice "Testing bind hooks"
|
2015-06-26 09:47:19 +00:00
|
|
|
|
|
|
|
tt --ignore-swap --unsafe --tomb-pwd ${dummypass} \
|
|
|
|
open /tmp/test.tomb -k /tmp/test.tomb.key
|
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
rnd=$RANDOM
|
|
|
|
bindtest="dyne-tomb-bind-test-$rnd"
|
2015-06-26 09:47:19 +00:00
|
|
|
echo $rnd > /media/test/$bindtest
|
|
|
|
rm -f /media/test/bind-hooks
|
|
|
|
echo "$bindtest $bindtest" > /media/test/bind-hooks
|
2014-11-14 16:43:53 +00:00
|
|
|
touch $HOME/$bindtest
|
|
|
|
tt close test
|
2014-11-22 00:50:08 +00:00
|
|
|
tt -k /tmp/test.tomb.key --unsafe --tomb-pwd ${dummypass} open /tmp/test.tomb
|
2014-11-14 16:43:53 +00:00
|
|
|
rnd2=`cat $HOME/$bindtest`
|
|
|
|
if [ "$rnd" = "$rnd2" ]; then
|
|
|
|
notice "Bind hook on file matches"
|
|
|
|
results+=(bind SUCCESS)
|
|
|
|
tt list test
|
|
|
|
else
|
|
|
|
error "Bind hook on file reports incongruence"
|
|
|
|
fi
|
2015-06-26 09:47:19 +00:00
|
|
|
rm -f "/media/test/$bindtest"
|
2014-11-14 16:43:53 +00:00
|
|
|
tt close test
|
|
|
|
# Remove test file in HOME
|
|
|
|
rm -f "$HOME/$bindtest"
|
|
|
|
}
|
2013-06-20 08:26:12 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
test-set-key() {
|
|
|
|
|
|
|
|
notice "Testing set key"
|
|
|
|
|
|
|
|
sudo rm -f /tmp/test.tomb.new.key
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt forge -k /tmp/test.tomb.new.key --force --unsafe --tomb-pwd ${dummypass} --use-urandom
|
2014-11-14 17:52:16 +00:00
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt setkey -k /tmp/test.tomb.new.key --unsafe --tomb-pwd ${dummypass} --tomb-old-pwd ${dummypass} /tmp/test.tomb.key /tmp/test.tomb
|
2014-11-14 17:52:16 +00:00
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt open -k /tmp/test.tomb.new.key --unsafe --tomb-pwd ${dummypass} /tmp/test.tomb
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
[[ $? = 0 ]] && {
|
|
|
|
notice "Setkey succesfully swapped tomb key"
|
|
|
|
results+=(setkey SUCCESS)
|
|
|
|
say "Dump of clear key contents to examine them:"
|
|
|
|
print ${dummypass} \
|
|
|
|
| gpg --batch --passphrase-fd 0 --no-tty --no-options -d /tmp/test.tomb.new.key \
|
|
|
|
| hexdump -C
|
|
|
|
echo --
|
|
|
|
mv /tmp/test.tomb.new.key /tmp/test.tomb.key
|
|
|
|
tt close test
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
startloops=(`sudo losetup -a |cut -d: -f1`)
|
|
|
|
|
|
|
|
[[ $1 = "source" ]] && { return 0 }
|
|
|
|
|
|
|
|
[[ $1 = "" ]] || {
|
|
|
|
tt ${=@}
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
# isolated function (also called with source)
|
|
|
|
test-tomb-create
|
2013-06-12 09:12:33 +00:00
|
|
|
|
|
|
|
notice "Testing open with wrong password"
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt -k /tmp/test.tomb.key --unsafe --tomb-pwd wrongpassword open /tmp/test.tomb
|
2013-06-12 09:12:33 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } || { results+=(badpass SUCCESS) }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
notice "Testing open with good password"
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt -k /tmp/test.tomb.key --unsafe --tomb-pwd ${dummypass} open /tmp/test.tomb
|
2013-06-12 09:12:33 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(open SUCCESS) }
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
tt close test
|
|
|
|
|
2014-08-25 19:06:45 +00:00
|
|
|
{ test $? = 0 } && { results+=(close SUCCESS) }
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
notice "Testing changing tomb password"
|
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt passwd /tmp/test.tomb \
|
2014-11-22 00:50:08 +00:00
|
|
|
-k /tmp/test.tomb.key --unsafe --tomb-old-pwd ${dummypass} --tomb-pwd ${dummypassnew}
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
tt passwd /tmp/test.tomb \
|
2014-11-22 00:50:08 +00:00
|
|
|
-k /tmp/test.tomb.key --unsafe --tomb-old-pwd ${dummypassnew} --tomb-pwd ${dummypass}
|
2014-06-08 18:31:42 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(passwd SUCCESS) }
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
|
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
notice "Generating content for file integrity test"
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt -k /tmp/test.tomb.key --unsafe --tomb-pwd ${dummypass} open /tmp/test.tomb
|
2014-06-08 18:31:42 +00:00
|
|
|
|
2015-06-26 09:47:19 +00:00
|
|
|
tt dig -s 10 /media/test/datacheck.raw
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2015-06-26 09:47:19 +00:00
|
|
|
crc="sha256 /media/test/datacheck.raw"
|
|
|
|
echo "$crc" > /media/test/datacheck.sha
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe close test
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
{ test $RESIZER = 1 } && {
|
|
|
|
notice "Testing resize to 30 MiB"
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} -k /tmp/test.tomb.key resize /tmp/test.tomb -s 30
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(resize SUCCESS) }
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
}
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
notice "Testing contents integrity"
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt -k /tmp/test.tomb.key --unsafe --tomb-pwd ${dummypass} open /tmp/test.tomb
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
{ test $? = 0 } && {
|
|
|
|
|
2015-06-26 09:47:19 +00:00
|
|
|
crc2="sha256 /media/test/datacheck.raw"
|
2014-06-08 18:31:42 +00:00
|
|
|
|
|
|
|
{ test "$crc" = "$crc2" } && { results+=(chksum SUCCESS) }
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
tt close test
|
2014-06-08 18:31:42 +00:00
|
|
|
}
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
# isolated function
|
|
|
|
test-bind-hooks
|
2013-06-12 09:12:33 +00:00
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-11-14 16:43:53 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# iso func
|
|
|
|
test-set-key
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
{ test $KDF = 1 } && {
|
|
|
|
|
|
|
|
notice "Testing KDF key"
|
|
|
|
sudo rm -f /tmp/test.tomb.kdf /tmp/kdf.tomb
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} --use-urandom --kdf 1 forge -k /tmp/test.tomb.kdf
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(kdforge SUCCESS) }
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt passwd --unsafe --tomb-old-pwd ${dummypass} --tomb-pwd ${dummypassnew} --kdf 1 -k /tmp/test.tomb.kdf
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(kdfpass SUCCESS) }
|
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt dig -s 10 /tmp/kdf.tomb
|
2013-06-12 11:36:50 +00:00
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt lock /tmp/kdf.tomb -k /tmp/test.tomb.kdf \
|
2014-11-22 00:50:08 +00:00
|
|
|
--ignore-swap --unsafe --tomb-pwd ${dummypassnew} --kdf 1
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(kdflock SUCCESS) }
|
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt open /tmp/kdf.tomb -k /tmp/test.tomb.kdf \
|
2014-11-22 00:50:08 +00:00
|
|
|
--ignore-swap --unsafe --tomb-pwd ${dummypassnew} --kdf 1
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(kdfopen SUCCESS) }
|
|
|
|
|
|
|
|
${T} close kdf
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
{ test $STEGHIDE = 1 } && {
|
|
|
|
|
|
|
|
notice "Testing steganographic hiding of keys"
|
|
|
|
|
|
|
|
cp -f arditi.jpg /tmp/tomb.jpg
|
|
|
|
sudo rm -f /tmp/test.steg.key
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} bury -k /tmp/test.tomb.key /tmp/tomb.jpg
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(stgin SUCCESS) }
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
rm -f /tmp/test.steg.key
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} exhume -k /tmp/test.steg.key /tmp/tomb.jpg
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(stgout SUCCESS) }
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} open -k /tmp/test.steg.key /tmp/test.tomb
|
2013-06-12 11:36:50 +00:00
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(stgopen SUCCESS) }
|
|
|
|
|
|
|
|
${T} close test
|
2014-08-06 05:43:25 +00:00
|
|
|
|
|
|
|
# test piping keys using -k -
|
2014-11-22 00:50:08 +00:00
|
|
|
tkey=`tt --unsafe --tomb-pwd ${dummypass} exhume /tmp/tomb.jpg`
|
|
|
|
print "$tkey" | tt --unsafe --tomb-pwd ${dummypass} open -k - /tmp/test.tomb
|
2014-08-06 05:43:25 +00:00
|
|
|
{ test $? = 0 } && { results+=(stgpipe SUCCESS) }
|
|
|
|
|
|
|
|
${T} close test
|
|
|
|
|
|
|
|
|
|
|
|
notice "test using open -k image.jpeg"
|
|
|
|
|
2014-11-22 00:50:08 +00:00
|
|
|
tt --unsafe --tomb-pwd ${dummypass} open -k /tmp/tomb.jpg /tmp/test.tomb
|
2014-08-06 05:43:25 +00:00
|
|
|
{ test $? = 0 } && { results+=(stgimpl SUCCESS) }
|
|
|
|
|
2014-11-14 17:52:16 +00:00
|
|
|
tt close test
|
2013-06-12 11:36:50 +00:00
|
|
|
}
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
{ test $QRENCODE = 1 } && {
|
|
|
|
|
2014-08-06 05:43:25 +00:00
|
|
|
notice "test rendering a QR printable key backup"
|
|
|
|
|
2014-06-08 18:31:42 +00:00
|
|
|
tt engrave -k /tmp/test.tomb.key
|
|
|
|
|
|
|
|
{ test $? = 0 } && { results+=(qrenc SUCCESS) }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-12 11:36:50 +00:00
|
|
|
# rm /tmp/test.tomb{,.key} -f || exit 1
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
endloops=(`sudo losetup -a |cut -d: -f1`)
|
|
|
|
|
|
|
|
notice "Test results summary"
|
|
|
|
|
|
|
|
print "${#startloops} loop devices busy at start"
|
|
|
|
|
|
|
|
for t in $tests; do
|
|
|
|
echo "$t\t${results[$t]:-FAIL}"
|
|
|
|
done
|
|
|
|
|
2014-10-23 21:31:55 +00:00
|
|
|
for r in ${(v)results}; do
|
|
|
|
[[ "$r" == "SUCCESS" ]] || GLOBAL_RESULT=1
|
|
|
|
done
|
|
|
|
|
2013-06-12 09:12:33 +00:00
|
|
|
print "${#endloops} loop devices busy at end"
|
2013-06-12 11:36:50 +00:00
|
|
|
print "Done. You can remove temporary leftovers from /tmp :"
|
|
|
|
for i in `find /tmp -name '*tomb*' 2>/dev/null`; do ls -lh $i; done
|
2014-10-23 21:31:55 +00:00
|
|
|
return $GLOBAL_RESULT
|