mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

Change-Id: I1b54da258c7d15551b6c3de7522a0d19afdb66de Signed-off-by: Samuli Seppänen <samuli.seppanen@gmail.com> Acked-by: Frank Lichtenheld <frank@lichtenheld.com> Message-Id: <20240613081422.139493-1-frank@lichtenheld.com> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg28750.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
73 lines
2.0 KiB
Bash
Executable File
73 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
#
|
|
TSERVER_NULL_SKIP_RC="${TSERVER_NULL_SKIP_RC:-77}"
|
|
|
|
if ! [ -r "./t_server_null.rc" ] ; then
|
|
echo "${0}: cannot find './t_server_null.rc. SKIPPING TEST.'" >&2
|
|
exit "${TSERVER_NULL_SKIP_RC}"
|
|
fi
|
|
|
|
. ./t_server_null.rc
|
|
|
|
if KILL_EXEC=$(which kill); then
|
|
export KILL_EXEC
|
|
else
|
|
echo "${0}: kill not found in \$PATH" >&2
|
|
exit "${TSERVER_NULL_SKIP_RC}"
|
|
fi
|
|
|
|
# Ensure PREFER_KSU is in a known state
|
|
PREFER_KSU="${PREFER_KSU:-0}"
|
|
|
|
# make sure we have permissions to run ifconfig/route from OpenVPN
|
|
# can't use "id -u" here - doesn't work on Solaris
|
|
ID=$(id)
|
|
if expr "$ID" : "uid=0" >/dev/null
|
|
then :
|
|
else
|
|
if [ "${PREFER_KSU}" -eq 1 ];
|
|
then
|
|
# Check if we have a valid kerberos ticket
|
|
if klist -l 1>/dev/null 2>/dev/null; then
|
|
RUN_SUDO="ksu -q -e"
|
|
else
|
|
# No kerberos ticket found, skip ksu and fallback to RUN_SUDO
|
|
PREFER_KSU=0
|
|
echo "${0}: No Kerberos ticket available. Will not use ksu."
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$RUN_SUDO" ]
|
|
then
|
|
echo "${0}: this test must run be as root, or RUN_SUDO=... " >&2
|
|
echo " must be set correctly in 't_server_null.rc'. SKIP." >&2
|
|
exit "${TSERVER_NULL_SKIP_RC}"
|
|
else
|
|
# Run a no-op command with privilege escalation (e.g. sudo) so that
|
|
# we (hopefully) do not have to ask the users password during the test.
|
|
if $RUN_SUDO "${KILL_EXEC}" -0 $$
|
|
then
|
|
echo "${0}: $RUN_SUDO $KILL_EXEC -0 succeeded, good."
|
|
else
|
|
echo "${0}: $RUN_SUDO $KILL_EXEC -0 failed, cannot go on. SKIP." >&2
|
|
exit "${TSERVER_NULL_SKIP_RC}"
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
srcdir="${srcdir:-.}"
|
|
|
|
if [ -z "${RUN_SUDO}" ]; then
|
|
"${srcdir}/t_server_null_server.sh" &
|
|
else
|
|
$RUN_SUDO "${srcdir}/t_server_null_server.sh" &
|
|
fi
|
|
|
|
"${srcdir}/t_server_null_client.sh"
|
|
|
|
# When running make jobs in parallel ("make -j<x> check") we need to ensure
|
|
# that this script does not exit before all --dev null servers are dead and
|
|
# their network interfaces are gone. Otherwise t_client.sh will fail because
|
|
# pre and post ifconfig output does not match.
|
|
wait
|