Blame tests/system-override-tls.sh

Packit Service 4684c1
#!/bin/sh
Packit Service 4684c1
Packit Service 4684c1
# Copyright (C) 2019 Red Hat, Inc.
Packit Service 4684c1
#
Packit Service 4684c1
# Author: Nikos Mavrogiannopoulos
Packit Service 4684c1
#
Packit Service 4684c1
# This file is part of GnuTLS.
Packit Service 4684c1
#
Packit Service 4684c1
# GnuTLS is free software; you can redistribute it and/or modify it
Packit Service 4684c1
# under the terms of the GNU General Public License as published by the
Packit Service 4684c1
# Free Software Foundation; either version 3 of the License, or (at
Packit Service 4684c1
# your option) any later version.
Packit Service 4684c1
#
Packit Service 4684c1
# GnuTLS is distributed in the hope that it will be useful, but
Packit Service 4684c1
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 4684c1
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
# General Public License for more details.
Packit Service 4684c1
#
Packit Service 4684c1
# You should have received a copy of the GNU Lesser General Public License
Packit Service 4684c1
# along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit Service 4684c1
#
Packit Service 4684c1
Packit Service 4684c1
srcdir="${srcdir:-.}"
Packit Service 4684c1
SERV="${SERV:-../src/gnutls-serv${EXEEXT}}"
Packit Service 4684c1
CLI="${CLI:-../src/gnutls-cli${EXEEXT}}"
Packit Service 4684c1
TMPFILE=config.$$.tmp
Packit Service 4684c1
export GNUTLS_SYSTEM_PRIORITY_FAIL_ON_INVALID=1
Packit Service 4684c1
Packit Service 4684c1
if ! test -x "${SERV}"; then
Packit Service 4684c1
	exit 77
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
if ! test -x "${CLI}"; then
Packit Service 4684c1
	exit 77
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
if test "${WINDIR}" != ""; then
Packit Service 4684c1
	exit 77
Packit Service 4684c1
fi
Packit Service 4684c1
Packit Service 4684c1
. "${srcdir}/scripts/common.sh"
Packit Service 4684c1
Packit Service 4684c1
check_for_datefudge
Packit Service 4684c1
Packit Service 4684c1
CERT="${srcdir}/certs/cert-ecc256.pem"
Packit Service 4684c1
KEY="${srcdir}/certs/ecc256.pem"
Packit Service 4684c1
Packit Service 4684c1
eval "${GETPORT}"
Packit Service 4684c1
launch_server $$ --echo --priority "NORMAL:+SHA256" --x509keyfile ${KEY} --x509certfile ${CERT}
Packit Service 4684c1
PID=$!
Packit Service 4684c1
wait_server ${PID}
Packit Service 4684c1
Packit Service 4684c1
#successful case, test whether the ciphers we disable below work
Packit Service 4684c1
echo "Sanity testing"
Packit Service 4684c1
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-CIPHER-ALL:+AES-128-GCM:-GROUP-ALL:+GROUP-FFDHE2048 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage1: expected connection to succeed (1)"
Packit Service 4684c1
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.2:-CIPHER-ALL:+AES-128-CBC:+AES-256-CBC:-MAC-ALL:+SHA1 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage1: expected connection to succeed (2)"
Packit Service 4684c1
Packit Service 4684c1
cat <<_EOF_ > ${TMPFILE}
Packit Service 4684c1
[overrides]
Packit Service 4684c1
Packit Service 4684c1
tls-disabled-cipher = aes-128-gcm
Packit Service 4684c1
tls-disabled-cipher = aes-128-cbc
Packit Service 4684c1
tls-disabled-mac = sha1
Packit Service 4684c1
tls-disabled-group = group-ffdhe2048
Packit Service 4684c1
_EOF_
Packit Service 4684c1
Packit Service 4684c1
GNUTLS_SYSTEM_PRIORITY_FILE=${TMPFILE}
Packit Service 4684c1
export GNUTLS_DEBUG_LEVEL=3
Packit Service 4684c1
export GNUTLS_SYSTEM_PRIORITY_FILE
Packit Service 4684c1
Packit Service 4684c1
echo "Testing TLS1.3"
Packit Service 4684c1
echo " * sanity"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage2: expected connection to succeed (1)"
Packit Service 4684c1
Packit Service 4684c1
echo " * fallback to good options"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-CIPHER-ALL:+AES-128-GCM:+AES-256-GCM:-GROUP-ALL:+GROUP-FFDHE2048:+GROUP-FFDHE3072 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage2: expected connection to succeed (2)"
Packit Service 4684c1
Packit Service 4684c1
echo " * disabled cipher"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-CIPHER-ALL:+AES-128-GCM --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null && #>/dev/null &&
Packit Service 4684c1
	fail ${PID} "stage2: expected connection to fail (1)"
Packit Service 4684c1
Packit Service 4684c1
echo " * disabled group"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-GROUP-ALL:+GROUP-FFDHE2048 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null &&
Packit Service 4684c1
	fail ${PID} "stage2: expected connection to fail (2)"
Packit Service 4684c1
Packit Service 4684c1
echo "Testing TLS1.2"
Packit Service 4684c1
echo " * sanity"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.2 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage3: expected connection to succeed (1)"
Packit Service 4684c1
Packit Service 4684c1
echo " * fallback to good options"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.2:-CIPHER-ALL:+AES-128-CBC:+AES-256-CBC:+AES-256-GCM:-MAC-ALL:+SHA1:+AEAD --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null ||
Packit Service 4684c1
	fail ${PID} "stage3: expected connection to succeed (2)"
Packit Service 4684c1
Packit Service 4684c1
echo " * disabled cipher"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.2:-CIPHER-ALL:+AES-128-CBC --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null &&
Packit Service 4684c1
	fail ${PID} "stage3: expected connection to fail (1)"
Packit Service 4684c1
Packit Service 4684c1
echo " * disabled MAC"
Packit Service 4684c1
datefudge "2017-11-22" \
Packit Service 4684c1
"${CLI}" -p "${PORT}" 127.0.0.1 --priority NORMAL:-VERS-ALL:+VERS-TLS1.2:-MAC-ALL:+SHA1 --verify-hostname localhost --x509cafile "${srcdir}/certs/ca-cert-ecc.pem" </dev/null >/dev/null &&
Packit Service 4684c1
	fail ${PID} "stage3: expected connection to fail (2)"
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
kill ${PID}
Packit Service 4684c1
wait
Packit Service 4684c1
Packit Service 4684c1
rm -f ${TMPFILE}
Packit Service 4684c1
Packit Service 4684c1
exit 0