2014-02-20 10:01:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Test various options that are not covered by compat.sh
|
|
|
|
#
|
|
|
|
# Here the goal is not to cover every ciphersuite/version, but
|
|
|
|
# rather specific options (max fragment length, truncated hmac, etc)
|
|
|
|
# or procedures (session resumption from cache or ticket, renego, etc).
|
|
|
|
#
|
|
|
|
# Assumes all options are compiled in.
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
set -u
|
|
|
|
|
2014-03-28 09:12:38 +00:00
|
|
|
# test if it is defined from the environment before assining default
|
|
|
|
# if yes, assume it means it's a build with all the options we need (SSLv2)
|
|
|
|
if [ -n "${OPENSSL_CMD:-}" ]; then
|
|
|
|
OPENSSL_OK=1
|
|
|
|
else
|
|
|
|
OPENSSL_OK=0
|
|
|
|
fi
|
|
|
|
|
2014-02-27 11:25:54 +00:00
|
|
|
# default values, can be overriden by the environment
|
|
|
|
: ${P_SRV:=../programs/ssl/ssl_server2}
|
|
|
|
: ${P_CLI:=../programs/ssl/ssl_client2}
|
2014-03-13 17:47:44 +00:00
|
|
|
: ${OPENSSL_CMD:=openssl} # OPENSSL would conflict with the build system
|
2014-02-20 10:01:30 +00:00
|
|
|
|
2014-03-13 17:47:44 +00:00
|
|
|
O_SRV="$OPENSSL_CMD s_server -www -cert data_files/server5.crt -key data_files/server5.key"
|
|
|
|
O_CLI="echo 'GET / HTTP/1.0' | $OPENSSL_CMD s_client"
|
2014-02-25 16:14:15 +00:00
|
|
|
|
2014-02-21 08:47:37 +00:00
|
|
|
TESTS=0
|
|
|
|
FAILS=0
|
|
|
|
|
2014-04-07 11:24:21 +00:00
|
|
|
CONFIG_H='../include/polarssl/config.h'
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
MEMCHECK=0
|
2014-03-13 18:17:53 +00:00
|
|
|
FILTER='.*'
|
2014-03-28 09:12:38 +00:00
|
|
|
if [ "$OPENSSL_OK" -gt 0 ]; then
|
|
|
|
EXCLUDE='^$'
|
|
|
|
else
|
|
|
|
EXCLUDE='SSLv2'
|
|
|
|
fi
|
2014-02-26 15:35:27 +00:00
|
|
|
|
|
|
|
print_usage() {
|
|
|
|
echo "Usage: $0 [options]"
|
2014-03-13 18:17:53 +00:00
|
|
|
echo -e " -h|--help\tPrint this help."
|
|
|
|
echo -e " -m|--memcheck\tCheck memory leaks and errors."
|
|
|
|
echo -e " -f|--filter\tOnly matching tests are executed (default: '$FILTER')"
|
|
|
|
echo -e " -e|--exclude\tMatching tests are excluded (default: '$EXCLUDE')"
|
2014-02-26 15:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get_options() {
|
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case "$1" in
|
2014-03-13 18:17:53 +00:00
|
|
|
-f|--filter)
|
|
|
|
shift; FILTER=$1
|
|
|
|
;;
|
|
|
|
-e|--exclude)
|
|
|
|
shift; EXCLUDE=$1
|
|
|
|
;;
|
2014-02-26 15:35:27 +00:00
|
|
|
-m|--memcheck)
|
|
|
|
MEMCHECK=1
|
|
|
|
;;
|
|
|
|
-h|--help)
|
|
|
|
print_usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unkown argument: '$1'"
|
|
|
|
print_usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2014-02-21 08:20:14 +00:00
|
|
|
# print_name <name>
|
|
|
|
print_name() {
|
|
|
|
echo -n "$1 "
|
|
|
|
LEN=`echo "$1" | wc -c`
|
|
|
|
LEN=`echo 72 - $LEN | bc`
|
|
|
|
for i in `seq 1 $LEN`; do echo -n '.'; done
|
|
|
|
echo -n ' '
|
2014-02-21 08:47:37 +00:00
|
|
|
|
|
|
|
TESTS=`echo $TESTS + 1 | bc`
|
2014-02-21 08:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# fail <message>
|
|
|
|
fail() {
|
|
|
|
echo "FAIL"
|
2014-02-27 14:37:24 +00:00
|
|
|
echo " ! $1"
|
2014-02-21 08:47:37 +00:00
|
|
|
|
2014-02-27 14:37:24 +00:00
|
|
|
cp srv_out o-srv-${TESTS}.log
|
|
|
|
cp cli_out o-cli-${TESTS}.log
|
|
|
|
echo " ! outputs saved to o-srv-${TESTS}.log and o-cli-${TESTS}.log"
|
2014-02-21 08:47:37 +00:00
|
|
|
|
|
|
|
FAILS=`echo $FAILS + 1 | bc`
|
2014-02-21 08:20:14 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:42:31 +00:00
|
|
|
# is_polar <cmd_line>
|
|
|
|
is_polar() {
|
|
|
|
echo "$1" | grep 'ssl_server2\|ssl_client2' > /dev/null
|
|
|
|
}
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
# has_mem_err <log_file_name>
|
|
|
|
has_mem_err() {
|
|
|
|
if ( grep -F 'All heap blocks were freed -- no leaks are possible' "$1" &&
|
|
|
|
grep -F 'ERROR SUMMARY: 0 errors from 0 contexts' "$1" ) > /dev/null
|
|
|
|
then
|
|
|
|
return 1 # false: does not have errors
|
|
|
|
else
|
|
|
|
return 0 # true: has errors
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
# Usage: run_test name srv_cmd cli_cmd cli_exit [option [...]]
|
2014-02-20 10:01:30 +00:00
|
|
|
# Options: -s pattern pattern that must be present in server output
|
|
|
|
# -c pattern pattern that must be present in client output
|
|
|
|
# -S pattern pattern that must be absent in server output
|
|
|
|
# -C pattern pattern that must be absent in client output
|
|
|
|
run_test() {
|
2014-02-25 16:14:15 +00:00
|
|
|
NAME="$1"
|
|
|
|
SRV_CMD="$2"
|
|
|
|
CLI_CMD="$3"
|
|
|
|
CLI_EXPECT="$4"
|
|
|
|
shift 4
|
|
|
|
|
2014-03-13 18:17:53 +00:00
|
|
|
if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then :
|
|
|
|
else
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
print_name "$NAME"
|
2014-02-20 10:01:30 +00:00
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
# prepend valgrind to our commands if active
|
|
|
|
if [ "$MEMCHECK" -gt 0 ]; then
|
|
|
|
if is_polar "$SRV_CMD"; then
|
|
|
|
SRV_CMD="valgrind --leak-check=full $SRV_CMD"
|
|
|
|
fi
|
|
|
|
if is_polar "$CLI_CMD"; then
|
|
|
|
CLI_CMD="valgrind --leak-check=full $CLI_CMD"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-02-20 10:01:30 +00:00
|
|
|
# run the commands
|
2014-03-13 16:57:45 +00:00
|
|
|
echo "$SRV_CMD" > srv_out
|
2014-03-26 08:31:35 +00:00
|
|
|
$SRV_CMD >> srv_out 2>&1 &
|
2014-02-20 10:01:30 +00:00
|
|
|
SRV_PID=$!
|
|
|
|
sleep 1
|
2014-03-13 16:57:45 +00:00
|
|
|
echo "$CLI_CMD" > cli_out
|
2014-03-26 08:31:35 +00:00
|
|
|
eval "$CLI_CMD" >> cli_out 2>&1
|
2014-02-20 10:01:30 +00:00
|
|
|
CLI_EXIT=$?
|
2014-03-25 13:16:44 +00:00
|
|
|
echo "EXIT: $CLI_EXIT" >> cli_out
|
|
|
|
|
2014-04-09 07:50:57 +00:00
|
|
|
# psk is usefull when server only has bad certs
|
2014-02-25 16:14:15 +00:00
|
|
|
if is_polar "$SRV_CMD"; then
|
2014-04-09 07:50:57 +00:00
|
|
|
"$P_CLI" request_page=SERVERQUIT tickets=0 auth_mode=none psk=abc123 \
|
2014-03-13 17:35:10 +00:00
|
|
|
crt_file=data_files/cli2.crt key_file=data_files/cli2.key \
|
|
|
|
>/dev/null
|
2014-02-25 15:42:31 +00:00
|
|
|
else
|
|
|
|
kill $SRV_PID
|
|
|
|
fi
|
2014-02-20 10:01:30 +00:00
|
|
|
wait $SRV_PID
|
2014-02-25 15:42:31 +00:00
|
|
|
|
|
|
|
# check if the client and server went at least to the handshake stage
|
|
|
|
# (usefull to avoid tests with only negative assertions and non-zero
|
|
|
|
# expected client exit to incorrectly succeed in case of catastrophic
|
|
|
|
# failure)
|
2014-02-25 16:14:15 +00:00
|
|
|
if is_polar "$SRV_CMD"; then
|
2014-02-25 15:42:31 +00:00
|
|
|
if grep "Performing the SSL/TLS handshake" srv_out >/dev/null; then :;
|
|
|
|
else
|
|
|
|
fail "server failed to start"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
2014-02-25 16:14:15 +00:00
|
|
|
if is_polar "$CLI_CMD"; then
|
2014-02-25 15:42:31 +00:00
|
|
|
if grep "Performing the SSL/TLS handshake" cli_out >/dev/null; then :;
|
|
|
|
else
|
|
|
|
fail "client failed to start"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-02-21 08:20:14 +00:00
|
|
|
# check server exit code
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
fail "server fail"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-02-20 10:01:30 +00:00
|
|
|
# check client exit code
|
2014-02-25 16:14:15 +00:00
|
|
|
if [ \( "$CLI_EXPECT" = 0 -a "$CLI_EXIT" != 0 \) -o \
|
|
|
|
\( "$CLI_EXPECT" != 0 -a "$CLI_EXIT" = 0 \) ]
|
2014-02-20 16:19:59 +00:00
|
|
|
then
|
2014-02-21 11:12:23 +00:00
|
|
|
fail "bad client exit code"
|
2014-02-20 10:01:30 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
# check other assertions
|
2014-02-20 10:01:30 +00:00
|
|
|
while [ $# -gt 0 ]
|
|
|
|
do
|
|
|
|
case $1 in
|
|
|
|
"-s")
|
|
|
|
if grep "$2" srv_out >/dev/null; then :; else
|
2014-02-21 08:20:14 +00:00
|
|
|
fail "-s $2"
|
2014-02-20 10:01:30 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
"-c")
|
|
|
|
if grep "$2" cli_out >/dev/null; then :; else
|
2014-02-21 08:20:14 +00:00
|
|
|
fail "-c $2"
|
2014-02-20 10:01:30 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
"-S")
|
|
|
|
if grep "$2" srv_out >/dev/null; then
|
2014-02-21 08:20:14 +00:00
|
|
|
fail "-S $2"
|
2014-02-20 10:01:30 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
"-C")
|
|
|
|
if grep "$2" cli_out >/dev/null; then
|
2014-02-21 08:20:14 +00:00
|
|
|
fail "-C $2"
|
2014-02-20 10:01:30 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo "Unkown test: $1" >&2
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
shift 2
|
|
|
|
done
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
# check valgrind's results
|
|
|
|
if [ "$MEMCHECK" -gt 0 ]; then
|
|
|
|
if is_polar "$SRV_CMD" && has_mem_err srv_out; then
|
|
|
|
fail "Server has memory errors"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
if is_polar "$CLI_CMD" && has_mem_err cli_out; then
|
|
|
|
fail "Client has memory errors"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-02-20 10:01:30 +00:00
|
|
|
# if we're here, everything is ok
|
|
|
|
echo "PASS"
|
2014-02-26 15:33:03 +00:00
|
|
|
rm -f srv_out cli_out
|
2014-02-20 10:01:30 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:21:22 +00:00
|
|
|
cleanup() {
|
2014-02-26 15:35:27 +00:00
|
|
|
rm -f cli_out srv_out sess
|
2014-02-25 15:21:22 +00:00
|
|
|
kill $SRV_PID
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2014-02-26 17:21:02 +00:00
|
|
|
#
|
|
|
|
# MAIN
|
|
|
|
#
|
|
|
|
|
2014-03-28 09:12:38 +00:00
|
|
|
get_options "$@"
|
|
|
|
|
2014-02-27 11:25:54 +00:00
|
|
|
# sanity checks, avoid an avalanche of errors
|
|
|
|
if [ ! -x "$P_SRV" ]; then
|
|
|
|
echo "Command '$P_SRV' is not an executable file"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -x "$P_CLI" ]; then
|
|
|
|
echo "Command '$P_CLI' is not an executable file"
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-03-13 17:47:44 +00:00
|
|
|
if which $OPENSSL_CMD >/dev/null 2>&1; then :; else
|
|
|
|
echo "Command '$OPENSSL_CMD' not found"
|
2014-02-27 11:25:54 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-02-20 10:01:30 +00:00
|
|
|
killall -q openssl ssl_server ssl_server2
|
2014-02-25 15:21:22 +00:00
|
|
|
trap cleanup INT TERM HUP
|
2014-02-20 10:01:30 +00:00
|
|
|
|
2014-02-25 13:18:30 +00:00
|
|
|
# Test for SSLv2 ClientHello
|
|
|
|
|
|
|
|
run_test "SSLv2 ClientHello #0 (reference)" \
|
|
|
|
"$P_SRV debug_level=3" \
|
2014-02-26 15:33:03 +00:00
|
|
|
"$O_CLI -no_ssl2" \
|
2014-02-25 13:18:30 +00:00
|
|
|
0 \
|
|
|
|
-S "parse client hello v2" \
|
|
|
|
-S "ssl_handshake returned"
|
|
|
|
|
|
|
|
# Adding a SSL2-only suite makes OpenSSL client send SSLv2 ClientHello
|
|
|
|
run_test "SSLv2 ClientHello #1 (actual test)" \
|
|
|
|
"$P_SRV debug_level=3" \
|
2014-02-25 16:14:15 +00:00
|
|
|
"$O_CLI -cipher 'DES-CBC-MD5:ALL'" \
|
2014-02-25 13:18:30 +00:00
|
|
|
0 \
|
|
|
|
-s "parse client hello v2" \
|
|
|
|
-S "ssl_handshake returned"
|
|
|
|
|
2014-02-20 16:19:59 +00:00
|
|
|
# Tests for Truncated HMAC extension
|
|
|
|
|
|
|
|
run_test "Truncated HMAC #0" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=5" \
|
|
|
|
"$P_CLI trunc_hmac=0 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-s "dumping 'computed mac' (20 bytes)"
|
|
|
|
|
|
|
|
run_test "Truncated HMAC #1" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=5" \
|
|
|
|
"$P_CLI trunc_hmac=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
|
2014-02-20 10:01:30 +00:00
|
|
|
0 \
|
2014-02-20 10:43:46 +00:00
|
|
|
-s "dumping 'computed mac' (10 bytes)"
|
|
|
|
|
2014-02-20 16:19:59 +00:00
|
|
|
# Tests for Session Tickets
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
run_test "Session resume using tickets #1 (basic)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=1" \
|
|
|
|
"$P_CLI debug_level=4 tickets=1 reconnect=1" \
|
2014-02-20 10:43:46 +00:00
|
|
|
0 \
|
2014-02-20 21:50:56 +00:00
|
|
|
-c "client hello, adding session ticket extension" \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-s "server hello, adding session ticket extension" \
|
|
|
|
-c "found session_ticket extension" \
|
|
|
|
-c "parse new session ticket" \
|
2014-02-20 10:43:46 +00:00
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-s "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
run_test "Session resume using tickets #2 (cache disabled)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=1 cache_max=0" \
|
|
|
|
"$P_CLI debug_level=4 tickets=1 reconnect=1" \
|
2014-02-21 08:18:13 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding session ticket extension" \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-s "server hello, adding session ticket extension" \
|
|
|
|
-c "found session_ticket extension" \
|
|
|
|
-c "parse new session ticket" \
|
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-s "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-25 16:14:15 +00:00
|
|
|
run_test "Session resume using tickets #3 (timeout)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=1 cache_max=0 ticket_timeout=1" \
|
|
|
|
"$P_CLI debug_level=4 tickets=1 reconnect=1 reco_delay=2" \
|
2014-02-21 08:18:13 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding session ticket extension" \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-s "server hello, adding session ticket extension" \
|
|
|
|
-c "found session_ticket extension" \
|
|
|
|
-c "parse new session ticket" \
|
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-S "a session has been resumed" \
|
|
|
|
-C "a session has been resumed"
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
run_test "Session resume using tickets #4 (openssl server)" \
|
2014-02-27 11:25:54 +00:00
|
|
|
"$O_SRV" \
|
2014-02-25 16:14:15 +00:00
|
|
|
"$P_CLI debug_level=4 tickets=1 reconnect=1" \
|
|
|
|
0 \
|
|
|
|
-c "client hello, adding session ticket extension" \
|
|
|
|
-c "found session_ticket extension" \
|
|
|
|
-c "parse new session ticket" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-26 15:35:27 +00:00
|
|
|
run_test "Session resume using tickets #5 (openssl client)" \
|
2014-02-25 16:14:15 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=1" \
|
|
|
|
"($O_CLI -sess_out sess; $O_CLI -sess_in sess; rm -f sess)" \
|
|
|
|
0 \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-s "server hello, adding session ticket extension" \
|
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-s "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed"
|
|
|
|
|
2014-02-20 21:50:56 +00:00
|
|
|
# Tests for Session Resume based on session-ID and cache
|
2014-02-20 16:19:59 +00:00
|
|
|
|
2014-02-20 21:50:56 +00:00
|
|
|
run_test "Session resume using cache #1 (tickets enabled on client)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0" \
|
|
|
|
"$P_CLI debug_level=4 tickets=1 reconnect=1" \
|
2014-02-20 10:43:46 +00:00
|
|
|
0 \
|
2014-02-20 21:50:56 +00:00
|
|
|
-c "client hello, adding session ticket extension" \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-S "server hello, adding session ticket extension" \
|
|
|
|
-C "found session_ticket extension" \
|
|
|
|
-C "parse new session ticket" \
|
2014-02-20 10:43:46 +00:00
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-20 21:50:56 +00:00
|
|
|
run_test "Session resume using cache #2 (tickets enabled on server)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=1" \
|
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1" \
|
2014-02-20 10:43:46 +00:00
|
|
|
0 \
|
2014-02-20 21:50:56 +00:00
|
|
|
-C "client hello, adding session ticket extension" \
|
|
|
|
-S "found session ticket extension" \
|
|
|
|
-S "server hello, adding session ticket extension" \
|
|
|
|
-C "found session_ticket extension" \
|
|
|
|
-C "parse new session ticket" \
|
2014-02-20 10:43:46 +00:00
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
2014-02-20 13:50:42 +00:00
|
|
|
|
2014-02-20 21:50:56 +00:00
|
|
|
run_test "Session resume using cache #3 (cache_max=0)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0 cache_max=0" \
|
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1" \
|
2014-02-20 21:50:56 +00:00
|
|
|
0 \
|
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-S "a session has been resumed" \
|
|
|
|
-C "a session has been resumed"
|
|
|
|
|
|
|
|
run_test "Session resume using cache #4 (cache_max=1)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0 cache_max=1" \
|
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1" \
|
2014-02-20 21:50:56 +00:00
|
|
|
0 \
|
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
|
|
|
run_test "Session resume using cache #5 (timemout > delay)" \
|
2014-02-26 15:35:27 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1 reco_delay=0" \
|
2014-02-20 21:50:56 +00:00
|
|
|
0 \
|
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
|
|
|
run_test "Session resume using cache #6 (timeout < delay)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0 cache_timeout=1" \
|
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1 reco_delay=2" \
|
2014-02-20 20:32:41 +00:00
|
|
|
0 \
|
|
|
|
-S "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
2014-02-20 21:50:56 +00:00
|
|
|
-S "a session has been resumed" \
|
|
|
|
-C "a session has been resumed"
|
2014-02-20 20:32:41 +00:00
|
|
|
|
2014-02-20 21:50:56 +00:00
|
|
|
run_test "Session resume using cache #7 (no timeout)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 tickets=0 cache_timeout=0" \
|
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1 reco_delay=2" \
|
2014-02-20 20:32:41 +00:00
|
|
|
0 \
|
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-25 16:57:59 +00:00
|
|
|
run_test "Session resume using cache #8 (openssl client)" \
|
|
|
|
"$P_SRV debug_level=4 tickets=0" \
|
|
|
|
"($O_CLI -sess_out sess; $O_CLI -sess_in sess; rm -f sess)" \
|
|
|
|
0 \
|
|
|
|
-s "found session ticket extension" \
|
|
|
|
-S "server hello, adding session ticket extension" \
|
|
|
|
-s "session successfully restored from cache" \
|
|
|
|
-S "session successfully restored from ticket" \
|
|
|
|
-s "a session has been resumed"
|
|
|
|
|
|
|
|
run_test "Session resume using cache #9 (openssl server)" \
|
2014-02-27 11:25:54 +00:00
|
|
|
"$O_SRV" \
|
2014-02-25 16:57:59 +00:00
|
|
|
"$P_CLI debug_level=4 tickets=0 reconnect=1" \
|
|
|
|
0 \
|
|
|
|
-C "found session_ticket extension" \
|
|
|
|
-C "parse new session ticket" \
|
|
|
|
-c "a session has been resumed"
|
|
|
|
|
2014-02-20 16:19:59 +00:00
|
|
|
# Tests for Max Fragment Length extension
|
|
|
|
|
2014-02-20 13:50:42 +00:00
|
|
|
run_test "Max fragment length #1" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4" \
|
|
|
|
"$P_CLI debug_level=4" \
|
2014-02-20 13:50:42 +00:00
|
|
|
0 \
|
|
|
|
-C "client hello, adding max_fragment_length extension" \
|
|
|
|
-S "found max fragment length extension" \
|
|
|
|
-S "server hello, max_fragment_length extension" \
|
|
|
|
-C "found max_fragment_length extension"
|
|
|
|
|
|
|
|
run_test "Max fragment length #2" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4" \
|
|
|
|
"$P_CLI debug_level=4 max_frag_len=4096" \
|
2014-02-20 13:50:42 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding max_fragment_length extension" \
|
|
|
|
-s "found max fragment length extension" \
|
|
|
|
-s "server hello, max_fragment_length extension" \
|
|
|
|
-c "found max_fragment_length extension"
|
|
|
|
|
|
|
|
run_test "Max fragment length #3" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 max_frag_len=4096" \
|
|
|
|
"$P_CLI debug_level=4" \
|
2014-02-20 13:50:42 +00:00
|
|
|
0 \
|
|
|
|
-C "client hello, adding max_fragment_length extension" \
|
|
|
|
-S "found max fragment length extension" \
|
|
|
|
-S "server hello, max_fragment_length extension" \
|
|
|
|
-C "found max_fragment_length extension"
|
2014-02-20 16:19:59 +00:00
|
|
|
|
|
|
|
# Tests for renegotiation
|
|
|
|
|
|
|
|
run_test "Renegotiation #0 (none)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4" \
|
|
|
|
"$P_CLI debug_level=4" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-C "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-S "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-C "=> renegotiate" \
|
|
|
|
-S "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-S "write hello request"
|
|
|
|
|
|
|
|
run_test "Renegotiation #1 (enabled, client-initiated)" \
|
2014-03-31 08:44:40 +00:00
|
|
|
"$P_SRV debug_level=4 renegotiation=1" \
|
|
|
|
"$P_CLI debug_level=4 renegotiation=1 renegotiate=1" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-s "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-c "=> renegotiate" \
|
|
|
|
-s "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-S "write hello request"
|
|
|
|
|
|
|
|
run_test "Renegotiation #2 (enabled, server-initiated)" \
|
2014-03-31 08:44:40 +00:00
|
|
|
"$P_SRV debug_level=4 renegotiation=1 renegotiate=1" \
|
|
|
|
"$P_CLI debug_level=4 renegotiation=1" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-s "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-c "=> renegotiate" \
|
|
|
|
-s "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-s "write hello request"
|
|
|
|
|
|
|
|
run_test "Renegotiation #3 (enabled, double)" \
|
2014-03-31 08:44:40 +00:00
|
|
|
"$P_SRV debug_level=4 renegotiation=1 renegotiate=1" \
|
|
|
|
"$P_CLI debug_level=4 renegotiation=1 renegotiate=1" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-c "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-s "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-c "=> renegotiate" \
|
|
|
|
-s "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-s "write hello request"
|
|
|
|
|
|
|
|
run_test "Renegotiation #4 (client-initiated, server-rejected)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 renegotiation=0" \
|
2014-03-31 08:44:40 +00:00
|
|
|
"$P_CLI debug_level=4 renegotiation=1 renegotiate=1" \
|
2014-02-20 16:19:59 +00:00
|
|
|
1 \
|
|
|
|
-c "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-S "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-c "=> renegotiate" \
|
|
|
|
-S "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-S "write hello request"
|
|
|
|
|
|
|
|
run_test "Renegotiation #5 (server-initiated, client-rejected)" \
|
2014-03-31 08:44:40 +00:00
|
|
|
"$P_SRV debug_level=4 renegotiation=1 renegotiate=1" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=4 renegotiation=0" \
|
2014-02-20 16:19:59 +00:00
|
|
|
0 \
|
|
|
|
-C "client hello, adding renegotiation extension" \
|
|
|
|
-s "received TLS_EMPTY_RENEGOTIATION_INFO" \
|
|
|
|
-S "found renegotiation extension" \
|
|
|
|
-s "server hello, secure renegotiation extension" \
|
|
|
|
-c "found renegotiation extension" \
|
2014-02-26 15:35:27 +00:00
|
|
|
-C "=> renegotiate" \
|
|
|
|
-S "=> renegotiate" \
|
2014-02-20 16:19:59 +00:00
|
|
|
-s "write hello request" \
|
|
|
|
-s "SSL - An unexpected message was received from our peer" \
|
|
|
|
-s "failed"
|
2014-02-21 08:47:37 +00:00
|
|
|
|
2014-02-21 11:12:23 +00:00
|
|
|
# Tests for auth_mode
|
|
|
|
|
|
|
|
run_test "Authentication #1 (server badcert, client required)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=2 auth_mode=required" \
|
2014-02-21 11:12:23 +00:00
|
|
|
1 \
|
|
|
|
-c "x509_verify_cert() returned" \
|
|
|
|
-c "! self-signed or not signed by a trusted CA" \
|
|
|
|
-c "! ssl_handshake returned" \
|
|
|
|
-c "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #2 (server badcert, client optional)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=2 auth_mode=optional" \
|
2014-02-21 11:12:23 +00:00
|
|
|
0 \
|
|
|
|
-c "x509_verify_cert() returned" \
|
|
|
|
-c "! self-signed or not signed by a trusted CA" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-C "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #3 (server badcert, client none)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=2 auth_mode=none" \
|
2014-02-21 11:12:23 +00:00
|
|
|
0 \
|
|
|
|
-C "x509_verify_cert() returned" \
|
|
|
|
-C "! self-signed or not signed by a trusted CA" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-C "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #4 (client badcert, server required)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 auth_mode=required" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
|
|
|
1 \
|
|
|
|
-S "skip write certificate request" \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got a certificate request" \
|
|
|
|
-C "skip write certificate" \
|
|
|
|
-C "skip write certificate verify" \
|
|
|
|
-S "skip parse certificate verify" \
|
|
|
|
-s "x509_verify_cert() returned" \
|
|
|
|
-S "! self-signed or not signed by a trusted CA" \
|
|
|
|
-s "! ssl_handshake returned" \
|
|
|
|
-c "! ssl_handshake returned" \
|
|
|
|
-s "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #5 (client badcert, server optional)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 auth_mode=optional" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
|
|
|
0 \
|
|
|
|
-S "skip write certificate request" \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got a certificate request" \
|
|
|
|
-C "skip write certificate" \
|
|
|
|
-C "skip write certificate verify" \
|
|
|
|
-S "skip parse certificate verify" \
|
|
|
|
-s "x509_verify_cert() returned" \
|
|
|
|
-s "! self-signed or not signed by a trusted CA" \
|
|
|
|
-S "! ssl_handshake returned" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-S "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #6 (client badcert, server none)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 auth_mode=none" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=data_files/server5-badsign.crt \
|
2014-02-21 11:12:23 +00:00
|
|
|
key_file=data_files/server5.key" \
|
|
|
|
0 \
|
|
|
|
-s "skip write certificate request" \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got no certificate request" \
|
|
|
|
-c "skip write certificate" \
|
|
|
|
-c "skip write certificate verify" \
|
|
|
|
-s "skip parse certificate verify" \
|
|
|
|
-S "x509_verify_cert() returned" \
|
|
|
|
-S "! self-signed or not signed by a trusted CA" \
|
|
|
|
-S "! ssl_handshake returned" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-S "X509 - Certificate verification failed"
|
|
|
|
|
2014-02-27 13:58:26 +00:00
|
|
|
run_test "Authentication #7 (client no cert, server optional)" \
|
|
|
|
"$P_SRV debug_level=4 auth_mode=optional" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=none key_file=none" \
|
|
|
|
0 \
|
|
|
|
-S "skip write certificate request" \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got a certificate request" \
|
|
|
|
-C "skip write certificate$" \
|
|
|
|
-C "got no certificate to send" \
|
|
|
|
-S "SSLv3 client has no certificate" \
|
|
|
|
-c "skip write certificate verify" \
|
|
|
|
-s "skip parse certificate verify" \
|
|
|
|
-s "! no client certificate sent" \
|
|
|
|
-S "! ssl_handshake returned" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-S "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #8 (openssl client no cert, server optional)" \
|
|
|
|
"$P_SRV debug_level=4 auth_mode=optional" \
|
|
|
|
"$O_CLI" \
|
|
|
|
0 \
|
|
|
|
-S "skip write certificate request" \
|
|
|
|
-s "skip parse certificate verify" \
|
|
|
|
-s "! no client certificate sent" \
|
|
|
|
-S "! ssl_handshake returned" \
|
|
|
|
-S "X509 - Certificate verification failed"
|
|
|
|
|
|
|
|
run_test "Authentication #9 (client no cert, openssl server optional)" \
|
|
|
|
"$O_SRV -verify 10" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=none key_file=none" \
|
|
|
|
0 \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got a certificate request" \
|
|
|
|
-C "skip write certificate$" \
|
|
|
|
-c "skip write certificate verify" \
|
|
|
|
-C "! ssl_handshake returned"
|
|
|
|
|
|
|
|
run_test "Authentication #10 (client no cert, ssl3)" \
|
|
|
|
"$P_SRV debug_level=4 auth_mode=optional force_version=ssl3" \
|
|
|
|
"$P_CLI debug_level=4 crt_file=none key_file=none" \
|
|
|
|
0 \
|
|
|
|
-S "skip write certificate request" \
|
|
|
|
-C "skip parse certificate request" \
|
|
|
|
-c "got a certificate request" \
|
|
|
|
-C "skip write certificate$" \
|
|
|
|
-c "skip write certificate verify" \
|
|
|
|
-c "got no certificate to send" \
|
|
|
|
-s "SSLv3 client has no certificate" \
|
|
|
|
-s "skip parse certificate verify" \
|
|
|
|
-s "! no client certificate sent" \
|
|
|
|
-S "! ssl_handshake returned" \
|
|
|
|
-C "! ssl_handshake returned" \
|
|
|
|
-S "X509 - Certificate verification failed"
|
|
|
|
|
2014-02-25 11:26:29 +00:00
|
|
|
# tests for SNI
|
|
|
|
|
|
|
|
run_test "SNI #0 (no SNI callback)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
crt_file=data_files/server5.crt key_file=data_files/server5.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=0 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
server_name=localhost" \
|
|
|
|
0 \
|
|
|
|
-S "parse ServerName extension" \
|
|
|
|
-c "issuer name *: C=NL, O=PolarSSL, CN=Polarssl Test EC CA" \
|
|
|
|
-c "subject name *: C=NL, O=PolarSSL, CN=localhost"
|
|
|
|
|
|
|
|
run_test "SNI #1 (matching cert 1)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
crt_file=data_files/server5.crt key_file=data_files/server5.key \
|
2014-03-26 08:31:35 +00:00
|
|
|
sni=localhost,data_files/server2.crt,data_files/server2.key,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=0 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
server_name=localhost" \
|
|
|
|
0 \
|
|
|
|
-s "parse ServerName extension" \
|
|
|
|
-c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \
|
|
|
|
-c "subject name *: C=NL, O=PolarSSL, CN=localhost"
|
|
|
|
|
|
|
|
run_test "SNI #2 (matching cert 2)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
crt_file=data_files/server5.crt key_file=data_files/server5.key \
|
2014-03-26 08:31:35 +00:00
|
|
|
sni=localhost,data_files/server2.crt,data_files/server2.key,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=0 server_addr=127.0.0.1 \
|
2014-03-26 08:31:35 +00:00
|
|
|
server_name=polarssl.example" \
|
2014-02-25 11:26:29 +00:00
|
|
|
0 \
|
|
|
|
-s "parse ServerName extension" \
|
|
|
|
-c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \
|
2014-03-26 08:31:35 +00:00
|
|
|
-c "subject name *: C=NL, O=PolarSSL, CN=polarssl.example"
|
2014-02-25 11:26:29 +00:00
|
|
|
|
|
|
|
run_test "SNI #3 (no matching cert)" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_SRV debug_level=4 server_addr=127.0.0.1 \
|
2014-02-25 11:26:29 +00:00
|
|
|
crt_file=data_files/server5.crt key_file=data_files/server5.key \
|
2014-03-26 08:31:35 +00:00
|
|
|
sni=localhost,data_files/server2.crt,data_files/server2.key,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key" \
|
2014-02-25 13:18:30 +00:00
|
|
|
"$P_CLI debug_level=0 server_addr=127.0.0.1 \
|
2014-03-26 08:31:35 +00:00
|
|
|
server_name=nonesuch.example" \
|
2014-02-25 11:26:29 +00:00
|
|
|
1 \
|
|
|
|
-s "parse ServerName extension" \
|
|
|
|
-s "ssl_sni_wrapper() returned" \
|
|
|
|
-s "ssl_handshake returned" \
|
|
|
|
-c "ssl_handshake returned" \
|
|
|
|
-c "SSL - A fatal alert message was received from our peer"
|
|
|
|
|
2014-02-26 13:45:12 +00:00
|
|
|
# Tests for non-blocking I/O: exercise a variety of handshake flows
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #1 (basic handshake)" \
|
|
|
|
"$P_SRV nbio=2 tickets=0 auth_mode=none" \
|
|
|
|
"$P_CLI nbio=2 tickets=0" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #2 (client auth)" \
|
|
|
|
"$P_SRV nbio=2 tickets=0 auth_mode=required" \
|
|
|
|
"$P_CLI nbio=2 tickets=0" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #3 (ticket)" \
|
|
|
|
"$P_SRV nbio=2 tickets=1 auth_mode=none" \
|
|
|
|
"$P_CLI nbio=2 tickets=1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #4 (ticket + client auth)" \
|
|
|
|
"$P_SRV nbio=2 tickets=1 auth_mode=required" \
|
|
|
|
"$P_CLI nbio=2 tickets=1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #5 (ticket + client auth + resume)" \
|
|
|
|
"$P_SRV nbio=2 tickets=1 auth_mode=required" \
|
|
|
|
"$P_CLI nbio=2 tickets=1 reconnect=1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #6 (ticket + resume)" \
|
|
|
|
"$P_SRV nbio=2 tickets=1 auth_mode=none" \
|
|
|
|
"$P_CLI nbio=2 tickets=1 reconnect=1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
|
|
|
run_test "Non-blocking I/O #7 (session-id resume)" \
|
|
|
|
"$P_SRV nbio=2 tickets=0 auth_mode=none" \
|
|
|
|
"$P_CLI nbio=2 tickets=0 reconnect=1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-c "Read from server: .* bytes read"
|
|
|
|
|
2014-04-07 10:42:04 +00:00
|
|
|
# Tests for version negotiation
|
|
|
|
|
2014-02-26 15:33:03 +00:00
|
|
|
run_test "Version check #1 (all -> 1.2)" \
|
|
|
|
"$P_SRV" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.2" \
|
|
|
|
-c "Protocol is TLSv1.2"
|
|
|
|
|
|
|
|
run_test "Version check #2 (cli max 1.1 -> 1.1)" \
|
|
|
|
"$P_SRV" \
|
|
|
|
"$P_CLI max_version=tls1_1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.1" \
|
|
|
|
-c "Protocol is TLSv1.1"
|
|
|
|
|
|
|
|
run_test "Version check #3 (srv max 1.1 -> 1.1)" \
|
|
|
|
"$P_SRV max_version=tls1_1" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.1" \
|
|
|
|
-c "Protocol is TLSv1.1"
|
|
|
|
|
|
|
|
run_test "Version check #4 (cli+srv max 1.1 -> 1.1)" \
|
|
|
|
"$P_SRV max_version=tls1_1" \
|
|
|
|
"$P_CLI max_version=tls1_1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.1" \
|
|
|
|
-c "Protocol is TLSv1.1"
|
|
|
|
|
|
|
|
run_test "Version check #5 (cli max 1.1, srv min 1.1 -> 1.1)" \
|
|
|
|
"$P_SRV min_version=tls1_1" \
|
|
|
|
"$P_CLI max_version=tls1_1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.1" \
|
|
|
|
-c "Protocol is TLSv1.1"
|
|
|
|
|
|
|
|
run_test "Version check #6 (cli min 1.1, srv max 1.1 -> 1.1)" \
|
|
|
|
"$P_SRV max_version=tls1_1" \
|
|
|
|
"$P_CLI min_version=tls1_1" \
|
|
|
|
0 \
|
|
|
|
-S "ssl_handshake returned" \
|
|
|
|
-C "ssl_handshake returned" \
|
|
|
|
-s "Protocol is TLSv1.1" \
|
|
|
|
-c "Protocol is TLSv1.1"
|
|
|
|
|
|
|
|
run_test "Version check #7 (cli min 1.2, srv max 1.1 -> fail)" \
|
|
|
|
"$P_SRV max_version=tls1_1" \
|
|
|
|
"$P_CLI min_version=tls1_2" \
|
|
|
|
1 \
|
|
|
|
-s "ssl_handshake returned" \
|
|
|
|
-c "ssl_handshake returned" \
|
|
|
|
-c "SSL - Handshake protocol not within min/max boundaries"
|
|
|
|
|
|
|
|
run_test "Version check #8 (srv min 1.2, cli max 1.1 -> fail)" \
|
|
|
|
"$P_SRV min_version=tls1_2" \
|
|
|
|
"$P_CLI max_version=tls1_1" \
|
|
|
|
1 \
|
|
|
|
-s "ssl_handshake returned" \
|
|
|
|
-c "ssl_handshake returned" \
|
|
|
|
-s "SSL - Handshake protocol not within min/max boundaries"
|
|
|
|
|
2014-04-07 10:42:04 +00:00
|
|
|
# Tests for ALPN extension
|
|
|
|
|
2014-04-07 11:24:21 +00:00
|
|
|
if grep '^#define POLARSSL_SSL_ALPN' $CONFIG_H >/dev/null; then
|
|
|
|
|
2014-04-07 10:42:04 +00:00
|
|
|
run_test "ALPN #0 (none)" \
|
|
|
|
"$P_SRV debug_level=4" \
|
|
|
|
"$P_CLI debug_level=4" \
|
|
|
|
0 \
|
|
|
|
-C "client hello, adding alpn extension" \
|
|
|
|
-S "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-S "server hello, adding alpn extension" \
|
|
|
|
-C "found alpn extension " \
|
|
|
|
-C "Application Layer Protocol is" \
|
|
|
|
-S "Application Layer Protocol is"
|
|
|
|
|
|
|
|
run_test "ALPN #1 (client only)" \
|
|
|
|
"$P_SRV debug_level=4" \
|
|
|
|
"$P_CLI debug_level=4 alpn=abc,1234" \
|
|
|
|
0 \
|
|
|
|
-c "client hello, adding alpn extension" \
|
|
|
|
-s "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-S "server hello, adding alpn extension" \
|
|
|
|
-C "found alpn extension " \
|
|
|
|
-c "Application Layer Protocol is (none)" \
|
|
|
|
-S "Application Layer Protocol is"
|
|
|
|
|
|
|
|
run_test "ALPN #2 (server only)" \
|
|
|
|
"$P_SRV debug_level=4 alpn=abc,1234" \
|
|
|
|
"$P_CLI debug_level=4" \
|
|
|
|
0 \
|
|
|
|
-C "client hello, adding alpn extension" \
|
|
|
|
-S "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-S "server hello, adding alpn extension" \
|
|
|
|
-C "found alpn extension " \
|
|
|
|
-C "Application Layer Protocol is" \
|
|
|
|
-s "Application Layer Protocol is (none)"
|
|
|
|
|
|
|
|
run_test "ALPN #3 (both, common cli1-srv1)" \
|
|
|
|
"$P_SRV debug_level=4 alpn=abc,1234" \
|
|
|
|
"$P_CLI debug_level=4 alpn=abc,1234" \
|
|
|
|
0 \
|
|
|
|
-c "client hello, adding alpn extension" \
|
|
|
|
-s "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-s "server hello, adding alpn extension" \
|
|
|
|
-c "found alpn extension" \
|
|
|
|
-c "Application Layer Protocol is abc" \
|
|
|
|
-s "Application Layer Protocol is abc"
|
|
|
|
|
|
|
|
run_test "ALPN #4 (both, common cli2-srv1)" \
|
|
|
|
"$P_SRV debug_level=4 alpn=abc,1234" \
|
|
|
|
"$P_CLI debug_level=4 alpn=1234,abc" \
|
|
|
|
0 \
|
|
|
|
-c "client hello, adding alpn extension" \
|
|
|
|
-s "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-s "server hello, adding alpn extension" \
|
|
|
|
-c "found alpn extension" \
|
|
|
|
-c "Application Layer Protocol is abc" \
|
|
|
|
-s "Application Layer Protocol is abc"
|
|
|
|
|
|
|
|
run_test "ALPN #5 (both, common cli1-srv2)" \
|
|
|
|
"$P_SRV debug_level=4 alpn=abc,1234" \
|
|
|
|
"$P_CLI debug_level=4 alpn=1234,abcde" \
|
|
|
|
0 \
|
|
|
|
-c "client hello, adding alpn extension" \
|
|
|
|
-s "found alpn extension" \
|
|
|
|
-C "got an alert message, type: \\[2:120]" \
|
|
|
|
-s "server hello, adding alpn extension" \
|
|
|
|
-c "found alpn extension" \
|
|
|
|
-c "Application Layer Protocol is 1234" \
|
|
|
|
-s "Application Layer Protocol is 1234"
|
|
|
|
|
|
|
|
run_test "ALPN #6 (both, no common)" \
|
|
|
|
"$P_SRV debug_level=4 alpn=abc,123" \
|
|
|
|
"$P_CLI debug_level=4 alpn=1234,abcde" \
|
|
|
|
1 \
|
|
|
|
-c "client hello, adding alpn extension" \
|
|
|
|
-s "found alpn extension" \
|
|
|
|
-c "got an alert message, type: \\[2:120]" \
|
|
|
|
-S "server hello, adding alpn extension" \
|
|
|
|
-C "found alpn extension" \
|
|
|
|
-C "Application Layer Protocol is 1234" \
|
|
|
|
-S "Application Layer Protocol is 1234"
|
|
|
|
|
2014-04-07 11:24:21 +00:00
|
|
|
fi
|
|
|
|
|
2014-04-09 07:50:57 +00:00
|
|
|
# Tests for keyUsage in leaf certificates, part 1:
|
|
|
|
# server-side certificate/suite selection
|
|
|
|
|
|
|
|
run_test "keyUsage srv #1 (RSA, digitalSignature -> ECDHE-RSA)" \
|
|
|
|
"$P_SRV key_file=data_files/server2.key \
|
|
|
|
crt_file=data_files/server2.ku-ds.crt" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-c "Ciphersuite is TLS-ECDHE-RSA-WITH-"
|
|
|
|
|
|
|
|
|
|
|
|
run_test "keyUsage srv #2 (RSA, keyEncipherment -> RSA)" \
|
|
|
|
"$P_SRV key_file=data_files/server2.key \
|
|
|
|
crt_file=data_files/server2.ku-ke.crt" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-c "Ciphersuite is TLS-RSA-WITH-"
|
|
|
|
|
|
|
|
# add psk to leave an option for client to send SERVERQUIT
|
|
|
|
run_test "keyUsage srv #3 (RSA, keyAgreement -> fail)" \
|
|
|
|
"$P_SRV psk=abc123 key_file=data_files/server2.key \
|
|
|
|
crt_file=data_files/server2.ku-ka.crt" \
|
|
|
|
"$P_CLI psk=badbad" \
|
|
|
|
1 \
|
|
|
|
-C "Ciphersuite is "
|
|
|
|
|
|
|
|
run_test "keyUsage srv #4 (ECDSA, digitalSignature -> ECDHE-ECDSA)" \
|
|
|
|
"$P_SRV key_file=data_files/server5.key \
|
|
|
|
crt_file=data_files/server5.ku-ds.crt" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-c "Ciphersuite is TLS-ECDHE-ECDSA-WITH-"
|
|
|
|
|
|
|
|
|
|
|
|
run_test "keyUsage srv #5 (ECDSA, keyAgreement -> ECDH-)" \
|
|
|
|
"$P_SRV key_file=data_files/server5.key \
|
|
|
|
crt_file=data_files/server5.ku-ka.crt" \
|
|
|
|
"$P_CLI" \
|
|
|
|
0 \
|
|
|
|
-c "Ciphersuite is TLS-ECDH-"
|
|
|
|
|
|
|
|
# add psk to leave an option for client to send SERVERQUIT
|
|
|
|
run_test "keyUsage srv #6 (ECDSA, keyEncipherment -> fail)" \
|
|
|
|
"$P_SRV psk=abc123 key_file=data_files/server5.key \
|
|
|
|
crt_file=data_files/server5.ku-ke.crt" \
|
|
|
|
"$P_CLI psk=badbad" \
|
|
|
|
1 \
|
|
|
|
-C "Ciphersuite is "
|
|
|
|
|
|
|
|
# Tests for keyUsage in leaf certificates, part 2:
|
|
|
|
# client-side checks
|
|
|
|
|
|
|
|
run_test "keyUsage cli #0 (reference, no extension)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.crt" \
|
|
|
|
"$P_CLI debug_level=2" \
|
|
|
|
0 \
|
|
|
|
-C "bad server certificate (usage ext.)" \
|
|
|
|
-C "Processing of the Certificate handshake message failed" \
|
|
|
|
-c "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #1 (DigitalSignature+KeyEncipherment, RSA: OK)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ds_ke.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
0 \
|
|
|
|
-C "bad server certificate (usage ext.)" \
|
|
|
|
-C "Processing of the Certificate handshake message failed" \
|
|
|
|
-c "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #2 (DigitalSignature+KeyEncipherment, DHE-RSA: OK)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ds_ke.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
0 \
|
|
|
|
-C "bad server certificate (usage ext.)" \
|
|
|
|
-C "Processing of the Certificate handshake message failed" \
|
|
|
|
-c "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #3 (KeyEncipherment, RSA: OK)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ke.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
0 \
|
|
|
|
-C "bad server certificate (usage ext.)" \
|
|
|
|
-C "Processing of the Certificate handshake message failed" \
|
|
|
|
-c "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #4 (KeyEncipherment, DHE-RSA: fail)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ke.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
1 \
|
|
|
|
-c "bad server certificate (usage ext.)" \
|
|
|
|
-c "Processing of the Certificate handshake message failed" \
|
|
|
|
-C "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #5 (DigitalSignature, DHE-RSA: OK)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ds.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
0 \
|
|
|
|
-C "bad server certificate (usage ext.)" \
|
|
|
|
-C "Processing of the Certificate handshake message failed" \
|
|
|
|
-c "Ciphersuite is TLS-"
|
|
|
|
|
|
|
|
run_test "keyUsage cli #5 (DigitalSignature, RSA: fail)" \
|
|
|
|
"$O_SRV -key data_files/server2.key \
|
|
|
|
-cert data_files/server2.ku-ds.crt" \
|
|
|
|
"$P_CLI debug_level=2 \
|
|
|
|
force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
|
|
|
|
1 \
|
|
|
|
-c "bad server certificate (usage ext.)" \
|
|
|
|
-c "Processing of the Certificate handshake message failed" \
|
|
|
|
-C "Ciphersuite is TLS-"
|
|
|
|
|
2014-02-21 11:12:23 +00:00
|
|
|
# Final report
|
|
|
|
|
2014-02-21 08:47:37 +00:00
|
|
|
echo "------------------------------------------------------------------------"
|
|
|
|
|
|
|
|
if [ $FAILS = 0 ]; then
|
|
|
|
echo -n "PASSED"
|
|
|
|
else
|
|
|
|
echo -n "FAILED"
|
|
|
|
fi
|
|
|
|
PASSES=`echo $TESTS - $FAILS | bc`
|
2014-02-24 12:20:14 +00:00
|
|
|
echo " ($PASSES / $TESTS tests)"
|
2014-02-21 08:47:37 +00:00
|
|
|
|
|
|
|
exit $FAILS
|