2018-11-17 00:15:23 +03:00
#!/usr/bin/env bash
# Copyright (C) 2018 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Test secure table is not leaking data in user land
SKIP_WITH_LVMPOLLD = 1
2023-04-23 20:17:08 +03:00
SKIP_WITH_LVMLOCKD = 1
2018-11-17 00:15:23 +03:00
# AES key matching rot13 string from dmsecuretest.c */
SECURE = "434e0cbab02ca68ffba9268222c3789d703fe62427b78b308518b3228f6a2122"
. lib/inittest
DMTEST = " ${ PREFIX } -test-secure "
2024-04-23 17:07:36 +03:00
# Masking following glibc features fixes probles for AVX CPUs.
#export GLIBC_TUNABLES=glibc.cpu.hwcaps=-AVX512F,-AVX2,-AVX512VL,-ERMS,-AVX_Fast_Unaligned_Load,-SSSE3
2018-11-18 23:37:00 +03:00
# Test needs installed gdb package with gcore app
which gcore || skip
2018-11-17 00:15:23 +03:00
aux driver_at_least 4 6 || skip
# ensure we can create devices (uses dmsetup, etc)
aux prepare_devs 1
# check both code versions - linked libdm and internal device_mapper version
# there should not be any difference
for i in securetest dmsecuretest ; do
# 1st. try with empty table
# 2nd. retry with already exiting DM node - exercize error path also wipes
for j in empty existing ; do
2023-10-17 14:05:09 +03:00
rm -f cmdout
2018-11-17 00:15:23 +03:00
" $i " " $dev1 " " $DMTEST " >cmdout 2>& 1 &
PID = $!
2023-10-26 22:58:55 +03:00
for k in $( seq 1 20) ; do
sleep .1
2023-10-15 22:42:20 +03:00
lines = $( wc -l < cmdout 2>/dev/null || true )
test " ${ lines :- 0 } " = "0" || break
done
2018-11-17 00:15:23 +03:00
2023-10-13 02:49:04 +03:00
# 0 8192 crypt aes-xts-plain64 434e0cbab02ca68ffba9268222c3789d703fe62427b78b308518b3228f6a2122 0 253:0 8192
2018-11-17 00:15:23 +03:00
# crypt device should be loaded
2018-11-23 22:18:22 +03:00
dmsetup status " $DMTEST "
2018-11-17 00:15:23 +03:00
2024-04-23 17:07:36 +03:00
# Do not try to get debuginfo on newer gcore
unset DEBUGINFOD_URLS
2018-11-17 00:15:23 +03:00
# generate core file for running&sleeping binary
2020-09-01 22:39:47 +03:00
gcore " $PID " | tee out || skip
2019-12-10 15:43:47 +03:00
# check we capture core while dmsecuretest was already sleeping
2023-10-15 22:42:20 +03:00
grep -e "nanosleep\|kernel_vsyscall" out
2018-11-23 22:18:22 +03:00
kill " $PID " || true
2018-11-17 00:15:23 +03:00
wait
cat cmdout
# $SECURE string must NOT be present in core file
2024-04-23 17:07:36 +03:00
fail_test = 0
for k in 1 2 4 8; do
a = 0
b = $(( 64 / k ))
fail_str =
while [ " $a " -lt 64 ] ; do
str = ${ SECURE : a : b }
not grep -c " $str " " core. $PID " || fail_str = " $fail_str $str "
a = $(( a + b ))
done
if [ -n " $fail_str " ] ; then
echo " !!! Found $fail_str present in core. $PID !!! "
fail_test = $(( fail_test + 1 ))
fi
done
if [ " $fail_test " -gt 0 ] ; then
2018-11-17 00:15:23 +03:00
## cp "core.$PID" /dev/shm/core
2019-12-10 15:43:47 +03:00
should dmsetup remove " $DMTEST " # go around weird bugs
2024-04-23 17:07:36 +03:00
die " !!! Secure string $SECURE or its parts found present in core. $PID !!! "
fi
2018-11-17 00:15:23 +03:00
rm -f " core. $PID "
if test " $j " = empty ; then
not grep "Device or resource busy" cmdout
else
# Device should be already present resulting into error message
grep "Device or resource busy" cmdout
dmsetup remove " $DMTEST "
fi
done
done