Blame tests/sni-resume.sh

Packit aea12f
#!/bin/sh
Packit aea12f
Packit aea12f
# Copyright (C) 2017 Thomas Klute
Packit aea12f
#
Packit aea12f
# Author: Thomas Klute
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# GnuTLS is free software; you can redistribute it and/or modify it
Packit aea12f
# under the terms of the GNU General Public License as published by the
Packit aea12f
# Free Software Foundation; either version 3 of the License, or (at
Packit aea12f
# your option) any later version.
Packit aea12f
#
Packit aea12f
# GnuTLS is distributed in the hope that it will be useful, but
Packit aea12f
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit aea12f
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU Lesser General Public License
Packit aea12f
# along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit aea12f
Packit aea12f
srcdir="${srcdir:-.}"
Packit aea12f
SERV="${SERV:-../src/gnutls-serv${EXEEXT}}"
Packit aea12f
CLI="${CLI:-../src/gnutls-cli${EXEEXT}}"
Packit aea12f
unset RETCODE
Packit aea12f
Packit aea12f
if ! test -x "${SERV}"; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
if ! test -x "${CLI}"; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
if test "${WINDIR}" != ""; then
Packit aea12f
	exit 77
Packit aea12f
fi
Packit aea12f
Packit aea12f
if ! test -z "${VALGRIND}"; then
Packit aea12f
	VALGRIND="${LIBTOOL:-libtool} --mode=execute ${VALGRIND} --error-exitcode=15"
Packit aea12f
fi
Packit aea12f
Packit aea12f
SERV="${SERV} -q"
Packit aea12f
Packit aea12f
. "${srcdir}/scripts/common.sh"
Packit aea12f
Packit aea12f
PRIORITY="NORMAL:-VERS-TLS-ALL:+VERS-TLS1.2:+ANON-ECDH"
Packit aea12f
Packit aea12f
echo "Checking if the SNI extension is parsed in gnutls-serv during" \
Packit aea12f
     "cache-based session resumption"
Packit aea12f
Packit aea12f
TMPFILE="servoutput.$$.tmp"
Packit aea12f
Packit aea12f
eval "${GETPORT}"
Packit aea12f
launch_server $$ --echo --priority ${PRIORITY} --sni-hostname-fatal \
Packit aea12f
	      --sni-hostname server.example.com --noticket 2>${TMPFILE}
Packit aea12f
PID=$!
Packit aea12f
wait_server ${PID}
Packit aea12f
Packit aea12f
${VALGRIND} "${CLI}" -p "${PORT}" 127.0.0.1 --sni-hostname server.example.com \
Packit aea12f
	 --priority ${PRIORITY} </dev/null >/dev/null \
Packit aea12f
	 --resume \
Packit aea12f
    || fail ${PID} "connection and resumption should have succeeded!"
Packit aea12f
Packit aea12f
kill ${PID}
Packit aea12f
wait
Packit aea12f
Packit aea12f
ret=0
Packit aea12f
cat "${TMPFILE}"
Packit aea12f
# The --sni-hostname-fatal option rejects only clients which send a
Packit aea12f
# server name that does not match the expected one, not clients that
Packit aea12f
# do not send an SNI extension at all. Check if the server logged a
Packit aea12f
# missing extension.
Packit aea12f
if grep "client did not include SNI extension" "${TMPFILE}" >/dev/null; then
Packit aea12f
    ret=1
Packit aea12f
    echo "SNI data missing unexpectedly!"
Packit aea12f
fi
Packit aea12f
rm "${TMPFILE}"
Packit aea12f
Packit aea12f
exit ${ret}