blob: 65c19555ddf958c9b81feea72ef228c9a1b2def1 [file] [log] [blame]
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +01001#!/bin/sh
2
3# Test various options that are not covered by compat.sh
4#
5# Here the goal is not to cover every ciphersuite/version, but
6# rather specific options (max fragment length, truncated hmac, etc)
7# or procedures (session resumption from cache or ticket, renego, etc).
8#
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02009# Assumes a build with default options.
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +010010
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +010011set -u
12
Manuel Pégourié-Gonnardf7a26902014-02-27 12:25:54 +010013# default values, can be overriden by the environment
14: ${P_SRV:=../programs/ssl/ssl_server2}
15: ${P_CLI:=../programs/ssl/ssl_client2}
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +020016: ${P_PXY:=../programs/test/udp_proxy}
Manuel Pégourié-Gonnard74faf3c2014-03-13 18:47:44 +010017: ${OPENSSL_CMD:=openssl} # OPENSSL would conflict with the build system
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +020018: ${GNUTLS_CLI:=gnutls-cli}
19: ${GNUTLS_SERV:=gnutls-serv}
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +010020
Manuel Pégourié-Gonnardfa60f122014-09-26 16:07:29 +020021O_SRV="$OPENSSL_CMD s_server -www -cert data_files/server5.crt -key data_files/server5.key"
Manuel Pégourié-Gonnard74faf3c2014-03-13 18:47:44 +010022O_CLI="echo 'GET / HTTP/1.0' | $OPENSSL_CMD s_client"
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +020023G_SRV="$GNUTLS_SERV --x509certfile data_files/server5.crt --x509keyfile data_files/server5.key"
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +010024G_CLI="echo 'GET / HTTP/1.0' | $GNUTLS_CLI --x509cafile data_files/test-ca_cat12.crt"
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +010025
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +010026TESTS=0
27FAILS=0
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +020028SKIPS=0
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +010029
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000030CONFIG_H='../include/mbedtls/config.h'
Manuel Pégourié-Gonnard83d8c732014-04-07 13:24:21 +020031
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +010032MEMCHECK=0
Manuel Pégourié-Gonnard417d46c2014-03-13 19:17:53 +010033FILTER='.*'
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +020034EXCLUDE='^$'
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +010035
36print_usage() {
37 echo "Usage: $0 [options]"
Manuel Pégourié-Gonnardf46f1282014-12-11 11:51:28 +010038 printf " -h|--help\tPrint this help.\n"
39 printf " -m|--memcheck\tCheck memory leaks and errors.\n"
40 printf " -f|--filter\tOnly matching tests are executed (default: '$FILTER')\n"
41 printf " -e|--exclude\tMatching tests are excluded (default: '$EXCLUDE')\n"
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +010042}
43
44get_options() {
45 while [ $# -gt 0 ]; do
46 case "$1" in
Manuel Pégourié-Gonnard417d46c2014-03-13 19:17:53 +010047 -f|--filter)
48 shift; FILTER=$1
49 ;;
50 -e|--exclude)
51 shift; EXCLUDE=$1
52 ;;
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +010053 -m|--memcheck)
54 MEMCHECK=1
55 ;;
56 -h|--help)
57 print_usage
58 exit 0
59 ;;
60 *)
Paul Bakker1ebc0c52014-05-22 15:47:58 +020061 echo "Unknown argument: '$1'"
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +010062 print_usage
63 exit 1
64 ;;
65 esac
66 shift
67 done
68}
69
Manuel Pégourié-Gonnard988209f2015-03-24 10:43:55 +010070# skip next test if the flag is not enabled in config.h
71requires_config_enabled() {
72 if grep "^#define $1" $CONFIG_H > /dev/null; then :; else
73 SKIP_NEXT="YES"
74 fi
75}
76
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +020077# skip next test if OpenSSL doesn't support FALLBACK_SCSV
78requires_openssl_with_fallback_scsv() {
79 if [ -z "${OPENSSL_HAS_FBSCSV:-}" ]; then
80 if $OPENSSL_CMD s_client -help 2>&1 | grep fallback_scsv >/dev/null
81 then
82 OPENSSL_HAS_FBSCSV="YES"
83 else
84 OPENSSL_HAS_FBSCSV="NO"
85 fi
86 fi
87 if [ "$OPENSSL_HAS_FBSCSV" = "NO" ]; then
88 SKIP_NEXT="YES"
89 fi
90}
91
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +020092# skip next test if GnuTLS isn't available
93requires_gnutls() {
94 if [ -z "${GNUTLS_AVAILABLE:-}" ]; then
Manuel Pégourié-Gonnard03db6b02015-06-26 15:45:30 +020095 if ( which "$GNUTLS_CLI" && which "$GNUTLS_SERV" ) >/dev/null 2>&1; then
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +020096 GNUTLS_AVAILABLE="YES"
97 else
98 GNUTLS_AVAILABLE="NO"
99 fi
100 fi
101 if [ "$GNUTLS_AVAILABLE" = "NO" ]; then
102 SKIP_NEXT="YES"
103 fi
104}
105
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200106# skip next test if IPv6 isn't available on this host
107requires_ipv6() {
108 if [ -z "${HAS_IPV6:-}" ]; then
109 $P_SRV server_addr='::1' > $SRV_OUT 2>&1 &
110 SRV_PID=$!
111 sleep 1
112 kill $SRV_PID >/dev/null 2>&1
113 if grep "NET - Binding of the socket failed" $SRV_OUT >/dev/null; then
114 HAS_IPV6="NO"
115 else
116 HAS_IPV6="YES"
117 fi
118 rm -r $SRV_OUT
119 fi
120
121 if [ "$HAS_IPV6" = "NO" ]; then
122 SKIP_NEXT="YES"
123 fi
124}
125
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +0200126# skip the next test if valgrind is in use
127not_with_valgrind() {
128 if [ "$MEMCHECK" -gt 0 ]; then
129 SKIP_NEXT="YES"
130 fi
131}
132
Manuel Pégourié-Gonnarda0719722014-09-20 12:46:27 +0200133# multiply the client timeout delay by the given factor for the next test
134needs_more_time() {
135 CLI_DELAY_FACTOR=$1
136}
137
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100138# print_name <name>
139print_name() {
Manuel Pégourié-Gonnardf46f1282014-12-11 11:51:28 +0100140 printf "$1 "
Manuel Pégourié-Gonnard72e51ee2014-08-31 10:22:11 +0200141 LEN=$(( 72 - `echo "$1" | wc -c` ))
Manuel Pégourié-Gonnardf46f1282014-12-11 11:51:28 +0100142 for i in `seq 1 $LEN`; do printf '.'; done
143 printf ' '
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +0100144
Manuel Pégourié-Gonnard72e51ee2014-08-31 10:22:11 +0200145 TESTS=$(( $TESTS + 1 ))
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100146}
147
148# fail <message>
149fail() {
150 echo "FAIL"
Manuel Pégourié-Gonnard3eec6042014-02-27 15:37:24 +0100151 echo " ! $1"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +0100152
Manuel Pégourié-Gonnardc2b00922014-08-31 16:46:04 +0200153 mv $SRV_OUT o-srv-${TESTS}.log
154 mv $CLI_OUT o-cli-${TESTS}.log
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200155 if [ -n "$PXY_CMD" ]; then
156 mv $PXY_OUT o-pxy-${TESTS}.log
157 fi
158 echo " ! outputs saved to o-XXX-${TESTS}.log"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +0100159
Manuel Pégourié-Gonnard7fa67722014-08-31 17:42:53 +0200160 if [ "X${USER:-}" = Xbuildbot -o "X${LOGNAME:-}" = Xbuildbot ]; then
161 echo " ! server output:"
162 cat o-srv-${TESTS}.log
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200163 echo " ! ========================================================"
Manuel Pégourié-Gonnard7fa67722014-08-31 17:42:53 +0200164 echo " ! client output:"
165 cat o-cli-${TESTS}.log
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200166 if [ -n "$PXY_CMD" ]; then
167 echo " ! ========================================================"
168 echo " ! proxy output:"
169 cat o-pxy-${TESTS}.log
170 fi
171 echo ""
Manuel Pégourié-Gonnard7fa67722014-08-31 17:42:53 +0200172 fi
173
Manuel Pégourié-Gonnard72e51ee2014-08-31 10:22:11 +0200174 FAILS=$(( $FAILS + 1 ))
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100175}
176
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100177# is_polar <cmd_line>
178is_polar() {
179 echo "$1" | grep 'ssl_server2\|ssl_client2' > /dev/null
180}
181
Manuel Pégourié-Gonnardfa60f122014-09-26 16:07:29 +0200182# openssl s_server doesn't have -www with DTLS
183check_osrv_dtls() {
184 if echo "$SRV_CMD" | grep 's_server.*-dtls' >/dev/null; then
185 NEEDS_INPUT=1
186 SRV_CMD="$( echo $SRV_CMD | sed s/-www// )"
187 else
188 NEEDS_INPUT=0
189 fi
190}
191
192# provide input to commands that need it
193provide_input() {
194 if [ $NEEDS_INPUT -eq 0 ]; then
195 return
196 fi
197
198 while true; do
199 echo "HTTP/1.0 200 OK"
200 sleep 1
201 done
202}
203
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100204# has_mem_err <log_file_name>
205has_mem_err() {
206 if ( grep -F 'All heap blocks were freed -- no leaks are possible' "$1" &&
207 grep -F 'ERROR SUMMARY: 0 errors from 0 contexts' "$1" ) > /dev/null
208 then
209 return 1 # false: does not have errors
210 else
211 return 0 # true: has errors
212 fi
213}
214
Manuel Pégourié-Gonnard0c1ec472014-06-20 18:41:11 +0200215# wait for server to start: two versions depending on lsof availability
216wait_server_start() {
Manuel Pégourié-Gonnard03db6b02015-06-26 15:45:30 +0200217 if which lsof >/dev/null 2>&1; then
Manuel Pégourié-Gonnard74681fa2015-08-04 20:34:39 +0200218 START_TIME=$( date +%s )
219 DONE=0
Manuel Pégourié-Gonnard0c1ec472014-06-20 18:41:11 +0200220
221 # make a tight loop, server usually takes less than 1 sec to start
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200222 if [ "$DTLS" -eq 1 ]; then
Manuel Pégourié-Gonnard74681fa2015-08-04 20:34:39 +0200223 while [ $DONE -eq 0 ]; do
224 if lsof -nbi UDP:"$SRV_PORT" 2>/dev/null | grep UDP >/dev/null
225 then
226 DONE=1
227 elif [ $(( $( date +%s ) - $START_TIME )) -gt $DOG_DELAY ]; then
228 echo "SERVERSTART TIMEOUT"
229 echo "SERVERSTART TIMEOUT" >> $SRV_OUT
230 DONE=1
231 fi
232 done
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200233 else
Manuel Pégourié-Gonnard74681fa2015-08-04 20:34:39 +0200234 while [ $DONE -eq 0 ]; do
235 if lsof -nbi TCP:"$SRV_PORT" 2>/dev/null | grep LISTEN >/dev/null
236 then
237 DONE=1
238 elif [ $(( $( date +%s ) - $START_TIME )) -gt $DOG_DELAY ]; then
239 echo "SERVERSTART TIMEOUT"
240 echo "SERVERSTART TIMEOUT" >> $SRV_OUT
241 DONE=1
242 fi
243 done
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200244 fi
Manuel Pégourié-Gonnard0c1ec472014-06-20 18:41:11 +0200245 else
246 sleep "$START_DELAY"
247 fi
248}
249
Manuel Pégourié-Gonnardc0f6a692014-08-30 22:41:47 +0200250# wait for client to terminate and set CLI_EXIT
251# must be called right after starting the client
252wait_client_done() {
253 CLI_PID=$!
254
Manuel Pégourié-Gonnarda0719722014-09-20 12:46:27 +0200255 CLI_DELAY=$(( $DOG_DELAY * $CLI_DELAY_FACTOR ))
256 CLI_DELAY_FACTOR=1
257
Manuel Pégourié-Gonnarda365add2015-08-04 20:57:59 +0200258 ( sleep $CLI_DELAY; echo "===CLIENT_TIMEOUT===" >> $CLI_OUT; kill $CLI_PID ) &
Manuel Pégourié-Gonnarda6189f02014-09-20 13:15:43 +0200259 DOG_PID=$!
Manuel Pégourié-Gonnardc0f6a692014-08-30 22:41:47 +0200260
261 wait $CLI_PID
262 CLI_EXIT=$?
263
Manuel Pégourié-Gonnarda6189f02014-09-20 13:15:43 +0200264 kill $DOG_PID >/dev/null 2>&1
265 wait $DOG_PID
Manuel Pégourié-Gonnardc0f6a692014-08-30 22:41:47 +0200266
267 echo "EXIT: $CLI_EXIT" >> $CLI_OUT
268}
269
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200270# check if the given command uses dtls and sets global variable DTLS
271detect_dtls() {
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200272 if echo "$1" | grep 'dtls=1\|-dtls1\|-u' >/dev/null; then
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200273 DTLS=1
274 else
275 DTLS=0
276 fi
277}
278
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200279# Usage: run_test name [-p proxy_cmd] srv_cmd cli_cmd cli_exit [option [...]]
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100280# Options: -s pattern pattern that must be present in server output
281# -c pattern pattern that must be present in client output
282# -S pattern pattern that must be absent in server output
283# -C pattern pattern that must be absent in client output
284run_test() {
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100285 NAME="$1"
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200286 shift 1
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100287
Manuel Pégourié-Gonnard417d46c2014-03-13 19:17:53 +0100288 if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then :
289 else
Manuel Pégourié-Gonnard74a13782014-10-14 22:34:08 +0200290 SKIP_NEXT="NO"
Manuel Pégourié-Gonnard417d46c2014-03-13 19:17:53 +0100291 return
292 fi
293
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100294 print_name "$NAME"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100295
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +0200296 # should we skip?
297 if [ "X$SKIP_NEXT" = "XYES" ]; then
298 SKIP_NEXT="NO"
299 echo "SKIP"
Manuel Pégourié-Gonnard72e51ee2014-08-31 10:22:11 +0200300 SKIPS=$(( $SKIPS + 1 ))
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +0200301 return
302 fi
303
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200304 # does this test use a proxy?
305 if [ "X$1" = "X-p" ]; then
306 PXY_CMD="$2"
307 shift 2
308 else
309 PXY_CMD=""
310 fi
311
312 # get commands and client output
313 SRV_CMD="$1"
314 CLI_CMD="$2"
315 CLI_EXPECT="$3"
316 shift 3
317
318 # fix client port
319 if [ -n "$PXY_CMD" ]; then
320 CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$PXY_PORT/g )
321 else
322 CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$SRV_PORT/g )
323 fi
324
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200325 # update DTLS variable
326 detect_dtls "$SRV_CMD"
327
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100328 # prepend valgrind to our commands if active
329 if [ "$MEMCHECK" -gt 0 ]; then
330 if is_polar "$SRV_CMD"; then
331 SRV_CMD="valgrind --leak-check=full $SRV_CMD"
332 fi
333 if is_polar "$CLI_CMD"; then
334 CLI_CMD="valgrind --leak-check=full $CLI_CMD"
335 fi
336 fi
337
Manuel Pégourié-Gonnarda365add2015-08-04 20:57:59 +0200338 TIMES_LEFT=2
339 while [ $TIMES_LEFT -gt 0 ]; do
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200340 TIMES_LEFT=$(( $TIMES_LEFT - 1 ))
Manuel Pégourié-Gonnarda365add2015-08-04 20:57:59 +0200341
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200342 # run the commands
343 if [ -n "$PXY_CMD" ]; then
344 echo "$PXY_CMD" > $PXY_OUT
345 $PXY_CMD >> $PXY_OUT 2>&1 &
346 PXY_PID=$!
347 # assume proxy starts faster than server
348 fi
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200349
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200350 check_osrv_dtls
351 echo "$SRV_CMD" > $SRV_OUT
352 provide_input | $SRV_CMD >> $SRV_OUT 2>&1 &
353 SRV_PID=$!
354 wait_server_start
Manuel Pégourié-Gonnardc0f6a692014-08-30 22:41:47 +0200355
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200356 echo "$CLI_CMD" > $CLI_OUT
357 eval "$CLI_CMD" >> $CLI_OUT 2>&1 &
358 wait_client_done
Manuel Pégourié-Gonnarde01af4c2014-03-25 14:16:44 +0100359
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200360 # terminate the server (and the proxy)
361 kill $SRV_PID
362 wait $SRV_PID
363 if [ -n "$PXY_CMD" ]; then
364 kill $PXY_PID >/dev/null 2>&1
365 wait $PXY_PID
366 fi
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100367
Manuel Pégourié-Gonnardab5f7b42015-08-04 21:01:37 +0200368 # retry only on timeouts
369 if grep '===CLIENT_TIMEOUT===' $CLI_OUT >/dev/null; then
370 printf "RETRY "
371 else
372 TIMES_LEFT=0
373 fi
Manuel Pégourié-Gonnarda365add2015-08-04 20:57:59 +0200374 done
375
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100376 # check if the client and server went at least to the handshake stage
Paul Bakker1ebc0c52014-05-22 15:47:58 +0200377 # (useful to avoid tests with only negative assertions and non-zero
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100378 # expected client exit to incorrectly succeed in case of catastrophic
379 # failure)
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100380 if is_polar "$SRV_CMD"; then
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200381 if grep "Performing the SSL/TLS handshake" $SRV_OUT >/dev/null; then :;
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100382 else
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100383 fail "server or client failed to reach handshake stage"
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100384 return
385 fi
386 fi
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100387 if is_polar "$CLI_CMD"; then
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200388 if grep "Performing the SSL/TLS handshake" $CLI_OUT >/dev/null; then :;
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100389 else
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100390 fail "server or client failed to reach handshake stage"
Manuel Pégourié-Gonnard677884d2014-02-25 16:42:31 +0100391 return
392 fi
393 fi
394
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100395 # check server exit code
396 if [ $? != 0 ]; then
397 fail "server fail"
398 return
399 fi
400
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100401 # check client exit code
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100402 if [ \( "$CLI_EXPECT" = 0 -a "$CLI_EXIT" != 0 \) -o \
403 \( "$CLI_EXPECT" != 0 -a "$CLI_EXIT" = 0 \) ]
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100404 then
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200405 fail "bad client exit code (expected $CLI_EXPECT, got $CLI_EXIT)"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100406 return
407 fi
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100408
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100409 # check other assertions
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200410 # lines beginning with == are added by valgrind, ignore them
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100411 while [ $# -gt 0 ]
412 do
413 case $1 in
414 "-s")
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200415 if grep -v '^==' $SRV_OUT | grep "$2" >/dev/null; then :; else
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100416 fail "-s $2"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100417 return
418 fi
419 ;;
420
421 "-c")
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200422 if grep -v '^==' $CLI_OUT | grep "$2" >/dev/null; then :; else
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100423 fail "-c $2"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100424 return
425 fi
426 ;;
427
428 "-S")
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200429 if grep -v '^==' $SRV_OUT | grep "$2" >/dev/null; then
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100430 fail "-S $2"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100431 return
432 fi
433 ;;
434
435 "-C")
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200436 if grep -v '^==' $CLI_OUT | grep "$2" >/dev/null; then
Manuel Pégourié-Gonnardf8bdbb52014-02-21 09:20:14 +0100437 fail "-C $2"
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100438 return
439 fi
440 ;;
441
442 *)
Paul Bakker1ebc0c52014-05-22 15:47:58 +0200443 echo "Unknown test: $1" >&2
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100444 exit 1
445 esac
446 shift 2
447 done
448
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100449 # check valgrind's results
450 if [ "$MEMCHECK" -gt 0 ]; then
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200451 if is_polar "$SRV_CMD" && has_mem_err $SRV_OUT; then
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100452 fail "Server has memory errors"
453 return
454 fi
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200455 if is_polar "$CLI_CMD" && has_mem_err $CLI_OUT; then
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +0100456 fail "Client has memory errors"
457 return
458 fi
459 fi
460
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100461 # if we're here, everything is ok
462 echo "PASS"
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200463 rm -f $SRV_OUT $CLI_OUT $PXY_OUT
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100464}
465
Manuel Pégourié-Gonnarda9062e92014-02-25 16:21:22 +0100466cleanup() {
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200467 rm -f $CLI_OUT $SRV_OUT $PXY_OUT $SESSION
Manuel Pégourié-Gonnarda6189f02014-09-20 13:15:43 +0200468 test -n "${SRV_PID:-}" && kill $SRV_PID >/dev/null 2>&1
469 test -n "${PXY_PID:-}" && kill $PXY_PID >/dev/null 2>&1
470 test -n "${CLI_PID:-}" && kill $CLI_PID >/dev/null 2>&1
471 test -n "${DOG_PID:-}" && kill $DOG_PID >/dev/null 2>&1
Manuel Pégourié-Gonnarda9062e92014-02-25 16:21:22 +0100472 exit 1
473}
474
Manuel Pégourié-Gonnard9dea8bd2014-02-26 18:21:02 +0100475#
476# MAIN
477#
478
Manuel Pégourié-Gonnard19db8ea2015-03-10 13:41:04 +0000479if cd $( dirname $0 ); then :; else
480 echo "cd $( dirname $0 ) failed" >&2
481 exit 1
482fi
483
Manuel Pégourié-Gonnard913030c2014-03-28 10:12:38 +0100484get_options "$@"
485
Manuel Pégourié-Gonnardf7a26902014-02-27 12:25:54 +0100486# sanity checks, avoid an avalanche of errors
487if [ ! -x "$P_SRV" ]; then
488 echo "Command '$P_SRV' is not an executable file"
489 exit 1
490fi
491if [ ! -x "$P_CLI" ]; then
492 echo "Command '$P_CLI' is not an executable file"
493 exit 1
494fi
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200495if [ ! -x "$P_PXY" ]; then
496 echo "Command '$P_PXY' is not an executable file"
497 exit 1
498fi
Manuel Pégourié-Gonnard74faf3c2014-03-13 18:47:44 +0100499if which $OPENSSL_CMD >/dev/null 2>&1; then :; else
500 echo "Command '$OPENSSL_CMD' not found"
Manuel Pégourié-Gonnardf7a26902014-02-27 12:25:54 +0100501 exit 1
502fi
503
Manuel Pégourié-Gonnard32f8f4d2014-05-29 11:31:20 +0200504# used by watchdog
505MAIN_PID="$$"
506
Manuel Pégourié-Gonnard0c1ec472014-06-20 18:41:11 +0200507# be more patient with valgrind
508if [ "$MEMCHECK" -gt 0 ]; then
509 START_DELAY=3
510 DOG_DELAY=30
511else
512 START_DELAY=1
513 DOG_DELAY=10
514fi
Manuel Pégourié-Gonnarda0719722014-09-20 12:46:27 +0200515CLI_DELAY_FACTOR=1
Manuel Pégourié-Gonnard0c1ec472014-06-20 18:41:11 +0200516
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200517# Pick a "unique" server port in the range 10000-19999, and a proxy port
518PORT_BASE="0000$$"
Manuel Pégourié-Gonnard3a173f42015-01-22 13:30:33 +0000519PORT_BASE="$( printf $PORT_BASE | tail -c 4 )"
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200520SRV_PORT="1$PORT_BASE"
521PXY_PORT="2$PORT_BASE"
522unset PORT_BASE
Manuel Pégourié-Gonnard8066b812014-05-28 22:59:30 +0200523
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +0200524# fix commands to use this port, force IPv4 while at it
Manuel Pégourié-Gonnard0af1ba32015-01-21 11:44:33 +0000525# +SRV_PORT will be replaced by either $SRV_PORT or $PXY_PORT later
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200526P_SRV="$P_SRV server_addr=127.0.0.1 server_port=$SRV_PORT"
527P_CLI="$P_CLI server_addr=127.0.0.1 server_port=+SRV_PORT"
528P_PXY="$P_PXY server_addr=127.0.0.1 server_port=$SRV_PORT listen_addr=127.0.0.1 listen_port=$PXY_PORT"
Manuel Pégourié-Gonnard61957672015-06-18 17:54:58 +0200529O_SRV="$O_SRV -accept $SRV_PORT -dhparam data_files/dhparams.pem"
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200530O_CLI="$O_CLI -connect localhost:+SRV_PORT"
531G_SRV="$G_SRV -p $SRV_PORT"
Manuel Pégourié-Gonnard0af1ba32015-01-21 11:44:33 +0000532G_CLI="$G_CLI -p +SRV_PORT localhost"
Manuel Pégourié-Gonnard8066b812014-05-28 22:59:30 +0200533
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200534# Also pick a unique name for intermediate files
535SRV_OUT="srv_out.$$"
536CLI_OUT="cli_out.$$"
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +0200537PXY_OUT="pxy_out.$$"
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200538SESSION="session.$$"
539
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +0200540SKIP_NEXT="NO"
541
Manuel Pégourié-Gonnarda9062e92014-02-25 16:21:22 +0100542trap cleanup INT TERM HUP
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100543
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200544# Basic test
545
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200546# Checks that:
547# - things work with all ciphersuites active (used with config-full in all.sh)
548# - the expected (highest security) parameters are selected
549# ("signature_algorithm ext: 6" means SHA-512 (highest common hash))
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200550run_test "Default" \
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200551 "$P_SRV debug_level=3" \
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200552 "$P_CLI" \
553 0 \
Manuel Pégourié-Gonnard480905d2014-08-21 19:38:32 +0200554 -s "Protocol is TLSv1.2" \
555 -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \
556 -s "client hello v3, signature_algorithm ext: 6" \
557 -s "ECDHE curve: secp521r1" \
558 -S "error" \
559 -C "error"
Manuel Pégourié-Gonnarde73b2632014-07-12 04:00:00 +0200560
Manuel Pégourié-Gonnard3bb08012015-01-22 13:34:21 +0000561run_test "Default, DTLS" \
562 "$P_SRV dtls=1" \
563 "$P_CLI dtls=1" \
564 0 \
565 -s "Protocol is DTLSv1.2" \
566 -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384"
567
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100568# Tests for rc4 option
569
570run_test "RC4: server disabled, client enabled" \
571 "$P_SRV" \
572 "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
573 1 \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +0100574 -s "SSL - The server has no ciphersuites in common"
575
576run_test "RC4: server half, client enabled" \
577 "$P_SRV arc4=1" \
578 "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
579 1 \
580 -s "SSL - The server has no ciphersuites in common"
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100581
582run_test "RC4: server enabled, client disabled" \
583 "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
584 "$P_CLI" \
585 1 \
586 -s "SSL - The server has no ciphersuites in common"
587
588run_test "RC4: both enabled" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +0100589 "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100590 "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
591 0 \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100592 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +0100593 -S "SSL - The server has no ciphersuites in common"
594
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100595# Tests for Truncated HMAC extension
596
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100597run_test "Truncated HMAC: client default, server default" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200598 "$P_SRV debug_level=4" \
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100599 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100600 0 \
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100601 -s "dumping 'computed mac' (20 bytes)" \
602 -S "dumping 'computed mac' (10 bytes)"
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100603
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100604run_test "Truncated HMAC: client disabled, server default" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200605 "$P_SRV debug_level=4" \
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100606 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
607 trunc_hmac=0" \
Manuel Pégourié-Gonnardeaadc502014-02-20 11:01:30 +0100608 0 \
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100609 -s "dumping 'computed mac' (20 bytes)" \
610 -S "dumping 'computed mac' (10 bytes)"
611
612run_test "Truncated HMAC: client enabled, server default" \
613 "$P_SRV debug_level=4" \
614 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
615 trunc_hmac=1" \
616 0 \
Manuel Pégourié-Gonnard662c6e82015-05-06 17:39:23 +0100617 -s "dumping 'computed mac' (20 bytes)" \
618 -S "dumping 'computed mac' (10 bytes)"
Manuel Pégourié-Gonnarde117a8f2015-01-09 12:39:35 +0100619
620run_test "Truncated HMAC: client enabled, server disabled" \
621 "$P_SRV debug_level=4 trunc_hmac=0" \
622 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
623 trunc_hmac=1" \
624 0 \
625 -s "dumping 'computed mac' (20 bytes)" \
626 -S "dumping 'computed mac' (10 bytes)"
627
628run_test "Truncated HMAC: client enabled, server enabled" \
629 "$P_SRV debug_level=4 trunc_hmac=1" \
630 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
631 trunc_hmac=1" \
632 0 \
633 -S "dumping 'computed mac' (20 bytes)" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +0100634 -s "dumping 'computed mac' (10 bytes)"
635
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100636# Tests for Encrypt-then-MAC extension
637
638run_test "Encrypt then MAC: default" \
Manuel Pégourié-Gonnard0098e7d2014-10-28 13:08:59 +0100639 "$P_SRV debug_level=3 \
640 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100641 "$P_CLI debug_level=3" \
642 0 \
643 -c "client hello, adding encrypt_then_mac extension" \
644 -s "found encrypt then mac extension" \
645 -s "server hello, adding encrypt then mac extension" \
646 -c "found encrypt_then_mac extension" \
647 -c "using encrypt then mac" \
648 -s "using encrypt then mac"
649
650run_test "Encrypt then MAC: client enabled, server disabled" \
Manuel Pégourié-Gonnard0098e7d2014-10-28 13:08:59 +0100651 "$P_SRV debug_level=3 etm=0 \
652 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100653 "$P_CLI debug_level=3 etm=1" \
654 0 \
655 -c "client hello, adding encrypt_then_mac extension" \
656 -s "found encrypt then mac extension" \
657 -S "server hello, adding encrypt then mac extension" \
658 -C "found encrypt_then_mac extension" \
659 -C "using encrypt then mac" \
660 -S "using encrypt then mac"
661
Manuel Pégourié-Gonnard78e745f2014-11-04 15:44:06 +0100662run_test "Encrypt then MAC: client enabled, aead cipher" \
663 "$P_SRV debug_level=3 etm=1 \
664 force_ciphersuite=TLS-RSA-WITH-AES-128-GCM-SHA256" \
665 "$P_CLI debug_level=3 etm=1" \
666 0 \
667 -c "client hello, adding encrypt_then_mac extension" \
668 -s "found encrypt then mac extension" \
669 -S "server hello, adding encrypt then mac extension" \
670 -C "found encrypt_then_mac extension" \
671 -C "using encrypt then mac" \
672 -S "using encrypt then mac"
673
674run_test "Encrypt then MAC: client enabled, stream cipher" \
675 "$P_SRV debug_level=3 etm=1 \
676 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +0100677 "$P_CLI debug_level=3 etm=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard78e745f2014-11-04 15:44:06 +0100678 0 \
679 -c "client hello, adding encrypt_then_mac extension" \
680 -s "found encrypt then mac extension" \
681 -S "server hello, adding encrypt then mac extension" \
682 -C "found encrypt_then_mac extension" \
683 -C "using encrypt then mac" \
684 -S "using encrypt then mac"
685
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100686run_test "Encrypt then MAC: client disabled, server enabled" \
Manuel Pégourié-Gonnard0098e7d2014-10-28 13:08:59 +0100687 "$P_SRV debug_level=3 etm=1 \
688 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100689 "$P_CLI debug_level=3 etm=0" \
690 0 \
691 -C "client hello, adding encrypt_then_mac extension" \
692 -S "found encrypt then mac extension" \
693 -S "server hello, adding encrypt then mac extension" \
694 -C "found encrypt_then_mac extension" \
695 -C "using encrypt then mac" \
696 -S "using encrypt then mac"
697
698run_test "Encrypt then MAC: client SSLv3, server enabled" \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100699 "$P_SRV debug_level=3 min_version=ssl3 \
Manuel Pégourié-Gonnard0098e7d2014-10-28 13:08:59 +0100700 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100701 "$P_CLI debug_level=3 force_version=ssl3" \
702 0 \
703 -C "client hello, adding encrypt_then_mac extension" \
704 -S "found encrypt then mac extension" \
705 -S "server hello, adding encrypt then mac extension" \
706 -C "found encrypt_then_mac extension" \
707 -C "using encrypt then mac" \
708 -S "using encrypt then mac"
709
710run_test "Encrypt then MAC: client enabled, server SSLv3" \
Manuel Pégourié-Gonnard0098e7d2014-10-28 13:08:59 +0100711 "$P_SRV debug_level=3 force_version=ssl3 \
712 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100713 "$P_CLI debug_level=3 min_version=ssl3" \
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100714 0 \
715 -c "client hello, adding encrypt_then_mac extension" \
716 -s "found encrypt then mac extension" \
717 -S "server hello, adding encrypt then mac extension" \
718 -C "found encrypt_then_mac extension" \
719 -C "using encrypt then mac" \
720 -S "using encrypt then mac"
721
Manuel Pégourié-Gonnard367381f2014-10-20 18:40:56 +0200722# Tests for Extended Master Secret extension
723
724run_test "Extended Master Secret: default" \
725 "$P_SRV debug_level=3" \
726 "$P_CLI debug_level=3" \
727 0 \
728 -c "client hello, adding extended_master_secret extension" \
729 -s "found extended master secret extension" \
730 -s "server hello, adding extended master secret extension" \
731 -c "found extended_master_secret extension" \
732 -c "using extended master secret" \
733 -s "using extended master secret"
734
735run_test "Extended Master Secret: client enabled, server disabled" \
736 "$P_SRV debug_level=3 extended_ms=0" \
737 "$P_CLI debug_level=3 extended_ms=1" \
738 0 \
739 -c "client hello, adding extended_master_secret extension" \
740 -s "found extended master secret extension" \
741 -S "server hello, adding extended master secret extension" \
742 -C "found extended_master_secret extension" \
743 -C "using extended master secret" \
744 -S "using extended master secret"
745
746run_test "Extended Master Secret: client disabled, server enabled" \
747 "$P_SRV debug_level=3 extended_ms=1" \
748 "$P_CLI debug_level=3 extended_ms=0" \
749 0 \
750 -C "client hello, adding extended_master_secret extension" \
751 -S "found extended master secret extension" \
752 -S "server hello, adding extended master secret extension" \
753 -C "found extended_master_secret extension" \
754 -C "using extended master secret" \
755 -S "using extended master secret"
756
Manuel Pégourié-Gonnardb575b542014-10-24 15:12:31 +0200757run_test "Extended Master Secret: client SSLv3, server enabled" \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100758 "$P_SRV debug_level=3 min_version=ssl3" \
Manuel Pégourié-Gonnardb575b542014-10-24 15:12:31 +0200759 "$P_CLI debug_level=3 force_version=ssl3" \
760 0 \
761 -C "client hello, adding extended_master_secret extension" \
762 -S "found extended master secret extension" \
763 -S "server hello, adding extended master secret extension" \
764 -C "found extended_master_secret extension" \
765 -C "using extended master secret" \
766 -S "using extended master secret"
767
768run_test "Extended Master Secret: client enabled, server SSLv3" \
769 "$P_SRV debug_level=3 force_version=ssl3" \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100770 "$P_CLI debug_level=3 min_version=ssl3" \
Manuel Pégourié-Gonnardb575b542014-10-24 15:12:31 +0200771 0 \
772 -c "client hello, adding extended_master_secret extension" \
773 -s "found extended master secret extension" \
774 -S "server hello, adding extended master secret extension" \
775 -C "found extended_master_secret extension" \
776 -C "using extended master secret" \
777 -S "using extended master secret"
778
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200779# Tests for FALLBACK_SCSV
780
781run_test "Fallback SCSV: default" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200782 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200783 "$P_CLI debug_level=3 force_version=tls1_1" \
784 0 \
785 -C "adding FALLBACK_SCSV" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200786 -S "received FALLBACK_SCSV" \
787 -S "inapropriate fallback" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200788 -C "is a fatal alert message (msg 86)"
789
790run_test "Fallback SCSV: explicitly disabled" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200791 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200792 "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \
793 0 \
794 -C "adding FALLBACK_SCSV" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200795 -S "received FALLBACK_SCSV" \
796 -S "inapropriate fallback" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200797 -C "is a fatal alert message (msg 86)"
798
799run_test "Fallback SCSV: enabled" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200800 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200801 "$P_CLI debug_level=3 force_version=tls1_1 fallback=1" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200802 1 \
803 -c "adding FALLBACK_SCSV" \
804 -s "received FALLBACK_SCSV" \
805 -s "inapropriate fallback" \
806 -c "is a fatal alert message (msg 86)"
807
808run_test "Fallback SCSV: enabled, max version" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200809 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200810 "$P_CLI debug_level=3 fallback=1" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200811 0 \
812 -c "adding FALLBACK_SCSV" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200813 -s "received FALLBACK_SCSV" \
814 -S "inapropriate fallback" \
Manuel Pégourié-Gonnard1cbd39d2014-10-20 13:34:59 +0200815 -C "is a fatal alert message (msg 86)"
816
817requires_openssl_with_fallback_scsv
818run_test "Fallback SCSV: default, openssl server" \
819 "$O_SRV" \
820 "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \
821 0 \
822 -C "adding FALLBACK_SCSV" \
823 -C "is a fatal alert message (msg 86)"
824
825requires_openssl_with_fallback_scsv
826run_test "Fallback SCSV: enabled, openssl server" \
827 "$O_SRV" \
828 "$P_CLI debug_level=3 force_version=tls1_1 fallback=1" \
829 1 \
830 -c "adding FALLBACK_SCSV" \
831 -c "is a fatal alert message (msg 86)"
832
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200833requires_openssl_with_fallback_scsv
834run_test "Fallback SCSV: disabled, openssl client" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200835 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200836 "$O_CLI -tls1_1" \
837 0 \
838 -S "received FALLBACK_SCSV" \
839 -S "inapropriate fallback"
840
841requires_openssl_with_fallback_scsv
842run_test "Fallback SCSV: enabled, openssl client" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200843 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200844 "$O_CLI -tls1_1 -fallback_scsv" \
845 1 \
846 -s "received FALLBACK_SCSV" \
847 -s "inapropriate fallback"
848
849requires_openssl_with_fallback_scsv
850run_test "Fallback SCSV: enabled, max version, openssl client" \
Manuel Pégourié-Gonnard4268ae02015-08-04 12:44:10 +0200851 "$P_SRV debug_level=2" \
Manuel Pégourié-Gonnard01b26992014-10-20 14:05:28 +0200852 "$O_CLI -fallback_scsv" \
853 0 \
854 -s "received FALLBACK_SCSV" \
855 -S "inapropriate fallback"
856
Manuel Pégourié-Gonnard3ff78232015-01-08 11:15:09 +0100857# Tests for CBC 1/n-1 record splitting
858
859run_test "CBC Record splitting: TLS 1.2, no splitting" \
860 "$P_SRV" \
861 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
862 request_size=123 force_version=tls1_2" \
863 0 \
864 -s "Read from client: 123 bytes read" \
865 -S "Read from client: 1 bytes read" \
866 -S "122 bytes read"
867
868run_test "CBC Record splitting: TLS 1.1, no splitting" \
869 "$P_SRV" \
870 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
871 request_size=123 force_version=tls1_1" \
872 0 \
873 -s "Read from client: 123 bytes read" \
874 -S "Read from client: 1 bytes read" \
875 -S "122 bytes read"
876
877run_test "CBC Record splitting: TLS 1.0, splitting" \
878 "$P_SRV" \
879 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
880 request_size=123 force_version=tls1" \
881 0 \
882 -S "Read from client: 123 bytes read" \
883 -s "Read from client: 1 bytes read" \
884 -s "122 bytes read"
885
886run_test "CBC Record splitting: SSLv3, splitting" \
Manuel Pégourié-Gonnard51d81662015-01-14 17:20:46 +0100887 "$P_SRV min_version=ssl3" \
Manuel Pégourié-Gonnard3ff78232015-01-08 11:15:09 +0100888 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
889 request_size=123 force_version=ssl3" \
890 0 \
891 -S "Read from client: 123 bytes read" \
892 -s "Read from client: 1 bytes read" \
893 -s "122 bytes read"
894
895run_test "CBC Record splitting: TLS 1.0 RC4, no splitting" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +0100896 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard3ff78232015-01-08 11:15:09 +0100897 "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
898 request_size=123 force_version=tls1" \
899 0 \
900 -s "Read from client: 123 bytes read" \
901 -S "Read from client: 1 bytes read" \
902 -S "122 bytes read"
903
904run_test "CBC Record splitting: TLS 1.0, splitting disabled" \
905 "$P_SRV" \
906 "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
907 request_size=123 force_version=tls1 recsplit=0" \
908 0 \
909 -s "Read from client: 123 bytes read" \
910 -S "Read from client: 1 bytes read" \
911 -S "122 bytes read"
912
Manuel Pégourié-Gonnarda852cf42015-01-13 20:56:15 +0100913run_test "CBC Record splitting: TLS 1.0, splitting, nbio" \
914 "$P_SRV nbio=2" \
915 "$P_CLI nbio=2 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \
916 request_size=123 force_version=tls1" \
917 0 \
918 -S "Read from client: 123 bytes read" \
919 -s "Read from client: 1 bytes read" \
920 -s "122 bytes read"
921
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100922# Tests for Session Tickets
923
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200924run_test "Session resume using tickets: basic" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200925 "$P_SRV debug_level=3 tickets=1" \
926 "$P_CLI debug_level=3 tickets=1 reconnect=1" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +0100927 0 \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100928 -c "client hello, adding session ticket extension" \
929 -s "found session ticket extension" \
930 -s "server hello, adding session ticket extension" \
931 -c "found session_ticket extension" \
932 -c "parse new session ticket" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +0100933 -S "session successfully restored from cache" \
934 -s "session successfully restored from ticket" \
935 -s "a session has been resumed" \
936 -c "a session has been resumed"
937
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200938run_test "Session resume using tickets: cache disabled" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200939 "$P_SRV debug_level=3 tickets=1 cache_max=0" \
940 "$P_CLI debug_level=3 tickets=1 reconnect=1" \
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +0100941 0 \
942 -c "client hello, adding session ticket extension" \
943 -s "found session ticket extension" \
944 -s "server hello, adding session ticket extension" \
945 -c "found session_ticket extension" \
946 -c "parse new session ticket" \
947 -S "session successfully restored from cache" \
948 -s "session successfully restored from ticket" \
949 -s "a session has been resumed" \
950 -c "a session has been resumed"
951
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200952run_test "Session resume using tickets: timeout" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200953 "$P_SRV debug_level=3 tickets=1 cache_max=0 ticket_timeout=1" \
954 "$P_CLI debug_level=3 tickets=1 reconnect=1 reco_delay=2" \
Manuel Pégourié-Gonnarddbe1ee12014-02-21 09:18:13 +0100955 0 \
956 -c "client hello, adding session ticket extension" \
957 -s "found session ticket extension" \
958 -s "server hello, adding session ticket extension" \
959 -c "found session_ticket extension" \
960 -c "parse new session ticket" \
961 -S "session successfully restored from cache" \
962 -S "session successfully restored from ticket" \
963 -S "a session has been resumed" \
964 -C "a session has been resumed"
965
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200966run_test "Session resume using tickets: openssl server" \
Manuel Pégourié-Gonnardf7a26902014-02-27 12:25:54 +0100967 "$O_SRV" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200968 "$P_CLI debug_level=3 tickets=1 reconnect=1" \
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100969 0 \
970 -c "client hello, adding session ticket extension" \
971 -c "found session_ticket extension" \
972 -c "parse new session ticket" \
973 -c "a session has been resumed"
974
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200975run_test "Session resume using tickets: openssl client" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200976 "$P_SRV debug_level=3 tickets=1" \
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +0200977 "( $O_CLI -sess_out $SESSION; \
978 $O_CLI -sess_in $SESSION; \
979 rm -f $SESSION )" \
Manuel Pégourié-Gonnardfccd3252014-02-25 17:14:15 +0100980 0 \
981 -s "found session ticket extension" \
982 -s "server hello, adding session ticket extension" \
983 -S "session successfully restored from cache" \
984 -s "session successfully restored from ticket" \
985 -s "a session has been resumed"
986
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100987# Tests for Session Resume based on session-ID and cache
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +0100988
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +0200989run_test "Session resume using cache: tickets enabled on client" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +0200990 "$P_SRV debug_level=3 tickets=0" \
991 "$P_CLI debug_level=3 tickets=1 reconnect=1" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +0100992 0 \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +0100993 -c "client hello, adding session ticket extension" \
994 -s "found session ticket extension" \
995 -S "server hello, adding session ticket extension" \
996 -C "found session_ticket extension" \
997 -C "parse new session ticket" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +0100998 -s "session successfully restored from cache" \
999 -S "session successfully restored from ticket" \
1000 -s "a session has been resumed" \
1001 -c "a session has been resumed"
1002
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001003run_test "Session resume using cache: tickets enabled on server" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001004 "$P_SRV debug_level=3 tickets=1" \
1005 "$P_CLI debug_level=3 tickets=0 reconnect=1" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +01001006 0 \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001007 -C "client hello, adding session ticket extension" \
1008 -S "found session ticket extension" \
1009 -S "server hello, adding session ticket extension" \
1010 -C "found session_ticket extension" \
1011 -C "parse new session ticket" \
Manuel Pégourié-Gonnardf7c52012014-02-20 11:43:46 +01001012 -s "session successfully restored from cache" \
1013 -S "session successfully restored from ticket" \
1014 -s "a session has been resumed" \
1015 -c "a session has been resumed"
Manuel Pégourié-Gonnardde143782014-02-20 14:50:42 +01001016
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001017run_test "Session resume using cache: cache_max=0" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001018 "$P_SRV debug_level=3 tickets=0 cache_max=0" \
1019 "$P_CLI debug_level=3 tickets=0 reconnect=1" \
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01001020 0 \
1021 -S "session successfully restored from cache" \
1022 -S "session successfully restored from ticket" \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001023 -S "a session has been resumed" \
1024 -C "a session has been resumed"
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01001025
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001026run_test "Session resume using cache: cache_max=1" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001027 "$P_SRV debug_level=3 tickets=0 cache_max=1" \
1028 "$P_CLI debug_level=3 tickets=0 reconnect=1" \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001029 0 \
1030 -s "session successfully restored from cache" \
1031 -S "session successfully restored from ticket" \
1032 -s "a session has been resumed" \
1033 -c "a session has been resumed"
1034
Manuel Pégourié-Gonnard6df31962015-05-04 10:55:47 +02001035run_test "Session resume using cache: timeout > delay" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001036 "$P_SRV debug_level=3 tickets=0" \
1037 "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=0" \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001038 0 \
1039 -s "session successfully restored from cache" \
1040 -S "session successfully restored from ticket" \
1041 -s "a session has been resumed" \
1042 -c "a session has been resumed"
1043
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001044run_test "Session resume using cache: timeout < delay" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001045 "$P_SRV debug_level=3 tickets=0 cache_timeout=1" \
1046 "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \
Manuel Pégourié-Gonnardc55a5b72014-02-20 22:50:56 +01001047 0 \
1048 -S "session successfully restored from cache" \
1049 -S "session successfully restored from ticket" \
1050 -S "a session has been resumed" \
1051 -C "a session has been resumed"
1052
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001053run_test "Session resume using cache: no timeout" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001054 "$P_SRV debug_level=3 tickets=0 cache_timeout=0" \
1055 "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \
Manuel Pégourié-Gonnard4c883452014-02-20 21:32:41 +01001056 0 \
1057 -s "session successfully restored from cache" \
1058 -S "session successfully restored from ticket" \
1059 -s "a session has been resumed" \
1060 -c "a session has been resumed"
1061
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001062run_test "Session resume using cache: openssl client" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001063 "$P_SRV debug_level=3 tickets=0" \
Manuel Pégourié-Gonnardbc3b16c2014-05-28 23:06:50 +02001064 "( $O_CLI -sess_out $SESSION; \
1065 $O_CLI -sess_in $SESSION; \
1066 rm -f $SESSION )" \
Manuel Pégourié-Gonnarddb735f62014-02-25 17:57:59 +01001067 0 \
1068 -s "found session ticket extension" \
1069 -S "server hello, adding session ticket extension" \
1070 -s "session successfully restored from cache" \
1071 -S "session successfully restored from ticket" \
1072 -s "a session has been resumed"
1073
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001074run_test "Session resume using cache: openssl server" \
Manuel Pégourié-Gonnardf7a26902014-02-27 12:25:54 +01001075 "$O_SRV" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001076 "$P_CLI debug_level=3 tickets=0 reconnect=1" \
Manuel Pégourié-Gonnarddb735f62014-02-25 17:57:59 +01001077 0 \
1078 -C "found session_ticket extension" \
1079 -C "parse new session ticket" \
1080 -c "a session has been resumed"
1081
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001082# Tests for Max Fragment Length extension
1083
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001084run_test "Max fragment length: not used, reference" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001085 "$P_SRV debug_level=3" \
1086 "$P_CLI debug_level=3" \
Manuel Pégourié-Gonnardde143782014-02-20 14:50:42 +01001087 0 \
1088 -C "client hello, adding max_fragment_length extension" \
1089 -S "found max fragment length extension" \
1090 -S "server hello, max_fragment_length extension" \
1091 -C "found max_fragment_length extension"
1092
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001093run_test "Max fragment length: used by client" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001094 "$P_SRV debug_level=3" \
1095 "$P_CLI debug_level=3 max_frag_len=4096" \
Manuel Pégourié-Gonnardde143782014-02-20 14:50:42 +01001096 0 \
1097 -c "client hello, adding max_fragment_length extension" \
1098 -s "found max fragment length extension" \
1099 -s "server hello, max_fragment_length extension" \
1100 -c "found max_fragment_length extension"
1101
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001102run_test "Max fragment length: used by server" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001103 "$P_SRV debug_level=3 max_frag_len=4096" \
1104 "$P_CLI debug_level=3" \
Manuel Pégourié-Gonnardde143782014-02-20 14:50:42 +01001105 0 \
1106 -C "client hello, adding max_fragment_length extension" \
1107 -S "found max fragment length extension" \
1108 -S "server hello, max_fragment_length extension" \
1109 -C "found max_fragment_length extension"
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001110
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001111requires_gnutls
1112run_test "Max fragment length: gnutls server" \
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +02001113 "$G_SRV" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001114 "$P_CLI debug_level=3 max_frag_len=4096" \
Manuel Pégourié-Gonnardbaa7f072014-08-20 20:15:53 +02001115 0 \
1116 -c "client hello, adding max_fragment_length extension" \
1117 -c "found max_fragment_length extension"
1118
Manuel Pégourié-Gonnard37e08e12014-10-13 17:55:52 +02001119run_test "Max fragment length: client, message just fits" \
1120 "$P_SRV debug_level=3" \
1121 "$P_CLI debug_level=3 max_frag_len=2048 request_size=2048" \
1122 0 \
1123 -c "client hello, adding max_fragment_length extension" \
1124 -s "found max fragment length extension" \
1125 -s "server hello, max_fragment_length extension" \
1126 -c "found max_fragment_length extension" \
1127 -c "2048 bytes written in 1 fragments" \
1128 -s "2048 bytes read"
1129
1130run_test "Max fragment length: client, larger message" \
1131 "$P_SRV debug_level=3" \
1132 "$P_CLI debug_level=3 max_frag_len=2048 request_size=2345" \
1133 0 \
1134 -c "client hello, adding max_fragment_length extension" \
1135 -s "found max fragment length extension" \
1136 -s "server hello, max_fragment_length extension" \
1137 -c "found max_fragment_length extension" \
1138 -c "2345 bytes written in 2 fragments" \
1139 -s "2048 bytes read" \
1140 -s "297 bytes read"
1141
Manuel Pégourié-Gonnard23eb74d2015-01-21 14:37:13 +00001142run_test "Max fragment length: DTLS client, larger message" \
Manuel Pégourié-Gonnard37e08e12014-10-13 17:55:52 +02001143 "$P_SRV debug_level=3 dtls=1" \
1144 "$P_CLI debug_level=3 dtls=1 max_frag_len=2048 request_size=2345" \
1145 1 \
1146 -c "client hello, adding max_fragment_length extension" \
1147 -s "found max fragment length extension" \
1148 -s "server hello, max_fragment_length extension" \
1149 -c "found max_fragment_length extension" \
1150 -c "fragment larger than.*maximum"
1151
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001152# Tests for renegotiation
1153
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001154run_test "Renegotiation: none, for reference" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001155 "$P_SRV debug_level=3 exchanges=2 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001156 "$P_CLI debug_level=3 exchanges=2" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001157 0 \
1158 -C "client hello, adding renegotiation extension" \
1159 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1160 -S "found renegotiation extension" \
1161 -s "server hello, secure renegotiation extension" \
1162 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001163 -C "=> renegotiate" \
1164 -S "=> renegotiate" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001165 -S "write hello request"
1166
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001167run_test "Renegotiation: client-initiated" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001168 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001169 "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001170 0 \
1171 -c "client hello, adding renegotiation extension" \
1172 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1173 -s "found renegotiation extension" \
1174 -s "server hello, secure renegotiation extension" \
1175 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001176 -c "=> renegotiate" \
1177 -s "=> renegotiate" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001178 -S "write hello request"
1179
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001180run_test "Renegotiation: server-initiated" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001181 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional renegotiate=1" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001182 "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001183 0 \
1184 -c "client hello, adding renegotiation extension" \
1185 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1186 -s "found renegotiation extension" \
1187 -s "server hello, secure renegotiation extension" \
1188 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001189 -c "=> renegotiate" \
1190 -s "=> renegotiate" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001191 -s "write hello request"
1192
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001193run_test "Renegotiation: double" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001194 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional renegotiate=1" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001195 "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001196 0 \
1197 -c "client hello, adding renegotiation extension" \
1198 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1199 -s "found renegotiation extension" \
1200 -s "server hello, secure renegotiation extension" \
1201 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001202 -c "=> renegotiate" \
1203 -s "=> renegotiate" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001204 -s "write hello request"
1205
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001206run_test "Renegotiation: client-initiated, server-rejected" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001207 "$P_SRV debug_level=3 exchanges=2 renegotiation=0 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001208 "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001209 1 \
1210 -c "client hello, adding renegotiation extension" \
1211 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1212 -S "found renegotiation extension" \
1213 -s "server hello, secure renegotiation extension" \
1214 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001215 -c "=> renegotiate" \
1216 -S "=> renegotiate" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001217 -S "write hello request" \
Manuel Pégourié-Gonnard65919622014-08-19 12:50:30 +02001218 -c "SSL - Unexpected message at ServerHello in renegotiation" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001219 -c "failed"
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001220
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001221run_test "Renegotiation: server-initiated, client-rejected, default" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001222 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001223 "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001224 0 \
1225 -C "client hello, adding renegotiation extension" \
1226 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1227 -S "found renegotiation extension" \
1228 -s "server hello, secure renegotiation extension" \
1229 -c "found renegotiation extension" \
Manuel Pégourié-Gonnardc73339f2014-02-26 16:35:27 +01001230 -C "=> renegotiate" \
1231 -S "=> renegotiate" \
Manuel Pégourié-Gonnard780d6712014-02-20 17:19:59 +01001232 -s "write hello request" \
Manuel Pégourié-Gonnarda9964db2014-07-03 19:29:16 +02001233 -S "SSL - An unexpected message was received from our peer" \
1234 -S "failed"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +01001235
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001236run_test "Renegotiation: server-initiated, client-rejected, not enforced" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001237 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001238 renego_delay=-1 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001239 "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001240 0 \
1241 -C "client hello, adding renegotiation extension" \
1242 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1243 -S "found renegotiation extension" \
1244 -s "server hello, secure renegotiation extension" \
1245 -c "found renegotiation extension" \
1246 -C "=> renegotiate" \
1247 -S "=> renegotiate" \
1248 -s "write hello request" \
1249 -S "SSL - An unexpected message was received from our peer" \
1250 -S "failed"
1251
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02001252# delay 2 for 1 alert record + 1 application data record
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001253run_test "Renegotiation: server-initiated, client-rejected, delay 2" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001254 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001255 renego_delay=2 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001256 "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001257 0 \
1258 -C "client hello, adding renegotiation extension" \
1259 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1260 -S "found renegotiation extension" \
1261 -s "server hello, secure renegotiation extension" \
1262 -c "found renegotiation extension" \
1263 -C "=> renegotiate" \
1264 -S "=> renegotiate" \
1265 -s "write hello request" \
1266 -S "SSL - An unexpected message was received from our peer" \
1267 -S "failed"
1268
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001269run_test "Renegotiation: server-initiated, client-rejected, delay 0" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001270 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001271 renego_delay=0 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001272 "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001273 0 \
1274 -C "client hello, adding renegotiation extension" \
1275 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1276 -S "found renegotiation extension" \
1277 -s "server hello, secure renegotiation extension" \
1278 -c "found renegotiation extension" \
1279 -C "=> renegotiate" \
1280 -S "=> renegotiate" \
1281 -s "write hello request" \
Manuel Pégourié-Gonnarda8c0a0d2014-08-15 12:07:38 +02001282 -s "SSL - An unexpected message was received from our peer"
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001283
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001284run_test "Renegotiation: server-initiated, client-accepted, delay 0" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001285 "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001286 renego_delay=0 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001287 "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \
Manuel Pégourié-Gonnardfae355e2014-07-04 14:32:27 +02001288 0 \
1289 -c "client hello, adding renegotiation extension" \
1290 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1291 -s "found renegotiation extension" \
1292 -s "server hello, secure renegotiation extension" \
1293 -c "found renegotiation extension" \
1294 -c "=> renegotiate" \
1295 -s "=> renegotiate" \
1296 -s "write hello request" \
1297 -S "SSL - An unexpected message was received from our peer" \
1298 -S "failed"
1299
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001300run_test "Renegotiation: periodic, just below period" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001301 "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001302 "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \
1303 0 \
1304 -C "client hello, adding renegotiation extension" \
1305 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1306 -S "found renegotiation extension" \
1307 -s "server hello, secure renegotiation extension" \
1308 -c "found renegotiation extension" \
1309 -S "record counter limit reached: renegotiate" \
1310 -C "=> renegotiate" \
1311 -S "=> renegotiate" \
1312 -S "write hello request" \
1313 -S "SSL - An unexpected message was received from our peer" \
1314 -S "failed"
1315
Manuel Pégourié-Gonnard9835bc02015-01-14 14:41:58 +01001316# one extra exchange to be able to complete renego
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001317run_test "Renegotiation: periodic, just above period" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001318 "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \
Manuel Pégourié-Gonnard9835bc02015-01-14 14:41:58 +01001319 "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001320 0 \
1321 -c "client hello, adding renegotiation extension" \
1322 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1323 -s "found renegotiation extension" \
1324 -s "server hello, secure renegotiation extension" \
1325 -c "found renegotiation extension" \
1326 -s "record counter limit reached: renegotiate" \
1327 -c "=> renegotiate" \
1328 -s "=> renegotiate" \
1329 -s "write hello request" \
1330 -S "SSL - An unexpected message was received from our peer" \
1331 -S "failed"
1332
1333run_test "Renegotiation: periodic, two times period" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001334 "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \
Manuel Pégourié-Gonnard9835bc02015-01-14 14:41:58 +01001335 "$P_CLI debug_level=3 exchanges=7 renegotiation=1" \
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001336 0 \
1337 -c "client hello, adding renegotiation extension" \
1338 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1339 -s "found renegotiation extension" \
1340 -s "server hello, secure renegotiation extension" \
1341 -c "found renegotiation extension" \
1342 -s "record counter limit reached: renegotiate" \
1343 -c "=> renegotiate" \
1344 -s "=> renegotiate" \
1345 -s "write hello request" \
1346 -S "SSL - An unexpected message was received from our peer" \
1347 -S "failed"
1348
1349run_test "Renegotiation: periodic, above period, disabled" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001350 "$P_SRV debug_level=3 exchanges=9 renegotiation=0 renego_period=3 auth_mode=optional" \
Manuel Pégourié-Gonnard590f4162014-11-05 14:23:03 +01001351 "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \
1352 0 \
1353 -C "client hello, adding renegotiation extension" \
1354 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1355 -S "found renegotiation extension" \
1356 -s "server hello, secure renegotiation extension" \
1357 -c "found renegotiation extension" \
1358 -S "record counter limit reached: renegotiate" \
1359 -C "=> renegotiate" \
1360 -S "=> renegotiate" \
1361 -S "write hello request" \
1362 -S "SSL - An unexpected message was received from our peer" \
1363 -S "failed"
1364
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001365run_test "Renegotiation: nbio, client-initiated" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001366 "$P_SRV debug_level=3 nbio=2 exchanges=2 renegotiation=1 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001367 "$P_CLI debug_level=3 nbio=2 exchanges=2 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnardf07f4212014-08-15 19:04:47 +02001368 0 \
1369 -c "client hello, adding renegotiation extension" \
1370 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1371 -s "found renegotiation extension" \
1372 -s "server hello, secure renegotiation extension" \
1373 -c "found renegotiation extension" \
1374 -c "=> renegotiate" \
1375 -s "=> renegotiate" \
1376 -S "write hello request"
1377
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001378run_test "Renegotiation: nbio, server-initiated" \
Manuel Pégourié-Gonnardfa44f202015-03-27 17:52:25 +01001379 "$P_SRV debug_level=3 nbio=2 exchanges=2 renegotiation=1 renegotiate=1 auth_mode=optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001380 "$P_CLI debug_level=3 nbio=2 exchanges=2 renegotiation=1" \
Manuel Pégourié-Gonnardf07f4212014-08-15 19:04:47 +02001381 0 \
1382 -c "client hello, adding renegotiation extension" \
1383 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1384 -s "found renegotiation extension" \
1385 -s "server hello, secure renegotiation extension" \
1386 -c "found renegotiation extension" \
1387 -c "=> renegotiate" \
1388 -s "=> renegotiate" \
1389 -s "write hello request"
1390
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001391run_test "Renegotiation: openssl server, client-initiated" \
Manuel Pégourié-Gonnarda7756172014-08-31 18:37:01 +02001392 "$O_SRV -www" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001393 "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnard51362962014-08-30 21:22:47 +02001394 0 \
1395 -c "client hello, adding renegotiation extension" \
1396 -c "found renegotiation extension" \
1397 -c "=> renegotiate" \
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001398 -C "ssl_hanshake() returned" \
Manuel Pégourié-Gonnard51362962014-08-30 21:22:47 +02001399 -C "error" \
1400 -c "HTTP/1.0 200 [Oo][Kk]"
1401
Paul Bakker539d9722015-02-08 16:18:35 +01001402requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001403run_test "Renegotiation: gnutls server strict, client-initiated" \
1404 "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001405 "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnard51362962014-08-30 21:22:47 +02001406 0 \
1407 -c "client hello, adding renegotiation extension" \
1408 -c "found renegotiation extension" \
1409 -c "=> renegotiate" \
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001410 -C "ssl_hanshake() returned" \
Manuel Pégourié-Gonnard51362962014-08-30 21:22:47 +02001411 -C "error" \
1412 -c "HTTP/1.0 200 [Oo][Kk]"
1413
Paul Bakker539d9722015-02-08 16:18:35 +01001414requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001415run_test "Renegotiation: gnutls server unsafe, client-initiated default" \
1416 "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1417 "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \
1418 1 \
1419 -c "client hello, adding renegotiation extension" \
1420 -C "found renegotiation extension" \
1421 -c "=> renegotiate" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001422 -c "mbedtls_ssl_handshake() returned" \
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001423 -c "error" \
1424 -C "HTTP/1.0 200 [Oo][Kk]"
1425
Paul Bakker539d9722015-02-08 16:18:35 +01001426requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001427run_test "Renegotiation: gnutls server unsafe, client-inititated no legacy" \
1428 "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1429 "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \
1430 allow_legacy=0" \
1431 1 \
1432 -c "client hello, adding renegotiation extension" \
1433 -C "found renegotiation extension" \
1434 -c "=> renegotiate" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001435 -c "mbedtls_ssl_handshake() returned" \
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001436 -c "error" \
1437 -C "HTTP/1.0 200 [Oo][Kk]"
1438
Paul Bakker539d9722015-02-08 16:18:35 +01001439requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001440run_test "Renegotiation: gnutls server unsafe, client-inititated legacy" \
1441 "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1442 "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \
1443 allow_legacy=1" \
1444 0 \
1445 -c "client hello, adding renegotiation extension" \
1446 -C "found renegotiation extension" \
1447 -c "=> renegotiate" \
1448 -C "ssl_hanshake() returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001449 -C "error" \
1450 -c "HTTP/1.0 200 [Oo][Kk]"
1451
Manuel Pégourié-Gonnard30d16eb2014-08-19 17:43:50 +02001452run_test "Renegotiation: DTLS, client-initiated" \
1453 "$P_SRV debug_level=3 dtls=1 exchanges=2 renegotiation=1" \
1454 "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 renegotiate=1" \
1455 0 \
1456 -c "client hello, adding renegotiation extension" \
1457 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1458 -s "found renegotiation extension" \
1459 -s "server hello, secure renegotiation extension" \
1460 -c "found renegotiation extension" \
1461 -c "=> renegotiate" \
1462 -s "=> renegotiate" \
1463 -S "write hello request"
1464
Manuel Pégourié-Gonnardc392b242014-08-19 17:53:11 +02001465run_test "Renegotiation: DTLS, server-initiated" \
1466 "$P_SRV debug_level=3 dtls=1 exchanges=2 renegotiation=1 renegotiate=1" \
Manuel Pégourié-Gonnarddf9a0a82014-10-02 14:17:18 +02001467 "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 \
1468 read_timeout=1000 max_resend=2" \
Manuel Pégourié-Gonnardc392b242014-08-19 17:53:11 +02001469 0 \
1470 -c "client hello, adding renegotiation extension" \
1471 -s "received TLS_EMPTY_RENEGOTIATION_INFO" \
1472 -s "found renegotiation extension" \
1473 -s "server hello, secure renegotiation extension" \
1474 -c "found renegotiation extension" \
1475 -c "=> renegotiate" \
1476 -s "=> renegotiate" \
1477 -s "write hello request"
1478
Manuel Pégourié-Gonnard96999962015-02-17 16:02:37 +00001479requires_gnutls
Manuel Pégourié-Gonnardf1499f62014-08-31 17:13:13 +02001480run_test "Renegotiation: DTLS, gnutls server, client-initiated" \
1481 "$G_SRV -u --mtu 4096" \
1482 "$P_CLI debug_level=3 dtls=1 exchanges=1 renegotiation=1 renegotiate=1" \
1483 0 \
1484 -c "client hello, adding renegotiation extension" \
1485 -c "found renegotiation extension" \
1486 -c "=> renegotiate" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001487 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnardf1499f62014-08-31 17:13:13 +02001488 -C "error" \
1489 -s "Extra-header:"
1490
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001491# Test for the "secure renegotation" extension only (no actual renegotiation)
1492
Paul Bakker539d9722015-02-08 16:18:35 +01001493requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001494run_test "Renego ext: gnutls server strict, client default" \
1495 "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \
1496 "$P_CLI debug_level=3" \
1497 0 \
1498 -c "found renegotiation extension" \
1499 -C "error" \
1500 -c "HTTP/1.0 200 [Oo][Kk]"
1501
Paul Bakker539d9722015-02-08 16:18:35 +01001502requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001503run_test "Renego ext: gnutls server unsafe, client default" \
1504 "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1505 "$P_CLI debug_level=3" \
1506 0 \
1507 -C "found renegotiation extension" \
1508 -C "error" \
1509 -c "HTTP/1.0 200 [Oo][Kk]"
1510
Paul Bakker539d9722015-02-08 16:18:35 +01001511requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001512run_test "Renego ext: gnutls server unsafe, client break legacy" \
1513 "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1514 "$P_CLI debug_level=3 allow_legacy=-1" \
1515 1 \
1516 -C "found renegotiation extension" \
1517 -c "error" \
1518 -C "HTTP/1.0 200 [Oo][Kk]"
1519
Paul Bakker539d9722015-02-08 16:18:35 +01001520requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001521run_test "Renego ext: gnutls client strict, server default" \
1522 "$P_SRV debug_level=3" \
1523 "$G_CLI --priority=NORMAL:%SAFE_RENEGOTIATION" \
1524 0 \
1525 -s "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \
1526 -s "server hello, secure renegotiation extension"
1527
Paul Bakker539d9722015-02-08 16:18:35 +01001528requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001529run_test "Renego ext: gnutls client unsafe, server default" \
1530 "$P_SRV debug_level=3" \
1531 "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1532 0 \
1533 -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \
1534 -S "server hello, secure renegotiation extension"
1535
Paul Bakker539d9722015-02-08 16:18:35 +01001536requires_gnutls
Manuel Pégourié-Gonnard85d915b2014-11-03 20:10:36 +01001537run_test "Renego ext: gnutls client unsafe, server break legacy" \
1538 "$P_SRV debug_level=3 allow_legacy=-1" \
1539 "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \
1540 1 \
1541 -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \
1542 -S "server hello, secure renegotiation extension"
1543
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001544# Tests for auth_mode
1545
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001546run_test "Authentication: server badcert, client required" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001547 "$P_SRV crt_file=data_files/server5-badsign.crt \
1548 key_file=data_files/server5.key" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001549 "$P_CLI debug_level=1 auth_mode=required" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001550 1 \
1551 -c "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001552 -c "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001553 -c "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001554 -c "X509 - Certificate verification failed"
1555
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001556run_test "Authentication: server badcert, client optional" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001557 "$P_SRV crt_file=data_files/server5-badsign.crt \
1558 key_file=data_files/server5.key" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001559 "$P_CLI debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001560 0 \
1561 -c "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001562 -c "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001563 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001564 -C "X509 - Certificate verification failed"
1565
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001566run_test "Authentication: server badcert, client none" \
Manuel Pégourié-Gonnardc1da6642014-02-25 14:18:30 +01001567 "$P_SRV crt_file=data_files/server5-badsign.crt \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001568 key_file=data_files/server5.key" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001569 "$P_CLI debug_level=1 auth_mode=none" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001570 0 \
1571 -C "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001572 -C "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001573 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001574 -C "X509 - Certificate verification failed"
1575
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001576run_test "Authentication: client badcert, server required" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001577 "$P_SRV debug_level=3 auth_mode=required" \
1578 "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001579 key_file=data_files/server5.key" \
1580 1 \
1581 -S "skip write certificate request" \
1582 -C "skip parse certificate request" \
1583 -c "got a certificate request" \
1584 -C "skip write certificate" \
1585 -C "skip write certificate verify" \
1586 -S "skip parse certificate verify" \
1587 -s "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001588 -s "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001589 -s "! mbedtls_ssl_handshake returned" \
1590 -c "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001591 -s "X509 - Certificate verification failed"
1592
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001593run_test "Authentication: client badcert, server optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001594 "$P_SRV debug_level=3 auth_mode=optional" \
1595 "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001596 key_file=data_files/server5.key" \
1597 0 \
1598 -S "skip write certificate request" \
1599 -C "skip parse certificate request" \
1600 -c "got a certificate request" \
1601 -C "skip write certificate" \
1602 -C "skip write certificate verify" \
1603 -S "skip parse certificate verify" \
1604 -s "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001605 -s "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001606 -S "! mbedtls_ssl_handshake returned" \
1607 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001608 -S "X509 - Certificate verification failed"
1609
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001610run_test "Authentication: client badcert, server none" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001611 "$P_SRV debug_level=3 auth_mode=none" \
1612 "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001613 key_file=data_files/server5.key" \
1614 0 \
1615 -s "skip write certificate request" \
1616 -C "skip parse certificate request" \
1617 -c "got no certificate request" \
1618 -c "skip write certificate" \
1619 -c "skip write certificate verify" \
1620 -s "skip parse certificate verify" \
1621 -S "x509_verify_cert() returned" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001622 -S "! The certificate is not correctly signed by the trusted CA" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001623 -S "! mbedtls_ssl_handshake returned" \
1624 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01001625 -S "X509 - Certificate verification failed"
1626
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001627run_test "Authentication: client no cert, server optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001628 "$P_SRV debug_level=3 auth_mode=optional" \
1629 "$P_CLI debug_level=3 crt_file=none key_file=none" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001630 0 \
1631 -S "skip write certificate request" \
1632 -C "skip parse certificate request" \
1633 -c "got a certificate request" \
1634 -C "skip write certificate$" \
1635 -C "got no certificate to send" \
1636 -S "SSLv3 client has no certificate" \
1637 -c "skip write certificate verify" \
1638 -s "skip parse certificate verify" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001639 -s "! Certificate was missing" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001640 -S "! mbedtls_ssl_handshake returned" \
1641 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001642 -S "X509 - Certificate verification failed"
1643
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001644run_test "Authentication: openssl client no cert, server optional" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001645 "$P_SRV debug_level=3 auth_mode=optional" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001646 "$O_CLI" \
1647 0 \
1648 -S "skip write certificate request" \
1649 -s "skip parse certificate verify" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001650 -s "! Certificate was missing" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001651 -S "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001652 -S "X509 - Certificate verification failed"
1653
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001654run_test "Authentication: client no cert, openssl server optional" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001655 "$O_SRV -verify 10" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001656 "$P_CLI debug_level=3 crt_file=none key_file=none" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001657 0 \
1658 -C "skip parse certificate request" \
1659 -c "got a certificate request" \
1660 -C "skip write certificate$" \
1661 -c "skip write certificate verify" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001662 -C "! mbedtls_ssl_handshake returned"
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001663
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001664run_test "Authentication: client no cert, ssl3" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02001665 "$P_SRV debug_level=3 auth_mode=optional force_version=ssl3" \
Manuel Pégourié-Gonnard448ea502015-01-12 11:40:14 +01001666 "$P_CLI debug_level=3 crt_file=none key_file=none min_version=ssl3" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001667 0 \
1668 -S "skip write certificate request" \
1669 -C "skip parse certificate request" \
1670 -c "got a certificate request" \
1671 -C "skip write certificate$" \
1672 -c "skip write certificate verify" \
1673 -c "got no certificate to send" \
1674 -s "SSLv3 client has no certificate" \
1675 -s "skip parse certificate verify" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01001676 -s "! Certificate was missing" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001677 -S "! mbedtls_ssl_handshake returned" \
1678 -C "! mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnardde515cc2014-02-27 14:58:26 +01001679 -S "X509 - Certificate verification failed"
1680
Manuel Pégourié-Gonnarddf331a52015-01-08 16:43:07 +01001681# Tests for certificate selection based on SHA verson
1682
1683run_test "Certificate hash: client TLS 1.2 -> SHA-2" \
1684 "$P_SRV crt_file=data_files/server5.crt \
1685 key_file=data_files/server5.key \
1686 crt_file2=data_files/server5-sha1.crt \
1687 key_file2=data_files/server5.key" \
1688 "$P_CLI force_version=tls1_2" \
1689 0 \
1690 -c "signed using.*ECDSA with SHA256" \
1691 -C "signed using.*ECDSA with SHA1"
1692
1693run_test "Certificate hash: client TLS 1.1 -> SHA-1" \
1694 "$P_SRV crt_file=data_files/server5.crt \
1695 key_file=data_files/server5.key \
1696 crt_file2=data_files/server5-sha1.crt \
1697 key_file2=data_files/server5.key" \
1698 "$P_CLI force_version=tls1_1" \
1699 0 \
1700 -C "signed using.*ECDSA with SHA256" \
1701 -c "signed using.*ECDSA with SHA1"
1702
1703run_test "Certificate hash: client TLS 1.0 -> SHA-1" \
1704 "$P_SRV crt_file=data_files/server5.crt \
1705 key_file=data_files/server5.key \
1706 crt_file2=data_files/server5-sha1.crt \
1707 key_file2=data_files/server5.key" \
1708 "$P_CLI force_version=tls1" \
1709 0 \
1710 -C "signed using.*ECDSA with SHA256" \
1711 -c "signed using.*ECDSA with SHA1"
1712
1713run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 1)" \
1714 "$P_SRV crt_file=data_files/server5.crt \
1715 key_file=data_files/server5.key \
1716 crt_file2=data_files/server6.crt \
1717 key_file2=data_files/server6.key" \
1718 "$P_CLI force_version=tls1_1" \
1719 0 \
1720 -c "serial number.*09" \
1721 -c "signed using.*ECDSA with SHA256" \
1722 -C "signed using.*ECDSA with SHA1"
1723
1724run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 2)" \
1725 "$P_SRV crt_file=data_files/server6.crt \
1726 key_file=data_files/server6.key \
1727 crt_file2=data_files/server5.crt \
1728 key_file2=data_files/server5.key" \
1729 "$P_CLI force_version=tls1_1" \
1730 0 \
1731 -c "serial number.*0A" \
1732 -c "signed using.*ECDSA with SHA256" \
1733 -C "signed using.*ECDSA with SHA1"
1734
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001735# tests for SNI
1736
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001737run_test "SNI: no SNI callback" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001738 "$P_SRV debug_level=3 \
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001739 crt_file=data_files/server5.crt key_file=data_files/server5.key" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001740 "$P_CLI server_name=localhost" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001741 0 \
1742 -S "parse ServerName extension" \
1743 -c "issuer name *: C=NL, O=PolarSSL, CN=Polarssl Test EC CA" \
1744 -c "subject name *: C=NL, O=PolarSSL, CN=localhost"
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001745
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001746run_test "SNI: matching cert 1" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001747 "$P_SRV debug_level=3 \
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001748 crt_file=data_files/server5.crt key_file=data_files/server5.key \
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +02001749 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001750 "$P_CLI server_name=localhost" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001751 0 \
1752 -s "parse ServerName extension" \
1753 -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \
1754 -c "subject name *: C=NL, O=PolarSSL, CN=localhost"
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001755
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001756run_test "SNI: matching cert 2" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001757 "$P_SRV debug_level=3 \
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001758 crt_file=data_files/server5.crt key_file=data_files/server5.key \
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +02001759 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001760 "$P_CLI server_name=polarssl.example" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001761 0 \
1762 -s "parse ServerName extension" \
1763 -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \
1764 -c "subject name *: C=NL, O=PolarSSL, CN=polarssl.example"
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001765
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001766run_test "SNI: no matching cert" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001767 "$P_SRV debug_level=3 \
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001768 crt_file=data_files/server5.crt key_file=data_files/server5.key \
Manuel Pégourié-Gonnard4d6f1782015-06-19 14:40:39 +02001769 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02001770 "$P_CLI server_name=nonesuch.example" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001771 1 \
1772 -s "parse ServerName extension" \
1773 -s "ssl_sni_wrapper() returned" \
1774 -s "mbedtls_ssl_handshake returned" \
1775 -c "mbedtls_ssl_handshake returned" \
1776 -c "SSL - A fatal alert message was received from our peer"
Manuel Pégourié-Gonnard96ea2f22014-02-25 12:26:29 +01001777
Manuel Pégourié-Gonnardc948a792015-06-22 16:04:20 +02001778run_test "SNI: client auth no override: optional" \
1779 "$P_SRV debug_level=3 auth_mode=optional \
1780 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1781 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-" \
1782 "$P_CLI debug_level=3 server_name=localhost" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001783 0 \
Manuel Pégourié-Gonnardc948a792015-06-22 16:04:20 +02001784 -S "skip write certificate request" \
1785 -C "skip parse certificate request" \
1786 -c "got a certificate request" \
1787 -C "skip write certificate" \
1788 -C "skip write certificate verify" \
1789 -S "skip parse certificate verify"
1790
1791run_test "SNI: client auth override: none -> optional" \
1792 "$P_SRV debug_level=3 auth_mode=none \
1793 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1794 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,optional" \
1795 "$P_CLI debug_level=3 server_name=localhost" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001796 0 \
Manuel Pégourié-Gonnardc948a792015-06-22 16:04:20 +02001797 -S "skip write certificate request" \
1798 -C "skip parse certificate request" \
1799 -c "got a certificate request" \
1800 -C "skip write certificate" \
1801 -C "skip write certificate verify" \
1802 -S "skip parse certificate verify"
1803
1804run_test "SNI: client auth override: optional -> none" \
1805 "$P_SRV debug_level=3 auth_mode=optional \
1806 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1807 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,none" \
1808 "$P_CLI debug_level=3 server_name=localhost" \
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001809 0 \
Manuel Pégourié-Gonnardc948a792015-06-22 16:04:20 +02001810 -s "skip write certificate request" \
1811 -C "skip parse certificate request" \
1812 -c "got no certificate request" \
1813 -c "skip write certificate" \
1814 -c "skip write certificate verify" \
1815 -s "skip parse certificate verify"
1816
Manuel Pégourié-Gonnard6ea831d2015-06-22 16:50:52 +02001817run_test "SNI: CA no override" \
1818 "$P_SRV debug_level=3 auth_mode=optional \
1819 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1820 ca_file=data_files/test-ca.crt \
1821 sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,required" \
1822 "$P_CLI debug_level=3 server_name=localhost \
1823 crt_file=data_files/server6.crt key_file=data_files/server6.key" \
1824 1 \
1825 -S "skip write certificate request" \
1826 -C "skip parse certificate request" \
1827 -c "got a certificate request" \
1828 -C "skip write certificate" \
1829 -C "skip write certificate verify" \
1830 -S "skip parse certificate verify" \
1831 -s "x509_verify_cert() returned" \
1832 -s "! The certificate is not correctly signed by the trusted CA" \
1833 -S "The certificate has been revoked (is on a CRL)"
1834
1835run_test "SNI: CA override" \
1836 "$P_SRV debug_level=3 auth_mode=optional \
1837 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1838 ca_file=data_files/test-ca.crt \
1839 sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,-,required" \
1840 "$P_CLI debug_level=3 server_name=localhost \
1841 crt_file=data_files/server6.crt key_file=data_files/server6.key" \
1842 0 \
1843 -S "skip write certificate request" \
1844 -C "skip parse certificate request" \
1845 -c "got a certificate request" \
1846 -C "skip write certificate" \
1847 -C "skip write certificate verify" \
1848 -S "skip parse certificate verify" \
1849 -S "x509_verify_cert() returned" \
1850 -S "! The certificate is not correctly signed by the trusted CA" \
1851 -S "The certificate has been revoked (is on a CRL)"
1852
1853run_test "SNI: CA override with CRL" \
1854 "$P_SRV debug_level=3 auth_mode=optional \
1855 crt_file=data_files/server5.crt key_file=data_files/server5.key \
1856 ca_file=data_files/test-ca.crt \
1857 sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,data_files/crl-ec-sha256.pem,required" \
1858 "$P_CLI debug_level=3 server_name=localhost \
1859 crt_file=data_files/server6.crt key_file=data_files/server6.key" \
1860 1 \
1861 -S "skip write certificate request" \
1862 -C "skip parse certificate request" \
1863 -c "got a certificate request" \
1864 -C "skip write certificate" \
1865 -C "skip write certificate verify" \
1866 -S "skip parse certificate verify" \
1867 -s "x509_verify_cert() returned" \
1868 -S "! The certificate is not correctly signed by the trusted CA" \
1869 -s "The certificate has been revoked (is on a CRL)"
1870
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001871# Tests for non-blocking I/O: exercise a variety of handshake flows
1872
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001873run_test "Non-blocking I/O: basic handshake" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001874 "$P_SRV nbio=2 tickets=0 auth_mode=none" \
1875 "$P_CLI nbio=2 tickets=0" \
1876 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001877 -S "mbedtls_ssl_handshake returned" \
1878 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001879 -c "Read from server: .* bytes read"
1880
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001881run_test "Non-blocking I/O: client auth" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001882 "$P_SRV nbio=2 tickets=0 auth_mode=required" \
1883 "$P_CLI nbio=2 tickets=0" \
1884 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001885 -S "mbedtls_ssl_handshake returned" \
1886 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001887 -c "Read from server: .* bytes read"
1888
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001889run_test "Non-blocking I/O: ticket" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001890 "$P_SRV nbio=2 tickets=1 auth_mode=none" \
1891 "$P_CLI nbio=2 tickets=1" \
1892 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001893 -S "mbedtls_ssl_handshake returned" \
1894 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001895 -c "Read from server: .* bytes read"
1896
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001897run_test "Non-blocking I/O: ticket + client auth" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001898 "$P_SRV nbio=2 tickets=1 auth_mode=required" \
1899 "$P_CLI nbio=2 tickets=1" \
1900 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001901 -S "mbedtls_ssl_handshake returned" \
1902 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001903 -c "Read from server: .* bytes read"
1904
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001905run_test "Non-blocking I/O: ticket + client auth + resume" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001906 "$P_SRV nbio=2 tickets=1 auth_mode=required" \
1907 "$P_CLI nbio=2 tickets=1 reconnect=1" \
1908 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001909 -S "mbedtls_ssl_handshake returned" \
1910 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001911 -c "Read from server: .* bytes read"
1912
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001913run_test "Non-blocking I/O: ticket + resume" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001914 "$P_SRV nbio=2 tickets=1 auth_mode=none" \
1915 "$P_CLI nbio=2 tickets=1 reconnect=1" \
1916 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001917 -S "mbedtls_ssl_handshake returned" \
1918 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001919 -c "Read from server: .* bytes read"
1920
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001921run_test "Non-blocking I/O: session-id resume" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001922 "$P_SRV nbio=2 tickets=0 auth_mode=none" \
1923 "$P_CLI nbio=2 tickets=0 reconnect=1" \
1924 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001925 -S "mbedtls_ssl_handshake returned" \
1926 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0b6609b2014-02-26 14:45:12 +01001927 -c "Read from server: .* bytes read"
1928
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02001929# Tests for version negotiation
1930
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001931run_test "Version check: all -> 1.2" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001932 "$P_SRV" \
1933 "$P_CLI" \
1934 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001935 -S "mbedtls_ssl_handshake returned" \
1936 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001937 -s "Protocol is TLSv1.2" \
1938 -c "Protocol is TLSv1.2"
1939
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001940run_test "Version check: cli max 1.1 -> 1.1" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001941 "$P_SRV" \
1942 "$P_CLI max_version=tls1_1" \
1943 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001944 -S "mbedtls_ssl_handshake returned" \
1945 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001946 -s "Protocol is TLSv1.1" \
1947 -c "Protocol is TLSv1.1"
1948
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001949run_test "Version check: srv max 1.1 -> 1.1" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001950 "$P_SRV max_version=tls1_1" \
1951 "$P_CLI" \
1952 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001953 -S "mbedtls_ssl_handshake returned" \
1954 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001955 -s "Protocol is TLSv1.1" \
1956 -c "Protocol is TLSv1.1"
1957
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001958run_test "Version check: cli+srv max 1.1 -> 1.1" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001959 "$P_SRV max_version=tls1_1" \
1960 "$P_CLI max_version=tls1_1" \
1961 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001962 -S "mbedtls_ssl_handshake returned" \
1963 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001964 -s "Protocol is TLSv1.1" \
1965 -c "Protocol is TLSv1.1"
1966
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001967run_test "Version check: cli max 1.1, srv min 1.1 -> 1.1" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001968 "$P_SRV min_version=tls1_1" \
1969 "$P_CLI max_version=tls1_1" \
1970 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001971 -S "mbedtls_ssl_handshake returned" \
1972 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001973 -s "Protocol is TLSv1.1" \
1974 -c "Protocol is TLSv1.1"
1975
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001976run_test "Version check: cli min 1.1, srv max 1.1 -> 1.1" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001977 "$P_SRV max_version=tls1_1" \
1978 "$P_CLI min_version=tls1_1" \
1979 0 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001980 -S "mbedtls_ssl_handshake returned" \
1981 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001982 -s "Protocol is TLSv1.1" \
1983 -c "Protocol is TLSv1.1"
1984
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001985run_test "Version check: cli min 1.2, srv max 1.1 -> fail" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001986 "$P_SRV max_version=tls1_1" \
1987 "$P_CLI min_version=tls1_2" \
1988 1 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001989 -s "mbedtls_ssl_handshake returned" \
1990 -c "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001991 -c "SSL - Handshake protocol not within min/max boundaries"
1992
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02001993run_test "Version check: srv min 1.2, cli max 1.1 -> fail" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001994 "$P_SRV min_version=tls1_2" \
1995 "$P_CLI max_version=tls1_1" \
1996 1 \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001997 -s "mbedtls_ssl_handshake returned" \
1998 -c "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnarda3d808e2014-02-26 16:33:03 +01001999 -s "SSL - Handshake protocol not within min/max boundaries"
2000
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002001# Tests for ALPN extension
2002
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002003run_test "ALPN: none" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002004 "$P_SRV debug_level=3" \
2005 "$P_CLI debug_level=3" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002006 0 \
2007 -C "client hello, adding alpn extension" \
2008 -S "found alpn extension" \
2009 -C "got an alert message, type: \\[2:120]" \
2010 -S "server hello, adding alpn extension" \
2011 -C "found alpn extension " \
2012 -C "Application Layer Protocol is" \
2013 -S "Application Layer Protocol is"
2014
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002015run_test "ALPN: client only" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002016 "$P_SRV debug_level=3" \
2017 "$P_CLI debug_level=3 alpn=abc,1234" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002018 0 \
2019 -c "client hello, adding alpn extension" \
2020 -s "found alpn extension" \
2021 -C "got an alert message, type: \\[2:120]" \
2022 -S "server hello, adding alpn extension" \
2023 -C "found alpn extension " \
2024 -c "Application Layer Protocol is (none)" \
2025 -S "Application Layer Protocol is"
2026
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002027run_test "ALPN: server only" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002028 "$P_SRV debug_level=3 alpn=abc,1234" \
2029 "$P_CLI debug_level=3" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002030 0 \
2031 -C "client hello, adding alpn extension" \
2032 -S "found alpn extension" \
2033 -C "got an alert message, type: \\[2:120]" \
2034 -S "server hello, adding alpn extension" \
2035 -C "found alpn extension " \
2036 -C "Application Layer Protocol is" \
2037 -s "Application Layer Protocol is (none)"
2038
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002039run_test "ALPN: both, common cli1-srv1" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002040 "$P_SRV debug_level=3 alpn=abc,1234" \
2041 "$P_CLI debug_level=3 alpn=abc,1234" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002042 0 \
2043 -c "client hello, adding alpn extension" \
2044 -s "found alpn extension" \
2045 -C "got an alert message, type: \\[2:120]" \
2046 -s "server hello, adding alpn extension" \
2047 -c "found alpn extension" \
2048 -c "Application Layer Protocol is abc" \
2049 -s "Application Layer Protocol is abc"
2050
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002051run_test "ALPN: both, common cli2-srv1" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002052 "$P_SRV debug_level=3 alpn=abc,1234" \
2053 "$P_CLI debug_level=3 alpn=1234,abc" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002054 0 \
2055 -c "client hello, adding alpn extension" \
2056 -s "found alpn extension" \
2057 -C "got an alert message, type: \\[2:120]" \
2058 -s "server hello, adding alpn extension" \
2059 -c "found alpn extension" \
2060 -c "Application Layer Protocol is abc" \
2061 -s "Application Layer Protocol is abc"
2062
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002063run_test "ALPN: both, common cli1-srv2" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002064 "$P_SRV debug_level=3 alpn=abc,1234" \
2065 "$P_CLI debug_level=3 alpn=1234,abcde" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002066 0 \
2067 -c "client hello, adding alpn extension" \
2068 -s "found alpn extension" \
2069 -C "got an alert message, type: \\[2:120]" \
2070 -s "server hello, adding alpn extension" \
2071 -c "found alpn extension" \
2072 -c "Application Layer Protocol is 1234" \
2073 -s "Application Layer Protocol is 1234"
2074
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002075run_test "ALPN: both, no common" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002076 "$P_SRV debug_level=3 alpn=abc,123" \
2077 "$P_CLI debug_level=3 alpn=1234,abcde" \
Manuel Pégourié-Gonnardf6521de2014-04-07 12:42:04 +02002078 1 \
2079 -c "client hello, adding alpn extension" \
2080 -s "found alpn extension" \
2081 -c "got an alert message, type: \\[2:120]" \
2082 -S "server hello, adding alpn extension" \
2083 -C "found alpn extension" \
2084 -C "Application Layer Protocol is 1234" \
2085 -S "Application Layer Protocol is 1234"
2086
Manuel Pégourié-Gonnard83d8c732014-04-07 13:24:21 +02002087
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002088# Tests for keyUsage in leaf certificates, part 1:
2089# server-side certificate/suite selection
2090
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002091run_test "keyUsage srv: RSA, digitalSignature -> (EC)DHE-RSA" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002092 "$P_SRV key_file=data_files/server2.key \
2093 crt_file=data_files/server2.ku-ds.crt" \
2094 "$P_CLI" \
2095 0 \
Manuel Pégourié-Gonnard17cde5f2014-05-22 14:42:39 +02002096 -c "Ciphersuite is TLS-[EC]*DHE-RSA-WITH-"
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002097
2098
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002099run_test "keyUsage srv: RSA, keyEncipherment -> RSA" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002100 "$P_SRV key_file=data_files/server2.key \
2101 crt_file=data_files/server2.ku-ke.crt" \
2102 "$P_CLI" \
2103 0 \
2104 -c "Ciphersuite is TLS-RSA-WITH-"
2105
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002106run_test "keyUsage srv: RSA, keyAgreement -> fail" \
Manuel Pégourié-Gonnardf2629b92014-08-30 14:20:14 +02002107 "$P_SRV key_file=data_files/server2.key \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002108 crt_file=data_files/server2.ku-ka.crt" \
Manuel Pégourié-Gonnardf2629b92014-08-30 14:20:14 +02002109 "$P_CLI" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002110 1 \
2111 -C "Ciphersuite is "
2112
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002113run_test "keyUsage srv: ECDSA, digitalSignature -> ECDHE-ECDSA" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002114 "$P_SRV key_file=data_files/server5.key \
2115 crt_file=data_files/server5.ku-ds.crt" \
2116 "$P_CLI" \
2117 0 \
2118 -c "Ciphersuite is TLS-ECDHE-ECDSA-WITH-"
2119
2120
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002121run_test "keyUsage srv: ECDSA, keyAgreement -> ECDH-" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002122 "$P_SRV key_file=data_files/server5.key \
2123 crt_file=data_files/server5.ku-ka.crt" \
2124 "$P_CLI" \
2125 0 \
2126 -c "Ciphersuite is TLS-ECDH-"
2127
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002128run_test "keyUsage srv: ECDSA, keyEncipherment -> fail" \
Manuel Pégourié-Gonnardf2629b92014-08-30 14:20:14 +02002129 "$P_SRV key_file=data_files/server5.key \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002130 crt_file=data_files/server5.ku-ke.crt" \
Manuel Pégourié-Gonnardf2629b92014-08-30 14:20:14 +02002131 "$P_CLI" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002132 1 \
2133 -C "Ciphersuite is "
2134
2135# Tests for keyUsage in leaf certificates, part 2:
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002136# client-side checking of server cert
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002137
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002138run_test "keyUsage cli: DigitalSignature+KeyEncipherment, RSA: OK" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002139 "$O_SRV -key data_files/server2.key \
2140 -cert data_files/server2.ku-ds_ke.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002141 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002142 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
2143 0 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002144 -C "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002145 -C "Processing of the Certificate handshake message failed" \
2146 -c "Ciphersuite is TLS-"
2147
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002148run_test "keyUsage cli: DigitalSignature+KeyEncipherment, DHE-RSA: OK" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002149 "$O_SRV -key data_files/server2.key \
2150 -cert data_files/server2.ku-ds_ke.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002151 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002152 force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
2153 0 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002154 -C "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002155 -C "Processing of the Certificate handshake message failed" \
2156 -c "Ciphersuite is TLS-"
2157
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002158run_test "keyUsage cli: KeyEncipherment, RSA: OK" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002159 "$O_SRV -key data_files/server2.key \
2160 -cert data_files/server2.ku-ke.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002161 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002162 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
2163 0 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002164 -C "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002165 -C "Processing of the Certificate handshake message failed" \
2166 -c "Ciphersuite is TLS-"
2167
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002168run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002169 "$O_SRV -key data_files/server2.key \
2170 -cert data_files/server2.ku-ke.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002171 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002172 force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
2173 1 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002174 -c "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002175 -c "Processing of the Certificate handshake message failed" \
2176 -C "Ciphersuite is TLS-"
2177
Manuel Pégourié-Gonnarde6efa6f2015-04-20 11:01:48 +01002178run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail, soft" \
2179 "$O_SRV -key data_files/server2.key \
2180 -cert data_files/server2.ku-ke.crt" \
2181 "$P_CLI debug_level=1 auth_mode=optional \
2182 force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
2183 0 \
2184 -c "bad certificate (usage extensions)" \
2185 -C "Processing of the Certificate handshake message failed" \
2186 -c "Ciphersuite is TLS-" \
2187 -c "! Usage does not match the keyUsage extension"
2188
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002189run_test "keyUsage cli: DigitalSignature, DHE-RSA: OK" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002190 "$O_SRV -key data_files/server2.key \
2191 -cert data_files/server2.ku-ds.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002192 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002193 force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \
2194 0 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002195 -C "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002196 -C "Processing of the Certificate handshake message failed" \
2197 -c "Ciphersuite is TLS-"
2198
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002199run_test "keyUsage cli: DigitalSignature, RSA: fail" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002200 "$O_SRV -key data_files/server2.key \
2201 -cert data_files/server2.ku-ds.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002202 "$P_CLI debug_level=1 \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002203 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
2204 1 \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002205 -c "bad certificate (usage extensions)" \
Manuel Pégourié-Gonnard7f2a07d2014-04-09 09:50:57 +02002206 -c "Processing of the Certificate handshake message failed" \
2207 -C "Ciphersuite is TLS-"
2208
Manuel Pégourié-Gonnarde6efa6f2015-04-20 11:01:48 +01002209run_test "keyUsage cli: DigitalSignature, RSA: fail, soft" \
2210 "$O_SRV -key data_files/server2.key \
2211 -cert data_files/server2.ku-ds.crt" \
2212 "$P_CLI debug_level=1 auth_mode=optional \
2213 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
2214 0 \
2215 -c "bad certificate (usage extensions)" \
2216 -C "Processing of the Certificate handshake message failed" \
2217 -c "Ciphersuite is TLS-" \
2218 -c "! Usage does not match the keyUsage extension"
2219
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002220# Tests for keyUsage in leaf certificates, part 3:
2221# server-side checking of client cert
2222
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002223run_test "keyUsage cli-auth: RSA, DigitalSignature: OK" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002224 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002225 "$O_CLI -key data_files/server2.key \
2226 -cert data_files/server2.ku-ds.crt" \
2227 0 \
2228 -S "bad certificate (usage extensions)" \
2229 -S "Processing of the Certificate handshake message failed"
2230
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002231run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (soft)" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002232 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002233 "$O_CLI -key data_files/server2.key \
2234 -cert data_files/server2.ku-ke.crt" \
2235 0 \
2236 -s "bad certificate (usage extensions)" \
2237 -S "Processing of the Certificate handshake message failed"
2238
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002239run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (hard)" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002240 "$P_SRV debug_level=1 auth_mode=required" \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002241 "$O_CLI -key data_files/server2.key \
2242 -cert data_files/server2.ku-ke.crt" \
2243 1 \
2244 -s "bad certificate (usage extensions)" \
2245 -s "Processing of the Certificate handshake message failed"
2246
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002247run_test "keyUsage cli-auth: ECDSA, DigitalSignature: OK" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002248 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002249 "$O_CLI -key data_files/server5.key \
2250 -cert data_files/server5.ku-ds.crt" \
2251 0 \
2252 -S "bad certificate (usage extensions)" \
2253 -S "Processing of the Certificate handshake message failed"
2254
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002255run_test "keyUsage cli-auth: ECDSA, KeyAgreement: fail (soft)" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002256 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnarda9db85d2014-04-09 14:53:05 +02002257 "$O_CLI -key data_files/server5.key \
2258 -cert data_files/server5.ku-ka.crt" \
2259 0 \
2260 -s "bad certificate (usage extensions)" \
2261 -S "Processing of the Certificate handshake message failed"
2262
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002263# Tests for extendedKeyUsage, part 1: server-side certificate/suite selection
2264
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002265run_test "extKeyUsage srv: serverAuth -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002266 "$P_SRV key_file=data_files/server5.key \
2267 crt_file=data_files/server5.eku-srv.crt" \
2268 "$P_CLI" \
2269 0
2270
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002271run_test "extKeyUsage srv: serverAuth,clientAuth -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002272 "$P_SRV key_file=data_files/server5.key \
2273 crt_file=data_files/server5.eku-srv.crt" \
2274 "$P_CLI" \
2275 0
2276
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002277run_test "extKeyUsage srv: codeSign,anyEKU -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002278 "$P_SRV key_file=data_files/server5.key \
2279 crt_file=data_files/server5.eku-cs_any.crt" \
2280 "$P_CLI" \
2281 0
2282
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002283run_test "extKeyUsage srv: codeSign -> fail" \
Manuel Pégourié-Gonnard7eb58cb2015-07-07 11:54:14 +02002284 "$P_SRV key_file=data_files/server5.key \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002285 crt_file=data_files/server5.eku-cli.crt" \
Manuel Pégourié-Gonnard7eb58cb2015-07-07 11:54:14 +02002286 "$P_CLI" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002287 1
2288
2289# Tests for extendedKeyUsage, part 2: client-side checking of server cert
2290
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002291run_test "extKeyUsage cli: serverAuth -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002292 "$O_SRV -key data_files/server5.key \
2293 -cert data_files/server5.eku-srv.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002294 "$P_CLI debug_level=1" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002295 0 \
2296 -C "bad certificate (usage extensions)" \
2297 -C "Processing of the Certificate handshake message failed" \
2298 -c "Ciphersuite is TLS-"
2299
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002300run_test "extKeyUsage cli: serverAuth,clientAuth -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002301 "$O_SRV -key data_files/server5.key \
2302 -cert data_files/server5.eku-srv_cli.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002303 "$P_CLI debug_level=1" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002304 0 \
2305 -C "bad certificate (usage extensions)" \
2306 -C "Processing of the Certificate handshake message failed" \
2307 -c "Ciphersuite is TLS-"
2308
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002309run_test "extKeyUsage cli: codeSign,anyEKU -> OK" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002310 "$O_SRV -key data_files/server5.key \
2311 -cert data_files/server5.eku-cs_any.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002312 "$P_CLI debug_level=1" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002313 0 \
2314 -C "bad certificate (usage extensions)" \
2315 -C "Processing of the Certificate handshake message failed" \
2316 -c "Ciphersuite is TLS-"
2317
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002318run_test "extKeyUsage cli: codeSign -> fail" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002319 "$O_SRV -key data_files/server5.key \
2320 -cert data_files/server5.eku-cs.crt" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002321 "$P_CLI debug_level=1" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002322 1 \
2323 -c "bad certificate (usage extensions)" \
2324 -c "Processing of the Certificate handshake message failed" \
2325 -C "Ciphersuite is TLS-"
2326
2327# Tests for extendedKeyUsage, part 3: server-side checking of client cert
2328
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002329run_test "extKeyUsage cli-auth: clientAuth -> OK" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002330 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002331 "$O_CLI -key data_files/server5.key \
2332 -cert data_files/server5.eku-cli.crt" \
2333 0 \
2334 -S "bad certificate (usage extensions)" \
2335 -S "Processing of the Certificate handshake message failed"
2336
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002337run_test "extKeyUsage cli-auth: serverAuth,clientAuth -> OK" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002338 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002339 "$O_CLI -key data_files/server5.key \
2340 -cert data_files/server5.eku-srv_cli.crt" \
2341 0 \
2342 -S "bad certificate (usage extensions)" \
2343 -S "Processing of the Certificate handshake message failed"
2344
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002345run_test "extKeyUsage cli-auth: codeSign,anyEKU -> OK" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002346 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002347 "$O_CLI -key data_files/server5.key \
2348 -cert data_files/server5.eku-cs_any.crt" \
2349 0 \
2350 -S "bad certificate (usage extensions)" \
2351 -S "Processing of the Certificate handshake message failed"
2352
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002353run_test "extKeyUsage cli-auth: codeSign -> fail (soft)" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002354 "$P_SRV debug_level=1 auth_mode=optional" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002355 "$O_CLI -key data_files/server5.key \
2356 -cert data_files/server5.eku-cs.crt" \
2357 0 \
2358 -s "bad certificate (usage extensions)" \
2359 -S "Processing of the Certificate handshake message failed"
2360
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002361run_test "extKeyUsage cli-auth: codeSign -> fail (hard)" \
Manuel Pégourié-Gonnard644e8f32014-08-30 21:59:31 +02002362 "$P_SRV debug_level=1 auth_mode=required" \
Manuel Pégourié-Gonnard0408fd12014-04-11 11:06:22 +02002363 "$O_CLI -key data_files/server5.key \
2364 -cert data_files/server5.eku-cs.crt" \
2365 1 \
2366 -s "bad certificate (usage extensions)" \
2367 -s "Processing of the Certificate handshake message failed"
2368
Manuel Pégourié-Gonnard0cc7e312014-06-09 11:36:47 +02002369# Tests for DHM parameters loading
2370
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002371run_test "DHM parameters: reference" \
Manuel Pégourié-Gonnard0cc7e312014-06-09 11:36:47 +02002372 "$P_SRV" \
2373 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2374 debug_level=3" \
2375 0 \
2376 -c "value of 'DHM: P ' (2048 bits)" \
2377 -c "value of 'DHM: G ' (2048 bits)"
2378
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002379run_test "DHM parameters: other parameters" \
Manuel Pégourié-Gonnard0cc7e312014-06-09 11:36:47 +02002380 "$P_SRV dhm_file=data_files/dhparams.pem" \
2381 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2382 debug_level=3" \
2383 0 \
2384 -c "value of 'DHM: P ' (1024 bits)" \
2385 -c "value of 'DHM: G ' (2 bits)"
2386
Manuel Pégourié-Gonnard7a010aa2015-06-12 11:19:10 +02002387# Tests for DHM client-side size checking
2388
2389run_test "DHM size: server default, client default, OK" \
2390 "$P_SRV" \
2391 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2392 debug_level=1" \
2393 0 \
2394 -C "DHM prime too short:"
2395
2396run_test "DHM size: server default, client 2048, OK" \
2397 "$P_SRV" \
2398 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2399 debug_level=1 dhmlen=2048" \
2400 0 \
2401 -C "DHM prime too short:"
2402
2403run_test "DHM size: server 1024, client default, OK" \
2404 "$P_SRV dhm_file=data_files/dhparams.pem" \
2405 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2406 debug_level=1" \
2407 0 \
2408 -C "DHM prime too short:"
2409
2410run_test "DHM size: server 1000, client default, rejected" \
2411 "$P_SRV dhm_file=data_files/dh.1000.pem" \
2412 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2413 debug_level=1" \
2414 1 \
2415 -c "DHM prime too short:"
2416
2417run_test "DHM size: server default, client 2049, rejected" \
2418 "$P_SRV" \
2419 "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \
2420 debug_level=1 dhmlen=2049" \
2421 1 \
2422 -c "DHM prime too short:"
2423
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002424# Tests for PSK callback
2425
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002426run_test "PSK callback: psk, no callback" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002427 "$P_SRV psk=abc123 psk_identity=foo" \
2428 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2429 psk_identity=foo psk=abc123" \
2430 0 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002431 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnard10c3c9f2014-06-10 15:28:52 +02002432 -S "SSL - Unknown identity received" \
2433 -S "SSL - Verification of the message MAC failed"
2434
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002435run_test "PSK callback: no psk, no callback" \
Manuel Pégourié-Gonnard10c3c9f2014-06-10 15:28:52 +02002436 "$P_SRV" \
2437 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2438 psk_identity=foo psk=abc123" \
2439 1 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002440 -s "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002441 -S "SSL - Unknown identity received" \
2442 -S "SSL - Verification of the message MAC failed"
2443
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002444run_test "PSK callback: callback overrides other settings" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002445 "$P_SRV psk=abc123 psk_identity=foo psk_list=abc,dead,def,beef" \
2446 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2447 psk_identity=foo psk=abc123" \
2448 1 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002449 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002450 -s "SSL - Unknown identity received" \
2451 -S "SSL - Verification of the message MAC failed"
2452
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002453run_test "PSK callback: first id matches" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002454 "$P_SRV psk_list=abc,dead,def,beef" \
2455 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2456 psk_identity=abc psk=dead" \
2457 0 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002458 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002459 -S "SSL - Unknown identity received" \
2460 -S "SSL - Verification of the message MAC failed"
2461
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002462run_test "PSK callback: second id matches" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002463 "$P_SRV psk_list=abc,dead,def,beef" \
2464 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2465 psk_identity=def psk=beef" \
2466 0 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002467 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002468 -S "SSL - Unknown identity received" \
2469 -S "SSL - Verification of the message MAC failed"
2470
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002471run_test "PSK callback: no match" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002472 "$P_SRV psk_list=abc,dead,def,beef" \
2473 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2474 psk_identity=ghi psk=beef" \
2475 1 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002476 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002477 -s "SSL - Unknown identity received" \
2478 -S "SSL - Verification of the message MAC failed"
2479
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002480run_test "PSK callback: wrong key" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002481 "$P_SRV psk_list=abc,dead,def,beef" \
2482 "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \
2483 psk_identity=abc psk=beef" \
2484 1 \
Manuel Pégourié-Gonnardf01768c2015-01-08 17:06:16 +01002485 -S "SSL - None of the common ciphersuites is usable" \
Manuel Pégourié-Gonnarda6781c92014-06-10 15:00:46 +02002486 -S "SSL - Unknown identity received" \
2487 -s "SSL - Verification of the message MAC failed"
Manuel Pégourié-Gonnard0cc7e312014-06-09 11:36:47 +02002488
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002489# Tests for ciphersuites per version
2490
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002491run_test "Per-version suites: SSL3" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002492 "$P_SRV min_version=ssl3 version_suites=TLS-RSA-WITH-3DES-EDE-CBC-SHA,TLS-RSA-WITH-AES-256-CBC-SHA,TLS-RSA-WITH-AES-128-CBC-SHA,TLS-RSA-WITH-AES-128-GCM-SHA256" \
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002493 "$P_CLI force_version=ssl3" \
2494 0 \
2495 -c "Ciphersuite is TLS-RSA-WITH-3DES-EDE-CBC-SHA"
2496
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002497run_test "Per-version suites: TLS 1.0" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002498 "$P_SRV arc4=1 version_suites=TLS-RSA-WITH-3DES-EDE-CBC-SHA,TLS-RSA-WITH-AES-256-CBC-SHA,TLS-RSA-WITH-AES-128-CBC-SHA,TLS-RSA-WITH-AES-128-GCM-SHA256" \
Manuel Pégourié-Gonnardbd47a582015-01-12 13:43:29 +01002499 "$P_CLI force_version=tls1 arc4=1" \
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002500 0 \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002501 -c "Ciphersuite is TLS-RSA-WITH-AES-256-CBC-SHA"
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002502
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002503run_test "Per-version suites: TLS 1.1" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002504 "$P_SRV version_suites=TLS-RSA-WITH-3DES-EDE-CBC-SHA,TLS-RSA-WITH-AES-256-CBC-SHA,TLS-RSA-WITH-AES-128-CBC-SHA,TLS-RSA-WITH-AES-128-GCM-SHA256" \
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002505 "$P_CLI force_version=tls1_1" \
2506 0 \
2507 -c "Ciphersuite is TLS-RSA-WITH-AES-128-CBC-SHA"
2508
Manuel Pégourié-Gonnard8e03c712014-08-30 21:42:40 +02002509run_test "Per-version suites: TLS 1.2" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002510 "$P_SRV version_suites=TLS-RSA-WITH-3DES-EDE-CBC-SHA,TLS-RSA-WITH-AES-256-CBC-SHA,TLS-RSA-WITH-AES-128-CBC-SHA,TLS-RSA-WITH-AES-128-GCM-SHA256" \
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002511 "$P_CLI force_version=tls1_2" \
2512 0 \
2513 -c "Ciphersuite is TLS-RSA-WITH-AES-128-GCM-SHA256"
2514
Manuel Pégourié-Gonnard4cc8c632015-07-23 12:24:03 +02002515# Test for ClientHello without extensions
2516
Manuel Pégourié-Gonnardd55bc202015-08-04 16:22:30 +02002517requires_gnutls
2518run_test "ClientHello without extensions" \
Manuel Pégourié-Gonnard4cc8c632015-07-23 12:24:03 +02002519 "$P_SRV debug_level=3" \
2520 "$G_CLI --priority=NORMAL:%NO_EXTENSIONS:%DISABLE_SAFE_RENEGOTIATION" \
2521 0 \
2522 -s "dumping 'client hello extensions' (0 bytes)"
2523
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002524# Tests for mbedtls_ssl_get_bytes_avail()
Manuel Pégourié-Gonnard95c0a632014-06-11 18:32:36 +02002525
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002526run_test "mbedtls_ssl_get_bytes_avail: no extra data" \
Manuel Pégourié-Gonnard95c0a632014-06-11 18:32:36 +02002527 "$P_SRV" \
2528 "$P_CLI request_size=100" \
2529 0 \
2530 -s "Read from client: 100 bytes read$"
2531
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002532run_test "mbedtls_ssl_get_bytes_avail: extra data" \
Manuel Pégourié-Gonnard95c0a632014-06-11 18:32:36 +02002533 "$P_SRV" \
2534 "$P_CLI request_size=500" \
2535 0 \
2536 -s "Read from client: 500 bytes read (.*+.*)"
Manuel Pégourié-Gonnard90805a82014-06-11 14:06:01 +02002537
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002538# Tests for small packets
2539
2540run_test "Small packet SSLv3 BlockCipher" \
Manuel Pégourié-Gonnard448ea502015-01-12 11:40:14 +01002541 "$P_SRV min_version=ssl3" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002542 "$P_CLI request_size=1 force_version=ssl3 \
2543 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2544 0 \
2545 -s "Read from client: 1 bytes read"
2546
2547run_test "Small packet SSLv3 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002548 "$P_SRV min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002549 "$P_CLI request_size=1 force_version=ssl3 \
2550 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2551 0 \
2552 -s "Read from client: 1 bytes read"
2553
2554run_test "Small packet TLS 1.0 BlockCipher" \
2555 "$P_SRV" \
2556 "$P_CLI request_size=1 force_version=tls1 \
2557 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2558 0 \
2559 -s "Read from client: 1 bytes read"
2560
Manuel Pégourié-Gonnard169dd6a2014-11-04 16:15:39 +01002561run_test "Small packet TLS 1.0 BlockCipher without EtM" \
2562 "$P_SRV" \
2563 "$P_CLI request_size=1 force_version=tls1 etm=0 \
2564 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2565 0 \
2566 -s "Read from client: 1 bytes read"
2567
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002568run_test "Small packet TLS 1.0 BlockCipher truncated MAC" \
2569 "$P_SRV" \
2570 "$P_CLI request_size=1 force_version=tls1 \
2571 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2572 trunc_hmac=1" \
2573 0 \
2574 -s "Read from client: 1 bytes read"
2575
2576run_test "Small packet TLS 1.0 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002577 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002578 "$P_CLI request_size=1 force_version=tls1 \
2579 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2580 trunc_hmac=1" \
2581 0 \
2582 -s "Read from client: 1 bytes read"
2583
2584run_test "Small packet TLS 1.1 BlockCipher" \
2585 "$P_SRV" \
2586 "$P_CLI request_size=1 force_version=tls1_1 \
2587 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2588 0 \
2589 -s "Read from client: 1 bytes read"
2590
Manuel Pégourié-Gonnard169dd6a2014-11-04 16:15:39 +01002591run_test "Small packet TLS 1.1 BlockCipher without EtM" \
2592 "$P_SRV" \
2593 "$P_CLI request_size=1 force_version=tls1_1 etm=0 \
2594 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2595 0 \
2596 -s "Read from client: 1 bytes read"
2597
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002598run_test "Small packet TLS 1.1 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002599 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002600 "$P_CLI request_size=1 force_version=tls1_1 \
2601 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2602 0 \
2603 -s "Read from client: 1 bytes read"
2604
2605run_test "Small packet TLS 1.1 BlockCipher truncated MAC" \
2606 "$P_SRV" \
2607 "$P_CLI request_size=1 force_version=tls1_1 \
2608 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2609 trunc_hmac=1" \
2610 0 \
2611 -s "Read from client: 1 bytes read"
2612
2613run_test "Small packet TLS 1.1 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002614 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002615 "$P_CLI request_size=1 force_version=tls1_1 \
2616 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2617 trunc_hmac=1" \
2618 0 \
2619 -s "Read from client: 1 bytes read"
2620
2621run_test "Small packet TLS 1.2 BlockCipher" \
2622 "$P_SRV" \
2623 "$P_CLI request_size=1 force_version=tls1_2 \
2624 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2625 0 \
2626 -s "Read from client: 1 bytes read"
2627
Manuel Pégourié-Gonnard169dd6a2014-11-04 16:15:39 +01002628run_test "Small packet TLS 1.2 BlockCipher without EtM" \
2629 "$P_SRV" \
2630 "$P_CLI request_size=1 force_version=tls1_2 etm=0 \
2631 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2632 0 \
2633 -s "Read from client: 1 bytes read"
2634
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002635run_test "Small packet TLS 1.2 BlockCipher larger MAC" \
2636 "$P_SRV" \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002637 "$P_CLI request_size=1 force_version=tls1_2 \
2638 force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002639 0 \
2640 -s "Read from client: 1 bytes read"
2641
2642run_test "Small packet TLS 1.2 BlockCipher truncated MAC" \
2643 "$P_SRV" \
2644 "$P_CLI request_size=1 force_version=tls1_2 \
2645 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2646 trunc_hmac=1" \
2647 0 \
2648 -s "Read from client: 1 bytes read"
2649
2650run_test "Small packet TLS 1.2 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002651 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002652 "$P_CLI request_size=1 force_version=tls1_2 \
2653 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2654 0 \
2655 -s "Read from client: 1 bytes read"
2656
2657run_test "Small packet TLS 1.2 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002658 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnardee415032014-06-18 15:08:56 +02002659 "$P_CLI request_size=1 force_version=tls1_2 \
2660 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2661 trunc_hmac=1" \
2662 0 \
2663 -s "Read from client: 1 bytes read"
2664
2665run_test "Small packet TLS 1.2 AEAD" \
2666 "$P_SRV" \
2667 "$P_CLI request_size=1 force_version=tls1_2 \
2668 force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \
2669 0 \
2670 -s "Read from client: 1 bytes read"
2671
2672run_test "Small packet TLS 1.2 AEAD shorter tag" \
2673 "$P_SRV" \
2674 "$P_CLI request_size=1 force_version=tls1_2 \
2675 force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \
2676 0 \
2677 -s "Read from client: 1 bytes read"
2678
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002679# Test for large packets
2680
2681run_test "Large packet SSLv3 BlockCipher" \
Manuel Pégourié-Gonnard448ea502015-01-12 11:40:14 +01002682 "$P_SRV min_version=ssl3" \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002683 "$P_CLI request_size=16384 force_version=ssl3 recsplit=0 \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002684 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2685 0 \
2686 -s "Read from client: 16384 bytes read"
2687
2688run_test "Large packet SSLv3 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002689 "$P_SRV min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002690 "$P_CLI request_size=16384 force_version=ssl3 \
2691 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2692 0 \
2693 -s "Read from client: 16384 bytes read"
2694
2695run_test "Large packet TLS 1.0 BlockCipher" \
2696 "$P_SRV" \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002697 "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002698 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2699 0 \
2700 -s "Read from client: 16384 bytes read"
2701
2702run_test "Large packet TLS 1.0 BlockCipher truncated MAC" \
2703 "$P_SRV" \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002704 "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002705 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2706 trunc_hmac=1" \
2707 0 \
2708 -s "Read from client: 16384 bytes read"
2709
2710run_test "Large packet TLS 1.0 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002711 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002712 "$P_CLI request_size=16384 force_version=tls1 \
2713 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2714 trunc_hmac=1" \
2715 0 \
2716 -s "Read from client: 16384 bytes read"
2717
2718run_test "Large packet TLS 1.1 BlockCipher" \
2719 "$P_SRV" \
2720 "$P_CLI request_size=16384 force_version=tls1_1 \
2721 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2722 0 \
2723 -s "Read from client: 16384 bytes read"
2724
2725run_test "Large packet TLS 1.1 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002726 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002727 "$P_CLI request_size=16384 force_version=tls1_1 \
2728 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2729 0 \
2730 -s "Read from client: 16384 bytes read"
2731
2732run_test "Large packet TLS 1.1 BlockCipher truncated MAC" \
2733 "$P_SRV" \
2734 "$P_CLI request_size=16384 force_version=tls1_1 \
2735 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2736 trunc_hmac=1" \
2737 0 \
2738 -s "Read from client: 16384 bytes read"
2739
2740run_test "Large packet TLS 1.1 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002741 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002742 "$P_CLI request_size=16384 force_version=tls1_1 \
2743 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2744 trunc_hmac=1" \
2745 0 \
2746 -s "Read from client: 16384 bytes read"
2747
2748run_test "Large packet TLS 1.2 BlockCipher" \
2749 "$P_SRV" \
2750 "$P_CLI request_size=16384 force_version=tls1_2 \
2751 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \
2752 0 \
2753 -s "Read from client: 16384 bytes read"
2754
2755run_test "Large packet TLS 1.2 BlockCipher larger MAC" \
2756 "$P_SRV" \
Manuel Pégourié-Gonnardc82ee352015-01-07 16:35:25 +01002757 "$P_CLI request_size=16384 force_version=tls1_2 \
2758 force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002759 0 \
2760 -s "Read from client: 16384 bytes read"
2761
2762run_test "Large packet TLS 1.2 BlockCipher truncated MAC" \
2763 "$P_SRV" \
2764 "$P_CLI request_size=16384 force_version=tls1_2 \
2765 force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \
2766 trunc_hmac=1" \
2767 0 \
2768 -s "Read from client: 16384 bytes read"
2769
2770run_test "Large packet TLS 1.2 StreamCipher" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002771 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002772 "$P_CLI request_size=16384 force_version=tls1_2 \
2773 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
2774 0 \
2775 -s "Read from client: 16384 bytes read"
2776
2777run_test "Large packet TLS 1.2 StreamCipher truncated MAC" \
Manuel Pégourié-Gonnardea0920f2015-03-24 09:50:15 +01002778 "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \
Manuel Pégourié-Gonnard8920f692014-06-18 22:05:08 +02002779 "$P_CLI request_size=16384 force_version=tls1_2 \
2780 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \
2781 trunc_hmac=1" \
2782 0 \
2783 -s "Read from client: 16384 bytes read"
2784
2785run_test "Large packet TLS 1.2 AEAD" \
2786 "$P_SRV" \
2787 "$P_CLI request_size=16384 force_version=tls1_2 \
2788 force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \
2789 0 \
2790 -s "Read from client: 16384 bytes read"
2791
2792run_test "Large packet TLS 1.2 AEAD shorter tag" \
2793 "$P_SRV" \
2794 "$P_CLI request_size=16384 force_version=tls1_2 \
2795 force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \
2796 0 \
2797 -s "Read from client: 16384 bytes read"
2798
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02002799# Tests for DTLS HelloVerifyRequest
2800
2801run_test "DTLS cookie: enabled" \
2802 "$P_SRV dtls=1 debug_level=2" \
2803 "$P_CLI dtls=1 debug_level=2" \
2804 0 \
2805 -s "cookie verification failed" \
2806 -s "cookie verification passed" \
2807 -S "cookie verification skipped" \
2808 -c "received hello verify request" \
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02002809 -s "hello verification requested" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02002810 -S "SSL - The requested feature is not available"
2811
2812run_test "DTLS cookie: disabled" \
2813 "$P_SRV dtls=1 debug_level=2 cookies=0" \
2814 "$P_CLI dtls=1 debug_level=2" \
2815 0 \
2816 -S "cookie verification failed" \
2817 -S "cookie verification passed" \
2818 -s "cookie verification skipped" \
2819 -C "received hello verify request" \
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02002820 -S "hello verification requested" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02002821 -S "SSL - The requested feature is not available"
2822
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02002823run_test "DTLS cookie: default (failing)" \
2824 "$P_SRV dtls=1 debug_level=2 cookies=-1" \
2825 "$P_CLI dtls=1 debug_level=2 hs_timeout=100-400" \
2826 1 \
2827 -s "cookie verification failed" \
2828 -S "cookie verification passed" \
2829 -S "cookie verification skipped" \
2830 -C "received hello verify request" \
2831 -S "hello verification requested" \
2832 -s "SSL - The requested feature is not available"
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02002833
2834requires_ipv6
2835run_test "DTLS cookie: enabled, IPv6" \
2836 "$P_SRV dtls=1 debug_level=2 server_addr=::1" \
2837 "$P_CLI dtls=1 debug_level=2 server_addr=::1" \
2838 0 \
2839 -s "cookie verification failed" \
2840 -s "cookie verification passed" \
2841 -S "cookie verification skipped" \
2842 -c "received hello verify request" \
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02002843 -s "hello verification requested" \
Manuel Pégourié-Gonnard0eb6cab2014-07-23 20:17:47 +02002844 -S "SSL - The requested feature is not available"
2845
Manuel Pégourié-Gonnard579950c2014-09-29 17:47:33 +02002846run_test "DTLS cookie: enabled, nbio" \
2847 "$P_SRV dtls=1 nbio=2 debug_level=2" \
2848 "$P_CLI dtls=1 nbio=2 debug_level=2" \
2849 0 \
2850 -s "cookie verification failed" \
2851 -s "cookie verification passed" \
2852 -S "cookie verification skipped" \
2853 -c "received hello verify request" \
Manuel Pégourié-Gonnardcaecdae2014-10-13 19:04:37 +02002854 -s "hello verification requested" \
Manuel Pégourié-Gonnard579950c2014-09-29 17:47:33 +02002855 -S "SSL - The requested feature is not available"
2856
Manuel Pégourié-Gonnard08a1d4b2014-09-26 10:35:50 +02002857# Tests for various cases of client authentication with DTLS
2858# (focused on handshake flows and message parsing)
2859
2860run_test "DTLS client auth: required" \
2861 "$P_SRV dtls=1 auth_mode=required" \
2862 "$P_CLI dtls=1" \
2863 0 \
2864 -s "Verifying peer X.509 certificate... ok"
2865
2866run_test "DTLS client auth: optional, client has no cert" \
2867 "$P_SRV dtls=1 auth_mode=optional" \
2868 "$P_CLI dtls=1 crt_file=none key_file=none" \
2869 0 \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002870 -s "! Certificate was missing"
Manuel Pégourié-Gonnard08a1d4b2014-09-26 10:35:50 +02002871
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002872run_test "DTLS client auth: none, client has no cert" \
Manuel Pégourié-Gonnard08a1d4b2014-09-26 10:35:50 +02002873 "$P_SRV dtls=1 auth_mode=none" \
2874 "$P_CLI dtls=1 crt_file=none key_file=none debug_level=2" \
2875 0 \
2876 -c "skip write certificate$" \
Manuel Pégourié-Gonnard89addc42015-04-20 10:56:18 +01002877 -s "! Certificate verification was skipped"
Manuel Pégourié-Gonnard08a1d4b2014-09-26 10:35:50 +02002878
Manuel Pégourié-Gonnard0a885742015-08-04 12:08:35 +02002879run_test "DTLS wrong PSK: badmac alert" \
2880 "$P_SRV dtls=1 psk=abc123 force_ciphersuite=TLS-PSK-WITH-AES-128-GCM-SHA256" \
2881 "$P_CLI dtls=1 psk=abc124" \
2882 1 \
2883 -s "SSL - Verification of the message MAC failed" \
2884 -c "SSL - A fatal alert message was received from our peer"
2885
Manuel Pégourié-Gonnard502bf302014-08-20 13:12:58 +02002886# Tests for receiving fragmented handshake messages with DTLS
2887
2888requires_gnutls
2889run_test "DTLS reassembly: no fragmentation (gnutls server)" \
2890 "$G_SRV -u --mtu 2048 -a" \
2891 "$P_CLI dtls=1 debug_level=2" \
2892 0 \
2893 -C "found fragmented DTLS handshake message" \
2894 -C "error"
2895
2896requires_gnutls
2897run_test "DTLS reassembly: some fragmentation (gnutls server)" \
2898 "$G_SRV -u --mtu 512" \
2899 "$P_CLI dtls=1 debug_level=2" \
2900 0 \
2901 -c "found fragmented DTLS handshake message" \
2902 -C "error"
2903
2904requires_gnutls
2905run_test "DTLS reassembly: more fragmentation (gnutls server)" \
2906 "$G_SRV -u --mtu 128" \
2907 "$P_CLI dtls=1 debug_level=2" \
2908 0 \
2909 -c "found fragmented DTLS handshake message" \
2910 -C "error"
2911
2912requires_gnutls
2913run_test "DTLS reassembly: more fragmentation, nbio (gnutls server)" \
2914 "$G_SRV -u --mtu 128" \
2915 "$P_CLI dtls=1 nbio=2 debug_level=2" \
2916 0 \
2917 -c "found fragmented DTLS handshake message" \
2918 -C "error"
2919
Manuel Pégourié-Gonnard0c4cbc72014-09-02 14:47:31 +02002920requires_gnutls
Manuel Pégourié-Gonnard0c4cbc72014-09-02 14:47:31 +02002921run_test "DTLS reassembly: fragmentation, renego (gnutls server)" \
2922 "$G_SRV -u --mtu 256" \
2923 "$P_CLI debug_level=3 dtls=1 renegotiation=1 renegotiate=1" \
2924 0 \
2925 -c "found fragmented DTLS handshake message" \
2926 -c "client hello, adding renegotiation extension" \
2927 -c "found renegotiation extension" \
2928 -c "=> renegotiate" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002929 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0c4cbc72014-09-02 14:47:31 +02002930 -C "error" \
2931 -s "Extra-header:"
2932
2933requires_gnutls
Manuel Pégourié-Gonnard0c4cbc72014-09-02 14:47:31 +02002934run_test "DTLS reassembly: fragmentation, nbio, renego (gnutls server)" \
2935 "$G_SRV -u --mtu 256" \
2936 "$P_CLI debug_level=3 nbio=2 dtls=1 renegotiation=1 renegotiate=1" \
2937 0 \
2938 -c "found fragmented DTLS handshake message" \
2939 -c "client hello, adding renegotiation extension" \
2940 -c "found renegotiation extension" \
2941 -c "=> renegotiate" \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02002942 -C "mbedtls_ssl_handshake returned" \
Manuel Pégourié-Gonnard0c4cbc72014-09-02 14:47:31 +02002943 -C "error" \
2944 -s "Extra-header:"
2945
Manuel Pégourié-Gonnarda7756172014-08-31 18:37:01 +02002946run_test "DTLS reassembly: no fragmentation (openssl server)" \
2947 "$O_SRV -dtls1 -mtu 2048" \
2948 "$P_CLI dtls=1 debug_level=2" \
2949 0 \
2950 -C "found fragmented DTLS handshake message" \
2951 -C "error"
2952
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02002953run_test "DTLS reassembly: some fragmentation (openssl server)" \
2954 "$O_SRV -dtls1 -mtu 768" \
Manuel Pégourié-Gonnard64dffc52014-09-02 13:39:16 +02002955 "$P_CLI dtls=1 debug_level=2" \
2956 0 \
2957 -c "found fragmented DTLS handshake message" \
2958 -C "error"
2959
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02002960run_test "DTLS reassembly: more fragmentation (openssl server)" \
Manuel Pégourié-Gonnard64dffc52014-09-02 13:39:16 +02002961 "$O_SRV -dtls1 -mtu 256" \
2962 "$P_CLI dtls=1 debug_level=2" \
2963 0 \
2964 -c "found fragmented DTLS handshake message" \
2965 -C "error"
2966
2967run_test "DTLS reassembly: fragmentation, nbio (openssl server)" \
2968 "$O_SRV -dtls1 -mtu 256" \
2969 "$P_CLI dtls=1 nbio=2 debug_level=2" \
2970 0 \
2971 -c "found fragmented DTLS handshake message" \
2972 -C "error"
Manuel Pégourié-Gonnarda7756172014-08-31 18:37:01 +02002973
Manuel Pégourié-Gonnard7a66cbc2014-09-26 16:31:46 +02002974# Tests for specific things with "unreliable" UDP connection
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +02002975
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02002976not_with_valgrind # spurious resend due to timeout
Manuel Pégourié-Gonnard990f9e42014-09-06 12:27:02 +02002977run_test "DTLS proxy: reference" \
Manuel Pégourié-Gonnardbe9eb872014-09-05 17:45:19 +02002978 -p "$P_PXY" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02002979 "$P_SRV dtls=1 debug_level=2" \
2980 "$P_CLI dtls=1 debug_level=2" \
Manuel Pégourié-Gonnard990f9e42014-09-06 12:27:02 +02002981 0 \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02002982 -C "replayed record" \
2983 -S "replayed record" \
2984 -C "record from another epoch" \
2985 -S "record from another epoch" \
2986 -C "discarding invalid record" \
2987 -S "discarding invalid record" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02002988 -S "resend" \
Manuel Pégourié-Gonnard63eca932014-09-08 16:39:08 +02002989 -s "Extra-header:" \
Manuel Pégourié-Gonnard990f9e42014-09-06 12:27:02 +02002990 -c "HTTP/1.0 200 OK"
2991
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02002992not_with_valgrind # spurious resend due to timeout
Manuel Pégourié-Gonnardb47368a2014-09-24 13:29:58 +02002993run_test "DTLS proxy: duplicate every packet" \
Manuel Pégourié-Gonnard990f9e42014-09-06 12:27:02 +02002994 -p "$P_PXY duplicate=1" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02002995 "$P_SRV dtls=1 debug_level=2" \
2996 "$P_CLI dtls=1 debug_level=2" \
Manuel Pégourié-Gonnard990f9e42014-09-06 12:27:02 +02002997 0 \
Manuel Pégourié-Gonnardb47368a2014-09-24 13:29:58 +02002998 -c "replayed record" \
2999 -s "replayed record" \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02003000 -c "discarding invalid record" \
3001 -s "discarding invalid record" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02003002 -S "resend" \
Manuel Pégourié-Gonnard63eca932014-09-08 16:39:08 +02003003 -s "Extra-header:" \
3004 -c "HTTP/1.0 200 OK"
3005
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02003006run_test "DTLS proxy: duplicate every packet, server anti-replay off" \
3007 -p "$P_PXY duplicate=1" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02003008 "$P_SRV dtls=1 debug_level=2 anti_replay=0" \
3009 "$P_CLI dtls=1 debug_level=2" \
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02003010 0 \
3011 -c "replayed record" \
3012 -S "replayed record" \
3013 -c "discarding invalid record" \
3014 -s "discarding invalid record" \
Manuel Pégourié-Gonnard76fe9e42014-09-24 15:17:31 +02003015 -c "resend" \
3016 -s "resend" \
Manuel Pégourié-Gonnard27393132014-09-24 14:41:11 +02003017 -s "Extra-header:" \
3018 -c "HTTP/1.0 200 OK"
3019
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003020run_test "DTLS proxy: inject invalid AD record, default badmac_limit" \
Manuel Pégourié-Gonnard63eca932014-09-08 16:39:08 +02003021 -p "$P_PXY bad_ad=1" \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02003022 "$P_SRV dtls=1 debug_level=1" \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003023 "$P_CLI dtls=1 debug_level=1 read_timeout=100" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003024 0 \
Manuel Pégourié-Gonnard74a13782014-10-14 22:34:08 +02003025 -c "discarding invalid record (mac)" \
3026 -s "discarding invalid record (mac)" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003027 -s "Extra-header:" \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003028 -c "HTTP/1.0 200 OK" \
3029 -S "too many records with bad MAC" \
3030 -S "Verification of the message MAC failed"
3031
3032run_test "DTLS proxy: inject invalid AD record, badmac_limit 1" \
3033 -p "$P_PXY bad_ad=1" \
3034 "$P_SRV dtls=1 debug_level=1 badmac_limit=1" \
3035 "$P_CLI dtls=1 debug_level=1 read_timeout=100" \
3036 1 \
Manuel Pégourié-Gonnard74a13782014-10-14 22:34:08 +02003037 -C "discarding invalid record (mac)" \
3038 -S "discarding invalid record (mac)" \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003039 -S "Extra-header:" \
3040 -C "HTTP/1.0 200 OK" \
3041 -s "too many records with bad MAC" \
3042 -s "Verification of the message MAC failed"
3043
3044run_test "DTLS proxy: inject invalid AD record, badmac_limit 2" \
3045 -p "$P_PXY bad_ad=1" \
3046 "$P_SRV dtls=1 debug_level=1 badmac_limit=2" \
3047 "$P_CLI dtls=1 debug_level=1 read_timeout=100" \
3048 0 \
Manuel Pégourié-Gonnard74a13782014-10-14 22:34:08 +02003049 -c "discarding invalid record (mac)" \
3050 -s "discarding invalid record (mac)" \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003051 -s "Extra-header:" \
3052 -c "HTTP/1.0 200 OK" \
3053 -S "too many records with bad MAC" \
3054 -S "Verification of the message MAC failed"
3055
3056run_test "DTLS proxy: inject invalid AD record, badmac_limit 2, exchanges 2"\
3057 -p "$P_PXY bad_ad=1" \
3058 "$P_SRV dtls=1 debug_level=1 badmac_limit=2 exchanges=2" \
3059 "$P_CLI dtls=1 debug_level=1 read_timeout=100 exchanges=2" \
3060 1 \
Manuel Pégourié-Gonnard74a13782014-10-14 22:34:08 +02003061 -c "discarding invalid record (mac)" \
3062 -s "discarding invalid record (mac)" \
Manuel Pégourié-Gonnarde698f592014-10-14 19:36:36 +02003063 -s "Extra-header:" \
3064 -c "HTTP/1.0 200 OK" \
3065 -s "too many records with bad MAC" \
3066 -s "Verification of the message MAC failed"
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003067
3068run_test "DTLS proxy: delay ChangeCipherSpec" \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02003069 -p "$P_PXY delay_ccs=1" \
3070 "$P_SRV dtls=1 debug_level=1" \
3071 "$P_CLI dtls=1 debug_level=1" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003072 0 \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02003073 -c "record from another epoch" \
3074 -s "record from another epoch" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003075 -c "discarding invalid record" \
Manuel Pégourié-Gonnard246c13a2014-09-24 13:56:09 +02003076 -s "discarding invalid record" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003077 -s "Extra-header:" \
3078 -c "HTTP/1.0 200 OK"
3079
Manuel Pégourié-Gonnard7a66cbc2014-09-26 16:31:46 +02003080# Tests for "randomly unreliable connection": try a variety of flows and peers
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003081
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003082needs_more_time 2
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003083run_test "DTLS proxy: 3d (drop, delay, duplicate), \"short\" PSK handshake" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003084 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003085 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
3086 psk=abc123" \
3087 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003088 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3089 0 \
3090 -s "Extra-header:" \
3091 -c "HTTP/1.0 200 OK"
3092
3093needs_more_time 2
3094run_test "DTLS proxy: 3d, \"short\" RSA handshake" \
3095 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003096 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \
3097 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 \
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003098 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \
3099 0 \
3100 -s "Extra-header:" \
3101 -c "HTTP/1.0 200 OK"
3102
3103needs_more_time 2
3104run_test "DTLS proxy: 3d, \"short\" (no ticket, no cli_auth) FS handshake" \
3105 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003106 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \
3107 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003108 0 \
3109 -s "Extra-header:" \
3110 -c "HTTP/1.0 200 OK"
3111
3112needs_more_time 2
3113run_test "DTLS proxy: 3d, FS, client auth" \
3114 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003115 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=required" \
3116 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003117 0 \
3118 -s "Extra-header:" \
3119 -c "HTTP/1.0 200 OK"
3120
3121needs_more_time 2
3122run_test "DTLS proxy: 3d, FS, ticket" \
3123 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003124 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=none" \
3125 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \
Manuel Pégourié-Gonnard18e519a2014-09-24 19:09:17 +02003126 0 \
3127 -s "Extra-header:" \
3128 -c "HTTP/1.0 200 OK"
3129
3130needs_more_time 2
3131run_test "DTLS proxy: 3d, max handshake (FS, ticket + client auth)" \
3132 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003133 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=required" \
3134 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \
Manuel Pégourié-Gonnard825a49e2014-09-23 11:00:37 +02003135 0 \
3136 -s "Extra-header:" \
3137 -c "HTTP/1.0 200 OK"
3138
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003139needs_more_time 2
3140run_test "DTLS proxy: 3d, max handshake, nbio" \
3141 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003142 "$P_SRV dtls=1 hs_timeout=250-10000 nbio=2 tickets=1 \
3143 auth_mode=required" \
3144 "$P_CLI dtls=1 hs_timeout=250-10000 nbio=2 tickets=1" \
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003145 0 \
3146 -s "Extra-header:" \
3147 -c "HTTP/1.0 200 OK"
3148
Manuel Pégourié-Gonnard1b753f12014-09-25 16:09:36 +02003149needs_more_time 4
Manuel Pégourié-Gonnard7a26d732014-10-02 14:50:46 +02003150run_test "DTLS proxy: 3d, min handshake, resumption" \
3151 -p "$P_PXY drop=5 delay=5 duplicate=5" \
3152 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
3153 psk=abc123 debug_level=3" \
3154 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
3155 debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \
3156 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3157 0 \
3158 -s "a session has been resumed" \
3159 -c "a session has been resumed" \
3160 -s "Extra-header:" \
3161 -c "HTTP/1.0 200 OK"
3162
3163needs_more_time 4
Manuel Pégourié-Gonnard85beb302014-10-02 17:59:19 +02003164run_test "DTLS proxy: 3d, min handshake, resumption, nbio" \
3165 -p "$P_PXY drop=5 delay=5 duplicate=5" \
3166 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
3167 psk=abc123 debug_level=3 nbio=2" \
3168 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
3169 debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \
3170 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8 nbio=2" \
3171 0 \
3172 -s "a session has been resumed" \
3173 -c "a session has been resumed" \
3174 -s "Extra-header:" \
3175 -c "HTTP/1.0 200 OK"
3176
3177needs_more_time 4
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003178run_test "DTLS proxy: 3d, min handshake, client-initiated renego" \
Manuel Pégourié-Gonnard1b753f12014-09-25 16:09:36 +02003179 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003180 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
3181 psk=abc123 renegotiation=1 debug_level=2" \
3182 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
3183 renegotiate=1 debug_level=2 \
Manuel Pégourié-Gonnard1b753f12014-09-25 16:09:36 +02003184 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3185 0 \
3186 -c "=> renegotiate" \
3187 -s "=> renegotiate" \
3188 -s "Extra-header:" \
3189 -c "HTTP/1.0 200 OK"
3190
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003191needs_more_time 4
3192run_test "DTLS proxy: 3d, min handshake, client-initiated renego, nbio" \
3193 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnard37a4de22014-10-01 16:38:03 +02003194 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
3195 psk=abc123 renegotiation=1 debug_level=2" \
3196 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
3197 renegotiate=1 debug_level=2 \
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003198 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3199 0 \
3200 -c "=> renegotiate" \
3201 -s "=> renegotiate" \
3202 -s "Extra-header:" \
3203 -c "HTTP/1.0 200 OK"
3204
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003205needs_more_time 4
3206run_test "DTLS proxy: 3d, min handshake, server-initiated renego" \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003207 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003208 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003209 psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003210 debug_level=2" \
3211 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003212 renegotiation=1 exchanges=4 debug_level=2 \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003213 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3214 0 \
3215 -c "=> renegotiate" \
3216 -s "=> renegotiate" \
3217 -s "Extra-header:" \
3218 -c "HTTP/1.0 200 OK"
3219
3220needs_more_time 4
3221run_test "DTLS proxy: 3d, min handshake, server-initiated renego, nbio" \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003222 -p "$P_PXY drop=5 delay=5 duplicate=5" \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003223 "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003224 psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003225 debug_level=2 nbio=2" \
3226 "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \
Manuel Pégourié-Gonnarda6ace042014-10-15 12:44:41 +02003227 renegotiation=1 exchanges=4 debug_level=2 nbio=2 \
Manuel Pégourié-Gonnardba958b82014-10-09 16:13:44 +02003228 force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \
3229 0 \
3230 -c "=> renegotiate" \
3231 -s "=> renegotiate" \
3232 -s "Extra-header:" \
3233 -c "HTTP/1.0 200 OK"
3234
Manuel Pégourié-Gonnard127ab882014-10-09 17:59:32 +02003235needs_more_time 6
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003236run_test "DTLS proxy: 3d, openssl server" \
Manuel Pégourié-Gonnardd0fd1da2014-09-25 17:00:27 +02003237 -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \
3238 "$O_SRV -dtls1 -mtu 2048" \
Manuel Pégourié-Gonnard8fe411e2015-03-09 16:09:53 +00003239 "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \
Manuel Pégourié-Gonnardd0fd1da2014-09-25 17:00:27 +02003240 0 \
3241 -s "Extra-header:" \
3242 -c "HTTP/1.0 200 OK"
3243
Manuel Pégourié-Gonnard22404862015-05-14 12:11:45 +02003244needs_more_time 8
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003245run_test "DTLS proxy: 3d, openssl server, fragmentation" \
3246 -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \
3247 "$O_SRV -dtls1 -mtu 768" \
Manuel Pégourié-Gonnard8fe411e2015-03-09 16:09:53 +00003248 "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003249 0 \
3250 -s "Extra-header:" \
3251 -c "HTTP/1.0 200 OK"
3252
Manuel Pégourié-Gonnard22404862015-05-14 12:11:45 +02003253needs_more_time 8
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003254run_test "DTLS proxy: 3d, openssl server, fragmentation, nbio" \
3255 -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \
3256 "$O_SRV -dtls1 -mtu 768" \
Manuel Pégourié-Gonnard8fe411e2015-03-09 16:09:53 +00003257 "$P_CLI dtls=1 hs_timeout=250-60000 nbio=2 tickets=0" \
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003258 0 \
3259 -s "Extra-header:" \
3260 -c "HTTP/1.0 200 OK"
3261
Manuel Pégourié-Gonnard96999962015-02-17 16:02:37 +00003262requires_gnutls
Manuel Pégourié-Gonnard127ab882014-10-09 17:59:32 +02003263needs_more_time 6
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003264run_test "DTLS proxy: 3d, gnutls server" \
3265 -p "$P_PXY drop=5 delay=5 duplicate=5" \
3266 "$G_SRV -u --mtu 2048 -a" \
Manuel Pégourié-Gonnardf1384472014-10-14 22:57:46 +02003267 "$P_CLI dtls=1 hs_timeout=250-60000" \
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003268 0 \
3269 -s "Extra-header:" \
3270 -c "Extra-header:"
3271
Manuel Pégourié-Gonnard96999962015-02-17 16:02:37 +00003272requires_gnutls
Manuel Pégourié-Gonnard22404862015-05-14 12:11:45 +02003273needs_more_time 8
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003274run_test "DTLS proxy: 3d, gnutls server, fragmentation" \
3275 -p "$P_PXY drop=5 delay=5 duplicate=5" \
3276 "$G_SRV -u --mtu 512" \
Manuel Pégourié-Gonnardf1384472014-10-14 22:57:46 +02003277 "$P_CLI dtls=1 hs_timeout=250-60000" \
Manuel Pégourié-Gonnard9590e0a2014-09-26 16:27:59 +02003278 0 \
3279 -s "Extra-header:" \
3280 -c "Extra-header:"
3281
Manuel Pégourié-Gonnard96999962015-02-17 16:02:37 +00003282requires_gnutls
Manuel Pégourié-Gonnard22404862015-05-14 12:11:45 +02003283needs_more_time 8
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003284run_test "DTLS proxy: 3d, gnutls server, fragmentation, nbio" \
3285 -p "$P_PXY drop=5 delay=5 duplicate=5" \
3286 "$G_SRV -u --mtu 512" \
Manuel Pégourié-Gonnardf1384472014-10-14 22:57:46 +02003287 "$P_CLI dtls=1 hs_timeout=250-60000 nbio=2" \
Manuel Pégourié-Gonnard6093d812014-09-29 17:52:57 +02003288 0 \
3289 -s "Extra-header:" \
3290 -c "Extra-header:"
3291
Manuel Pégourié-Gonnard8520dac2014-02-21 12:12:23 +01003292# Final report
3293
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +01003294echo "------------------------------------------------------------------------"
3295
3296if [ $FAILS = 0 ]; then
Manuel Pégourié-Gonnardf46f1282014-12-11 11:51:28 +01003297 printf "PASSED"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +01003298else
Manuel Pégourié-Gonnardf46f1282014-12-11 11:51:28 +01003299 printf "FAILED"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +01003300fi
Manuel Pégourié-Gonnard72e51ee2014-08-31 10:22:11 +02003301PASSES=$(( $TESTS - $FAILS ))
Manuel Pégourié-Gonnard6f4fbbb2014-08-14 14:31:29 +02003302echo " ($PASSES / $TESTS tests ($SKIPS skipped))"
Manuel Pégourié-Gonnard33a752e2014-02-21 09:47:37 +01003303
3304exit $FAILS