1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
#!/bin/bash
#
# Copyright (C) 2020 Nikos Mavrogiannopoulos
#
# This file is part of ocserv.
#
# ocserv is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# ocserv is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
SERV="${SERV:-../src/ocserv}"
OCCTL="${OCCTL:-../src/occtl/occtl}"
srcdir=${srcdir:-.}
#we cannot use NO_NEED_ROOT here as occtl commands can only be issued by root
NEED_SOCKET_WRAPPER=1
PIDFILE=ocserv-pid.$$.tmp
OCCTL_SOCKET=./occtl-drain-$$.socket
. `dirname $0`/common.sh
eval "${GETPORT}"
echo "Testing server-drain-ms when sec-mod abruptively fails..."
function finish {
set +e
echo " * Cleaning up..."
test -n "${CONFIG}" && rm -f "${CONFIG}" >/dev/null 2>&1
test -n "${PID}" && kill "${PID}" >/dev/null 2>&1
}
trap finish EXIT
update_config test1.config
echo server-drain-ms=15000 >> ${CONFIG}
echo "occtl-socket-file = $OCCTL_SOCKET" >> ${CONFIG}
echo "use-occtl = true" >> ${CONFIG}
launch_simple_sr_server -d 3 -p ${PIDFILE} -f -c ${CONFIG} & PID=$!
wait_server $PID
echo "Connecting to obtain cookie... "
( echo "test" | LD_PRELOAD=libsocket_wrapper.so $OPENCONNECT -q $ADDRESS:$PORT -u test --servercert=pin-sha256:xp3scfzy3rOQsv9NcOve/8YVVv+pHr4qNCXEXrNl5s8= --cookieonly ) ||
fail $PID "Could not receive cookie from server"
if ! test -f ${PIDFILE};then
fail $PID "Could not find pid file ${PIDFILE}"
fi
SPID=$(${OCCTL} -s ${OCCTL_SOCKET} show status|grep -i "Sec-mod PID"|cut -d ':' -f 2)
if test -z "${SPID}";then
echo "Could not detect sec-mod PID"
${OCCTL} -s ${OCCTL_SOCKET} show status
exit 1
fi
echo "Killing sec-mod"
kill -15 ${SPID}
function wait_ocserv {
local max_time=$1
local time=0
while [ ${time} -lt ${max_time} ]
do
sleep 5
test -e ${OCCTL_SOCKET}
if ! test $? = 0;then
echo "ocserv is down"
return 0
fi
let time+=5
done
#timeout
echo "ocserv did not get offline after ${time} secs"
kill -9 $(cat $PIDFILE)
exit 1
}
wait_ocserv 30
exit 0
|