c67e8ec03f
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>
26 lines
331 B
Bash
Executable file
26 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
|