alistair23-linux/tools/testing/selftests/safesetid/safesetid-test.sh
Micah Morton c67e8ec03f LSM: SafeSetID: add selftest
This patch adds a selftest for the SafeSetID LSM. The test requires
mounting securityfs if it isn't mounted, creating test users in
/etc/passwd, and configuring policies for the SafeSetID LSM through
writes to securityfs.

Signed-off-by: Micah Morton <mortonm@chromium.org>
Signed-off-by: James Morris <james.morris@microsoft.com>
2019-02-12 10:58:51 -08:00

27 lines
331 B
Bash
Executable file

#!/bin/bash
TCID="safesetid-test.sh"
errcode=0
# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4
check_root()
{
uid=$(id -u)
if [ $uid -ne 0 ]; then
echo $TCID: must be run as root >&2
exit $ksft_skip
fi
}
main_function()
{
check_root
./safesetid-test
}
main_function
echo "$TCID: done"
exit $errcode