Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
Simon Butcher | 58eddef | 2016-05-19 23:43:11 +0100 | [diff] [blame] | 3 | # ssl-opt.sh |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 4 | # |
Simon Butcher | 58eddef | 2016-05-19 23:43:11 +0100 | [diff] [blame] | 5 | # This file is part of mbed TLS (https://tls.mbed.org) |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 6 | # |
Simon Butcher | 58eddef | 2016-05-19 23:43:11 +0100 | [diff] [blame] | 7 | # Copyright (c) 2016, ARM Limited, All Rights Reserved |
| 8 | # |
| 9 | # Purpose |
| 10 | # |
| 11 | # Executes tests to prove various TLS/SSL options and extensions. |
| 12 | # |
| 13 | # The goal is not to cover every ciphersuite/version, but instead to cover |
| 14 | # specific options (max fragment length, truncated hmac, etc) or procedures |
| 15 | # (session resumption from cache or ticket, renego, etc). |
| 16 | # |
| 17 | # The tests assume a build with default options, with exceptions expressed |
| 18 | # with a dependency. The tests focus on functionality and do not consider |
| 19 | # performance. |
| 20 | # |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 21 | |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 22 | set -u |
| 23 | |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 24 | # default values, can be overriden by the environment |
| 25 | : ${P_SRV:=../programs/ssl/ssl_server2} |
| 26 | : ${P_CLI:=../programs/ssl/ssl_client2} |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 27 | : ${P_PXY:=../programs/test/udp_proxy} |
Manuel Pégourié-Gonnard | 74faf3c | 2014-03-13 18:47:44 +0100 | [diff] [blame] | 28 | : ${OPENSSL_CMD:=openssl} # OPENSSL would conflict with the build system |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 29 | : ${GNUTLS_CLI:=gnutls-cli} |
| 30 | : ${GNUTLS_SERV:=gnutls-serv} |
Gilles Peskine | d50177f | 2017-05-16 17:53:03 +0200 | [diff] [blame] | 31 | : ${PERL:=perl} |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 32 | |
Manuel Pégourié-Gonnard | fa60f12 | 2014-09-26 16:07:29 +0200 | [diff] [blame] | 33 | O_SRV="$OPENSSL_CMD s_server -www -cert data_files/server5.crt -key data_files/server5.key" |
Manuel Pégourié-Gonnard | 74faf3c | 2014-03-13 18:47:44 +0100 | [diff] [blame] | 34 | O_CLI="echo 'GET / HTTP/1.0' | $OPENSSL_CMD s_client" |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 35 | G_SRV="$GNUTLS_SERV --x509certfile data_files/server5.crt --x509keyfile data_files/server5.key" |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 36 | G_CLI="echo 'GET / HTTP/1.0' | $GNUTLS_CLI --x509cafile data_files/test-ca_cat12.crt" |
Gilles Peskine | d50177f | 2017-05-16 17:53:03 +0200 | [diff] [blame] | 37 | TCP_CLIENT="$PERL scripts/tcp_client.pl" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 38 | |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 39 | TESTS=0 |
| 40 | FAILS=0 |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 41 | SKIPS=0 |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 42 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 43 | CONFIG_H='../include/mbedtls/config.h' |
Manuel Pégourié-Gonnard | 83d8c73 | 2014-04-07 13:24:21 +0200 | [diff] [blame] | 44 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 45 | MEMCHECK=0 |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 46 | FILTER='.*' |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 47 | EXCLUDE='^$' |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 48 | |
Paul Bakker | e20310a | 2016-05-10 11:18:17 +0100 | [diff] [blame] | 49 | SHOW_TEST_NUMBER=0 |
Paul Bakker | b7584a5 | 2016-05-10 10:50:43 +0100 | [diff] [blame] | 50 | RUN_TEST_NUMBER='' |
| 51 | |
Paul Bakker | acaac85 | 2016-05-10 11:47:13 +0100 | [diff] [blame] | 52 | PRESERVE_LOGS=0 |
| 53 | |
Gilles Peskine | f93c7d3 | 2017-04-14 17:55:28 +0200 | [diff] [blame] | 54 | # Pick a "unique" server port in the range 10000-19999, and a proxy |
| 55 | # port which is this plus 10000. Each port number may be independently |
| 56 | # overridden by a command line option. |
| 57 | SRV_PORT=$(($$ % 10000 + 10000)) |
| 58 | PXY_PORT=$((SRV_PORT + 10000)) |
| 59 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 60 | print_usage() { |
| 61 | echo "Usage: $0 [options]" |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 62 | printf " -h|--help\tPrint this help.\n" |
| 63 | printf " -m|--memcheck\tCheck memory leaks and errors.\n" |
Gilles Peskine | f93c7d3 | 2017-04-14 17:55:28 +0200 | [diff] [blame] | 64 | printf " -f|--filter\tOnly matching tests are executed (BRE; default: '$FILTER')\n" |
| 65 | printf " -e|--exclude\tMatching tests are excluded (BRE; default: '$EXCLUDE')\n" |
Paul Bakker | b7584a5 | 2016-05-10 10:50:43 +0100 | [diff] [blame] | 66 | printf " -n|--number\tExecute only numbered test (comma-separated, e.g. '245,256')\n" |
Paul Bakker | e20310a | 2016-05-10 11:18:17 +0100 | [diff] [blame] | 67 | printf " -s|--show-numbers\tShow test numbers in front of test names\n" |
Paul Bakker | acaac85 | 2016-05-10 11:47:13 +0100 | [diff] [blame] | 68 | printf " -p|--preserve-logs\tPreserve logs of successful tests as well\n" |
Gilles Peskine | f93c7d3 | 2017-04-14 17:55:28 +0200 | [diff] [blame] | 69 | printf " --port\tTCP/UDP port (default: randomish 1xxxx)\n" |
| 70 | printf " --proxy-port\tTCP/UDP proxy port (default: randomish 2xxxx)\n" |
Andres AG | f04f54d | 2016-10-10 15:46:20 +0100 | [diff] [blame] | 71 | printf " --seed\tInteger seed value to use for this test run\n" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | get_options() { |
| 75 | while [ $# -gt 0 ]; do |
| 76 | case "$1" in |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 77 | -f|--filter) |
| 78 | shift; FILTER=$1 |
| 79 | ;; |
| 80 | -e|--exclude) |
| 81 | shift; EXCLUDE=$1 |
| 82 | ;; |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 83 | -m|--memcheck) |
| 84 | MEMCHECK=1 |
Paul Bakker | b7584a5 | 2016-05-10 10:50:43 +0100 | [diff] [blame] | 85 | ;; |
| 86 | -n|--number) |
| 87 | shift; RUN_TEST_NUMBER=$1 |
Paul Bakker | e20310a | 2016-05-10 11:18:17 +0100 | [diff] [blame] | 88 | ;; |
| 89 | -s|--show-numbers) |
| 90 | SHOW_TEST_NUMBER=1 |
Paul Bakker | acaac85 | 2016-05-10 11:47:13 +0100 | [diff] [blame] | 91 | ;; |
| 92 | -p|--preserve-logs) |
| 93 | PRESERVE_LOGS=1 |
Gilles Peskine | f93c7d3 | 2017-04-14 17:55:28 +0200 | [diff] [blame] | 94 | ;; |
| 95 | --port) |
| 96 | shift; SRV_PORT=$1 |
| 97 | ;; |
| 98 | --proxy-port) |
| 99 | shift; PXY_PORT=$1 |
Andres AG | f04f54d | 2016-10-10 15:46:20 +0100 | [diff] [blame] | 100 | ;; |
| 101 | --seed) |
| 102 | shift; SEED="$1" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 103 | ;; |
| 104 | -h|--help) |
| 105 | print_usage |
| 106 | exit 0 |
| 107 | ;; |
| 108 | *) |
Paul Bakker | 1ebc0c5 | 2014-05-22 15:47:58 +0200 | [diff] [blame] | 109 | echo "Unknown argument: '$1'" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 110 | print_usage |
| 111 | exit 1 |
| 112 | ;; |
| 113 | esac |
| 114 | shift |
| 115 | done |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 116 | } |
| 117 | |
Manuel Pégourié-Gonnard | 988209f | 2015-03-24 10:43:55 +0100 | [diff] [blame] | 118 | # skip next test if the flag is not enabled in config.h |
| 119 | requires_config_enabled() { |
| 120 | if grep "^#define $1" $CONFIG_H > /dev/null; then :; else |
| 121 | SKIP_NEXT="YES" |
| 122 | fi |
| 123 | } |
| 124 | |
Manuel Pégourié-Gonnard | af63c21 | 2017-06-08 17:51:08 +0200 | [diff] [blame] | 125 | # skip next test if the flag is enabled in config.h |
| 126 | requires_config_disabled() { |
| 127 | if grep "^#define $1" $CONFIG_H > /dev/null; then |
| 128 | SKIP_NEXT="YES" |
| 129 | fi |
| 130 | } |
| 131 | |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 132 | # skip next test if OpenSSL doesn't support FALLBACK_SCSV |
| 133 | requires_openssl_with_fallback_scsv() { |
| 134 | if [ -z "${OPENSSL_HAS_FBSCSV:-}" ]; then |
| 135 | if $OPENSSL_CMD s_client -help 2>&1 | grep fallback_scsv >/dev/null |
| 136 | then |
| 137 | OPENSSL_HAS_FBSCSV="YES" |
| 138 | else |
| 139 | OPENSSL_HAS_FBSCSV="NO" |
| 140 | fi |
| 141 | fi |
| 142 | if [ "$OPENSSL_HAS_FBSCSV" = "NO" ]; then |
| 143 | SKIP_NEXT="YES" |
| 144 | fi |
| 145 | } |
| 146 | |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 147 | # skip next test if GnuTLS isn't available |
| 148 | requires_gnutls() { |
| 149 | if [ -z "${GNUTLS_AVAILABLE:-}" ]; then |
Manuel Pégourié-Gonnard | 03db6b0 | 2015-06-26 15:45:30 +0200 | [diff] [blame] | 150 | if ( which "$GNUTLS_CLI" && which "$GNUTLS_SERV" ) >/dev/null 2>&1; then |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 151 | GNUTLS_AVAILABLE="YES" |
| 152 | else |
| 153 | GNUTLS_AVAILABLE="NO" |
| 154 | fi |
| 155 | fi |
| 156 | if [ "$GNUTLS_AVAILABLE" = "NO" ]; then |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 157 | SKIP_NEXT="YES" |
| 158 | fi |
| 159 | } |
| 160 | |
| 161 | # skip next test if IPv6 isn't available on this host |
| 162 | requires_ipv6() { |
| 163 | if [ -z "${HAS_IPV6:-}" ]; then |
| 164 | $P_SRV server_addr='::1' > $SRV_OUT 2>&1 & |
| 165 | SRV_PID=$! |
| 166 | sleep 1 |
| 167 | kill $SRV_PID >/dev/null 2>&1 |
| 168 | if grep "NET - Binding of the socket failed" $SRV_OUT >/dev/null; then |
| 169 | HAS_IPV6="NO" |
| 170 | else |
| 171 | HAS_IPV6="YES" |
| 172 | fi |
| 173 | rm -r $SRV_OUT |
| 174 | fi |
| 175 | |
| 176 | if [ "$HAS_IPV6" = "NO" ]; then |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 177 | SKIP_NEXT="YES" |
| 178 | fi |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 179 | } |
| 180 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 181 | # skip the next test if valgrind is in use |
| 182 | not_with_valgrind() { |
| 183 | if [ "$MEMCHECK" -gt 0 ]; then |
| 184 | SKIP_NEXT="YES" |
| 185 | fi |
| 186 | } |
| 187 | |
Paul Bakker | 362689d | 2016-05-13 10:33:25 +0100 | [diff] [blame] | 188 | # skip the next test if valgrind is NOT in use |
| 189 | only_with_valgrind() { |
| 190 | if [ "$MEMCHECK" -eq 0 ]; then |
| 191 | SKIP_NEXT="YES" |
| 192 | fi |
| 193 | } |
| 194 | |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 195 | # multiply the client timeout delay by the given factor for the next test |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 196 | client_needs_more_time() { |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 197 | CLI_DELAY_FACTOR=$1 |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | # wait for the given seconds after the client finished in the next test |
| 201 | server_needs_more_time() { |
| 202 | SRV_DELAY_SECONDS=$1 |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 203 | } |
| 204 | |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 205 | # print_name <name> |
| 206 | print_name() { |
Paul Bakker | e20310a | 2016-05-10 11:18:17 +0100 | [diff] [blame] | 207 | TESTS=$(( $TESTS + 1 )) |
| 208 | LINE="" |
| 209 | |
| 210 | if [ "$SHOW_TEST_NUMBER" -gt 0 ]; then |
| 211 | LINE="$TESTS " |
| 212 | fi |
| 213 | |
| 214 | LINE="$LINE$1" |
| 215 | printf "$LINE " |
| 216 | LEN=$(( 72 - `echo "$LINE" | wc -c` )) |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 217 | for i in `seq 1 $LEN`; do printf '.'; done |
| 218 | printf ' ' |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 219 | |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | # fail <message> |
| 223 | fail() { |
| 224 | echo "FAIL" |
Manuel Pégourié-Gonnard | 3eec604 | 2014-02-27 15:37:24 +0100 | [diff] [blame] | 225 | echo " ! $1" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 226 | |
Manuel Pégourié-Gonnard | c2b0092 | 2014-08-31 16:46:04 +0200 | [diff] [blame] | 227 | mv $SRV_OUT o-srv-${TESTS}.log |
| 228 | mv $CLI_OUT o-cli-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 229 | if [ -n "$PXY_CMD" ]; then |
| 230 | mv $PXY_OUT o-pxy-${TESTS}.log |
| 231 | fi |
| 232 | echo " ! outputs saved to o-XXX-${TESTS}.log" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 233 | |
Azim Khan | 03da121 | 2018-03-29 11:04:20 +0100 | [diff] [blame] | 234 | if [ "X${USER:-}" = Xbuildbot -o "X${LOGNAME:-}" = Xbuildbot -o "${LOG_FAILURE_ON_STDOUT:-0}" != 0 ]; then |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 235 | echo " ! server output:" |
| 236 | cat o-srv-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 237 | echo " ! ========================================================" |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 238 | echo " ! client output:" |
| 239 | cat o-cli-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 240 | if [ -n "$PXY_CMD" ]; then |
| 241 | echo " ! ========================================================" |
| 242 | echo " ! proxy output:" |
| 243 | cat o-pxy-${TESTS}.log |
| 244 | fi |
| 245 | echo "" |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 246 | fi |
| 247 | |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 248 | FAILS=$(( $FAILS + 1 )) |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 251 | # is_polar <cmd_line> |
| 252 | is_polar() { |
| 253 | echo "$1" | grep 'ssl_server2\|ssl_client2' > /dev/null |
| 254 | } |
| 255 | |
Manuel Pégourié-Gonnard | fa60f12 | 2014-09-26 16:07:29 +0200 | [diff] [blame] | 256 | # openssl s_server doesn't have -www with DTLS |
| 257 | check_osrv_dtls() { |
| 258 | if echo "$SRV_CMD" | grep 's_server.*-dtls' >/dev/null; then |
| 259 | NEEDS_INPUT=1 |
| 260 | SRV_CMD="$( echo $SRV_CMD | sed s/-www// )" |
| 261 | else |
| 262 | NEEDS_INPUT=0 |
| 263 | fi |
| 264 | } |
| 265 | |
| 266 | # provide input to commands that need it |
| 267 | provide_input() { |
| 268 | if [ $NEEDS_INPUT -eq 0 ]; then |
| 269 | return |
| 270 | fi |
| 271 | |
| 272 | while true; do |
| 273 | echo "HTTP/1.0 200 OK" |
| 274 | sleep 1 |
| 275 | done |
| 276 | } |
| 277 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 278 | # has_mem_err <log_file_name> |
| 279 | has_mem_err() { |
| 280 | if ( grep -F 'All heap blocks were freed -- no leaks are possible' "$1" && |
| 281 | grep -F 'ERROR SUMMARY: 0 errors from 0 contexts' "$1" ) > /dev/null |
| 282 | then |
| 283 | return 1 # false: does not have errors |
| 284 | else |
| 285 | return 0 # true: has errors |
| 286 | fi |
| 287 | } |
| 288 | |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 289 | # Wait for process $2 to be listening on port $1 |
| 290 | if type lsof >/dev/null 2>/dev/null; then |
| 291 | wait_server_start() { |
| 292 | START_TIME=$(date +%s) |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 293 | if [ "$DTLS" -eq 1 ]; then |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 294 | proto=UDP |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 295 | else |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 296 | proto=TCP |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 297 | fi |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 298 | # Make a tight loop, server normally takes less than 1s to start. |
| 299 | while ! lsof -a -n -b -i "$proto:$1" -p "$2" >/dev/null 2>/dev/null; do |
| 300 | if [ $(( $(date +%s) - $START_TIME )) -gt $DOG_DELAY ]; then |
| 301 | echo "SERVERSTART TIMEOUT" |
| 302 | echo "SERVERSTART TIMEOUT" >> $SRV_OUT |
| 303 | break |
| 304 | fi |
| 305 | # Linux and *BSD support decimal arguments to sleep. On other |
| 306 | # OSes this may be a tight loop. |
| 307 | sleep 0.1 2>/dev/null || true |
| 308 | done |
| 309 | } |
| 310 | else |
Gilles Peskine | 7163a6a | 2018-06-29 15:48:13 +0200 | [diff] [blame] | 311 | echo "Warning: lsof not available, wait_server_start = sleep" |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 312 | wait_server_start() { |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 313 | sleep "$START_DELAY" |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 314 | } |
| 315 | fi |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 316 | |
Andres Amaya Garcia | b84c40b | 2017-09-06 15:44:01 +0100 | [diff] [blame] | 317 | # Given the client or server debug output, parse the unix timestamp that is |
Andres Amaya Garcia | 3b1bdff | 2017-09-14 12:41:29 +0100 | [diff] [blame] | 318 | # included in the first 4 bytes of the random bytes and check that it's within |
Andres Amaya Garcia | b84c40b | 2017-09-06 15:44:01 +0100 | [diff] [blame] | 319 | # acceptable bounds |
| 320 | check_server_hello_time() { |
| 321 | # Extract the time from the debug (lvl 3) output of the client |
Andres Amaya Garcia | 67d8da5 | 2017-09-15 15:49:24 +0100 | [diff] [blame] | 322 | SERVER_HELLO_TIME="$(sed -n 's/.*server hello, current time: //p' < "$1")" |
Andres Amaya Garcia | b84c40b | 2017-09-06 15:44:01 +0100 | [diff] [blame] | 323 | # Get the Unix timestamp for now |
| 324 | CUR_TIME=$(date +'%s') |
| 325 | THRESHOLD_IN_SECS=300 |
| 326 | |
| 327 | # Check if the ServerHello time was printed |
| 328 | if [ -z "$SERVER_HELLO_TIME" ]; then |
| 329 | return 1 |
| 330 | fi |
| 331 | |
| 332 | # Check the time in ServerHello is within acceptable bounds |
| 333 | if [ $SERVER_HELLO_TIME -lt $(( $CUR_TIME - $THRESHOLD_IN_SECS )) ]; then |
| 334 | # The time in ServerHello is at least 5 minutes before now |
| 335 | return 1 |
| 336 | elif [ $SERVER_HELLO_TIME -gt $(( $CUR_TIME + $THRESHOLD_IN_SECS )) ]; then |
Andres Amaya Garcia | 3b1bdff | 2017-09-14 12:41:29 +0100 | [diff] [blame] | 337 | # The time in ServerHello is at least 5 minutes later than now |
Andres Amaya Garcia | b84c40b | 2017-09-06 15:44:01 +0100 | [diff] [blame] | 338 | return 1 |
| 339 | else |
| 340 | return 0 |
| 341 | fi |
| 342 | } |
| 343 | |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 344 | # wait for client to terminate and set CLI_EXIT |
| 345 | # must be called right after starting the client |
| 346 | wait_client_done() { |
| 347 | CLI_PID=$! |
| 348 | |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 349 | CLI_DELAY=$(( $DOG_DELAY * $CLI_DELAY_FACTOR )) |
| 350 | CLI_DELAY_FACTOR=1 |
| 351 | |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 352 | ( sleep $CLI_DELAY; echo "===CLIENT_TIMEOUT===" >> $CLI_OUT; kill $CLI_PID ) & |
Manuel Pégourié-Gonnard | a6189f0 | 2014-09-20 13:15:43 +0200 | [diff] [blame] | 353 | DOG_PID=$! |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 354 | |
| 355 | wait $CLI_PID |
| 356 | CLI_EXIT=$? |
| 357 | |
Manuel Pégourié-Gonnard | a6189f0 | 2014-09-20 13:15:43 +0200 | [diff] [blame] | 358 | kill $DOG_PID >/dev/null 2>&1 |
| 359 | wait $DOG_PID |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 360 | |
| 361 | echo "EXIT: $CLI_EXIT" >> $CLI_OUT |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 362 | |
| 363 | sleep $SRV_DELAY_SECONDS |
| 364 | SRV_DELAY_SECONDS=0 |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | # check if the given command uses dtls and sets global variable DTLS |
| 368 | detect_dtls() { |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 369 | if echo "$1" | grep 'dtls=1\|-dtls1\|-u' >/dev/null; then |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 370 | DTLS=1 |
| 371 | else |
| 372 | DTLS=0 |
| 373 | fi |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 374 | } |
| 375 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 376 | # Usage: run_test name [-p proxy_cmd] srv_cmd cli_cmd cli_exit [option [...]] |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 377 | # Options: -s pattern pattern that must be present in server output |
| 378 | # -c pattern pattern that must be present in client output |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 379 | # -u pattern lines after pattern must be unique in client output |
Andres Amaya Garcia | 93993de | 2017-09-06 15:38:07 +0100 | [diff] [blame] | 380 | # -f call shell function on client output |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 381 | # -S pattern pattern that must be absent in server output |
| 382 | # -C pattern pattern that must be absent in client output |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 383 | # -U pattern lines after pattern must be unique in server output |
Andres Amaya Garcia | 93993de | 2017-09-06 15:38:07 +0100 | [diff] [blame] | 384 | # -F call shell function on server output |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 385 | run_test() { |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 386 | NAME="$1" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 387 | shift 1 |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 388 | |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 389 | if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then : |
| 390 | else |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 391 | SKIP_NEXT="NO" |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 392 | return |
| 393 | fi |
| 394 | |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 395 | print_name "$NAME" |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 396 | |
Paul Bakker | b7584a5 | 2016-05-10 10:50:43 +0100 | [diff] [blame] | 397 | # Do we only run numbered tests? |
| 398 | if [ "X$RUN_TEST_NUMBER" = "X" ]; then : |
| 399 | elif echo ",$RUN_TEST_NUMBER," | grep ",$TESTS," >/dev/null; then : |
| 400 | else |
| 401 | SKIP_NEXT="YES" |
| 402 | fi |
| 403 | |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 404 | # should we skip? |
| 405 | if [ "X$SKIP_NEXT" = "XYES" ]; then |
| 406 | SKIP_NEXT="NO" |
| 407 | echo "SKIP" |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 408 | SKIPS=$(( $SKIPS + 1 )) |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 409 | return |
| 410 | fi |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 411 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 412 | # does this test use a proxy? |
| 413 | if [ "X$1" = "X-p" ]; then |
| 414 | PXY_CMD="$2" |
| 415 | shift 2 |
| 416 | else |
| 417 | PXY_CMD="" |
| 418 | fi |
| 419 | |
| 420 | # get commands and client output |
| 421 | SRV_CMD="$1" |
| 422 | CLI_CMD="$2" |
| 423 | CLI_EXPECT="$3" |
| 424 | shift 3 |
| 425 | |
| 426 | # fix client port |
| 427 | if [ -n "$PXY_CMD" ]; then |
| 428 | CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$PXY_PORT/g ) |
| 429 | else |
| 430 | CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$SRV_PORT/g ) |
| 431 | fi |
| 432 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 433 | # update DTLS variable |
| 434 | detect_dtls "$SRV_CMD" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 435 | |
| 436 | # prepend valgrind to our commands if active |
| 437 | if [ "$MEMCHECK" -gt 0 ]; then |
| 438 | if is_polar "$SRV_CMD"; then |
| 439 | SRV_CMD="valgrind --leak-check=full $SRV_CMD" |
| 440 | fi |
| 441 | if is_polar "$CLI_CMD"; then |
| 442 | CLI_CMD="valgrind --leak-check=full $CLI_CMD" |
| 443 | fi |
| 444 | fi |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 445 | |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 446 | TIMES_LEFT=2 |
| 447 | while [ $TIMES_LEFT -gt 0 ]; do |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 448 | TIMES_LEFT=$(( $TIMES_LEFT - 1 )) |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 449 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 450 | # run the commands |
| 451 | if [ -n "$PXY_CMD" ]; then |
| 452 | echo "$PXY_CMD" > $PXY_OUT |
| 453 | $PXY_CMD >> $PXY_OUT 2>&1 & |
| 454 | PXY_PID=$! |
| 455 | # assume proxy starts faster than server |
| 456 | fi |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 457 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 458 | check_osrv_dtls |
| 459 | echo "$SRV_CMD" > $SRV_OUT |
| 460 | provide_input | $SRV_CMD >> $SRV_OUT 2>&1 & |
| 461 | SRV_PID=$! |
Gilles Peskine | 418b536 | 2017-12-14 18:58:42 +0100 | [diff] [blame] | 462 | wait_server_start "$SRV_PORT" "$SRV_PID" |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 463 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 464 | echo "$CLI_CMD" > $CLI_OUT |
| 465 | eval "$CLI_CMD" >> $CLI_OUT 2>&1 & |
| 466 | wait_client_done |
Manuel Pégourié-Gonnard | e01af4c | 2014-03-25 14:16:44 +0100 | [diff] [blame] | 467 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 468 | # terminate the server (and the proxy) |
| 469 | kill $SRV_PID |
| 470 | wait $SRV_PID |
| 471 | if [ -n "$PXY_CMD" ]; then |
| 472 | kill $PXY_PID >/dev/null 2>&1 |
| 473 | wait $PXY_PID |
| 474 | fi |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 475 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 476 | # retry only on timeouts |
| 477 | if grep '===CLIENT_TIMEOUT===' $CLI_OUT >/dev/null; then |
| 478 | printf "RETRY " |
| 479 | else |
| 480 | TIMES_LEFT=0 |
| 481 | fi |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 482 | done |
| 483 | |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 484 | # check if the client and server went at least to the handshake stage |
Paul Bakker | 1ebc0c5 | 2014-05-22 15:47:58 +0200 | [diff] [blame] | 485 | # (useful to avoid tests with only negative assertions and non-zero |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 486 | # expected client exit to incorrectly succeed in case of catastrophic |
| 487 | # failure) |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 488 | if is_polar "$SRV_CMD"; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 489 | if grep "Performing the SSL/TLS handshake" $SRV_OUT >/dev/null; then :; |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 490 | else |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 491 | fail "server or client failed to reach handshake stage" |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 492 | return |
| 493 | fi |
| 494 | fi |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 495 | if is_polar "$CLI_CMD"; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 496 | if grep "Performing the SSL/TLS handshake" $CLI_OUT >/dev/null; then :; |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 497 | else |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 498 | fail "server or client failed to reach handshake stage" |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 499 | return |
| 500 | fi |
| 501 | fi |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 502 | |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 503 | # check server exit code |
| 504 | if [ $? != 0 ]; then |
| 505 | fail "server fail" |
| 506 | return |
| 507 | fi |
| 508 | |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 509 | # check client exit code |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 510 | if [ \( "$CLI_EXPECT" = 0 -a "$CLI_EXIT" != 0 \) -o \ |
| 511 | \( "$CLI_EXPECT" != 0 -a "$CLI_EXIT" = 0 \) ] |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 512 | then |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 513 | fail "bad client exit code (expected $CLI_EXPECT, got $CLI_EXIT)" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 514 | return |
| 515 | fi |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 516 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 517 | # check other assertions |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 518 | # lines beginning with == are added by valgrind, ignore them |
Paul Bakker | 1f65092 | 2016-05-13 10:16:46 +0100 | [diff] [blame] | 519 | # lines with 'Serious error when reading debug info', are valgrind issues as well |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 520 | while [ $# -gt 0 ] |
| 521 | do |
| 522 | case $1 in |
| 523 | "-s") |
Paul Bakker | 1f65092 | 2016-05-13 10:16:46 +0100 | [diff] [blame] | 524 | if grep -v '^==' $SRV_OUT | grep -v 'Serious error when reading debug info' | grep "$2" >/dev/null; then :; else |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 525 | fail "pattern '$2' MUST be present in the Server output" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 526 | return |
| 527 | fi |
| 528 | ;; |
| 529 | |
| 530 | "-c") |
Paul Bakker | 1f65092 | 2016-05-13 10:16:46 +0100 | [diff] [blame] | 531 | if grep -v '^==' $CLI_OUT | grep -v 'Serious error when reading debug info' | grep "$2" >/dev/null; then :; else |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 532 | fail "pattern '$2' MUST be present in the Client output" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 533 | return |
| 534 | fi |
| 535 | ;; |
| 536 | |
| 537 | "-S") |
Paul Bakker | 1f65092 | 2016-05-13 10:16:46 +0100 | [diff] [blame] | 538 | if grep -v '^==' $SRV_OUT | grep -v 'Serious error when reading debug info' | grep "$2" >/dev/null; then |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 539 | fail "pattern '$2' MUST NOT be present in the Server output" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 540 | return |
| 541 | fi |
| 542 | ;; |
| 543 | |
| 544 | "-C") |
Paul Bakker | 1f65092 | 2016-05-13 10:16:46 +0100 | [diff] [blame] | 545 | if grep -v '^==' $CLI_OUT | grep -v 'Serious error when reading debug info' | grep "$2" >/dev/null; then |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 546 | fail "pattern '$2' MUST NOT be present in the Client output" |
| 547 | return |
| 548 | fi |
| 549 | ;; |
| 550 | |
| 551 | # The filtering in the following two options (-u and -U) do the following |
| 552 | # - ignore valgrind output |
| 553 | # - filter out everything but lines right after the pattern occurances |
| 554 | # - keep one of each non-unique line |
| 555 | # - count how many lines remain |
| 556 | # A line with '--' will remain in the result from previous outputs, so the number of lines in the result will be 1 |
| 557 | # if there were no duplicates. |
| 558 | "-U") |
| 559 | if [ $(grep -v '^==' $SRV_OUT | grep -v 'Serious error when reading debug info' | grep -A1 "$2" | grep -v "$2" | sort | uniq -d | wc -l) -gt 1 ]; then |
| 560 | fail "lines following pattern '$2' must be unique in Server output" |
| 561 | return |
| 562 | fi |
| 563 | ;; |
| 564 | |
| 565 | "-u") |
| 566 | if [ $(grep -v '^==' $CLI_OUT | grep -v 'Serious error when reading debug info' | grep -A1 "$2" | grep -v "$2" | sort | uniq -d | wc -l) -gt 1 ]; then |
| 567 | fail "lines following pattern '$2' must be unique in Client output" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 568 | return |
| 569 | fi |
| 570 | ;; |
Andres Amaya Garcia | 93993de | 2017-09-06 15:38:07 +0100 | [diff] [blame] | 571 | "-F") |
| 572 | if ! $2 "$SRV_OUT"; then |
| 573 | fail "function call to '$2' failed on Server output" |
| 574 | return |
| 575 | fi |
| 576 | ;; |
| 577 | "-f") |
| 578 | if ! $2 "$CLI_OUT"; then |
| 579 | fail "function call to '$2' failed on Client output" |
| 580 | return |
| 581 | fi |
| 582 | ;; |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 583 | |
| 584 | *) |
Paul Bakker | 1ebc0c5 | 2014-05-22 15:47:58 +0200 | [diff] [blame] | 585 | echo "Unknown test: $1" >&2 |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 586 | exit 1 |
| 587 | esac |
| 588 | shift 2 |
| 589 | done |
| 590 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 591 | # check valgrind's results |
| 592 | if [ "$MEMCHECK" -gt 0 ]; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 593 | if is_polar "$SRV_CMD" && has_mem_err $SRV_OUT; then |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 594 | fail "Server has memory errors" |
| 595 | return |
| 596 | fi |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 597 | if is_polar "$CLI_CMD" && has_mem_err $CLI_OUT; then |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 598 | fail "Client has memory errors" |
| 599 | return |
| 600 | fi |
| 601 | fi |
| 602 | |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 603 | # if we're here, everything is ok |
| 604 | echo "PASS" |
Paul Bakker | acaac85 | 2016-05-10 11:47:13 +0100 | [diff] [blame] | 605 | if [ "$PRESERVE_LOGS" -gt 0 ]; then |
| 606 | mv $SRV_OUT o-srv-${TESTS}.log |
| 607 | mv $CLI_OUT o-cli-${TESTS}.log |
Hanno Becker | dc6c0e4 | 2018-08-20 12:21:35 +0100 | [diff] [blame] | 608 | if [ -n "$PXY_CMD" ]; then |
| 609 | mv $PXY_OUT o-pxy-${TESTS}.log |
| 610 | fi |
Paul Bakker | acaac85 | 2016-05-10 11:47:13 +0100 | [diff] [blame] | 611 | fi |
| 612 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 613 | rm -f $SRV_OUT $CLI_OUT $PXY_OUT |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 614 | } |
| 615 | |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 616 | cleanup() { |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 617 | rm -f $CLI_OUT $SRV_OUT $PXY_OUT $SESSION |
Manuel Pégourié-Gonnard | a6189f0 | 2014-09-20 13:15:43 +0200 | [diff] [blame] | 618 | test -n "${SRV_PID:-}" && kill $SRV_PID >/dev/null 2>&1 |
| 619 | test -n "${PXY_PID:-}" && kill $PXY_PID >/dev/null 2>&1 |
| 620 | test -n "${CLI_PID:-}" && kill $CLI_PID >/dev/null 2>&1 |
| 621 | test -n "${DOG_PID:-}" && kill $DOG_PID >/dev/null 2>&1 |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 622 | exit 1 |
| 623 | } |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 624 | |
Manuel Pégourié-Gonnard | 9dea8bd | 2014-02-26 18:21:02 +0100 | [diff] [blame] | 625 | # |
| 626 | # MAIN |
| 627 | # |
| 628 | |
Manuel Pégourié-Gonnard | 19db8ea | 2015-03-10 13:41:04 +0000 | [diff] [blame] | 629 | if cd $( dirname $0 ); then :; else |
| 630 | echo "cd $( dirname $0 ) failed" >&2 |
| 631 | exit 1 |
| 632 | fi |
| 633 | |
Manuel Pégourié-Gonnard | 913030c | 2014-03-28 10:12:38 +0100 | [diff] [blame] | 634 | get_options "$@" |
| 635 | |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 636 | # sanity checks, avoid an avalanche of errors |
| 637 | if [ ! -x "$P_SRV" ]; then |
| 638 | echo "Command '$P_SRV' is not an executable file" |
| 639 | exit 1 |
| 640 | fi |
| 641 | if [ ! -x "$P_CLI" ]; then |
| 642 | echo "Command '$P_CLI' is not an executable file" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 643 | exit 1 |
| 644 | fi |
| 645 | if [ ! -x "$P_PXY" ]; then |
| 646 | echo "Command '$P_PXY' is not an executable file" |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 647 | exit 1 |
| 648 | fi |
Simon Butcher | 3c0d7b8 | 2016-05-23 11:13:17 +0100 | [diff] [blame] | 649 | if [ "$MEMCHECK" -gt 0 ]; then |
| 650 | if which valgrind >/dev/null 2>&1; then :; else |
| 651 | echo "Memcheck not possible. Valgrind not found" |
| 652 | exit 1 |
| 653 | fi |
| 654 | fi |
Manuel Pégourié-Gonnard | 74faf3c | 2014-03-13 18:47:44 +0100 | [diff] [blame] | 655 | if which $OPENSSL_CMD >/dev/null 2>&1; then :; else |
| 656 | echo "Command '$OPENSSL_CMD' not found" |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 657 | exit 1 |
| 658 | fi |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 659 | |
Manuel Pégourié-Gonnard | 32f8f4d | 2014-05-29 11:31:20 +0200 | [diff] [blame] | 660 | # used by watchdog |
| 661 | MAIN_PID="$$" |
| 662 | |
Manuel Pégourié-Gonnard | 0d225da | 2018-01-22 10:22:09 +0100 | [diff] [blame] | 663 | # We use somewhat arbitrary delays for tests: |
| 664 | # - how long do we wait for the server to start (when lsof not available)? |
| 665 | # - how long do we allow for the client to finish? |
| 666 | # (not to check performance, just to avoid waiting indefinitely) |
| 667 | # Things are slower with valgrind, so give extra time here. |
| 668 | # |
| 669 | # Note: without lsof, there is a trade-off between the running time of this |
| 670 | # script and the risk of spurious errors because we didn't wait long enough. |
| 671 | # The watchdog delay on the other hand doesn't affect normal running time of |
| 672 | # the script, only the case where a client or server gets stuck. |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 673 | if [ "$MEMCHECK" -gt 0 ]; then |
Manuel Pégourié-Gonnard | 0d225da | 2018-01-22 10:22:09 +0100 | [diff] [blame] | 674 | START_DELAY=6 |
| 675 | DOG_DELAY=60 |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 676 | else |
Manuel Pégourié-Gonnard | 0d225da | 2018-01-22 10:22:09 +0100 | [diff] [blame] | 677 | START_DELAY=2 |
| 678 | DOG_DELAY=20 |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 679 | fi |
Manuel Pégourié-Gonnard | 0d225da | 2018-01-22 10:22:09 +0100 | [diff] [blame] | 680 | |
| 681 | # some particular tests need more time: |
| 682 | # - for the client, we multiply the usual watchdog limit by a factor |
| 683 | # - for the server, we sleep for a number of seconds after the client exits |
| 684 | # see client_need_more_time() and server_needs_more_time() |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 685 | CLI_DELAY_FACTOR=1 |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 686 | SRV_DELAY_SECONDS=0 |
Manuel Pégourié-Gonnard | 8066b81 | 2014-05-28 22:59:30 +0200 | [diff] [blame] | 687 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 688 | # fix commands to use this port, force IPv4 while at it |
Manuel Pégourié-Gonnard | 0af1ba3 | 2015-01-21 11:44:33 +0000 | [diff] [blame] | 689 | # +SRV_PORT will be replaced by either $SRV_PORT or $PXY_PORT later |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 690 | P_SRV="$P_SRV server_addr=127.0.0.1 server_port=$SRV_PORT" |
| 691 | P_CLI="$P_CLI server_addr=127.0.0.1 server_port=+SRV_PORT" |
Andres AG | f04f54d | 2016-10-10 15:46:20 +0100 | [diff] [blame] | 692 | P_PXY="$P_PXY server_addr=127.0.0.1 server_port=$SRV_PORT listen_addr=127.0.0.1 listen_port=$PXY_PORT ${SEED:+"seed=$SEED"}" |
Manuel Pégourié-Gonnard | 6195767 | 2015-06-18 17:54:58 +0200 | [diff] [blame] | 693 | O_SRV="$O_SRV -accept $SRV_PORT -dhparam data_files/dhparams.pem" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 694 | O_CLI="$O_CLI -connect localhost:+SRV_PORT" |
| 695 | G_SRV="$G_SRV -p $SRV_PORT" |
Manuel Pégourié-Gonnard | 0af1ba3 | 2015-01-21 11:44:33 +0000 | [diff] [blame] | 696 | G_CLI="$G_CLI -p +SRV_PORT localhost" |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 697 | |
Gilles Peskine | 62469d9 | 2017-05-10 10:13:59 +0200 | [diff] [blame] | 698 | # Allow SHA-1, because many of our test certificates use it |
| 699 | P_SRV="$P_SRV allow_sha1=1" |
| 700 | P_CLI="$P_CLI allow_sha1=1" |
| 701 | |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 702 | # Also pick a unique name for intermediate files |
| 703 | SRV_OUT="srv_out.$$" |
| 704 | CLI_OUT="cli_out.$$" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 705 | PXY_OUT="pxy_out.$$" |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 706 | SESSION="session.$$" |
Manuel Pégourié-Gonnard | 8066b81 | 2014-05-28 22:59:30 +0200 | [diff] [blame] | 707 | |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 708 | SKIP_NEXT="NO" |
| 709 | |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 710 | trap cleanup INT TERM HUP |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 711 | |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 712 | # Basic test |
| 713 | |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 714 | # Checks that: |
| 715 | # - things work with all ciphersuites active (used with config-full in all.sh) |
| 716 | # - the expected (highest security) parameters are selected |
| 717 | # ("signature_algorithm ext: 6" means SHA-512 (highest common hash)) |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 718 | run_test "Default" \ |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 719 | "$P_SRV debug_level=3" \ |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 720 | "$P_CLI" \ |
| 721 | 0 \ |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 722 | -s "Protocol is TLSv1.2" \ |
| 723 | -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \ |
| 724 | -s "client hello v3, signature_algorithm ext: 6" \ |
| 725 | -s "ECDHE curve: secp521r1" \ |
| 726 | -S "error" \ |
| 727 | -C "error" |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 728 | |
Manuel Pégourié-Gonnard | 3bb0801 | 2015-01-22 13:34:21 +0000 | [diff] [blame] | 729 | run_test "Default, DTLS" \ |
| 730 | "$P_SRV dtls=1" \ |
| 731 | "$P_CLI dtls=1" \ |
| 732 | 0 \ |
| 733 | -s "Protocol is DTLSv1.2" \ |
| 734 | -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" |
| 735 | |
Andres Amaya Garcia | b84c40b | 2017-09-06 15:44:01 +0100 | [diff] [blame] | 736 | # Test current time in ServerHello |
| 737 | requires_config_enabled MBEDTLS_HAVE_TIME |
| 738 | run_test "Default, ServerHello contains gmt_unix_time" \ |
| 739 | "$P_SRV debug_level=3" \ |
| 740 | "$P_CLI debug_level=3" \ |
| 741 | 0 \ |
| 742 | -s "Protocol is TLSv1.2" \ |
| 743 | -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \ |
| 744 | -s "client hello v3, signature_algorithm ext: 6" \ |
| 745 | -s "ECDHE curve: secp521r1" \ |
| 746 | -S "error" \ |
| 747 | -C "error" \ |
| 748 | -f "check_server_hello_time" \ |
| 749 | -F "check_server_hello_time" |
| 750 | |
Simon Butcher | 8e00410 | 2016-10-14 00:48:33 +0100 | [diff] [blame] | 751 | # Test for uniqueness of IVs in AEAD ciphersuites |
| 752 | run_test "Unique IV in GCM" \ |
| 753 | "$P_SRV exchanges=20 debug_level=4" \ |
| 754 | "$P_CLI exchanges=20 debug_level=4 force_ciphersuite=TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \ |
| 755 | 0 \ |
| 756 | -u "IV used" \ |
| 757 | -U "IV used" |
| 758 | |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 759 | # Tests for rc4 option |
| 760 | |
Simon Butcher | a410af5 | 2016-05-19 22:12:18 +0100 | [diff] [blame] | 761 | requires_config_enabled MBEDTLS_REMOVE_ARC4_CIPHERSUITES |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 762 | run_test "RC4: server disabled, client enabled" \ |
| 763 | "$P_SRV" \ |
| 764 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 765 | 1 \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 766 | -s "SSL - The server has no ciphersuites in common" |
| 767 | |
Simon Butcher | a410af5 | 2016-05-19 22:12:18 +0100 | [diff] [blame] | 768 | requires_config_enabled MBEDTLS_REMOVE_ARC4_CIPHERSUITES |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 769 | run_test "RC4: server half, client enabled" \ |
| 770 | "$P_SRV arc4=1" \ |
| 771 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 772 | 1 \ |
| 773 | -s "SSL - The server has no ciphersuites in common" |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 774 | |
| 775 | run_test "RC4: server enabled, client disabled" \ |
| 776 | "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 777 | "$P_CLI" \ |
| 778 | 1 \ |
| 779 | -s "SSL - The server has no ciphersuites in common" |
| 780 | |
| 781 | run_test "RC4: both enabled" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 782 | "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 783 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 784 | 0 \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 785 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 786 | -S "SSL - The server has no ciphersuites in common" |
Manuel Pégourié-Gonnard | c1da664 | 2014-02-25 14:18:30 +0100 | [diff] [blame] | 787 | |
Hanno Becker | 3a333a5 | 2018-08-17 09:54:10 +0100 | [diff] [blame] | 788 | # Test empty CA list in CertificateRequest in TLS 1.1 and earlier |
| 789 | |
| 790 | requires_gnutls |
| 791 | requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_1 |
| 792 | run_test "CertificateRequest with empty CA list, TLS 1.1 (GnuTLS server)" \ |
| 793 | "$G_SRV"\ |
| 794 | "$P_CLI force_version=tls1_1" \ |
| 795 | 0 |
| 796 | |
| 797 | requires_gnutls |
| 798 | requires_config_enabled MBEDTLS_SSL_PROTO_TLS1 |
| 799 | run_test "CertificateRequest with empty CA list, TLS 1.0 (GnuTLS server)" \ |
| 800 | "$G_SRV"\ |
| 801 | "$P_CLI force_version=tls1" \ |
| 802 | 0 |
| 803 | |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 804 | # Tests for SHA-1 support |
| 805 | |
Manuel Pégourié-Gonnard | af63c21 | 2017-06-08 17:51:08 +0200 | [diff] [blame] | 806 | requires_config_disabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 807 | run_test "SHA-1 forbidden by default in server certificate" \ |
| 808 | "$P_SRV key_file=data_files/server2.key crt_file=data_files/server2.crt" \ |
| 809 | "$P_CLI debug_level=2 allow_sha1=0" \ |
| 810 | 1 \ |
| 811 | -c "The certificate is signed with an unacceptable hash" |
Manuel Pégourié-Gonnard | af63c21 | 2017-06-08 17:51:08 +0200 | [diff] [blame] | 812 | |
| 813 | requires_config_enabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES |
| 814 | run_test "SHA-1 forbidden by default in server certificate" \ |
| 815 | "$P_SRV key_file=data_files/server2.key crt_file=data_files/server2.crt" \ |
| 816 | "$P_CLI debug_level=2 allow_sha1=0" \ |
| 817 | 0 |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 818 | |
| 819 | run_test "SHA-1 explicitly allowed in server certificate" \ |
| 820 | "$P_SRV key_file=data_files/server2.key crt_file=data_files/server2.crt" \ |
| 821 | "$P_CLI allow_sha1=1" \ |
| 822 | 0 |
| 823 | |
| 824 | run_test "SHA-256 allowed by default in server certificate" \ |
| 825 | "$P_SRV key_file=data_files/server2.key crt_file=data_files/server2-sha256.crt" \ |
| 826 | "$P_CLI allow_sha1=0" \ |
| 827 | 0 |
| 828 | |
Manuel Pégourié-Gonnard | af63c21 | 2017-06-08 17:51:08 +0200 | [diff] [blame] | 829 | requires_config_disabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 830 | run_test "SHA-1 forbidden by default in client certificate" \ |
| 831 | "$P_SRV auth_mode=required allow_sha1=0" \ |
| 832 | "$P_CLI key_file=data_files/cli-rsa.key crt_file=data_files/cli-rsa-sha1.crt" \ |
| 833 | 1 \ |
| 834 | -s "The certificate is signed with an unacceptable hash" |
| 835 | |
Manuel Pégourié-Gonnard | af63c21 | 2017-06-08 17:51:08 +0200 | [diff] [blame] | 836 | requires_config_enabled MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES |
| 837 | run_test "SHA-1 forbidden by default in client certificate" \ |
| 838 | "$P_SRV auth_mode=required allow_sha1=0" \ |
| 839 | "$P_CLI key_file=data_files/cli-rsa.key crt_file=data_files/cli-rsa-sha1.crt" \ |
| 840 | 0 |
| 841 | |
Gilles Peskine | bc70a18 | 2017-05-09 15:59:24 +0200 | [diff] [blame] | 842 | run_test "SHA-1 explicitly allowed in client certificate" \ |
| 843 | "$P_SRV auth_mode=required allow_sha1=1" \ |
| 844 | "$P_CLI key_file=data_files/cli-rsa.key crt_file=data_files/cli-rsa-sha1.crt" \ |
| 845 | 0 |
| 846 | |
| 847 | run_test "SHA-256 allowed by default in client certificate" \ |
| 848 | "$P_SRV auth_mode=required allow_sha1=0" \ |
| 849 | "$P_CLI key_file=data_files/cli-rsa.key crt_file=data_files/cli-rsa-sha256.crt" \ |
| 850 | 0 |
| 851 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 852 | # Tests for Truncated HMAC extension |
| 853 | |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 854 | run_test "Truncated HMAC: client default, server default" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 855 | "$P_SRV debug_level=4" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 856 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 857 | 0 \ |
Hanno Becker | 992b687 | 2017-11-09 18:57:39 +0000 | [diff] [blame] | 858 | -s "dumping 'expected mac' (20 bytes)" \ |
| 859 | -S "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 860 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 861 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 862 | run_test "Truncated HMAC: client disabled, server default" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 863 | "$P_SRV debug_level=4" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 864 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=0" \ |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 865 | 0 \ |
Hanno Becker | 992b687 | 2017-11-09 18:57:39 +0000 | [diff] [blame] | 866 | -s "dumping 'expected mac' (20 bytes)" \ |
| 867 | -S "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 868 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 869 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 870 | run_test "Truncated HMAC: client enabled, server default" \ |
| 871 | "$P_SRV debug_level=4" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 872 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 873 | 0 \ |
Hanno Becker | 992b687 | 2017-11-09 18:57:39 +0000 | [diff] [blame] | 874 | -s "dumping 'expected mac' (20 bytes)" \ |
| 875 | -S "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 876 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 877 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 878 | run_test "Truncated HMAC: client enabled, server disabled" \ |
| 879 | "$P_SRV debug_level=4 trunc_hmac=0" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 880 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 881 | 0 \ |
Hanno Becker | 992b687 | 2017-11-09 18:57:39 +0000 | [diff] [blame] | 882 | -s "dumping 'expected mac' (20 bytes)" \ |
| 883 | -S "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 884 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 885 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Hanno Becker | 34d0c3f | 2017-11-17 15:46:24 +0000 | [diff] [blame] | 886 | run_test "Truncated HMAC: client disabled, server enabled" \ |
| 887 | "$P_SRV debug_level=4 trunc_hmac=1" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 888 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=0" \ |
Hanno Becker | 34d0c3f | 2017-11-17 15:46:24 +0000 | [diff] [blame] | 889 | 0 \ |
| 890 | -s "dumping 'expected mac' (20 bytes)" \ |
| 891 | -S "dumping 'expected mac' (10 bytes)" |
| 892 | |
| 893 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 894 | run_test "Truncated HMAC: client enabled, server enabled" \ |
| 895 | "$P_SRV debug_level=4 trunc_hmac=1" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 896 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 897 | 0 \ |
Hanno Becker | 992b687 | 2017-11-09 18:57:39 +0000 | [diff] [blame] | 898 | -S "dumping 'expected mac' (20 bytes)" \ |
| 899 | -s "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 900 | |
Hanno Becker | 4c4f410 | 2017-11-10 09:16:05 +0000 | [diff] [blame] | 901 | run_test "Truncated HMAC, DTLS: client default, server default" \ |
| 902 | "$P_SRV dtls=1 debug_level=4" \ |
| 903 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 904 | 0 \ |
| 905 | -s "dumping 'expected mac' (20 bytes)" \ |
| 906 | -S "dumping 'expected mac' (10 bytes)" |
| 907 | |
| 908 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 909 | run_test "Truncated HMAC, DTLS: client disabled, server default" \ |
| 910 | "$P_SRV dtls=1 debug_level=4" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 911 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=0" \ |
Hanno Becker | 4c4f410 | 2017-11-10 09:16:05 +0000 | [diff] [blame] | 912 | 0 \ |
| 913 | -s "dumping 'expected mac' (20 bytes)" \ |
| 914 | -S "dumping 'expected mac' (10 bytes)" |
| 915 | |
| 916 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 917 | run_test "Truncated HMAC, DTLS: client enabled, server default" \ |
| 918 | "$P_SRV dtls=1 debug_level=4" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 919 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 4c4f410 | 2017-11-10 09:16:05 +0000 | [diff] [blame] | 920 | 0 \ |
| 921 | -s "dumping 'expected mac' (20 bytes)" \ |
| 922 | -S "dumping 'expected mac' (10 bytes)" |
| 923 | |
| 924 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 925 | run_test "Truncated HMAC, DTLS: client enabled, server disabled" \ |
| 926 | "$P_SRV dtls=1 debug_level=4 trunc_hmac=0" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 927 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 4c4f410 | 2017-11-10 09:16:05 +0000 | [diff] [blame] | 928 | 0 \ |
| 929 | -s "dumping 'expected mac' (20 bytes)" \ |
| 930 | -S "dumping 'expected mac' (10 bytes)" |
| 931 | |
| 932 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 933 | run_test "Truncated HMAC, DTLS: client disabled, server enabled" \ |
| 934 | "$P_SRV dtls=1 debug_level=4 trunc_hmac=1" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 935 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=0" \ |
Hanno Becker | 4c4f410 | 2017-11-10 09:16:05 +0000 | [diff] [blame] | 936 | 0 \ |
| 937 | -s "dumping 'expected mac' (20 bytes)" \ |
| 938 | -S "dumping 'expected mac' (10 bytes)" |
| 939 | |
| 940 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 941 | run_test "Truncated HMAC, DTLS: client enabled, server enabled" \ |
| 942 | "$P_SRV dtls=1 debug_level=4 trunc_hmac=1" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 943 | "$P_CLI dtls=1 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 944 | 0 \ |
| 945 | -S "dumping 'expected mac' (20 bytes)" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 946 | -s "dumping 'expected mac' (10 bytes)" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 947 | |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 948 | # Tests for Encrypt-then-MAC extension |
| 949 | |
| 950 | run_test "Encrypt then MAC: default" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 951 | "$P_SRV debug_level=3 \ |
| 952 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 953 | "$P_CLI debug_level=3" \ |
| 954 | 0 \ |
| 955 | -c "client hello, adding encrypt_then_mac extension" \ |
| 956 | -s "found encrypt then mac extension" \ |
| 957 | -s "server hello, adding encrypt then mac extension" \ |
| 958 | -c "found encrypt_then_mac extension" \ |
| 959 | -c "using encrypt then mac" \ |
| 960 | -s "using encrypt then mac" |
| 961 | |
| 962 | run_test "Encrypt then MAC: client enabled, server disabled" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 963 | "$P_SRV debug_level=3 etm=0 \ |
| 964 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 965 | "$P_CLI debug_level=3 etm=1" \ |
| 966 | 0 \ |
| 967 | -c "client hello, adding encrypt_then_mac extension" \ |
| 968 | -s "found encrypt then mac extension" \ |
| 969 | -S "server hello, adding encrypt then mac extension" \ |
| 970 | -C "found encrypt_then_mac extension" \ |
| 971 | -C "using encrypt then mac" \ |
| 972 | -S "using encrypt then mac" |
| 973 | |
Manuel Pégourié-Gonnard | 78e745f | 2014-11-04 15:44:06 +0100 | [diff] [blame] | 974 | run_test "Encrypt then MAC: client enabled, aead cipher" \ |
| 975 | "$P_SRV debug_level=3 etm=1 \ |
| 976 | force_ciphersuite=TLS-RSA-WITH-AES-128-GCM-SHA256" \ |
| 977 | "$P_CLI debug_level=3 etm=1" \ |
| 978 | 0 \ |
| 979 | -c "client hello, adding encrypt_then_mac extension" \ |
| 980 | -s "found encrypt then mac extension" \ |
| 981 | -S "server hello, adding encrypt then mac extension" \ |
| 982 | -C "found encrypt_then_mac extension" \ |
| 983 | -C "using encrypt then mac" \ |
| 984 | -S "using encrypt then mac" |
| 985 | |
| 986 | run_test "Encrypt then MAC: client enabled, stream cipher" \ |
| 987 | "$P_SRV debug_level=3 etm=1 \ |
| 988 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 989 | "$P_CLI debug_level=3 etm=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 78e745f | 2014-11-04 15:44:06 +0100 | [diff] [blame] | 990 | 0 \ |
| 991 | -c "client hello, adding encrypt_then_mac extension" \ |
| 992 | -s "found encrypt then mac extension" \ |
| 993 | -S "server hello, adding encrypt then mac extension" \ |
| 994 | -C "found encrypt_then_mac extension" \ |
| 995 | -C "using encrypt then mac" \ |
| 996 | -S "using encrypt then mac" |
| 997 | |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 998 | run_test "Encrypt then MAC: client disabled, server enabled" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 999 | "$P_SRV debug_level=3 etm=1 \ |
| 1000 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1001 | "$P_CLI debug_level=3 etm=0" \ |
| 1002 | 0 \ |
| 1003 | -C "client hello, adding encrypt_then_mac extension" \ |
| 1004 | -S "found encrypt then mac extension" \ |
| 1005 | -S "server hello, adding encrypt then mac extension" \ |
| 1006 | -C "found encrypt_then_mac extension" \ |
| 1007 | -C "using encrypt then mac" \ |
| 1008 | -S "using encrypt then mac" |
| 1009 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 1010 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1011 | run_test "Encrypt then MAC: client SSLv3, server enabled" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 1012 | "$P_SRV debug_level=3 min_version=ssl3 \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 1013 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1014 | "$P_CLI debug_level=3 force_version=ssl3" \ |
| 1015 | 0 \ |
| 1016 | -C "client hello, adding encrypt_then_mac extension" \ |
| 1017 | -S "found encrypt then mac extension" \ |
| 1018 | -S "server hello, adding encrypt then mac extension" \ |
| 1019 | -C "found encrypt_then_mac extension" \ |
| 1020 | -C "using encrypt then mac" \ |
| 1021 | -S "using encrypt then mac" |
| 1022 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 1023 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1024 | run_test "Encrypt then MAC: client enabled, server SSLv3" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 1025 | "$P_SRV debug_level=3 force_version=ssl3 \ |
| 1026 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 1027 | "$P_CLI debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1028 | 0 \ |
| 1029 | -c "client hello, adding encrypt_then_mac extension" \ |
Janos Follath | 00efff7 | 2016-05-06 13:48:23 +0100 | [diff] [blame] | 1030 | -S "found encrypt then mac extension" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 1031 | -S "server hello, adding encrypt then mac extension" \ |
| 1032 | -C "found encrypt_then_mac extension" \ |
| 1033 | -C "using encrypt then mac" \ |
| 1034 | -S "using encrypt then mac" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1035 | |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 1036 | # Tests for Extended Master Secret extension |
| 1037 | |
| 1038 | run_test "Extended Master Secret: default" \ |
| 1039 | "$P_SRV debug_level=3" \ |
| 1040 | "$P_CLI debug_level=3" \ |
| 1041 | 0 \ |
| 1042 | -c "client hello, adding extended_master_secret extension" \ |
| 1043 | -s "found extended master secret extension" \ |
| 1044 | -s "server hello, adding extended master secret extension" \ |
| 1045 | -c "found extended_master_secret extension" \ |
| 1046 | -c "using extended master secret" \ |
| 1047 | -s "using extended master secret" |
| 1048 | |
| 1049 | run_test "Extended Master Secret: client enabled, server disabled" \ |
| 1050 | "$P_SRV debug_level=3 extended_ms=0" \ |
| 1051 | "$P_CLI debug_level=3 extended_ms=1" \ |
| 1052 | 0 \ |
| 1053 | -c "client hello, adding extended_master_secret extension" \ |
| 1054 | -s "found extended master secret extension" \ |
| 1055 | -S "server hello, adding extended master secret extension" \ |
| 1056 | -C "found extended_master_secret extension" \ |
| 1057 | -C "using extended master secret" \ |
| 1058 | -S "using extended master secret" |
| 1059 | |
| 1060 | run_test "Extended Master Secret: client disabled, server enabled" \ |
| 1061 | "$P_SRV debug_level=3 extended_ms=1" \ |
| 1062 | "$P_CLI debug_level=3 extended_ms=0" \ |
| 1063 | 0 \ |
| 1064 | -C "client hello, adding extended_master_secret extension" \ |
| 1065 | -S "found extended master secret extension" \ |
| 1066 | -S "server hello, adding extended master secret extension" \ |
| 1067 | -C "found extended_master_secret extension" \ |
| 1068 | -C "using extended master secret" \ |
| 1069 | -S "using extended master secret" |
| 1070 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 1071 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 1072 | run_test "Extended Master Secret: client SSLv3, server enabled" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 1073 | "$P_SRV debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 1074 | "$P_CLI debug_level=3 force_version=ssl3" \ |
| 1075 | 0 \ |
| 1076 | -C "client hello, adding extended_master_secret extension" \ |
| 1077 | -S "found extended master secret extension" \ |
| 1078 | -S "server hello, adding extended master secret extension" \ |
| 1079 | -C "found extended_master_secret extension" \ |
| 1080 | -C "using extended master secret" \ |
| 1081 | -S "using extended master secret" |
| 1082 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 1083 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 1084 | run_test "Extended Master Secret: client enabled, server SSLv3" \ |
| 1085 | "$P_SRV debug_level=3 force_version=ssl3" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 1086 | "$P_CLI debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 1087 | 0 \ |
| 1088 | -c "client hello, adding extended_master_secret extension" \ |
Janos Follath | 00efff7 | 2016-05-06 13:48:23 +0100 | [diff] [blame] | 1089 | -S "found extended master secret extension" \ |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 1090 | -S "server hello, adding extended master secret extension" \ |
| 1091 | -C "found extended_master_secret extension" \ |
| 1092 | -C "using extended master secret" \ |
| 1093 | -S "using extended master secret" |
| 1094 | |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1095 | # Tests for FALLBACK_SCSV |
| 1096 | |
| 1097 | run_test "Fallback SCSV: default" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1098 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1099 | "$P_CLI debug_level=3 force_version=tls1_1" \ |
| 1100 | 0 \ |
| 1101 | -C "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1102 | -S "received FALLBACK_SCSV" \ |
| 1103 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1104 | -C "is a fatal alert message (msg 86)" |
| 1105 | |
| 1106 | run_test "Fallback SCSV: explicitly disabled" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1107 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1108 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \ |
| 1109 | 0 \ |
| 1110 | -C "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1111 | -S "received FALLBACK_SCSV" \ |
| 1112 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1113 | -C "is a fatal alert message (msg 86)" |
| 1114 | |
| 1115 | run_test "Fallback SCSV: enabled" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1116 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1117 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=1" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1118 | 1 \ |
| 1119 | -c "adding FALLBACK_SCSV" \ |
| 1120 | -s "received FALLBACK_SCSV" \ |
| 1121 | -s "inapropriate fallback" \ |
| 1122 | -c "is a fatal alert message (msg 86)" |
| 1123 | |
| 1124 | run_test "Fallback SCSV: enabled, max version" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1125 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1126 | "$P_CLI debug_level=3 fallback=1" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1127 | 0 \ |
| 1128 | -c "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1129 | -s "received FALLBACK_SCSV" \ |
| 1130 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 1131 | -C "is a fatal alert message (msg 86)" |
| 1132 | |
| 1133 | requires_openssl_with_fallback_scsv |
| 1134 | run_test "Fallback SCSV: default, openssl server" \ |
| 1135 | "$O_SRV" \ |
| 1136 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \ |
| 1137 | 0 \ |
| 1138 | -C "adding FALLBACK_SCSV" \ |
| 1139 | -C "is a fatal alert message (msg 86)" |
| 1140 | |
| 1141 | requires_openssl_with_fallback_scsv |
| 1142 | run_test "Fallback SCSV: enabled, openssl server" \ |
| 1143 | "$O_SRV" \ |
| 1144 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=1" \ |
| 1145 | 1 \ |
| 1146 | -c "adding FALLBACK_SCSV" \ |
| 1147 | -c "is a fatal alert message (msg 86)" |
| 1148 | |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1149 | requires_openssl_with_fallback_scsv |
| 1150 | run_test "Fallback SCSV: disabled, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1151 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1152 | "$O_CLI -tls1_1" \ |
| 1153 | 0 \ |
| 1154 | -S "received FALLBACK_SCSV" \ |
| 1155 | -S "inapropriate fallback" |
| 1156 | |
| 1157 | requires_openssl_with_fallback_scsv |
| 1158 | run_test "Fallback SCSV: enabled, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1159 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1160 | "$O_CLI -tls1_1 -fallback_scsv" \ |
| 1161 | 1 \ |
| 1162 | -s "received FALLBACK_SCSV" \ |
| 1163 | -s "inapropriate fallback" |
| 1164 | |
| 1165 | requires_openssl_with_fallback_scsv |
| 1166 | run_test "Fallback SCSV: enabled, max version, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 1167 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 1168 | "$O_CLI -fallback_scsv" \ |
| 1169 | 0 \ |
| 1170 | -s "received FALLBACK_SCSV" \ |
| 1171 | -S "inapropriate fallback" |
| 1172 | |
Andres Amaya Garcia | 14783c4 | 2018-07-10 20:08:04 +0100 | [diff] [blame] | 1173 | # Test sending and receiving empty application data records |
| 1174 | |
| 1175 | run_test "Encrypt then MAC: empty application data record" \ |
| 1176 | "$P_SRV auth_mode=none debug_level=4 etm=1" \ |
| 1177 | "$P_CLI auth_mode=none etm=1 request_size=0 force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA" \ |
| 1178 | 0 \ |
| 1179 | -S "0000: 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f" \ |
| 1180 | -s "dumping 'input payload after decrypt' (0 bytes)" \ |
| 1181 | -c "0 bytes written in 1 fragments" |
| 1182 | |
| 1183 | run_test "Default, no Encrypt then MAC: empty application data record" \ |
| 1184 | "$P_SRV auth_mode=none debug_level=4 etm=0" \ |
| 1185 | "$P_CLI auth_mode=none etm=0 request_size=0" \ |
| 1186 | 0 \ |
| 1187 | -s "dumping 'input payload after decrypt' (0 bytes)" \ |
| 1188 | -c "0 bytes written in 1 fragments" |
| 1189 | |
| 1190 | run_test "Encrypt then MAC, DTLS: empty application data record" \ |
| 1191 | "$P_SRV auth_mode=none debug_level=4 etm=1 dtls=1" \ |
| 1192 | "$P_CLI auth_mode=none etm=1 request_size=0 force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA dtls=1" \ |
| 1193 | 0 \ |
| 1194 | -S "0000: 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f 0f" \ |
| 1195 | -s "dumping 'input payload after decrypt' (0 bytes)" \ |
| 1196 | -c "0 bytes written in 1 fragments" |
| 1197 | |
| 1198 | run_test "Default, no Encrypt then MAC, DTLS: empty application data record" \ |
| 1199 | "$P_SRV auth_mode=none debug_level=4 etm=0 dtls=1" \ |
| 1200 | "$P_CLI auth_mode=none etm=0 request_size=0 dtls=1" \ |
| 1201 | 0 \ |
| 1202 | -s "dumping 'input payload after decrypt' (0 bytes)" \ |
| 1203 | -c "0 bytes written in 1 fragments" |
| 1204 | |
Gilles Peskine | d50177f | 2017-05-16 17:53:03 +0200 | [diff] [blame] | 1205 | ## ClientHello generated with |
| 1206 | ## "openssl s_client -CAfile tests/data_files/test-ca.crt -tls1_1 -connect localhost:4433 -cipher ..." |
| 1207 | ## then manually twiddling the ciphersuite list. |
| 1208 | ## The ClientHello content is spelled out below as a hex string as |
| 1209 | ## "prefix ciphersuite1 ciphersuite2 ciphersuite3 ciphersuite4 suffix". |
| 1210 | ## The expected response is an inappropriate_fallback alert. |
| 1211 | requires_openssl_with_fallback_scsv |
| 1212 | run_test "Fallback SCSV: beginning of list" \ |
| 1213 | "$P_SRV debug_level=2" \ |
| 1214 | "$TCP_CLIENT localhost $SRV_PORT '160301003e0100003a03022aafb94308dc22ca1086c65acc00e414384d76b61ecab37df1633b1ae1034dbe000008 5600 0031 0032 0033 0100000900230000000f000101' '15030200020256'" \ |
| 1215 | 0 \ |
| 1216 | -s "received FALLBACK_SCSV" \ |
| 1217 | -s "inapropriate fallback" |
| 1218 | |
| 1219 | requires_openssl_with_fallback_scsv |
| 1220 | run_test "Fallback SCSV: end of list" \ |
| 1221 | "$P_SRV debug_level=2" \ |
| 1222 | "$TCP_CLIENT localhost $SRV_PORT '160301003e0100003a03022aafb94308dc22ca1086c65acc00e414384d76b61ecab37df1633b1ae1034dbe000008 0031 0032 0033 5600 0100000900230000000f000101' '15030200020256'" \ |
| 1223 | 0 \ |
| 1224 | -s "received FALLBACK_SCSV" \ |
| 1225 | -s "inapropriate fallback" |
| 1226 | |
| 1227 | ## Here the expected response is a valid ServerHello prefix, up to the random. |
| 1228 | requires_openssl_with_fallback_scsv |
| 1229 | run_test "Fallback SCSV: not in list" \ |
| 1230 | "$P_SRV debug_level=2" \ |
| 1231 | "$TCP_CLIENT localhost $SRV_PORT '160301003e0100003a03022aafb94308dc22ca1086c65acc00e414384d76b61ecab37df1633b1ae1034dbe000008 0056 0031 0032 0033 0100000900230000000f000101' '16030200300200002c0302'" \ |
| 1232 | 0 \ |
| 1233 | -S "received FALLBACK_SCSV" \ |
| 1234 | -S "inapropriate fallback" |
| 1235 | |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 1236 | # Tests for CBC 1/n-1 record splitting |
| 1237 | |
| 1238 | run_test "CBC Record splitting: TLS 1.2, no splitting" \ |
| 1239 | "$P_SRV" \ |
| 1240 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1241 | request_size=123 force_version=tls1_2" \ |
| 1242 | 0 \ |
| 1243 | -s "Read from client: 123 bytes read" \ |
| 1244 | -S "Read from client: 1 bytes read" \ |
| 1245 | -S "122 bytes read" |
| 1246 | |
| 1247 | run_test "CBC Record splitting: TLS 1.1, no splitting" \ |
| 1248 | "$P_SRV" \ |
| 1249 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1250 | request_size=123 force_version=tls1_1" \ |
| 1251 | 0 \ |
| 1252 | -s "Read from client: 123 bytes read" \ |
| 1253 | -S "Read from client: 1 bytes read" \ |
| 1254 | -S "122 bytes read" |
| 1255 | |
| 1256 | run_test "CBC Record splitting: TLS 1.0, splitting" \ |
| 1257 | "$P_SRV" \ |
| 1258 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1259 | request_size=123 force_version=tls1" \ |
| 1260 | 0 \ |
| 1261 | -S "Read from client: 123 bytes read" \ |
| 1262 | -s "Read from client: 1 bytes read" \ |
| 1263 | -s "122 bytes read" |
| 1264 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 1265 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 1266 | run_test "CBC Record splitting: SSLv3, splitting" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 1267 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 1268 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1269 | request_size=123 force_version=ssl3" \ |
| 1270 | 0 \ |
| 1271 | -S "Read from client: 123 bytes read" \ |
| 1272 | -s "Read from client: 1 bytes read" \ |
| 1273 | -s "122 bytes read" |
| 1274 | |
| 1275 | run_test "CBC Record splitting: TLS 1.0 RC4, no splitting" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 1276 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 1277 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 1278 | request_size=123 force_version=tls1" \ |
| 1279 | 0 \ |
| 1280 | -s "Read from client: 123 bytes read" \ |
| 1281 | -S "Read from client: 1 bytes read" \ |
| 1282 | -S "122 bytes read" |
| 1283 | |
| 1284 | run_test "CBC Record splitting: TLS 1.0, splitting disabled" \ |
| 1285 | "$P_SRV" \ |
| 1286 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1287 | request_size=123 force_version=tls1 recsplit=0" \ |
| 1288 | 0 \ |
| 1289 | -s "Read from client: 123 bytes read" \ |
| 1290 | -S "Read from client: 1 bytes read" \ |
| 1291 | -S "122 bytes read" |
| 1292 | |
Manuel Pégourié-Gonnard | a852cf4 | 2015-01-13 20:56:15 +0100 | [diff] [blame] | 1293 | run_test "CBC Record splitting: TLS 1.0, splitting, nbio" \ |
| 1294 | "$P_SRV nbio=2" \ |
| 1295 | "$P_CLI nbio=2 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 1296 | request_size=123 force_version=tls1" \ |
| 1297 | 0 \ |
| 1298 | -S "Read from client: 123 bytes read" \ |
| 1299 | -s "Read from client: 1 bytes read" \ |
| 1300 | -s "122 bytes read" |
| 1301 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1302 | # Tests for Session Tickets |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1303 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1304 | run_test "Session resume using tickets: basic" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1305 | "$P_SRV debug_level=3 tickets=1" \ |
| 1306 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1307 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1308 | -c "client hello, adding session ticket extension" \ |
| 1309 | -s "found session ticket extension" \ |
| 1310 | -s "server hello, adding session ticket extension" \ |
| 1311 | -c "found session_ticket extension" \ |
| 1312 | -c "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1313 | -S "session successfully restored from cache" \ |
| 1314 | -s "session successfully restored from ticket" \ |
| 1315 | -s "a session has been resumed" \ |
| 1316 | -c "a session has been resumed" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1317 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1318 | run_test "Session resume using tickets: cache disabled" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1319 | "$P_SRV debug_level=3 tickets=1 cache_max=0" \ |
| 1320 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | dbe1ee1 | 2014-02-21 09:18:13 +0100 | [diff] [blame] | 1321 | 0 \ |
| 1322 | -c "client hello, adding session ticket extension" \ |
| 1323 | -s "found session ticket extension" \ |
| 1324 | -s "server hello, adding session ticket extension" \ |
| 1325 | -c "found session_ticket extension" \ |
| 1326 | -c "parse new session ticket" \ |
| 1327 | -S "session successfully restored from cache" \ |
| 1328 | -s "session successfully restored from ticket" \ |
| 1329 | -s "a session has been resumed" \ |
| 1330 | -c "a session has been resumed" |
| 1331 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1332 | run_test "Session resume using tickets: timeout" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1333 | "$P_SRV debug_level=3 tickets=1 cache_max=0 ticket_timeout=1" \ |
| 1334 | "$P_CLI debug_level=3 tickets=1 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | dbe1ee1 | 2014-02-21 09:18:13 +0100 | [diff] [blame] | 1335 | 0 \ |
| 1336 | -c "client hello, adding session ticket extension" \ |
| 1337 | -s "found session ticket extension" \ |
| 1338 | -s "server hello, adding session ticket extension" \ |
| 1339 | -c "found session_ticket extension" \ |
| 1340 | -c "parse new session ticket" \ |
| 1341 | -S "session successfully restored from cache" \ |
| 1342 | -S "session successfully restored from ticket" \ |
| 1343 | -S "a session has been resumed" \ |
| 1344 | -C "a session has been resumed" |
| 1345 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1346 | run_test "Session resume using tickets: openssl server" \ |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 1347 | "$O_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1348 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 1349 | 0 \ |
| 1350 | -c "client hello, adding session ticket extension" \ |
| 1351 | -c "found session_ticket extension" \ |
| 1352 | -c "parse new session ticket" \ |
| 1353 | -c "a session has been resumed" |
| 1354 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1355 | run_test "Session resume using tickets: openssl client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1356 | "$P_SRV debug_level=3 tickets=1" \ |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 1357 | "( $O_CLI -sess_out $SESSION; \ |
| 1358 | $O_CLI -sess_in $SESSION; \ |
| 1359 | rm -f $SESSION )" \ |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 1360 | 0 \ |
| 1361 | -s "found session ticket extension" \ |
| 1362 | -s "server hello, adding session ticket extension" \ |
| 1363 | -S "session successfully restored from cache" \ |
| 1364 | -s "session successfully restored from ticket" \ |
| 1365 | -s "a session has been resumed" |
| 1366 | |
Hanno Becker | b554636 | 2018-08-21 13:55:22 +0100 | [diff] [blame] | 1367 | # Tests for Session Tickets with DTLS |
| 1368 | |
| 1369 | run_test "Session resume using tickets, DTLS: basic" \ |
| 1370 | "$P_SRV debug_level=3 dtls=1 tickets=1" \ |
| 1371 | "$P_CLI debug_level=3 dtls=1 tickets=1 reconnect=1" \ |
| 1372 | 0 \ |
| 1373 | -c "client hello, adding session ticket extension" \ |
| 1374 | -s "found session ticket extension" \ |
| 1375 | -s "server hello, adding session ticket extension" \ |
| 1376 | -c "found session_ticket extension" \ |
| 1377 | -c "parse new session ticket" \ |
| 1378 | -S "session successfully restored from cache" \ |
| 1379 | -s "session successfully restored from ticket" \ |
| 1380 | -s "a session has been resumed" \ |
| 1381 | -c "a session has been resumed" |
| 1382 | |
| 1383 | run_test "Session resume using tickets, DTLS: cache disabled" \ |
| 1384 | "$P_SRV debug_level=3 dtls=1 tickets=1 cache_max=0" \ |
| 1385 | "$P_CLI debug_level=3 dtls=1 tickets=1 reconnect=1" \ |
| 1386 | 0 \ |
| 1387 | -c "client hello, adding session ticket extension" \ |
| 1388 | -s "found session ticket extension" \ |
| 1389 | -s "server hello, adding session ticket extension" \ |
| 1390 | -c "found session_ticket extension" \ |
| 1391 | -c "parse new session ticket" \ |
| 1392 | -S "session successfully restored from cache" \ |
| 1393 | -s "session successfully restored from ticket" \ |
| 1394 | -s "a session has been resumed" \ |
| 1395 | -c "a session has been resumed" |
| 1396 | |
| 1397 | run_test "Session resume using tickets, DTLS: timeout" \ |
| 1398 | "$P_SRV debug_level=3 dtls=1 tickets=1 cache_max=0 ticket_timeout=1" \ |
| 1399 | "$P_CLI debug_level=3 dtls=1 tickets=1 reconnect=1 reco_delay=2" \ |
| 1400 | 0 \ |
| 1401 | -c "client hello, adding session ticket extension" \ |
| 1402 | -s "found session ticket extension" \ |
| 1403 | -s "server hello, adding session ticket extension" \ |
| 1404 | -c "found session_ticket extension" \ |
| 1405 | -c "parse new session ticket" \ |
| 1406 | -S "session successfully restored from cache" \ |
| 1407 | -S "session successfully restored from ticket" \ |
| 1408 | -S "a session has been resumed" \ |
| 1409 | -C "a session has been resumed" |
| 1410 | |
| 1411 | run_test "Session resume using tickets, DTLS: openssl server" \ |
| 1412 | "$O_SRV -dtls1" \ |
| 1413 | "$P_CLI dtls=1 debug_level=3 tickets=1 reconnect=1" \ |
| 1414 | 0 \ |
| 1415 | -c "client hello, adding session ticket extension" \ |
| 1416 | -c "found session_ticket extension" \ |
| 1417 | -c "parse new session ticket" \ |
| 1418 | -c "a session has been resumed" |
| 1419 | |
| 1420 | run_test "Session resume using tickets, DTLS: openssl client" \ |
| 1421 | "$P_SRV dtls=1 debug_level=3 tickets=1" \ |
| 1422 | "( $O_CLI -dtls1 -sess_out $SESSION; \ |
| 1423 | $O_CLI -dtls1 -sess_in $SESSION; \ |
| 1424 | rm -f $SESSION )" \ |
| 1425 | 0 \ |
| 1426 | -s "found session ticket extension" \ |
| 1427 | -s "server hello, adding session ticket extension" \ |
| 1428 | -S "session successfully restored from cache" \ |
| 1429 | -s "session successfully restored from ticket" \ |
| 1430 | -s "a session has been resumed" |
| 1431 | |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1432 | # Tests for Session Resume based on session-ID and cache |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1433 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1434 | run_test "Session resume using cache: tickets enabled on client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1435 | "$P_SRV debug_level=3 tickets=0" \ |
| 1436 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1437 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1438 | -c "client hello, adding session ticket extension" \ |
| 1439 | -s "found session ticket extension" \ |
| 1440 | -S "server hello, adding session ticket extension" \ |
| 1441 | -C "found session_ticket extension" \ |
| 1442 | -C "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1443 | -s "session successfully restored from cache" \ |
| 1444 | -S "session successfully restored from ticket" \ |
| 1445 | -s "a session has been resumed" \ |
| 1446 | -c "a session has been resumed" |
| 1447 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1448 | run_test "Session resume using cache: tickets enabled on server" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1449 | "$P_SRV debug_level=3 tickets=1" \ |
| 1450 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1451 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1452 | -C "client hello, adding session ticket extension" \ |
| 1453 | -S "found session ticket extension" \ |
| 1454 | -S "server hello, adding session ticket extension" \ |
| 1455 | -C "found session_ticket extension" \ |
| 1456 | -C "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1457 | -s "session successfully restored from cache" \ |
| 1458 | -S "session successfully restored from ticket" \ |
| 1459 | -s "a session has been resumed" \ |
| 1460 | -c "a session has been resumed" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1461 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1462 | run_test "Session resume using cache: cache_max=0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1463 | "$P_SRV debug_level=3 tickets=0 cache_max=0" \ |
| 1464 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1465 | 0 \ |
| 1466 | -S "session successfully restored from cache" \ |
| 1467 | -S "session successfully restored from ticket" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1468 | -S "a session has been resumed" \ |
| 1469 | -C "a session has been resumed" |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1470 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1471 | run_test "Session resume using cache: cache_max=1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1472 | "$P_SRV debug_level=3 tickets=0 cache_max=1" \ |
| 1473 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1474 | 0 \ |
| 1475 | -s "session successfully restored from cache" \ |
| 1476 | -S "session successfully restored from ticket" \ |
| 1477 | -s "a session has been resumed" \ |
| 1478 | -c "a session has been resumed" |
| 1479 | |
Manuel Pégourié-Gonnard | 6df3196 | 2015-05-04 10:55:47 +0200 | [diff] [blame] | 1480 | run_test "Session resume using cache: timeout > delay" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1481 | "$P_SRV debug_level=3 tickets=0" \ |
| 1482 | "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=0" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1483 | 0 \ |
| 1484 | -s "session successfully restored from cache" \ |
| 1485 | -S "session successfully restored from ticket" \ |
| 1486 | -s "a session has been resumed" \ |
| 1487 | -c "a session has been resumed" |
| 1488 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1489 | run_test "Session resume using cache: timeout < delay" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1490 | "$P_SRV debug_level=3 tickets=0 cache_timeout=1" \ |
| 1491 | "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1492 | 0 \ |
| 1493 | -S "session successfully restored from cache" \ |
| 1494 | -S "session successfully restored from ticket" \ |
| 1495 | -S "a session has been resumed" \ |
| 1496 | -C "a session has been resumed" |
| 1497 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1498 | run_test "Session resume using cache: no timeout" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1499 | "$P_SRV debug_level=3 tickets=0 cache_timeout=0" \ |
| 1500 | "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1501 | 0 \ |
| 1502 | -s "session successfully restored from cache" \ |
| 1503 | -S "session successfully restored from ticket" \ |
| 1504 | -s "a session has been resumed" \ |
| 1505 | -c "a session has been resumed" |
| 1506 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1507 | run_test "Session resume using cache: openssl client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1508 | "$P_SRV debug_level=3 tickets=0" \ |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 1509 | "( $O_CLI -sess_out $SESSION; \ |
| 1510 | $O_CLI -sess_in $SESSION; \ |
| 1511 | rm -f $SESSION )" \ |
Manuel Pégourié-Gonnard | db735f6 | 2014-02-25 17:57:59 +0100 | [diff] [blame] | 1512 | 0 \ |
| 1513 | -s "found session ticket extension" \ |
| 1514 | -S "server hello, adding session ticket extension" \ |
| 1515 | -s "session successfully restored from cache" \ |
| 1516 | -S "session successfully restored from ticket" \ |
| 1517 | -s "a session has been resumed" |
| 1518 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1519 | run_test "Session resume using cache: openssl server" \ |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 1520 | "$O_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1521 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | db735f6 | 2014-02-25 17:57:59 +0100 | [diff] [blame] | 1522 | 0 \ |
| 1523 | -C "found session_ticket extension" \ |
| 1524 | -C "parse new session ticket" \ |
| 1525 | -c "a session has been resumed" |
| 1526 | |
Hanno Becker | b554636 | 2018-08-21 13:55:22 +0100 | [diff] [blame] | 1527 | # Tests for Session Resume based on session-ID and cache, DTLS |
| 1528 | |
| 1529 | run_test "Session resume using cache, DTLS: tickets enabled on client" \ |
| 1530 | "$P_SRV dtls=1 debug_level=3 tickets=0" \ |
| 1531 | "$P_CLI dtls=1 debug_level=3 tickets=1 reconnect=1" \ |
| 1532 | 0 \ |
| 1533 | -c "client hello, adding session ticket extension" \ |
| 1534 | -s "found session ticket extension" \ |
| 1535 | -S "server hello, adding session ticket extension" \ |
| 1536 | -C "found session_ticket extension" \ |
| 1537 | -C "parse new session ticket" \ |
| 1538 | -s "session successfully restored from cache" \ |
| 1539 | -S "session successfully restored from ticket" \ |
| 1540 | -s "a session has been resumed" \ |
| 1541 | -c "a session has been resumed" |
| 1542 | |
| 1543 | run_test "Session resume using cache, DTLS: tickets enabled on server" \ |
| 1544 | "$P_SRV dtls=1 debug_level=3 tickets=1" \ |
| 1545 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1" \ |
| 1546 | 0 \ |
| 1547 | -C "client hello, adding session ticket extension" \ |
| 1548 | -S "found session ticket extension" \ |
| 1549 | -S "server hello, adding session ticket extension" \ |
| 1550 | -C "found session_ticket extension" \ |
| 1551 | -C "parse new session ticket" \ |
| 1552 | -s "session successfully restored from cache" \ |
| 1553 | -S "session successfully restored from ticket" \ |
| 1554 | -s "a session has been resumed" \ |
| 1555 | -c "a session has been resumed" |
| 1556 | |
| 1557 | run_test "Session resume using cache, DTLS: cache_max=0" \ |
| 1558 | "$P_SRV dtls=1 debug_level=3 tickets=0 cache_max=0" \ |
| 1559 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1" \ |
| 1560 | 0 \ |
| 1561 | -S "session successfully restored from cache" \ |
| 1562 | -S "session successfully restored from ticket" \ |
| 1563 | -S "a session has been resumed" \ |
| 1564 | -C "a session has been resumed" |
| 1565 | |
| 1566 | run_test "Session resume using cache, DTLS: cache_max=1" \ |
| 1567 | "$P_SRV dtls=1 debug_level=3 tickets=0 cache_max=1" \ |
| 1568 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1" \ |
| 1569 | 0 \ |
| 1570 | -s "session successfully restored from cache" \ |
| 1571 | -S "session successfully restored from ticket" \ |
| 1572 | -s "a session has been resumed" \ |
| 1573 | -c "a session has been resumed" |
| 1574 | |
| 1575 | run_test "Session resume using cache, DTLS: timeout > delay" \ |
| 1576 | "$P_SRV dtls=1 debug_level=3 tickets=0" \ |
| 1577 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1 reco_delay=0" \ |
| 1578 | 0 \ |
| 1579 | -s "session successfully restored from cache" \ |
| 1580 | -S "session successfully restored from ticket" \ |
| 1581 | -s "a session has been resumed" \ |
| 1582 | -c "a session has been resumed" |
| 1583 | |
| 1584 | run_test "Session resume using cache, DTLS: timeout < delay" \ |
| 1585 | "$P_SRV dtls=1 debug_level=3 tickets=0 cache_timeout=1" \ |
| 1586 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
| 1587 | 0 \ |
| 1588 | -S "session successfully restored from cache" \ |
| 1589 | -S "session successfully restored from ticket" \ |
| 1590 | -S "a session has been resumed" \ |
| 1591 | -C "a session has been resumed" |
| 1592 | |
| 1593 | run_test "Session resume using cache, DTLS: no timeout" \ |
| 1594 | "$P_SRV dtls=1 debug_level=3 tickets=0 cache_timeout=0" \ |
| 1595 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
| 1596 | 0 \ |
| 1597 | -s "session successfully restored from cache" \ |
| 1598 | -S "session successfully restored from ticket" \ |
| 1599 | -s "a session has been resumed" \ |
| 1600 | -c "a session has been resumed" |
| 1601 | |
| 1602 | run_test "Session resume using cache, DTLS: openssl client" \ |
| 1603 | "$P_SRV dtls=1 debug_level=3 tickets=0" \ |
| 1604 | "( $O_CLI -dtls1 -sess_out $SESSION; \ |
| 1605 | $O_CLI -dtls1 -sess_in $SESSION; \ |
| 1606 | rm -f $SESSION )" \ |
| 1607 | 0 \ |
| 1608 | -s "found session ticket extension" \ |
| 1609 | -S "server hello, adding session ticket extension" \ |
| 1610 | -s "session successfully restored from cache" \ |
| 1611 | -S "session successfully restored from ticket" \ |
| 1612 | -s "a session has been resumed" |
| 1613 | |
| 1614 | run_test "Session resume using cache, DTLS: openssl server" \ |
| 1615 | "$O_SRV -dtls1" \ |
| 1616 | "$P_CLI dtls=1 debug_level=3 tickets=0 reconnect=1" \ |
| 1617 | 0 \ |
| 1618 | -C "found session_ticket extension" \ |
| 1619 | -C "parse new session ticket" \ |
| 1620 | -c "a session has been resumed" |
| 1621 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1622 | # Tests for Max Fragment Length extension |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1623 | |
Hanno Becker | 6428f8d | 2017-09-22 16:58:50 +0100 | [diff] [blame] | 1624 | MAX_CONTENT_LEN_EXPECT='16384' |
| 1625 | MAX_CONTENT_LEN_CONFIG=$( ../scripts/config.pl get MBEDTLS_SSL_MAX_CONTENT_LEN) |
| 1626 | |
| 1627 | if [ -n "$MAX_CONTENT_LEN_CONFIG" ] && [ "$MAX_CONTENT_LEN_CONFIG" -ne "$MAX_CONTENT_LEN_EXPECT" ]; then |
| 1628 | printf "The ${CONFIG_H} file contains a value for the configuration of\n" |
| 1629 | printf "MBEDTLS_SSL_MAX_CONTENT_LEN that is different from the script’s\n" |
| 1630 | printf "test value of ${MAX_CONTENT_LEN_EXPECT}. \n" |
| 1631 | printf "\n" |
| 1632 | printf "The tests assume this value and if it changes, the tests in this\n" |
| 1633 | printf "script should also be adjusted.\n" |
| 1634 | printf "\n" |
| 1635 | |
| 1636 | exit 1 |
| 1637 | fi |
| 1638 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1639 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1640 | run_test "Max fragment length: enabled, default" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1641 | "$P_SRV debug_level=3" \ |
| 1642 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1643 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1644 | -c "Maximum fragment length is 16384" \ |
| 1645 | -s "Maximum fragment length is 16384" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1646 | -C "client hello, adding max_fragment_length extension" \ |
| 1647 | -S "found max fragment length extension" \ |
| 1648 | -S "server hello, max_fragment_length extension" \ |
| 1649 | -C "found max_fragment_length extension" |
| 1650 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1651 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1652 | run_test "Max fragment length: enabled, default, larger message" \ |
| 1653 | "$P_SRV debug_level=3" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1654 | "$P_CLI debug_level=3 request_size=16385" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1655 | 0 \ |
| 1656 | -c "Maximum fragment length is 16384" \ |
| 1657 | -s "Maximum fragment length is 16384" \ |
| 1658 | -C "client hello, adding max_fragment_length extension" \ |
| 1659 | -S "found max fragment length extension" \ |
| 1660 | -S "server hello, max_fragment_length extension" \ |
| 1661 | -C "found max_fragment_length extension" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1662 | -c "16385 bytes written in 2 fragments" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1663 | -s "16384 bytes read" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1664 | -s "1 bytes read" |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1665 | |
| 1666 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
| 1667 | run_test "Max fragment length, DTLS: enabled, default, larger message" \ |
| 1668 | "$P_SRV debug_level=3 dtls=1" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1669 | "$P_CLI debug_level=3 dtls=1 request_size=16385" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1670 | 1 \ |
| 1671 | -c "Maximum fragment length is 16384" \ |
| 1672 | -s "Maximum fragment length is 16384" \ |
| 1673 | -C "client hello, adding max_fragment_length extension" \ |
| 1674 | -S "found max fragment length extension" \ |
| 1675 | -S "server hello, max_fragment_length extension" \ |
| 1676 | -C "found max_fragment_length extension" \ |
| 1677 | -c "fragment larger than.*maximum " |
| 1678 | |
| 1679 | requires_config_disabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
| 1680 | run_test "Max fragment length: disabled, larger message" \ |
| 1681 | "$P_SRV debug_level=3" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1682 | "$P_CLI debug_level=3 request_size=16385" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1683 | 0 \ |
| 1684 | -C "Maximum fragment length is 16384" \ |
| 1685 | -S "Maximum fragment length is 16384" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1686 | -c "16385 bytes written in 2 fragments" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1687 | -s "16384 bytes read" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1688 | -s "1 bytes read" |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1689 | |
| 1690 | requires_config_disabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
| 1691 | run_test "Max fragment length DTLS: disabled, larger message" \ |
| 1692 | "$P_SRV debug_level=3 dtls=1" \ |
Hanno Becker | 9cfabe3 | 2017-10-18 14:42:01 +0100 | [diff] [blame] | 1693 | "$P_CLI debug_level=3 dtls=1 request_size=16385" \ |
Hanno Becker | c526696 | 2017-09-18 15:01:50 +0100 | [diff] [blame] | 1694 | 1 \ |
| 1695 | -C "Maximum fragment length is 16384" \ |
| 1696 | -S "Maximum fragment length is 16384" \ |
| 1697 | -c "fragment larger than.*maximum " |
| 1698 | |
| 1699 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1700 | run_test "Max fragment length: used by client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1701 | "$P_SRV debug_level=3" \ |
| 1702 | "$P_CLI debug_level=3 max_frag_len=4096" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1703 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1704 | -c "Maximum fragment length is 4096" \ |
| 1705 | -s "Maximum fragment length is 4096" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1706 | -c "client hello, adding max_fragment_length extension" \ |
| 1707 | -s "found max fragment length extension" \ |
| 1708 | -s "server hello, max_fragment_length extension" \ |
| 1709 | -c "found max_fragment_length extension" |
| 1710 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1711 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1712 | run_test "Max fragment length: used by server" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1713 | "$P_SRV debug_level=3 max_frag_len=4096" \ |
| 1714 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1715 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1716 | -c "Maximum fragment length is 16384" \ |
| 1717 | -s "Maximum fragment length is 4096" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1718 | -C "client hello, adding max_fragment_length extension" \ |
| 1719 | -S "found max fragment length extension" \ |
| 1720 | -S "server hello, max_fragment_length extension" \ |
| 1721 | -C "found max_fragment_length extension" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1722 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1723 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1724 | requires_gnutls |
| 1725 | run_test "Max fragment length: gnutls server" \ |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 1726 | "$G_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1727 | "$P_CLI debug_level=3 max_frag_len=4096" \ |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 1728 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1729 | -c "Maximum fragment length is 4096" \ |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 1730 | -c "client hello, adding max_fragment_length extension" \ |
| 1731 | -c "found max_fragment_length extension" |
| 1732 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1733 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1734 | run_test "Max fragment length: client, message just fits" \ |
| 1735 | "$P_SRV debug_level=3" \ |
| 1736 | "$P_CLI debug_level=3 max_frag_len=2048 request_size=2048" \ |
| 1737 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1738 | -c "Maximum fragment length is 2048" \ |
| 1739 | -s "Maximum fragment length is 2048" \ |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1740 | -c "client hello, adding max_fragment_length extension" \ |
| 1741 | -s "found max fragment length extension" \ |
| 1742 | -s "server hello, max_fragment_length extension" \ |
| 1743 | -c "found max_fragment_length extension" \ |
| 1744 | -c "2048 bytes written in 1 fragments" \ |
| 1745 | -s "2048 bytes read" |
| 1746 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1747 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1748 | run_test "Max fragment length: client, larger message" \ |
| 1749 | "$P_SRV debug_level=3" \ |
| 1750 | "$P_CLI debug_level=3 max_frag_len=2048 request_size=2345" \ |
| 1751 | 0 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1752 | -c "Maximum fragment length is 2048" \ |
| 1753 | -s "Maximum fragment length is 2048" \ |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1754 | -c "client hello, adding max_fragment_length extension" \ |
| 1755 | -s "found max fragment length extension" \ |
| 1756 | -s "server hello, max_fragment_length extension" \ |
| 1757 | -c "found max_fragment_length extension" \ |
| 1758 | -c "2345 bytes written in 2 fragments" \ |
| 1759 | -s "2048 bytes read" \ |
| 1760 | -s "297 bytes read" |
| 1761 | |
Hanno Becker | 4aed27e | 2017-09-18 15:00:34 +0100 | [diff] [blame] | 1762 | requires_config_enabled MBEDTLS_SSL_MAX_FRAGMENT_LENGTH |
Manuel Pégourié-Gonnard | 23eb74d | 2015-01-21 14:37:13 +0000 | [diff] [blame] | 1763 | run_test "Max fragment length: DTLS client, larger message" \ |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1764 | "$P_SRV debug_level=3 dtls=1" \ |
| 1765 | "$P_CLI debug_level=3 dtls=1 max_frag_len=2048 request_size=2345" \ |
| 1766 | 1 \ |
Manuel Pégourié-Gonnard | a2cda6b | 2015-08-31 18:30:52 +0200 | [diff] [blame] | 1767 | -c "Maximum fragment length is 2048" \ |
| 1768 | -s "Maximum fragment length is 2048" \ |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1769 | -c "client hello, adding max_fragment_length extension" \ |
| 1770 | -s "found max fragment length extension" \ |
| 1771 | -s "server hello, max_fragment_length extension" \ |
| 1772 | -c "found max_fragment_length extension" \ |
| 1773 | -c "fragment larger than.*maximum" |
| 1774 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1775 | # Tests for renegotiation |
| 1776 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1777 | # Renegotiation SCSV always added, regardless of SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1778 | run_test "Renegotiation: none, for reference" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1779 | "$P_SRV debug_level=3 exchanges=2 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1780 | "$P_CLI debug_level=3 exchanges=2" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1781 | 0 \ |
| 1782 | -C "client hello, adding renegotiation extension" \ |
| 1783 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1784 | -S "found renegotiation extension" \ |
| 1785 | -s "server hello, secure renegotiation extension" \ |
| 1786 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1787 | -C "=> renegotiate" \ |
| 1788 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1789 | -S "write hello request" |
| 1790 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1791 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1792 | run_test "Renegotiation: client-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1793 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1794 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1795 | 0 \ |
| 1796 | -c "client hello, adding renegotiation extension" \ |
| 1797 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1798 | -s "found renegotiation extension" \ |
| 1799 | -s "server hello, secure renegotiation extension" \ |
| 1800 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1801 | -c "=> renegotiate" \ |
| 1802 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1803 | -S "write hello request" |
| 1804 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1805 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1806 | run_test "Renegotiation: server-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1807 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional renegotiate=1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1808 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1809 | 0 \ |
| 1810 | -c "client hello, adding renegotiation extension" \ |
| 1811 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1812 | -s "found renegotiation extension" \ |
| 1813 | -s "server hello, secure renegotiation extension" \ |
| 1814 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1815 | -c "=> renegotiate" \ |
| 1816 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1817 | -s "write hello request" |
| 1818 | |
Janos Follath | b0f148c | 2017-10-05 12:29:42 +0100 | [diff] [blame] | 1819 | # Checks that no Signature Algorithm with SHA-1 gets negotiated. Negotiating SHA-1 would mean that |
| 1820 | # the server did not parse the Signature Algorithm extension. This test is valid only if an MD |
| 1821 | # algorithm stronger than SHA-1 is enabled in config.h |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1822 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Janos Follath | b0f148c | 2017-10-05 12:29:42 +0100 | [diff] [blame] | 1823 | run_test "Renegotiation: Signature Algorithms parsing, client-initiated" \ |
| 1824 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional" \ |
| 1825 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \ |
| 1826 | 0 \ |
| 1827 | -c "client hello, adding renegotiation extension" \ |
| 1828 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1829 | -s "found renegotiation extension" \ |
| 1830 | -s "server hello, secure renegotiation extension" \ |
| 1831 | -c "found renegotiation extension" \ |
| 1832 | -c "=> renegotiate" \ |
| 1833 | -s "=> renegotiate" \ |
| 1834 | -S "write hello request" \ |
| 1835 | -S "client hello v3, signature_algorithm ext: 2" # Is SHA-1 negotiated? |
| 1836 | |
| 1837 | # Checks that no Signature Algorithm with SHA-1 gets negotiated. Negotiating SHA-1 would mean that |
| 1838 | # the server did not parse the Signature Algorithm extension. This test is valid only if an MD |
| 1839 | # algorithm stronger than SHA-1 is enabled in config.h |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1840 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Janos Follath | b0f148c | 2017-10-05 12:29:42 +0100 | [diff] [blame] | 1841 | run_test "Renegotiation: Signature Algorithms parsing, server-initiated" \ |
| 1842 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional renegotiate=1" \ |
| 1843 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
| 1844 | 0 \ |
| 1845 | -c "client hello, adding renegotiation extension" \ |
| 1846 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1847 | -s "found renegotiation extension" \ |
| 1848 | -s "server hello, secure renegotiation extension" \ |
| 1849 | -c "found renegotiation extension" \ |
| 1850 | -c "=> renegotiate" \ |
| 1851 | -s "=> renegotiate" \ |
| 1852 | -s "write hello request" \ |
| 1853 | -S "client hello v3, signature_algorithm ext: 2" # Is SHA-1 negotiated? |
| 1854 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1855 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1856 | run_test "Renegotiation: double" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1857 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 auth_mode=optional renegotiate=1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1858 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1859 | 0 \ |
| 1860 | -c "client hello, adding renegotiation extension" \ |
| 1861 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1862 | -s "found renegotiation extension" \ |
| 1863 | -s "server hello, secure renegotiation extension" \ |
| 1864 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1865 | -c "=> renegotiate" \ |
| 1866 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1867 | -s "write hello request" |
| 1868 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1869 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1870 | run_test "Renegotiation: client-initiated, server-rejected" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1871 | "$P_SRV debug_level=3 exchanges=2 renegotiation=0 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1872 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1873 | 1 \ |
| 1874 | -c "client hello, adding renegotiation extension" \ |
| 1875 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1876 | -S "found renegotiation extension" \ |
| 1877 | -s "server hello, secure renegotiation extension" \ |
| 1878 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1879 | -c "=> renegotiate" \ |
| 1880 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1881 | -S "write hello request" \ |
Manuel Pégourié-Gonnard | 6591962 | 2014-08-19 12:50:30 +0200 | [diff] [blame] | 1882 | -c "SSL - Unexpected message at ServerHello in renegotiation" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1883 | -c "failed" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1884 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1885 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1886 | run_test "Renegotiation: server-initiated, client-rejected, default" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1887 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1888 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1889 | 0 \ |
| 1890 | -C "client hello, adding renegotiation extension" \ |
| 1891 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1892 | -S "found renegotiation extension" \ |
| 1893 | -s "server hello, secure renegotiation extension" \ |
| 1894 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1895 | -C "=> renegotiate" \ |
| 1896 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1897 | -s "write hello request" \ |
Manuel Pégourié-Gonnard | a9964db | 2014-07-03 19:29:16 +0200 | [diff] [blame] | 1898 | -S "SSL - An unexpected message was received from our peer" \ |
| 1899 | -S "failed" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 1900 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1901 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1902 | run_test "Renegotiation: server-initiated, client-rejected, not enforced" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1903 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1904 | renego_delay=-1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1905 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1906 | 0 \ |
| 1907 | -C "client hello, adding renegotiation extension" \ |
| 1908 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1909 | -S "found renegotiation extension" \ |
| 1910 | -s "server hello, secure renegotiation extension" \ |
| 1911 | -c "found renegotiation extension" \ |
| 1912 | -C "=> renegotiate" \ |
| 1913 | -S "=> renegotiate" \ |
| 1914 | -s "write hello request" \ |
| 1915 | -S "SSL - An unexpected message was received from our peer" \ |
| 1916 | -S "failed" |
| 1917 | |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 1918 | # delay 2 for 1 alert record + 1 application data record |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1919 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1920 | run_test "Renegotiation: server-initiated, client-rejected, delay 2" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1921 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1922 | renego_delay=2 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1923 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1924 | 0 \ |
| 1925 | -C "client hello, adding renegotiation extension" \ |
| 1926 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1927 | -S "found renegotiation extension" \ |
| 1928 | -s "server hello, secure renegotiation extension" \ |
| 1929 | -c "found renegotiation extension" \ |
| 1930 | -C "=> renegotiate" \ |
| 1931 | -S "=> renegotiate" \ |
| 1932 | -s "write hello request" \ |
| 1933 | -S "SSL - An unexpected message was received from our peer" \ |
| 1934 | -S "failed" |
| 1935 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1936 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1937 | run_test "Renegotiation: server-initiated, client-rejected, delay 0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1938 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1939 | renego_delay=0 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1940 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1941 | 0 \ |
| 1942 | -C "client hello, adding renegotiation extension" \ |
| 1943 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1944 | -S "found renegotiation extension" \ |
| 1945 | -s "server hello, secure renegotiation extension" \ |
| 1946 | -c "found renegotiation extension" \ |
| 1947 | -C "=> renegotiate" \ |
| 1948 | -S "=> renegotiate" \ |
| 1949 | -s "write hello request" \ |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 1950 | -s "SSL - An unexpected message was received from our peer" |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1951 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1952 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1953 | run_test "Renegotiation: server-initiated, client-accepted, delay 0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1954 | "$P_SRV debug_level=3 exchanges=2 renegotiation=1 renegotiate=1 \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1955 | renego_delay=0 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1956 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1957 | 0 \ |
| 1958 | -c "client hello, adding renegotiation extension" \ |
| 1959 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1960 | -s "found renegotiation extension" \ |
| 1961 | -s "server hello, secure renegotiation extension" \ |
| 1962 | -c "found renegotiation extension" \ |
| 1963 | -c "=> renegotiate" \ |
| 1964 | -s "=> renegotiate" \ |
| 1965 | -s "write hello request" \ |
| 1966 | -S "SSL - An unexpected message was received from our peer" \ |
| 1967 | -S "failed" |
| 1968 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1969 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1970 | run_test "Renegotiation: periodic, just below period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1971 | "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1972 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
| 1973 | 0 \ |
| 1974 | -C "client hello, adding renegotiation extension" \ |
| 1975 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1976 | -S "found renegotiation extension" \ |
| 1977 | -s "server hello, secure renegotiation extension" \ |
| 1978 | -c "found renegotiation extension" \ |
| 1979 | -S "record counter limit reached: renegotiate" \ |
| 1980 | -C "=> renegotiate" \ |
| 1981 | -S "=> renegotiate" \ |
| 1982 | -S "write hello request" \ |
| 1983 | -S "SSL - An unexpected message was received from our peer" \ |
| 1984 | -S "failed" |
| 1985 | |
Manuel Pégourié-Gonnard | 9835bc0 | 2015-01-14 14:41:58 +0100 | [diff] [blame] | 1986 | # one extra exchange to be able to complete renego |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 1987 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1988 | run_test "Renegotiation: periodic, just above period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1989 | "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 9835bc0 | 2015-01-14 14:41:58 +0100 | [diff] [blame] | 1990 | "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1991 | 0 \ |
| 1992 | -c "client hello, adding renegotiation extension" \ |
| 1993 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1994 | -s "found renegotiation extension" \ |
| 1995 | -s "server hello, secure renegotiation extension" \ |
| 1996 | -c "found renegotiation extension" \ |
| 1997 | -s "record counter limit reached: renegotiate" \ |
| 1998 | -c "=> renegotiate" \ |
| 1999 | -s "=> renegotiate" \ |
| 2000 | -s "write hello request" \ |
| 2001 | -S "SSL - An unexpected message was received from our peer" \ |
| 2002 | -S "failed" |
| 2003 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2004 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 2005 | run_test "Renegotiation: periodic, two times period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 2006 | "$P_SRV debug_level=3 exchanges=9 renegotiation=1 renego_period=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 9835bc0 | 2015-01-14 14:41:58 +0100 | [diff] [blame] | 2007 | "$P_CLI debug_level=3 exchanges=7 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 2008 | 0 \ |
| 2009 | -c "client hello, adding renegotiation extension" \ |
| 2010 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2011 | -s "found renegotiation extension" \ |
| 2012 | -s "server hello, secure renegotiation extension" \ |
| 2013 | -c "found renegotiation extension" \ |
| 2014 | -s "record counter limit reached: renegotiate" \ |
| 2015 | -c "=> renegotiate" \ |
| 2016 | -s "=> renegotiate" \ |
| 2017 | -s "write hello request" \ |
| 2018 | -S "SSL - An unexpected message was received from our peer" \ |
| 2019 | -S "failed" |
| 2020 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2021 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 2022 | run_test "Renegotiation: periodic, above period, disabled" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 2023 | "$P_SRV debug_level=3 exchanges=9 renegotiation=0 renego_period=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 2024 | "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \ |
| 2025 | 0 \ |
| 2026 | -C "client hello, adding renegotiation extension" \ |
| 2027 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2028 | -S "found renegotiation extension" \ |
| 2029 | -s "server hello, secure renegotiation extension" \ |
| 2030 | -c "found renegotiation extension" \ |
| 2031 | -S "record counter limit reached: renegotiate" \ |
| 2032 | -C "=> renegotiate" \ |
| 2033 | -S "=> renegotiate" \ |
| 2034 | -S "write hello request" \ |
| 2035 | -S "SSL - An unexpected message was received from our peer" \ |
| 2036 | -S "failed" |
| 2037 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2038 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2039 | run_test "Renegotiation: nbio, client-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 2040 | "$P_SRV debug_level=3 nbio=2 exchanges=2 renegotiation=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2041 | "$P_CLI debug_level=3 nbio=2 exchanges=2 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | f07f421 | 2014-08-15 19:04:47 +0200 | [diff] [blame] | 2042 | 0 \ |
| 2043 | -c "client hello, adding renegotiation extension" \ |
| 2044 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2045 | -s "found renegotiation extension" \ |
| 2046 | -s "server hello, secure renegotiation extension" \ |
| 2047 | -c "found renegotiation extension" \ |
| 2048 | -c "=> renegotiate" \ |
| 2049 | -s "=> renegotiate" \ |
| 2050 | -S "write hello request" |
| 2051 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2052 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2053 | run_test "Renegotiation: nbio, server-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 2054 | "$P_SRV debug_level=3 nbio=2 exchanges=2 renegotiation=1 renegotiate=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2055 | "$P_CLI debug_level=3 nbio=2 exchanges=2 renegotiation=1" \ |
Manuel Pégourié-Gonnard | f07f421 | 2014-08-15 19:04:47 +0200 | [diff] [blame] | 2056 | 0 \ |
| 2057 | -c "client hello, adding renegotiation extension" \ |
| 2058 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2059 | -s "found renegotiation extension" \ |
| 2060 | -s "server hello, secure renegotiation extension" \ |
| 2061 | -c "found renegotiation extension" \ |
| 2062 | -c "=> renegotiate" \ |
| 2063 | -s "=> renegotiate" \ |
| 2064 | -s "write hello request" |
| 2065 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2066 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2067 | run_test "Renegotiation: openssl server, client-initiated" \ |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 2068 | "$O_SRV -www" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2069 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 2070 | 0 \ |
| 2071 | -c "client hello, adding renegotiation extension" \ |
| 2072 | -c "found renegotiation extension" \ |
| 2073 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2074 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 2075 | -C "error" \ |
| 2076 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 2077 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2078 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2079 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2080 | run_test "Renegotiation: gnutls server strict, client-initiated" \ |
| 2081 | "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2082 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 2083 | 0 \ |
| 2084 | -c "client hello, adding renegotiation extension" \ |
| 2085 | -c "found renegotiation extension" \ |
| 2086 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2087 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 2088 | -C "error" \ |
| 2089 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 2090 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2091 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2092 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2093 | run_test "Renegotiation: gnutls server unsafe, client-initiated default" \ |
| 2094 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2095 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \ |
| 2096 | 1 \ |
| 2097 | -c "client hello, adding renegotiation extension" \ |
| 2098 | -C "found renegotiation extension" \ |
| 2099 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2100 | -c "mbedtls_ssl_handshake() returned" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2101 | -c "error" \ |
| 2102 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 2103 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2104 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2105 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2106 | run_test "Renegotiation: gnutls server unsafe, client-inititated no legacy" \ |
| 2107 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2108 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \ |
| 2109 | allow_legacy=0" \ |
| 2110 | 1 \ |
| 2111 | -c "client hello, adding renegotiation extension" \ |
| 2112 | -C "found renegotiation extension" \ |
| 2113 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2114 | -c "mbedtls_ssl_handshake() returned" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2115 | -c "error" \ |
| 2116 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 2117 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2118 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2119 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2120 | run_test "Renegotiation: gnutls server unsafe, client-inititated legacy" \ |
| 2121 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2122 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \ |
| 2123 | allow_legacy=1" \ |
| 2124 | 0 \ |
| 2125 | -c "client hello, adding renegotiation extension" \ |
| 2126 | -C "found renegotiation extension" \ |
| 2127 | -c "=> renegotiate" \ |
| 2128 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2129 | -C "error" \ |
| 2130 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 2131 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2132 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 30d16eb | 2014-08-19 17:43:50 +0200 | [diff] [blame] | 2133 | run_test "Renegotiation: DTLS, client-initiated" \ |
| 2134 | "$P_SRV debug_level=3 dtls=1 exchanges=2 renegotiation=1" \ |
| 2135 | "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 renegotiate=1" \ |
| 2136 | 0 \ |
| 2137 | -c "client hello, adding renegotiation extension" \ |
| 2138 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2139 | -s "found renegotiation extension" \ |
| 2140 | -s "server hello, secure renegotiation extension" \ |
| 2141 | -c "found renegotiation extension" \ |
| 2142 | -c "=> renegotiate" \ |
| 2143 | -s "=> renegotiate" \ |
| 2144 | -S "write hello request" |
| 2145 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2146 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | c392b24 | 2014-08-19 17:53:11 +0200 | [diff] [blame] | 2147 | run_test "Renegotiation: DTLS, server-initiated" \ |
| 2148 | "$P_SRV debug_level=3 dtls=1 exchanges=2 renegotiation=1 renegotiate=1" \ |
Manuel Pégourié-Gonnard | df9a0a8 | 2014-10-02 14:17:18 +0200 | [diff] [blame] | 2149 | "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 \ |
| 2150 | read_timeout=1000 max_resend=2" \ |
Manuel Pégourié-Gonnard | c392b24 | 2014-08-19 17:53:11 +0200 | [diff] [blame] | 2151 | 0 \ |
| 2152 | -c "client hello, adding renegotiation extension" \ |
| 2153 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2154 | -s "found renegotiation extension" \ |
| 2155 | -s "server hello, secure renegotiation extension" \ |
| 2156 | -c "found renegotiation extension" \ |
| 2157 | -c "=> renegotiate" \ |
| 2158 | -s "=> renegotiate" \ |
| 2159 | -s "write hello request" |
| 2160 | |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2161 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Andres AG | 692ad84 | 2017-01-19 16:30:57 +0000 | [diff] [blame] | 2162 | run_test "Renegotiation: DTLS, renego_period overflow" \ |
| 2163 | "$P_SRV debug_level=3 dtls=1 exchanges=4 renegotiation=1 renego_period=18446462598732840962 auth_mode=optional" \ |
| 2164 | "$P_CLI debug_level=3 dtls=1 exchanges=4 renegotiation=1" \ |
| 2165 | 0 \ |
| 2166 | -c "client hello, adding renegotiation extension" \ |
| 2167 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 2168 | -s "found renegotiation extension" \ |
| 2169 | -s "server hello, secure renegotiation extension" \ |
| 2170 | -s "record counter limit reached: renegotiate" \ |
| 2171 | -c "=> renegotiate" \ |
| 2172 | -s "=> renegotiate" \ |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2173 | -s "write hello request" |
Andres AG | 692ad84 | 2017-01-19 16:30:57 +0000 | [diff] [blame] | 2174 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 2175 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 2176 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | f1499f6 | 2014-08-31 17:13:13 +0200 | [diff] [blame] | 2177 | run_test "Renegotiation: DTLS, gnutls server, client-initiated" \ |
| 2178 | "$G_SRV -u --mtu 4096" \ |
| 2179 | "$P_CLI debug_level=3 dtls=1 exchanges=1 renegotiation=1 renegotiate=1" \ |
| 2180 | 0 \ |
| 2181 | -c "client hello, adding renegotiation extension" \ |
| 2182 | -c "found renegotiation extension" \ |
| 2183 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2184 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | f1499f6 | 2014-08-31 17:13:13 +0200 | [diff] [blame] | 2185 | -C "error" \ |
| 2186 | -s "Extra-header:" |
| 2187 | |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2188 | # Test for the "secure renegotation" extension only (no actual renegotiation) |
| 2189 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2190 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2191 | run_test "Renego ext: gnutls server strict, client default" \ |
| 2192 | "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
| 2193 | "$P_CLI debug_level=3" \ |
| 2194 | 0 \ |
| 2195 | -c "found renegotiation extension" \ |
| 2196 | -C "error" \ |
| 2197 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 2198 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2199 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2200 | run_test "Renego ext: gnutls server unsafe, client default" \ |
| 2201 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2202 | "$P_CLI debug_level=3" \ |
| 2203 | 0 \ |
| 2204 | -C "found renegotiation extension" \ |
| 2205 | -C "error" \ |
| 2206 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 2207 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2208 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2209 | run_test "Renego ext: gnutls server unsafe, client break legacy" \ |
| 2210 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2211 | "$P_CLI debug_level=3 allow_legacy=-1" \ |
| 2212 | 1 \ |
| 2213 | -C "found renegotiation extension" \ |
| 2214 | -c "error" \ |
| 2215 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 2216 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2217 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2218 | run_test "Renego ext: gnutls client strict, server default" \ |
| 2219 | "$P_SRV debug_level=3" \ |
| 2220 | "$G_CLI --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
| 2221 | 0 \ |
| 2222 | -s "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 2223 | -s "server hello, secure renegotiation extension" |
| 2224 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2225 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2226 | run_test "Renego ext: gnutls client unsafe, server default" \ |
| 2227 | "$P_SRV debug_level=3" \ |
| 2228 | "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2229 | 0 \ |
| 2230 | -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 2231 | -S "server hello, secure renegotiation extension" |
| 2232 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 2233 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 2234 | run_test "Renego ext: gnutls client unsafe, server break legacy" \ |
| 2235 | "$P_SRV debug_level=3 allow_legacy=-1" \ |
| 2236 | "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2237 | 1 \ |
| 2238 | -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 2239 | -S "server hello, secure renegotiation extension" |
| 2240 | |
Janos Follath | 0b24234 | 2016-02-17 10:11:21 +0000 | [diff] [blame] | 2241 | # Tests for silently dropping trailing extra bytes in .der certificates |
| 2242 | |
| 2243 | requires_gnutls |
| 2244 | run_test "DER format: no trailing bytes" \ |
| 2245 | "$P_SRV crt_file=data_files/server5-der0.crt \ |
| 2246 | key_file=data_files/server5.key" \ |
| 2247 | "$G_CLI " \ |
| 2248 | 0 \ |
| 2249 | -c "Handshake was completed" \ |
| 2250 | |
| 2251 | requires_gnutls |
| 2252 | run_test "DER format: with a trailing zero byte" \ |
| 2253 | "$P_SRV crt_file=data_files/server5-der1a.crt \ |
| 2254 | key_file=data_files/server5.key" \ |
| 2255 | "$G_CLI " \ |
| 2256 | 0 \ |
| 2257 | -c "Handshake was completed" \ |
| 2258 | |
| 2259 | requires_gnutls |
| 2260 | run_test "DER format: with a trailing random byte" \ |
| 2261 | "$P_SRV crt_file=data_files/server5-der1b.crt \ |
| 2262 | key_file=data_files/server5.key" \ |
| 2263 | "$G_CLI " \ |
| 2264 | 0 \ |
| 2265 | -c "Handshake was completed" \ |
| 2266 | |
| 2267 | requires_gnutls |
| 2268 | run_test "DER format: with 2 trailing random bytes" \ |
| 2269 | "$P_SRV crt_file=data_files/server5-der2.crt \ |
| 2270 | key_file=data_files/server5.key" \ |
| 2271 | "$G_CLI " \ |
| 2272 | 0 \ |
| 2273 | -c "Handshake was completed" \ |
| 2274 | |
| 2275 | requires_gnutls |
| 2276 | run_test "DER format: with 4 trailing random bytes" \ |
| 2277 | "$P_SRV crt_file=data_files/server5-der4.crt \ |
| 2278 | key_file=data_files/server5.key" \ |
| 2279 | "$G_CLI " \ |
| 2280 | 0 \ |
| 2281 | -c "Handshake was completed" \ |
| 2282 | |
| 2283 | requires_gnutls |
| 2284 | run_test "DER format: with 8 trailing random bytes" \ |
| 2285 | "$P_SRV crt_file=data_files/server5-der8.crt \ |
| 2286 | key_file=data_files/server5.key" \ |
| 2287 | "$G_CLI " \ |
| 2288 | 0 \ |
| 2289 | -c "Handshake was completed" \ |
| 2290 | |
| 2291 | requires_gnutls |
| 2292 | run_test "DER format: with 9 trailing random bytes" \ |
| 2293 | "$P_SRV crt_file=data_files/server5-der9.crt \ |
| 2294 | key_file=data_files/server5.key" \ |
| 2295 | "$G_CLI " \ |
| 2296 | 0 \ |
| 2297 | -c "Handshake was completed" \ |
| 2298 | |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2299 | # Tests for auth_mode |
| 2300 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2301 | run_test "Authentication: server badcert, client required" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2302 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
| 2303 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2304 | "$P_CLI debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2305 | 1 \ |
| 2306 | -c "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2307 | -c "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2308 | -c "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2309 | -c "X509 - Certificate verification failed" |
| 2310 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2311 | run_test "Authentication: server badcert, client optional" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2312 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
| 2313 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2314 | "$P_CLI debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2315 | 0 \ |
| 2316 | -c "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2317 | -c "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2318 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2319 | -C "X509 - Certificate verification failed" |
| 2320 | |
Hanno Becker | e6706e6 | 2017-05-15 16:05:15 +0100 | [diff] [blame] | 2321 | run_test "Authentication: server goodcert, client optional, no trusted CA" \ |
| 2322 | "$P_SRV" \ |
| 2323 | "$P_CLI debug_level=3 auth_mode=optional ca_file=none ca_path=none" \ |
| 2324 | 0 \ |
| 2325 | -c "x509_verify_cert() returned" \ |
| 2326 | -c "! The certificate is not correctly signed by the trusted CA" \ |
| 2327 | -c "! Certificate verification flags"\ |
| 2328 | -C "! mbedtls_ssl_handshake returned" \ |
| 2329 | -C "X509 - Certificate verification failed" \ |
| 2330 | -C "SSL - No CA Chain is set, but required to operate" |
| 2331 | |
| 2332 | run_test "Authentication: server goodcert, client required, no trusted CA" \ |
| 2333 | "$P_SRV" \ |
| 2334 | "$P_CLI debug_level=3 auth_mode=required ca_file=none ca_path=none" \ |
| 2335 | 1 \ |
| 2336 | -c "x509_verify_cert() returned" \ |
| 2337 | -c "! The certificate is not correctly signed by the trusted CA" \ |
| 2338 | -c "! Certificate verification flags"\ |
| 2339 | -c "! mbedtls_ssl_handshake returned" \ |
| 2340 | -c "SSL - No CA Chain is set, but required to operate" |
| 2341 | |
| 2342 | # The purpose of the next two tests is to test the client's behaviour when receiving a server |
| 2343 | # certificate with an unsupported elliptic curve. This should usually not happen because |
| 2344 | # the client informs the server about the supported curves - it does, though, in the |
| 2345 | # corner case of a static ECDH suite, because the server doesn't check the curve on that |
| 2346 | # occasion (to be fixed). If that bug's fixed, the test needs to be altered to use a |
| 2347 | # different means to have the server ignoring the client's supported curve list. |
| 2348 | |
| 2349 | requires_config_enabled MBEDTLS_ECP_C |
| 2350 | run_test "Authentication: server ECDH p256v1, client required, p256v1 unsupported" \ |
| 2351 | "$P_SRV debug_level=1 key_file=data_files/server5.key \ |
| 2352 | crt_file=data_files/server5.ku-ka.crt" \ |
| 2353 | "$P_CLI debug_level=3 auth_mode=required curves=secp521r1" \ |
| 2354 | 1 \ |
| 2355 | -c "bad certificate (EC key curve)"\ |
| 2356 | -c "! Certificate verification flags"\ |
| 2357 | -C "bad server certificate (ECDH curve)" # Expect failure at earlier verification stage |
| 2358 | |
| 2359 | requires_config_enabled MBEDTLS_ECP_C |
| 2360 | run_test "Authentication: server ECDH p256v1, client optional, p256v1 unsupported" \ |
| 2361 | "$P_SRV debug_level=1 key_file=data_files/server5.key \ |
| 2362 | crt_file=data_files/server5.ku-ka.crt" \ |
| 2363 | "$P_CLI debug_level=3 auth_mode=optional curves=secp521r1" \ |
| 2364 | 1 \ |
| 2365 | -c "bad certificate (EC key curve)"\ |
| 2366 | -c "! Certificate verification flags"\ |
| 2367 | -c "bad server certificate (ECDH curve)" # Expect failure only at ECDH params check |
| 2368 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2369 | run_test "Authentication: server badcert, client none" \ |
Manuel Pégourié-Gonnard | c1da664 | 2014-02-25 14:18:30 +0100 | [diff] [blame] | 2370 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2371 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2372 | "$P_CLI debug_level=1 auth_mode=none" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2373 | 0 \ |
| 2374 | -C "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2375 | -C "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2376 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2377 | -C "X509 - Certificate verification failed" |
| 2378 | |
Simon Butcher | 9900014 | 2016-10-13 17:21:01 +0100 | [diff] [blame] | 2379 | run_test "Authentication: client SHA256, server required" \ |
| 2380 | "$P_SRV auth_mode=required" \ |
| 2381 | "$P_CLI debug_level=3 crt_file=data_files/server6.crt \ |
| 2382 | key_file=data_files/server6.key \ |
| 2383 | force_ciphersuite=TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \ |
| 2384 | 0 \ |
| 2385 | -c "Supported Signature Algorithm found: 4," \ |
| 2386 | -c "Supported Signature Algorithm found: 5," |
| 2387 | |
| 2388 | run_test "Authentication: client SHA384, server required" \ |
| 2389 | "$P_SRV auth_mode=required" \ |
| 2390 | "$P_CLI debug_level=3 crt_file=data_files/server6.crt \ |
| 2391 | key_file=data_files/server6.key \ |
| 2392 | force_ciphersuite=TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256" \ |
| 2393 | 0 \ |
| 2394 | -c "Supported Signature Algorithm found: 4," \ |
| 2395 | -c "Supported Signature Algorithm found: 5," |
| 2396 | |
Gilles Peskine | fd8332e | 2017-05-03 16:25:07 +0200 | [diff] [blame] | 2397 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 2398 | run_test "Authentication: client has no cert, server required (SSLv3)" \ |
| 2399 | "$P_SRV debug_level=3 min_version=ssl3 auth_mode=required" \ |
| 2400 | "$P_CLI debug_level=3 force_version=ssl3 crt_file=none \ |
| 2401 | key_file=data_files/server5.key" \ |
| 2402 | 1 \ |
| 2403 | -S "skip write certificate request" \ |
| 2404 | -C "skip parse certificate request" \ |
| 2405 | -c "got a certificate request" \ |
| 2406 | -c "got no certificate to send" \ |
| 2407 | -S "x509_verify_cert() returned" \ |
| 2408 | -s "client has no certificate" \ |
| 2409 | -s "! mbedtls_ssl_handshake returned" \ |
| 2410 | -c "! mbedtls_ssl_handshake returned" \ |
| 2411 | -s "No client certification received from the client, but required by the authentication mode" |
| 2412 | |
| 2413 | run_test "Authentication: client has no cert, server required (TLS)" \ |
| 2414 | "$P_SRV debug_level=3 auth_mode=required" \ |
| 2415 | "$P_CLI debug_level=3 crt_file=none \ |
| 2416 | key_file=data_files/server5.key" \ |
| 2417 | 1 \ |
| 2418 | -S "skip write certificate request" \ |
| 2419 | -C "skip parse certificate request" \ |
| 2420 | -c "got a certificate request" \ |
| 2421 | -c "= write certificate$" \ |
| 2422 | -C "skip write certificate$" \ |
| 2423 | -S "x509_verify_cert() returned" \ |
| 2424 | -s "client has no certificate" \ |
| 2425 | -s "! mbedtls_ssl_handshake returned" \ |
| 2426 | -c "! mbedtls_ssl_handshake returned" \ |
| 2427 | -s "No client certification received from the client, but required by the authentication mode" |
| 2428 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2429 | run_test "Authentication: client badcert, server required" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2430 | "$P_SRV debug_level=3 auth_mode=required" \ |
| 2431 | "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2432 | key_file=data_files/server5.key" \ |
| 2433 | 1 \ |
| 2434 | -S "skip write certificate request" \ |
| 2435 | -C "skip parse certificate request" \ |
| 2436 | -c "got a certificate request" \ |
| 2437 | -C "skip write certificate" \ |
| 2438 | -C "skip write certificate verify" \ |
| 2439 | -S "skip parse certificate verify" \ |
| 2440 | -s "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2441 | -s "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2442 | -s "! mbedtls_ssl_handshake returned" \ |
Gilles Peskine | 1cc8e34 | 2017-05-03 16:28:34 +0200 | [diff] [blame] | 2443 | -s "send alert level=2 message=48" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2444 | -c "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2445 | -s "X509 - Certificate verification failed" |
Gilles Peskine | 1cc8e34 | 2017-05-03 16:28:34 +0200 | [diff] [blame] | 2446 | # We don't check that the client receives the alert because it might |
| 2447 | # detect that its write end of the connection is closed and abort |
| 2448 | # before reading the alert message. |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2449 | |
Janos Follath | 89baba2 | 2017-04-10 14:34:35 +0100 | [diff] [blame] | 2450 | run_test "Authentication: client cert not trusted, server required" \ |
| 2451 | "$P_SRV debug_level=3 auth_mode=required" \ |
| 2452 | "$P_CLI debug_level=3 crt_file=data_files/server5-selfsigned.crt \ |
| 2453 | key_file=data_files/server5.key" \ |
| 2454 | 1 \ |
| 2455 | -S "skip write certificate request" \ |
| 2456 | -C "skip parse certificate request" \ |
| 2457 | -c "got a certificate request" \ |
| 2458 | -C "skip write certificate" \ |
| 2459 | -C "skip write certificate verify" \ |
| 2460 | -S "skip parse certificate verify" \ |
| 2461 | -s "x509_verify_cert() returned" \ |
| 2462 | -s "! The certificate is not correctly signed by the trusted CA" \ |
| 2463 | -s "! mbedtls_ssl_handshake returned" \ |
| 2464 | -c "! mbedtls_ssl_handshake returned" \ |
| 2465 | -s "X509 - Certificate verification failed" |
| 2466 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2467 | run_test "Authentication: client badcert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2468 | "$P_SRV debug_level=3 auth_mode=optional" \ |
| 2469 | "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2470 | key_file=data_files/server5.key" \ |
| 2471 | 0 \ |
| 2472 | -S "skip write certificate request" \ |
| 2473 | -C "skip parse certificate request" \ |
| 2474 | -c "got a certificate request" \ |
| 2475 | -C "skip write certificate" \ |
| 2476 | -C "skip write certificate verify" \ |
| 2477 | -S "skip parse certificate verify" \ |
| 2478 | -s "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2479 | -s "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2480 | -S "! mbedtls_ssl_handshake returned" \ |
| 2481 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2482 | -S "X509 - Certificate verification failed" |
| 2483 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2484 | run_test "Authentication: client badcert, server none" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2485 | "$P_SRV debug_level=3 auth_mode=none" \ |
| 2486 | "$P_CLI debug_level=3 crt_file=data_files/server5-badsign.crt \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2487 | key_file=data_files/server5.key" \ |
| 2488 | 0 \ |
| 2489 | -s "skip write certificate request" \ |
| 2490 | -C "skip parse certificate request" \ |
| 2491 | -c "got no certificate request" \ |
| 2492 | -c "skip write certificate" \ |
| 2493 | -c "skip write certificate verify" \ |
| 2494 | -s "skip parse certificate verify" \ |
| 2495 | -S "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2496 | -S "! The certificate is not correctly signed by the trusted CA" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2497 | -S "! mbedtls_ssl_handshake returned" \ |
| 2498 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 2499 | -S "X509 - Certificate verification failed" |
| 2500 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2501 | run_test "Authentication: client no cert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2502 | "$P_SRV debug_level=3 auth_mode=optional" \ |
| 2503 | "$P_CLI debug_level=3 crt_file=none key_file=none" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2504 | 0 \ |
| 2505 | -S "skip write certificate request" \ |
| 2506 | -C "skip parse certificate request" \ |
| 2507 | -c "got a certificate request" \ |
| 2508 | -C "skip write certificate$" \ |
| 2509 | -C "got no certificate to send" \ |
| 2510 | -S "SSLv3 client has no certificate" \ |
| 2511 | -c "skip write certificate verify" \ |
| 2512 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2513 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2514 | -S "! mbedtls_ssl_handshake returned" \ |
| 2515 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2516 | -S "X509 - Certificate verification failed" |
| 2517 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2518 | run_test "Authentication: openssl client no cert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2519 | "$P_SRV debug_level=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2520 | "$O_CLI" \ |
| 2521 | 0 \ |
| 2522 | -S "skip write certificate request" \ |
| 2523 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2524 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2525 | -S "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2526 | -S "X509 - Certificate verification failed" |
| 2527 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2528 | run_test "Authentication: client no cert, openssl server optional" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2529 | "$O_SRV -verify 10" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2530 | "$P_CLI debug_level=3 crt_file=none key_file=none" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2531 | 0 \ |
| 2532 | -C "skip parse certificate request" \ |
| 2533 | -c "got a certificate request" \ |
| 2534 | -C "skip write certificate$" \ |
| 2535 | -c "skip write certificate verify" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2536 | -C "! mbedtls_ssl_handshake returned" |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2537 | |
Gilles Peskine | fd8332e | 2017-05-03 16:25:07 +0200 | [diff] [blame] | 2538 | run_test "Authentication: client no cert, openssl server required" \ |
| 2539 | "$O_SRV -Verify 10" \ |
| 2540 | "$P_CLI debug_level=3 crt_file=none key_file=none" \ |
| 2541 | 1 \ |
| 2542 | -C "skip parse certificate request" \ |
| 2543 | -c "got a certificate request" \ |
| 2544 | -C "skip write certificate$" \ |
| 2545 | -c "skip write certificate verify" \ |
| 2546 | -c "! mbedtls_ssl_handshake returned" |
| 2547 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 2548 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2549 | run_test "Authentication: client no cert, ssl3" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2550 | "$P_SRV debug_level=3 auth_mode=optional force_version=ssl3" \ |
Manuel Pégourié-Gonnard | 448ea50 | 2015-01-12 11:40:14 +0100 | [diff] [blame] | 2551 | "$P_CLI debug_level=3 crt_file=none key_file=none min_version=ssl3" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2552 | 0 \ |
| 2553 | -S "skip write certificate request" \ |
| 2554 | -C "skip parse certificate request" \ |
| 2555 | -c "got a certificate request" \ |
| 2556 | -C "skip write certificate$" \ |
| 2557 | -c "skip write certificate verify" \ |
| 2558 | -c "got no certificate to send" \ |
| 2559 | -s "SSLv3 client has no certificate" \ |
| 2560 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2561 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2562 | -S "! mbedtls_ssl_handshake returned" \ |
| 2563 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 2564 | -S "X509 - Certificate verification failed" |
| 2565 | |
Manuel Pégourié-Gonnard | 9107b5f | 2017-07-06 12:16:25 +0200 | [diff] [blame] | 2566 | # The "max_int chain" tests assume that MAX_INTERMEDIATE_CA is set to its |
| 2567 | # default value (8) |
Hanno Becker | a6bca9f | 2017-07-26 13:35:11 +0100 | [diff] [blame] | 2568 | |
Simon Butcher | bcfa6f4 | 2017-07-28 15:59:35 +0100 | [diff] [blame] | 2569 | MAX_IM_CA='8' |
Simon Butcher | 06b7863 | 2017-07-28 01:00:17 +0100 | [diff] [blame] | 2570 | MAX_IM_CA_CONFIG=$( ../scripts/config.pl get MBEDTLS_X509_MAX_INTERMEDIATE_CA) |
Hanno Becker | a6bca9f | 2017-07-26 13:35:11 +0100 | [diff] [blame] | 2571 | |
Simon Butcher | bcfa6f4 | 2017-07-28 15:59:35 +0100 | [diff] [blame] | 2572 | if [ -n "$MAX_IM_CA_CONFIG" ] && [ "$MAX_IM_CA_CONFIG" -ne "$MAX_IM_CA" ]; then |
Simon Butcher | 06b7863 | 2017-07-28 01:00:17 +0100 | [diff] [blame] | 2573 | printf "The ${CONFIG_H} file contains a value for the configuration of\n" |
Simon Butcher | bcfa6f4 | 2017-07-28 15:59:35 +0100 | [diff] [blame] | 2574 | printf "MBEDTLS_X509_MAX_INTERMEDIATE_CA that is different from the script’s\n" |
Simon Butcher | 06b7863 | 2017-07-28 01:00:17 +0100 | [diff] [blame] | 2575 | printf "test value of ${MAX_IM_CA}. \n" |
| 2576 | printf "\n" |
Simon Butcher | bcfa6f4 | 2017-07-28 15:59:35 +0100 | [diff] [blame] | 2577 | printf "The tests assume this value and if it changes, the tests in this\n" |
| 2578 | printf "script should also be adjusted.\n" |
Simon Butcher | 06b7863 | 2017-07-28 01:00:17 +0100 | [diff] [blame] | 2579 | printf "\n" |
Simon Butcher | 06b7863 | 2017-07-28 01:00:17 +0100 | [diff] [blame] | 2580 | |
| 2581 | exit 1 |
Hanno Becker | a6bca9f | 2017-07-26 13:35:11 +0100 | [diff] [blame] | 2582 | fi |
| 2583 | |
Manuel Pégourié-Gonnard | 81bb6b6 | 2017-06-26 10:45:33 +0200 | [diff] [blame] | 2584 | run_test "Authentication: server max_int chain, client default" \ |
| 2585 | "$P_SRV crt_file=data_files/dir-maxpath/c09.pem \ |
| 2586 | key_file=data_files/dir-maxpath/09.key" \ |
| 2587 | "$P_CLI server_name=CA09 ca_file=data_files/dir-maxpath/00.crt" \ |
| 2588 | 0 \ |
| 2589 | -C "X509 - A fatal error occured" |
| 2590 | |
| 2591 | run_test "Authentication: server max_int+1 chain, client default" \ |
| 2592 | "$P_SRV crt_file=data_files/dir-maxpath/c10.pem \ |
| 2593 | key_file=data_files/dir-maxpath/10.key" \ |
| 2594 | "$P_CLI server_name=CA10 ca_file=data_files/dir-maxpath/00.crt" \ |
| 2595 | 1 \ |
| 2596 | -c "X509 - A fatal error occured" |
| 2597 | |
| 2598 | run_test "Authentication: server max_int+1 chain, client optional" \ |
| 2599 | "$P_SRV crt_file=data_files/dir-maxpath/c10.pem \ |
| 2600 | key_file=data_files/dir-maxpath/10.key" \ |
| 2601 | "$P_CLI server_name=CA10 ca_file=data_files/dir-maxpath/00.crt \ |
| 2602 | auth_mode=optional" \ |
| 2603 | 1 \ |
| 2604 | -c "X509 - A fatal error occured" |
| 2605 | |
| 2606 | run_test "Authentication: server max_int+1 chain, client none" \ |
| 2607 | "$P_SRV crt_file=data_files/dir-maxpath/c10.pem \ |
| 2608 | key_file=data_files/dir-maxpath/10.key" \ |
| 2609 | "$P_CLI server_name=CA10 ca_file=data_files/dir-maxpath/00.crt \ |
| 2610 | auth_mode=none" \ |
| 2611 | 0 \ |
| 2612 | -C "X509 - A fatal error occured" |
| 2613 | |
| 2614 | run_test "Authentication: client max_int+1 chain, server default" \ |
| 2615 | "$P_SRV ca_file=data_files/dir-maxpath/00.crt" \ |
| 2616 | "$P_CLI crt_file=data_files/dir-maxpath/c10.pem \ |
| 2617 | key_file=data_files/dir-maxpath/10.key" \ |
| 2618 | 0 \ |
| 2619 | -S "X509 - A fatal error occured" |
| 2620 | |
| 2621 | run_test "Authentication: client max_int+1 chain, server optional" \ |
| 2622 | "$P_SRV ca_file=data_files/dir-maxpath/00.crt auth_mode=optional" \ |
| 2623 | "$P_CLI crt_file=data_files/dir-maxpath/c10.pem \ |
| 2624 | key_file=data_files/dir-maxpath/10.key" \ |
| 2625 | 1 \ |
| 2626 | -s "X509 - A fatal error occured" |
| 2627 | |
| 2628 | run_test "Authentication: client max_int+1 chain, server required" \ |
| 2629 | "$P_SRV ca_file=data_files/dir-maxpath/00.crt auth_mode=required" \ |
| 2630 | "$P_CLI crt_file=data_files/dir-maxpath/c10.pem \ |
| 2631 | key_file=data_files/dir-maxpath/10.key" \ |
| 2632 | 1 \ |
| 2633 | -s "X509 - A fatal error occured" |
| 2634 | |
| 2635 | run_test "Authentication: client max_int chain, server required" \ |
| 2636 | "$P_SRV ca_file=data_files/dir-maxpath/00.crt auth_mode=required" \ |
| 2637 | "$P_CLI crt_file=data_files/dir-maxpath/c09.pem \ |
| 2638 | key_file=data_files/dir-maxpath/09.key" \ |
| 2639 | 0 \ |
| 2640 | -S "X509 - A fatal error occured" |
| 2641 | |
Janos Follath | 89baba2 | 2017-04-10 14:34:35 +0100 | [diff] [blame] | 2642 | # Tests for CA list in CertificateRequest messages |
| 2643 | |
| 2644 | run_test "Authentication: send CA list in CertificateRequest (default)" \ |
| 2645 | "$P_SRV debug_level=3 auth_mode=required" \ |
| 2646 | "$P_CLI crt_file=data_files/server6.crt \ |
| 2647 | key_file=data_files/server6.key" \ |
| 2648 | 0 \ |
| 2649 | -s "requested DN" |
| 2650 | |
| 2651 | run_test "Authentication: do not send CA list in CertificateRequest" \ |
| 2652 | "$P_SRV debug_level=3 auth_mode=required cert_req_ca_list=0" \ |
| 2653 | "$P_CLI crt_file=data_files/server6.crt \ |
| 2654 | key_file=data_files/server6.key" \ |
| 2655 | 0 \ |
| 2656 | -S "requested DN" |
| 2657 | |
| 2658 | run_test "Authentication: send CA list in CertificateRequest, client self signed" \ |
| 2659 | "$P_SRV debug_level=3 auth_mode=required cert_req_ca_list=0" \ |
| 2660 | "$P_CLI debug_level=3 crt_file=data_files/server5-selfsigned.crt \ |
| 2661 | key_file=data_files/server5.key" \ |
| 2662 | 1 \ |
| 2663 | -S "requested DN" \ |
| 2664 | -s "x509_verify_cert() returned" \ |
| 2665 | -s "! The certificate is not correctly signed by the trusted CA" \ |
| 2666 | -s "! mbedtls_ssl_handshake returned" \ |
| 2667 | -c "! mbedtls_ssl_handshake returned" \ |
| 2668 | -s "X509 - Certificate verification failed" |
| 2669 | |
Manuel Pégourié-Gonnard | df331a5 | 2015-01-08 16:43:07 +0100 | [diff] [blame] | 2670 | # Tests for certificate selection based on SHA verson |
| 2671 | |
| 2672 | run_test "Certificate hash: client TLS 1.2 -> SHA-2" \ |
| 2673 | "$P_SRV crt_file=data_files/server5.crt \ |
| 2674 | key_file=data_files/server5.key \ |
| 2675 | crt_file2=data_files/server5-sha1.crt \ |
| 2676 | key_file2=data_files/server5.key" \ |
| 2677 | "$P_CLI force_version=tls1_2" \ |
| 2678 | 0 \ |
| 2679 | -c "signed using.*ECDSA with SHA256" \ |
| 2680 | -C "signed using.*ECDSA with SHA1" |
| 2681 | |
| 2682 | run_test "Certificate hash: client TLS 1.1 -> SHA-1" \ |
| 2683 | "$P_SRV crt_file=data_files/server5.crt \ |
| 2684 | key_file=data_files/server5.key \ |
| 2685 | crt_file2=data_files/server5-sha1.crt \ |
| 2686 | key_file2=data_files/server5.key" \ |
| 2687 | "$P_CLI force_version=tls1_1" \ |
| 2688 | 0 \ |
| 2689 | -C "signed using.*ECDSA with SHA256" \ |
| 2690 | -c "signed using.*ECDSA with SHA1" |
| 2691 | |
| 2692 | run_test "Certificate hash: client TLS 1.0 -> SHA-1" \ |
| 2693 | "$P_SRV crt_file=data_files/server5.crt \ |
| 2694 | key_file=data_files/server5.key \ |
| 2695 | crt_file2=data_files/server5-sha1.crt \ |
| 2696 | key_file2=data_files/server5.key" \ |
| 2697 | "$P_CLI force_version=tls1" \ |
| 2698 | 0 \ |
| 2699 | -C "signed using.*ECDSA with SHA256" \ |
| 2700 | -c "signed using.*ECDSA with SHA1" |
| 2701 | |
| 2702 | run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 1)" \ |
| 2703 | "$P_SRV crt_file=data_files/server5.crt \ |
| 2704 | key_file=data_files/server5.key \ |
| 2705 | crt_file2=data_files/server6.crt \ |
| 2706 | key_file2=data_files/server6.key" \ |
| 2707 | "$P_CLI force_version=tls1_1" \ |
| 2708 | 0 \ |
| 2709 | -c "serial number.*09" \ |
| 2710 | -c "signed using.*ECDSA with SHA256" \ |
| 2711 | -C "signed using.*ECDSA with SHA1" |
| 2712 | |
| 2713 | run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 2)" \ |
| 2714 | "$P_SRV crt_file=data_files/server6.crt \ |
| 2715 | key_file=data_files/server6.key \ |
| 2716 | crt_file2=data_files/server5.crt \ |
| 2717 | key_file2=data_files/server5.key" \ |
| 2718 | "$P_CLI force_version=tls1_1" \ |
| 2719 | 0 \ |
| 2720 | -c "serial number.*0A" \ |
| 2721 | -c "signed using.*ECDSA with SHA256" \ |
| 2722 | -C "signed using.*ECDSA with SHA1" |
| 2723 | |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2724 | # tests for SNI |
| 2725 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2726 | run_test "SNI: no SNI callback" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2727 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2728 | crt_file=data_files/server5.crt key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2729 | "$P_CLI server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2730 | 0 \ |
| 2731 | -S "parse ServerName extension" \ |
| 2732 | -c "issuer name *: C=NL, O=PolarSSL, CN=Polarssl Test EC CA" \ |
| 2733 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2734 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2735 | run_test "SNI: matching cert 1" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2736 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2737 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 4d6f178 | 2015-06-19 14:40:39 +0200 | [diff] [blame] | 2738 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2739 | "$P_CLI server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2740 | 0 \ |
| 2741 | -s "parse ServerName extension" \ |
| 2742 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 2743 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2744 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2745 | run_test "SNI: matching cert 2" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2746 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2747 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 4d6f178 | 2015-06-19 14:40:39 +0200 | [diff] [blame] | 2748 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2749 | "$P_CLI server_name=polarssl.example" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2750 | 0 \ |
| 2751 | -s "parse ServerName extension" \ |
| 2752 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 2753 | -c "subject name *: C=NL, O=PolarSSL, CN=polarssl.example" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2754 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2755 | run_test "SNI: no matching cert" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2756 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2757 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 4d6f178 | 2015-06-19 14:40:39 +0200 | [diff] [blame] | 2758 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2759 | "$P_CLI server_name=nonesuch.example" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2760 | 1 \ |
| 2761 | -s "parse ServerName extension" \ |
| 2762 | -s "ssl_sni_wrapper() returned" \ |
| 2763 | -s "mbedtls_ssl_handshake returned" \ |
| 2764 | -c "mbedtls_ssl_handshake returned" \ |
| 2765 | -c "SSL - A fatal alert message was received from our peer" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 2766 | |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 2767 | run_test "SNI: client auth no override: optional" \ |
| 2768 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2769 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2770 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-" \ |
| 2771 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2772 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 2773 | -S "skip write certificate request" \ |
| 2774 | -C "skip parse certificate request" \ |
| 2775 | -c "got a certificate request" \ |
| 2776 | -C "skip write certificate" \ |
| 2777 | -C "skip write certificate verify" \ |
| 2778 | -S "skip parse certificate verify" |
| 2779 | |
| 2780 | run_test "SNI: client auth override: none -> optional" \ |
| 2781 | "$P_SRV debug_level=3 auth_mode=none \ |
| 2782 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2783 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,optional" \ |
| 2784 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2785 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 2786 | -S "skip write certificate request" \ |
| 2787 | -C "skip parse certificate request" \ |
| 2788 | -c "got a certificate request" \ |
| 2789 | -C "skip write certificate" \ |
| 2790 | -C "skip write certificate verify" \ |
| 2791 | -S "skip parse certificate verify" |
| 2792 | |
| 2793 | run_test "SNI: client auth override: optional -> none" \ |
| 2794 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2795 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2796 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,none" \ |
| 2797 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2798 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 2799 | -s "skip write certificate request" \ |
| 2800 | -C "skip parse certificate request" \ |
| 2801 | -c "got no certificate request" \ |
| 2802 | -c "skip write certificate" \ |
| 2803 | -c "skip write certificate verify" \ |
| 2804 | -s "skip parse certificate verify" |
| 2805 | |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 2806 | run_test "SNI: CA no override" \ |
| 2807 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2808 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2809 | ca_file=data_files/test-ca.crt \ |
| 2810 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,required" \ |
| 2811 | "$P_CLI debug_level=3 server_name=localhost \ |
| 2812 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2813 | 1 \ |
| 2814 | -S "skip write certificate request" \ |
| 2815 | -C "skip parse certificate request" \ |
| 2816 | -c "got a certificate request" \ |
| 2817 | -C "skip write certificate" \ |
| 2818 | -C "skip write certificate verify" \ |
| 2819 | -S "skip parse certificate verify" \ |
| 2820 | -s "x509_verify_cert() returned" \ |
| 2821 | -s "! The certificate is not correctly signed by the trusted CA" \ |
| 2822 | -S "The certificate has been revoked (is on a CRL)" |
| 2823 | |
| 2824 | run_test "SNI: CA override" \ |
| 2825 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2826 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2827 | ca_file=data_files/test-ca.crt \ |
| 2828 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,-,required" \ |
| 2829 | "$P_CLI debug_level=3 server_name=localhost \ |
| 2830 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2831 | 0 \ |
| 2832 | -S "skip write certificate request" \ |
| 2833 | -C "skip parse certificate request" \ |
| 2834 | -c "got a certificate request" \ |
| 2835 | -C "skip write certificate" \ |
| 2836 | -C "skip write certificate verify" \ |
| 2837 | -S "skip parse certificate verify" \ |
| 2838 | -S "x509_verify_cert() returned" \ |
| 2839 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 2840 | -S "The certificate has been revoked (is on a CRL)" |
| 2841 | |
| 2842 | run_test "SNI: CA override with CRL" \ |
| 2843 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2844 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2845 | ca_file=data_files/test-ca.crt \ |
| 2846 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,data_files/crl-ec-sha256.pem,required" \ |
| 2847 | "$P_CLI debug_level=3 server_name=localhost \ |
| 2848 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2849 | 1 \ |
| 2850 | -S "skip write certificate request" \ |
| 2851 | -C "skip parse certificate request" \ |
| 2852 | -c "got a certificate request" \ |
| 2853 | -C "skip write certificate" \ |
| 2854 | -C "skip write certificate verify" \ |
| 2855 | -S "skip parse certificate verify" \ |
| 2856 | -s "x509_verify_cert() returned" \ |
| 2857 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 2858 | -s "The certificate has been revoked (is on a CRL)" |
| 2859 | |
Andres AG | e8b0774 | 2016-12-07 10:01:30 +0000 | [diff] [blame] | 2860 | # Tests for SNI and DTLS |
| 2861 | |
Andres Amaya Garcia | f9519bf | 2018-05-01 20:27:37 +0100 | [diff] [blame] | 2862 | run_test "SNI: DTLS, no SNI callback" \ |
| 2863 | "$P_SRV debug_level=3 dtls=1 \ |
| 2864 | crt_file=data_files/server5.crt key_file=data_files/server5.key" \ |
| 2865 | "$P_CLI server_name=localhost dtls=1" \ |
| 2866 | 0 \ |
| 2867 | -S "parse ServerName extension" \ |
| 2868 | -c "issuer name *: C=NL, O=PolarSSL, CN=Polarssl Test EC CA" \ |
| 2869 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
| 2870 | |
Andres Amaya Garcia | 914eea4 | 2018-05-01 20:26:47 +0100 | [diff] [blame] | 2871 | run_test "SNI: DTLS, matching cert 1" \ |
Andres AG | e8b0774 | 2016-12-07 10:01:30 +0000 | [diff] [blame] | 2872 | "$P_SRV debug_level=3 dtls=1 \ |
| 2873 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2874 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
| 2875 | "$P_CLI server_name=localhost dtls=1" \ |
| 2876 | 0 \ |
| 2877 | -s "parse ServerName extension" \ |
| 2878 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 2879 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
| 2880 | |
Andres Amaya Garcia | f9519bf | 2018-05-01 20:27:37 +0100 | [diff] [blame] | 2881 | run_test "SNI: DTLS, matching cert 2" \ |
| 2882 | "$P_SRV debug_level=3 dtls=1 \ |
| 2883 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2884 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
| 2885 | "$P_CLI server_name=polarssl.example dtls=1" \ |
| 2886 | 0 \ |
| 2887 | -s "parse ServerName extension" \ |
| 2888 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 2889 | -c "subject name *: C=NL, O=PolarSSL, CN=polarssl.example" |
| 2890 | |
| 2891 | run_test "SNI: DTLS, no matching cert" \ |
| 2892 | "$P_SRV debug_level=3 dtls=1 \ |
| 2893 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2894 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-,polarssl.example,data_files/server1-nospace.crt,data_files/server1.key,-,-,-" \ |
| 2895 | "$P_CLI server_name=nonesuch.example dtls=1" \ |
| 2896 | 1 \ |
| 2897 | -s "parse ServerName extension" \ |
| 2898 | -s "ssl_sni_wrapper() returned" \ |
| 2899 | -s "mbedtls_ssl_handshake returned" \ |
| 2900 | -c "mbedtls_ssl_handshake returned" \ |
| 2901 | -c "SSL - A fatal alert message was received from our peer" |
| 2902 | |
| 2903 | run_test "SNI: DTLS, client auth no override: optional" \ |
| 2904 | "$P_SRV debug_level=3 auth_mode=optional dtls=1 \ |
| 2905 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2906 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-" \ |
| 2907 | "$P_CLI debug_level=3 server_name=localhost dtls=1" \ |
| 2908 | 0 \ |
| 2909 | -S "skip write certificate request" \ |
| 2910 | -C "skip parse certificate request" \ |
| 2911 | -c "got a certificate request" \ |
| 2912 | -C "skip write certificate" \ |
| 2913 | -C "skip write certificate verify" \ |
| 2914 | -S "skip parse certificate verify" |
| 2915 | |
| 2916 | run_test "SNI: DTLS, client auth override: none -> optional" \ |
| 2917 | "$P_SRV debug_level=3 auth_mode=none dtls=1 \ |
| 2918 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2919 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,optional" \ |
| 2920 | "$P_CLI debug_level=3 server_name=localhost dtls=1" \ |
| 2921 | 0 \ |
| 2922 | -S "skip write certificate request" \ |
| 2923 | -C "skip parse certificate request" \ |
| 2924 | -c "got a certificate request" \ |
| 2925 | -C "skip write certificate" \ |
| 2926 | -C "skip write certificate verify" \ |
| 2927 | -S "skip parse certificate verify" |
| 2928 | |
| 2929 | run_test "SNI: DTLS, client auth override: optional -> none" \ |
| 2930 | "$P_SRV debug_level=3 auth_mode=optional dtls=1 \ |
| 2931 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2932 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,none" \ |
| 2933 | "$P_CLI debug_level=3 server_name=localhost dtls=1" \ |
| 2934 | 0 \ |
| 2935 | -s "skip write certificate request" \ |
| 2936 | -C "skip parse certificate request" \ |
| 2937 | -c "got no certificate request" \ |
| 2938 | -c "skip write certificate" \ |
| 2939 | -c "skip write certificate verify" \ |
| 2940 | -s "skip parse certificate verify" |
| 2941 | |
| 2942 | run_test "SNI: DTLS, CA no override" \ |
| 2943 | "$P_SRV debug_level=3 auth_mode=optional dtls=1 \ |
| 2944 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2945 | ca_file=data_files/test-ca.crt \ |
| 2946 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,required" \ |
| 2947 | "$P_CLI debug_level=3 server_name=localhost dtls=1 \ |
| 2948 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2949 | 1 \ |
| 2950 | -S "skip write certificate request" \ |
| 2951 | -C "skip parse certificate request" \ |
| 2952 | -c "got a certificate request" \ |
| 2953 | -C "skip write certificate" \ |
| 2954 | -C "skip write certificate verify" \ |
| 2955 | -S "skip parse certificate verify" \ |
| 2956 | -s "x509_verify_cert() returned" \ |
| 2957 | -s "! The certificate is not correctly signed by the trusted CA" \ |
| 2958 | -S "The certificate has been revoked (is on a CRL)" |
| 2959 | |
Andres Amaya Garcia | 914eea4 | 2018-05-01 20:26:47 +0100 | [diff] [blame] | 2960 | run_test "SNI: DTLS, CA override" \ |
Andres AG | e8b0774 | 2016-12-07 10:01:30 +0000 | [diff] [blame] | 2961 | "$P_SRV debug_level=3 auth_mode=optional dtls=1 \ |
| 2962 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 2963 | ca_file=data_files/test-ca.crt \ |
| 2964 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,-,required" \ |
| 2965 | "$P_CLI debug_level=3 server_name=localhost dtls=1 \ |
| 2966 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2967 | 0 \ |
| 2968 | -S "skip write certificate request" \ |
| 2969 | -C "skip parse certificate request" \ |
| 2970 | -c "got a certificate request" \ |
| 2971 | -C "skip write certificate" \ |
| 2972 | -C "skip write certificate verify" \ |
| 2973 | -S "skip parse certificate verify" \ |
| 2974 | -S "x509_verify_cert() returned" \ |
| 2975 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 2976 | -S "The certificate has been revoked (is on a CRL)" |
| 2977 | |
Andres Amaya Garcia | 914eea4 | 2018-05-01 20:26:47 +0100 | [diff] [blame] | 2978 | run_test "SNI: DTLS, CA override with CRL" \ |
Andres AG | e8b0774 | 2016-12-07 10:01:30 +0000 | [diff] [blame] | 2979 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 2980 | crt_file=data_files/server5.crt key_file=data_files/server5.key dtls=1 \ |
| 2981 | ca_file=data_files/test-ca.crt \ |
| 2982 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,data_files/crl-ec-sha256.pem,required" \ |
| 2983 | "$P_CLI debug_level=3 server_name=localhost dtls=1 \ |
| 2984 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 2985 | 1 \ |
| 2986 | -S "skip write certificate request" \ |
| 2987 | -C "skip parse certificate request" \ |
| 2988 | -c "got a certificate request" \ |
| 2989 | -C "skip write certificate" \ |
| 2990 | -C "skip write certificate verify" \ |
| 2991 | -S "skip parse certificate verify" \ |
| 2992 | -s "x509_verify_cert() returned" \ |
| 2993 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 2994 | -s "The certificate has been revoked (is on a CRL)" |
| 2995 | |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 2996 | # Tests for non-blocking I/O: exercise a variety of handshake flows |
| 2997 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2998 | run_test "Non-blocking I/O: basic handshake" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 2999 | "$P_SRV nbio=2 tickets=0 auth_mode=none" \ |
| 3000 | "$P_CLI nbio=2 tickets=0" \ |
| 3001 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3002 | -S "mbedtls_ssl_handshake returned" \ |
| 3003 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3004 | -c "Read from server: .* bytes read" |
| 3005 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3006 | run_test "Non-blocking I/O: client auth" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3007 | "$P_SRV nbio=2 tickets=0 auth_mode=required" \ |
| 3008 | "$P_CLI nbio=2 tickets=0" \ |
| 3009 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3010 | -S "mbedtls_ssl_handshake returned" \ |
| 3011 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3012 | -c "Read from server: .* bytes read" |
| 3013 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3014 | run_test "Non-blocking I/O: ticket" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3015 | "$P_SRV nbio=2 tickets=1 auth_mode=none" \ |
| 3016 | "$P_CLI nbio=2 tickets=1" \ |
| 3017 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3018 | -S "mbedtls_ssl_handshake returned" \ |
| 3019 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3020 | -c "Read from server: .* bytes read" |
| 3021 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3022 | run_test "Non-blocking I/O: ticket + client auth" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3023 | "$P_SRV nbio=2 tickets=1 auth_mode=required" \ |
| 3024 | "$P_CLI nbio=2 tickets=1" \ |
| 3025 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3026 | -S "mbedtls_ssl_handshake returned" \ |
| 3027 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3028 | -c "Read from server: .* bytes read" |
| 3029 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3030 | run_test "Non-blocking I/O: ticket + client auth + resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3031 | "$P_SRV nbio=2 tickets=1 auth_mode=required" \ |
| 3032 | "$P_CLI nbio=2 tickets=1 reconnect=1" \ |
| 3033 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3034 | -S "mbedtls_ssl_handshake returned" \ |
| 3035 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3036 | -c "Read from server: .* bytes read" |
| 3037 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3038 | run_test "Non-blocking I/O: ticket + resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3039 | "$P_SRV nbio=2 tickets=1 auth_mode=none" \ |
| 3040 | "$P_CLI nbio=2 tickets=1 reconnect=1" \ |
| 3041 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3042 | -S "mbedtls_ssl_handshake returned" \ |
| 3043 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3044 | -c "Read from server: .* bytes read" |
| 3045 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3046 | run_test "Non-blocking I/O: session-id resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3047 | "$P_SRV nbio=2 tickets=0 auth_mode=none" \ |
| 3048 | "$P_CLI nbio=2 tickets=0 reconnect=1" \ |
| 3049 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3050 | -S "mbedtls_ssl_handshake returned" \ |
| 3051 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 3052 | -c "Read from server: .* bytes read" |
| 3053 | |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3054 | # Tests for version negotiation |
| 3055 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3056 | run_test "Version check: all -> 1.2" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3057 | "$P_SRV" \ |
| 3058 | "$P_CLI" \ |
| 3059 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3060 | -S "mbedtls_ssl_handshake returned" \ |
| 3061 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3062 | -s "Protocol is TLSv1.2" \ |
| 3063 | -c "Protocol is TLSv1.2" |
| 3064 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3065 | run_test "Version check: cli max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3066 | "$P_SRV" \ |
| 3067 | "$P_CLI max_version=tls1_1" \ |
| 3068 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3069 | -S "mbedtls_ssl_handshake returned" \ |
| 3070 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3071 | -s "Protocol is TLSv1.1" \ |
| 3072 | -c "Protocol is TLSv1.1" |
| 3073 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3074 | run_test "Version check: srv max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3075 | "$P_SRV max_version=tls1_1" \ |
| 3076 | "$P_CLI" \ |
| 3077 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3078 | -S "mbedtls_ssl_handshake returned" \ |
| 3079 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3080 | -s "Protocol is TLSv1.1" \ |
| 3081 | -c "Protocol is TLSv1.1" |
| 3082 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3083 | run_test "Version check: cli+srv max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3084 | "$P_SRV max_version=tls1_1" \ |
| 3085 | "$P_CLI max_version=tls1_1" \ |
| 3086 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3087 | -S "mbedtls_ssl_handshake returned" \ |
| 3088 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3089 | -s "Protocol is TLSv1.1" \ |
| 3090 | -c "Protocol is TLSv1.1" |
| 3091 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3092 | run_test "Version check: cli max 1.1, srv min 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3093 | "$P_SRV min_version=tls1_1" \ |
| 3094 | "$P_CLI max_version=tls1_1" \ |
| 3095 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3096 | -S "mbedtls_ssl_handshake returned" \ |
| 3097 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3098 | -s "Protocol is TLSv1.1" \ |
| 3099 | -c "Protocol is TLSv1.1" |
| 3100 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3101 | run_test "Version check: cli min 1.1, srv max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3102 | "$P_SRV max_version=tls1_1" \ |
| 3103 | "$P_CLI min_version=tls1_1" \ |
| 3104 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3105 | -S "mbedtls_ssl_handshake returned" \ |
| 3106 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3107 | -s "Protocol is TLSv1.1" \ |
| 3108 | -c "Protocol is TLSv1.1" |
| 3109 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3110 | run_test "Version check: cli min 1.2, srv max 1.1 -> fail" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3111 | "$P_SRV max_version=tls1_1" \ |
| 3112 | "$P_CLI min_version=tls1_2" \ |
| 3113 | 1 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3114 | -s "mbedtls_ssl_handshake returned" \ |
| 3115 | -c "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3116 | -c "SSL - Handshake protocol not within min/max boundaries" |
| 3117 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3118 | run_test "Version check: srv min 1.2, cli max 1.1 -> fail" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3119 | "$P_SRV min_version=tls1_2" \ |
| 3120 | "$P_CLI max_version=tls1_1" \ |
| 3121 | 1 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3122 | -s "mbedtls_ssl_handshake returned" \ |
| 3123 | -c "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 3124 | -s "SSL - Handshake protocol not within min/max boundaries" |
| 3125 | |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3126 | # Tests for ALPN extension |
| 3127 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3128 | run_test "ALPN: none" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3129 | "$P_SRV debug_level=3" \ |
| 3130 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3131 | 0 \ |
| 3132 | -C "client hello, adding alpn extension" \ |
| 3133 | -S "found alpn extension" \ |
| 3134 | -C "got an alert message, type: \\[2:120]" \ |
| 3135 | -S "server hello, adding alpn extension" \ |
| 3136 | -C "found alpn extension " \ |
| 3137 | -C "Application Layer Protocol is" \ |
| 3138 | -S "Application Layer Protocol is" |
| 3139 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3140 | run_test "ALPN: client only" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3141 | "$P_SRV debug_level=3" \ |
| 3142 | "$P_CLI debug_level=3 alpn=abc,1234" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3143 | 0 \ |
| 3144 | -c "client hello, adding alpn extension" \ |
| 3145 | -s "found alpn extension" \ |
| 3146 | -C "got an alert message, type: \\[2:120]" \ |
| 3147 | -S "server hello, adding alpn extension" \ |
| 3148 | -C "found alpn extension " \ |
| 3149 | -c "Application Layer Protocol is (none)" \ |
| 3150 | -S "Application Layer Protocol is" |
| 3151 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3152 | run_test "ALPN: server only" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3153 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 3154 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3155 | 0 \ |
| 3156 | -C "client hello, adding alpn extension" \ |
| 3157 | -S "found alpn extension" \ |
| 3158 | -C "got an alert message, type: \\[2:120]" \ |
| 3159 | -S "server hello, adding alpn extension" \ |
| 3160 | -C "found alpn extension " \ |
| 3161 | -C "Application Layer Protocol is" \ |
| 3162 | -s "Application Layer Protocol is (none)" |
| 3163 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3164 | run_test "ALPN: both, common cli1-srv1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3165 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 3166 | "$P_CLI debug_level=3 alpn=abc,1234" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3167 | 0 \ |
| 3168 | -c "client hello, adding alpn extension" \ |
| 3169 | -s "found alpn extension" \ |
| 3170 | -C "got an alert message, type: \\[2:120]" \ |
| 3171 | -s "server hello, adding alpn extension" \ |
| 3172 | -c "found alpn extension" \ |
| 3173 | -c "Application Layer Protocol is abc" \ |
| 3174 | -s "Application Layer Protocol is abc" |
| 3175 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3176 | run_test "ALPN: both, common cli2-srv1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3177 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 3178 | "$P_CLI debug_level=3 alpn=1234,abc" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3179 | 0 \ |
| 3180 | -c "client hello, adding alpn extension" \ |
| 3181 | -s "found alpn extension" \ |
| 3182 | -C "got an alert message, type: \\[2:120]" \ |
| 3183 | -s "server hello, adding alpn extension" \ |
| 3184 | -c "found alpn extension" \ |
| 3185 | -c "Application Layer Protocol is abc" \ |
| 3186 | -s "Application Layer Protocol is abc" |
| 3187 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3188 | run_test "ALPN: both, common cli1-srv2" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3189 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 3190 | "$P_CLI debug_level=3 alpn=1234,abcde" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3191 | 0 \ |
| 3192 | -c "client hello, adding alpn extension" \ |
| 3193 | -s "found alpn extension" \ |
| 3194 | -C "got an alert message, type: \\[2:120]" \ |
| 3195 | -s "server hello, adding alpn extension" \ |
| 3196 | -c "found alpn extension" \ |
| 3197 | -c "Application Layer Protocol is 1234" \ |
| 3198 | -s "Application Layer Protocol is 1234" |
| 3199 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3200 | run_test "ALPN: both, no common" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3201 | "$P_SRV debug_level=3 alpn=abc,123" \ |
| 3202 | "$P_CLI debug_level=3 alpn=1234,abcde" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 3203 | 1 \ |
| 3204 | -c "client hello, adding alpn extension" \ |
| 3205 | -s "found alpn extension" \ |
| 3206 | -c "got an alert message, type: \\[2:120]" \ |
| 3207 | -S "server hello, adding alpn extension" \ |
| 3208 | -C "found alpn extension" \ |
| 3209 | -C "Application Layer Protocol is 1234" \ |
| 3210 | -S "Application Layer Protocol is 1234" |
| 3211 | |
Manuel Pégourié-Gonnard | 83d8c73 | 2014-04-07 13:24:21 +0200 | [diff] [blame] | 3212 | |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3213 | # Tests for keyUsage in leaf certificates, part 1: |
| 3214 | # server-side certificate/suite selection |
| 3215 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3216 | run_test "keyUsage srv: RSA, digitalSignature -> (EC)DHE-RSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3217 | "$P_SRV key_file=data_files/server2.key \ |
| 3218 | crt_file=data_files/server2.ku-ds.crt" \ |
| 3219 | "$P_CLI" \ |
| 3220 | 0 \ |
Manuel Pégourié-Gonnard | 17cde5f | 2014-05-22 14:42:39 +0200 | [diff] [blame] | 3221 | -c "Ciphersuite is TLS-[EC]*DHE-RSA-WITH-" |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3222 | |
| 3223 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3224 | run_test "keyUsage srv: RSA, keyEncipherment -> RSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3225 | "$P_SRV key_file=data_files/server2.key \ |
| 3226 | crt_file=data_files/server2.ku-ke.crt" \ |
| 3227 | "$P_CLI" \ |
| 3228 | 0 \ |
| 3229 | -c "Ciphersuite is TLS-RSA-WITH-" |
| 3230 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3231 | run_test "keyUsage srv: RSA, keyAgreement -> fail" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 3232 | "$P_SRV key_file=data_files/server2.key \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3233 | crt_file=data_files/server2.ku-ka.crt" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 3234 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3235 | 1 \ |
| 3236 | -C "Ciphersuite is " |
| 3237 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3238 | run_test "keyUsage srv: ECDSA, digitalSignature -> ECDHE-ECDSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3239 | "$P_SRV key_file=data_files/server5.key \ |
| 3240 | crt_file=data_files/server5.ku-ds.crt" \ |
| 3241 | "$P_CLI" \ |
| 3242 | 0 \ |
| 3243 | -c "Ciphersuite is TLS-ECDHE-ECDSA-WITH-" |
| 3244 | |
| 3245 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3246 | run_test "keyUsage srv: ECDSA, keyAgreement -> ECDH-" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3247 | "$P_SRV key_file=data_files/server5.key \ |
| 3248 | crt_file=data_files/server5.ku-ka.crt" \ |
| 3249 | "$P_CLI" \ |
| 3250 | 0 \ |
| 3251 | -c "Ciphersuite is TLS-ECDH-" |
| 3252 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3253 | run_test "keyUsage srv: ECDSA, keyEncipherment -> fail" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 3254 | "$P_SRV key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3255 | crt_file=data_files/server5.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 3256 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3257 | 1 \ |
| 3258 | -C "Ciphersuite is " |
| 3259 | |
| 3260 | # Tests for keyUsage in leaf certificates, part 2: |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3261 | # client-side checking of server cert |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3262 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3263 | run_test "keyUsage cli: DigitalSignature+KeyEncipherment, RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3264 | "$O_SRV -key data_files/server2.key \ |
| 3265 | -cert data_files/server2.ku-ds_ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3266 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3267 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 3268 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3269 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3270 | -C "Processing of the Certificate handshake message failed" \ |
| 3271 | -c "Ciphersuite is TLS-" |
| 3272 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3273 | run_test "keyUsage cli: DigitalSignature+KeyEncipherment, DHE-RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3274 | "$O_SRV -key data_files/server2.key \ |
| 3275 | -cert data_files/server2.ku-ds_ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3276 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3277 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 3278 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3279 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3280 | -C "Processing of the Certificate handshake message failed" \ |
| 3281 | -c "Ciphersuite is TLS-" |
| 3282 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3283 | run_test "keyUsage cli: KeyEncipherment, RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3284 | "$O_SRV -key data_files/server2.key \ |
| 3285 | -cert data_files/server2.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3286 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3287 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 3288 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3289 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3290 | -C "Processing of the Certificate handshake message failed" \ |
| 3291 | -c "Ciphersuite is TLS-" |
| 3292 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3293 | run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3294 | "$O_SRV -key data_files/server2.key \ |
| 3295 | -cert data_files/server2.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3296 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3297 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 3298 | 1 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3299 | -c "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3300 | -c "Processing of the Certificate handshake message failed" \ |
| 3301 | -C "Ciphersuite is TLS-" |
| 3302 | |
Manuel Pégourié-Gonnard | e6efa6f | 2015-04-20 11:01:48 +0100 | [diff] [blame] | 3303 | run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail, soft" \ |
| 3304 | "$O_SRV -key data_files/server2.key \ |
| 3305 | -cert data_files/server2.ku-ke.crt" \ |
| 3306 | "$P_CLI debug_level=1 auth_mode=optional \ |
| 3307 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 3308 | 0 \ |
| 3309 | -c "bad certificate (usage extensions)" \ |
| 3310 | -C "Processing of the Certificate handshake message failed" \ |
| 3311 | -c "Ciphersuite is TLS-" \ |
| 3312 | -c "! Usage does not match the keyUsage extension" |
| 3313 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3314 | run_test "keyUsage cli: DigitalSignature, DHE-RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3315 | "$O_SRV -key data_files/server2.key \ |
| 3316 | -cert data_files/server2.ku-ds.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3317 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3318 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 3319 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3320 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3321 | -C "Processing of the Certificate handshake message failed" \ |
| 3322 | -c "Ciphersuite is TLS-" |
| 3323 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3324 | run_test "keyUsage cli: DigitalSignature, RSA: fail" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3325 | "$O_SRV -key data_files/server2.key \ |
| 3326 | -cert data_files/server2.ku-ds.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3327 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3328 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 3329 | 1 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3330 | -c "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 3331 | -c "Processing of the Certificate handshake message failed" \ |
| 3332 | -C "Ciphersuite is TLS-" |
| 3333 | |
Manuel Pégourié-Gonnard | e6efa6f | 2015-04-20 11:01:48 +0100 | [diff] [blame] | 3334 | run_test "keyUsage cli: DigitalSignature, RSA: fail, soft" \ |
| 3335 | "$O_SRV -key data_files/server2.key \ |
| 3336 | -cert data_files/server2.ku-ds.crt" \ |
| 3337 | "$P_CLI debug_level=1 auth_mode=optional \ |
| 3338 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 3339 | 0 \ |
| 3340 | -c "bad certificate (usage extensions)" \ |
| 3341 | -C "Processing of the Certificate handshake message failed" \ |
| 3342 | -c "Ciphersuite is TLS-" \ |
| 3343 | -c "! Usage does not match the keyUsage extension" |
| 3344 | |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3345 | # Tests for keyUsage in leaf certificates, part 3: |
| 3346 | # server-side checking of client cert |
| 3347 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3348 | run_test "keyUsage cli-auth: RSA, DigitalSignature: OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3349 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3350 | "$O_CLI -key data_files/server2.key \ |
| 3351 | -cert data_files/server2.ku-ds.crt" \ |
| 3352 | 0 \ |
| 3353 | -S "bad certificate (usage extensions)" \ |
| 3354 | -S "Processing of the Certificate handshake message failed" |
| 3355 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3356 | run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3357 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3358 | "$O_CLI -key data_files/server2.key \ |
| 3359 | -cert data_files/server2.ku-ke.crt" \ |
| 3360 | 0 \ |
| 3361 | -s "bad certificate (usage extensions)" \ |
| 3362 | -S "Processing of the Certificate handshake message failed" |
| 3363 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3364 | run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (hard)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3365 | "$P_SRV debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3366 | "$O_CLI -key data_files/server2.key \ |
| 3367 | -cert data_files/server2.ku-ke.crt" \ |
| 3368 | 1 \ |
| 3369 | -s "bad certificate (usage extensions)" \ |
| 3370 | -s "Processing of the Certificate handshake message failed" |
| 3371 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3372 | run_test "keyUsage cli-auth: ECDSA, DigitalSignature: OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3373 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3374 | "$O_CLI -key data_files/server5.key \ |
| 3375 | -cert data_files/server5.ku-ds.crt" \ |
| 3376 | 0 \ |
| 3377 | -S "bad certificate (usage extensions)" \ |
| 3378 | -S "Processing of the Certificate handshake message failed" |
| 3379 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3380 | run_test "keyUsage cli-auth: ECDSA, KeyAgreement: fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3381 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 3382 | "$O_CLI -key data_files/server5.key \ |
| 3383 | -cert data_files/server5.ku-ka.crt" \ |
| 3384 | 0 \ |
| 3385 | -s "bad certificate (usage extensions)" \ |
| 3386 | -S "Processing of the Certificate handshake message failed" |
| 3387 | |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3388 | # Tests for extendedKeyUsage, part 1: server-side certificate/suite selection |
| 3389 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3390 | run_test "extKeyUsage srv: serverAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3391 | "$P_SRV key_file=data_files/server5.key \ |
| 3392 | crt_file=data_files/server5.eku-srv.crt" \ |
| 3393 | "$P_CLI" \ |
| 3394 | 0 |
| 3395 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3396 | run_test "extKeyUsage srv: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3397 | "$P_SRV key_file=data_files/server5.key \ |
| 3398 | crt_file=data_files/server5.eku-srv.crt" \ |
| 3399 | "$P_CLI" \ |
| 3400 | 0 |
| 3401 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3402 | run_test "extKeyUsage srv: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3403 | "$P_SRV key_file=data_files/server5.key \ |
| 3404 | crt_file=data_files/server5.eku-cs_any.crt" \ |
| 3405 | "$P_CLI" \ |
| 3406 | 0 |
| 3407 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3408 | run_test "extKeyUsage srv: codeSign -> fail" \ |
Manuel Pégourié-Gonnard | 7eb58cb | 2015-07-07 11:54:14 +0200 | [diff] [blame] | 3409 | "$P_SRV key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3410 | crt_file=data_files/server5.eku-cli.crt" \ |
Manuel Pégourié-Gonnard | 7eb58cb | 2015-07-07 11:54:14 +0200 | [diff] [blame] | 3411 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3412 | 1 |
| 3413 | |
| 3414 | # Tests for extendedKeyUsage, part 2: client-side checking of server cert |
| 3415 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3416 | run_test "extKeyUsage cli: serverAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3417 | "$O_SRV -key data_files/server5.key \ |
| 3418 | -cert data_files/server5.eku-srv.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3419 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3420 | 0 \ |
| 3421 | -C "bad certificate (usage extensions)" \ |
| 3422 | -C "Processing of the Certificate handshake message failed" \ |
| 3423 | -c "Ciphersuite is TLS-" |
| 3424 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3425 | run_test "extKeyUsage cli: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3426 | "$O_SRV -key data_files/server5.key \ |
| 3427 | -cert data_files/server5.eku-srv_cli.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3428 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3429 | 0 \ |
| 3430 | -C "bad certificate (usage extensions)" \ |
| 3431 | -C "Processing of the Certificate handshake message failed" \ |
| 3432 | -c "Ciphersuite is TLS-" |
| 3433 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3434 | run_test "extKeyUsage cli: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3435 | "$O_SRV -key data_files/server5.key \ |
| 3436 | -cert data_files/server5.eku-cs_any.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3437 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3438 | 0 \ |
| 3439 | -C "bad certificate (usage extensions)" \ |
| 3440 | -C "Processing of the Certificate handshake message failed" \ |
| 3441 | -c "Ciphersuite is TLS-" |
| 3442 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3443 | run_test "extKeyUsage cli: codeSign -> fail" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3444 | "$O_SRV -key data_files/server5.key \ |
| 3445 | -cert data_files/server5.eku-cs.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3446 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3447 | 1 \ |
| 3448 | -c "bad certificate (usage extensions)" \ |
| 3449 | -c "Processing of the Certificate handshake message failed" \ |
| 3450 | -C "Ciphersuite is TLS-" |
| 3451 | |
| 3452 | # Tests for extendedKeyUsage, part 3: server-side checking of client cert |
| 3453 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3454 | run_test "extKeyUsage cli-auth: clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3455 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3456 | "$O_CLI -key data_files/server5.key \ |
| 3457 | -cert data_files/server5.eku-cli.crt" \ |
| 3458 | 0 \ |
| 3459 | -S "bad certificate (usage extensions)" \ |
| 3460 | -S "Processing of the Certificate handshake message failed" |
| 3461 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3462 | run_test "extKeyUsage cli-auth: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3463 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3464 | "$O_CLI -key data_files/server5.key \ |
| 3465 | -cert data_files/server5.eku-srv_cli.crt" \ |
| 3466 | 0 \ |
| 3467 | -S "bad certificate (usage extensions)" \ |
| 3468 | -S "Processing of the Certificate handshake message failed" |
| 3469 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3470 | run_test "extKeyUsage cli-auth: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3471 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3472 | "$O_CLI -key data_files/server5.key \ |
| 3473 | -cert data_files/server5.eku-cs_any.crt" \ |
| 3474 | 0 \ |
| 3475 | -S "bad certificate (usage extensions)" \ |
| 3476 | -S "Processing of the Certificate handshake message failed" |
| 3477 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3478 | run_test "extKeyUsage cli-auth: codeSign -> fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3479 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3480 | "$O_CLI -key data_files/server5.key \ |
| 3481 | -cert data_files/server5.eku-cs.crt" \ |
| 3482 | 0 \ |
| 3483 | -s "bad certificate (usage extensions)" \ |
| 3484 | -S "Processing of the Certificate handshake message failed" |
| 3485 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3486 | run_test "extKeyUsage cli-auth: codeSign -> fail (hard)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 3487 | "$P_SRV debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 3488 | "$O_CLI -key data_files/server5.key \ |
| 3489 | -cert data_files/server5.eku-cs.crt" \ |
| 3490 | 1 \ |
| 3491 | -s "bad certificate (usage extensions)" \ |
| 3492 | -s "Processing of the Certificate handshake message failed" |
| 3493 | |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 3494 | # Tests for DHM parameters loading |
| 3495 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3496 | run_test "DHM parameters: reference" \ |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 3497 | "$P_SRV" \ |
| 3498 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3499 | debug_level=3" \ |
| 3500 | 0 \ |
| 3501 | -c "value of 'DHM: P ' (2048 bits)" \ |
Hanno Becker | 13be990 | 2017-09-27 17:17:30 +0100 | [diff] [blame] | 3502 | -c "value of 'DHM: G ' (2 bits)" |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 3503 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3504 | run_test "DHM parameters: other parameters" \ |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 3505 | "$P_SRV dhm_file=data_files/dhparams.pem" \ |
| 3506 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3507 | debug_level=3" \ |
| 3508 | 0 \ |
| 3509 | -c "value of 'DHM: P ' (1024 bits)" \ |
| 3510 | -c "value of 'DHM: G ' (2 bits)" |
| 3511 | |
Manuel Pégourié-Gonnard | 7a010aa | 2015-06-12 11:19:10 +0200 | [diff] [blame] | 3512 | # Tests for DHM client-side size checking |
| 3513 | |
| 3514 | run_test "DHM size: server default, client default, OK" \ |
| 3515 | "$P_SRV" \ |
| 3516 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3517 | debug_level=1" \ |
| 3518 | 0 \ |
| 3519 | -C "DHM prime too short:" |
| 3520 | |
| 3521 | run_test "DHM size: server default, client 2048, OK" \ |
| 3522 | "$P_SRV" \ |
| 3523 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3524 | debug_level=1 dhmlen=2048" \ |
| 3525 | 0 \ |
| 3526 | -C "DHM prime too short:" |
| 3527 | |
| 3528 | run_test "DHM size: server 1024, client default, OK" \ |
| 3529 | "$P_SRV dhm_file=data_files/dhparams.pem" \ |
| 3530 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3531 | debug_level=1" \ |
| 3532 | 0 \ |
| 3533 | -C "DHM prime too short:" |
| 3534 | |
| 3535 | run_test "DHM size: server 1000, client default, rejected" \ |
| 3536 | "$P_SRV dhm_file=data_files/dh.1000.pem" \ |
| 3537 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3538 | debug_level=1" \ |
| 3539 | 1 \ |
| 3540 | -c "DHM prime too short:" |
| 3541 | |
| 3542 | run_test "DHM size: server default, client 2049, rejected" \ |
| 3543 | "$P_SRV" \ |
| 3544 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 3545 | debug_level=1 dhmlen=2049" \ |
| 3546 | 1 \ |
| 3547 | -c "DHM prime too short:" |
| 3548 | |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3549 | # Tests for PSK callback |
| 3550 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3551 | run_test "PSK callback: psk, no callback" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3552 | "$P_SRV psk=abc123 psk_identity=foo" \ |
| 3553 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3554 | psk_identity=foo psk=abc123" \ |
| 3555 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3556 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | 10c3c9f | 2014-06-10 15:28:52 +0200 | [diff] [blame] | 3557 | -S "SSL - Unknown identity received" \ |
| 3558 | -S "SSL - Verification of the message MAC failed" |
| 3559 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3560 | run_test "PSK callback: no psk, no callback" \ |
Manuel Pégourié-Gonnard | 10c3c9f | 2014-06-10 15:28:52 +0200 | [diff] [blame] | 3561 | "$P_SRV" \ |
| 3562 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3563 | psk_identity=foo psk=abc123" \ |
| 3564 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3565 | -s "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3566 | -S "SSL - Unknown identity received" \ |
| 3567 | -S "SSL - Verification of the message MAC failed" |
| 3568 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3569 | run_test "PSK callback: callback overrides other settings" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3570 | "$P_SRV psk=abc123 psk_identity=foo psk_list=abc,dead,def,beef" \ |
| 3571 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3572 | psk_identity=foo psk=abc123" \ |
| 3573 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3574 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3575 | -s "SSL - Unknown identity received" \ |
| 3576 | -S "SSL - Verification of the message MAC failed" |
| 3577 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3578 | run_test "PSK callback: first id matches" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3579 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 3580 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3581 | psk_identity=abc psk=dead" \ |
| 3582 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3583 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3584 | -S "SSL - Unknown identity received" \ |
| 3585 | -S "SSL - Verification of the message MAC failed" |
| 3586 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3587 | run_test "PSK callback: second id matches" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3588 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 3589 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3590 | psk_identity=def psk=beef" \ |
| 3591 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3592 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3593 | -S "SSL - Unknown identity received" \ |
| 3594 | -S "SSL - Verification of the message MAC failed" |
| 3595 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3596 | run_test "PSK callback: no match" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3597 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 3598 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3599 | psk_identity=ghi psk=beef" \ |
| 3600 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3601 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3602 | -s "SSL - Unknown identity received" \ |
| 3603 | -S "SSL - Verification of the message MAC failed" |
| 3604 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3605 | run_test "PSK callback: wrong key" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3606 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 3607 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 3608 | psk_identity=abc psk=beef" \ |
| 3609 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 3610 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 3611 | -S "SSL - Unknown identity received" \ |
| 3612 | -s "SSL - Verification of the message MAC failed" |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 3613 | |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3614 | # Tests for EC J-PAKE |
| 3615 | |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3616 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3617 | run_test "ECJPAKE: client not configured" \ |
| 3618 | "$P_SRV debug_level=3" \ |
| 3619 | "$P_CLI debug_level=3" \ |
| 3620 | 0 \ |
| 3621 | -C "add ciphersuite: c0ff" \ |
| 3622 | -C "adding ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3623 | -S "found ecjpake kkpp extension" \ |
| 3624 | -S "skip ecjpake kkpp extension" \ |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3625 | -S "ciphersuite mismatch: ecjpake not configured" \ |
Manuel Pégourié-Gonnard | 55c7f99 | 2015-09-16 15:35:27 +0200 | [diff] [blame] | 3626 | -S "server hello, ecjpake kkpp extension" \ |
Manuel Pégourié-Gonnard | 0a1324a | 2015-09-16 16:01:00 +0200 | [diff] [blame] | 3627 | -C "found ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3628 | -S "None of the common ciphersuites is usable" |
| 3629 | |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3630 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3631 | run_test "ECJPAKE: server not configured" \ |
| 3632 | "$P_SRV debug_level=3" \ |
| 3633 | "$P_CLI debug_level=3 ecjpake_pw=bla \ |
| 3634 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3635 | 1 \ |
| 3636 | -c "add ciphersuite: c0ff" \ |
| 3637 | -c "adding ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3638 | -s "found ecjpake kkpp extension" \ |
| 3639 | -s "skip ecjpake kkpp extension" \ |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3640 | -s "ciphersuite mismatch: ecjpake not configured" \ |
Manuel Pégourié-Gonnard | 55c7f99 | 2015-09-16 15:35:27 +0200 | [diff] [blame] | 3641 | -S "server hello, ecjpake kkpp extension" \ |
Manuel Pégourié-Gonnard | 0a1324a | 2015-09-16 16:01:00 +0200 | [diff] [blame] | 3642 | -C "found ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | e511b4e | 2015-09-16 14:11:09 +0200 | [diff] [blame] | 3643 | -s "None of the common ciphersuites is usable" |
| 3644 | |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3645 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3646 | run_test "ECJPAKE: working, TLS" \ |
| 3647 | "$P_SRV debug_level=3 ecjpake_pw=bla" \ |
| 3648 | "$P_CLI debug_level=3 ecjpake_pw=bla \ |
| 3649 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
Manuel Pégourié-Gonnard | 0f1660a | 2015-09-16 22:41:06 +0200 | [diff] [blame] | 3650 | 0 \ |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3651 | -c "add ciphersuite: c0ff" \ |
| 3652 | -c "adding ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | d0d8cb3 | 2015-09-17 14:16:30 +0200 | [diff] [blame] | 3653 | -C "re-using cached ecjpake parameters" \ |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3654 | -s "found ecjpake kkpp extension" \ |
| 3655 | -S "skip ecjpake kkpp extension" \ |
| 3656 | -S "ciphersuite mismatch: ecjpake not configured" \ |
Manuel Pégourié-Gonnard | 55c7f99 | 2015-09-16 15:35:27 +0200 | [diff] [blame] | 3657 | -s "server hello, ecjpake kkpp extension" \ |
Manuel Pégourié-Gonnard | 0a1324a | 2015-09-16 16:01:00 +0200 | [diff] [blame] | 3658 | -c "found ecjpake_kkpp extension" \ |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3659 | -S "None of the common ciphersuites is usable" \ |
| 3660 | -S "SSL - Verification of the message MAC failed" |
| 3661 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 3662 | server_needs_more_time 1 |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3663 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3664 | run_test "ECJPAKE: password mismatch, TLS" \ |
| 3665 | "$P_SRV debug_level=3 ecjpake_pw=bla" \ |
| 3666 | "$P_CLI debug_level=3 ecjpake_pw=bad \ |
| 3667 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3668 | 1 \ |
Manuel Pégourié-Gonnard | d0d8cb3 | 2015-09-17 14:16:30 +0200 | [diff] [blame] | 3669 | -C "re-using cached ecjpake parameters" \ |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3670 | -s "SSL - Verification of the message MAC failed" |
| 3671 | |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3672 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3673 | run_test "ECJPAKE: working, DTLS" \ |
| 3674 | "$P_SRV debug_level=3 dtls=1 ecjpake_pw=bla" \ |
| 3675 | "$P_CLI debug_level=3 dtls=1 ecjpake_pw=bla \ |
| 3676 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3677 | 0 \ |
Manuel Pégourié-Gonnard | d0d8cb3 | 2015-09-17 14:16:30 +0200 | [diff] [blame] | 3678 | -c "re-using cached ecjpake parameters" \ |
| 3679 | -S "SSL - Verification of the message MAC failed" |
| 3680 | |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3681 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | d0d8cb3 | 2015-09-17 14:16:30 +0200 | [diff] [blame] | 3682 | run_test "ECJPAKE: working, DTLS, no cookie" \ |
| 3683 | "$P_SRV debug_level=3 dtls=1 ecjpake_pw=bla cookies=0" \ |
| 3684 | "$P_CLI debug_level=3 dtls=1 ecjpake_pw=bla \ |
| 3685 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3686 | 0 \ |
| 3687 | -C "re-using cached ecjpake parameters" \ |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3688 | -S "SSL - Verification of the message MAC failed" |
| 3689 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 3690 | server_needs_more_time 1 |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3691 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3692 | run_test "ECJPAKE: password mismatch, DTLS" \ |
| 3693 | "$P_SRV debug_level=3 dtls=1 ecjpake_pw=bla" \ |
| 3694 | "$P_CLI debug_level=3 dtls=1 ecjpake_pw=bad \ |
| 3695 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3696 | 1 \ |
Manuel Pégourié-Gonnard | d0d8cb3 | 2015-09-17 14:16:30 +0200 | [diff] [blame] | 3697 | -c "re-using cached ecjpake parameters" \ |
Manuel Pégourié-Gonnard | 921f2d0 | 2015-09-16 22:52:18 +0200 | [diff] [blame] | 3698 | -s "SSL - Verification of the message MAC failed" |
Manuel Pégourié-Gonnard | bf57be6 | 2015-09-16 15:04:01 +0200 | [diff] [blame] | 3699 | |
Manuel Pégourié-Gonnard | ca700b2 | 2015-10-20 14:47:00 +0200 | [diff] [blame] | 3700 | # for tests with configs/config-thread.h |
Manuel Pégourié-Gonnard | 12ca6f5 | 2015-10-20 15:24:51 +0200 | [diff] [blame] | 3701 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECJPAKE |
Manuel Pégourié-Gonnard | ca700b2 | 2015-10-20 14:47:00 +0200 | [diff] [blame] | 3702 | run_test "ECJPAKE: working, DTLS, nolog" \ |
| 3703 | "$P_SRV dtls=1 ecjpake_pw=bla" \ |
| 3704 | "$P_CLI dtls=1 ecjpake_pw=bla \ |
| 3705 | force_ciphersuite=TLS-ECJPAKE-WITH-AES-128-CCM-8" \ |
| 3706 | 0 |
| 3707 | |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3708 | # Tests for ciphersuites per version |
| 3709 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 3710 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3711 | run_test "Per-version suites: SSL3" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3712 | "$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é-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3713 | "$P_CLI force_version=ssl3" \ |
| 3714 | 0 \ |
| 3715 | -c "Ciphersuite is TLS-RSA-WITH-3DES-EDE-CBC-SHA" |
| 3716 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3717 | run_test "Per-version suites: TLS 1.0" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3718 | "$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é-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 3719 | "$P_CLI force_version=tls1 arc4=1" \ |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3720 | 0 \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3721 | -c "Ciphersuite is TLS-RSA-WITH-AES-256-CBC-SHA" |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3722 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3723 | run_test "Per-version suites: TLS 1.1" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3724 | "$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é-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3725 | "$P_CLI force_version=tls1_1" \ |
| 3726 | 0 \ |
| 3727 | -c "Ciphersuite is TLS-RSA-WITH-AES-128-CBC-SHA" |
| 3728 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 3729 | run_test "Per-version suites: TLS 1.2" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3730 | "$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é-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3731 | "$P_CLI force_version=tls1_2" \ |
| 3732 | 0 \ |
| 3733 | -c "Ciphersuite is TLS-RSA-WITH-AES-128-GCM-SHA256" |
| 3734 | |
Manuel Pégourié-Gonnard | 4cc8c63 | 2015-07-23 12:24:03 +0200 | [diff] [blame] | 3735 | # Test for ClientHello without extensions |
| 3736 | |
Manuel Pégourié-Gonnard | d55bc20 | 2015-08-04 16:22:30 +0200 | [diff] [blame] | 3737 | requires_gnutls |
Gilles Peskine | 5d2511c | 2017-05-12 13:16:40 +0200 | [diff] [blame] | 3738 | run_test "ClientHello without extensions, SHA-1 allowed" \ |
Manuel Pégourié-Gonnard | 4cc8c63 | 2015-07-23 12:24:03 +0200 | [diff] [blame] | 3739 | "$P_SRV debug_level=3" \ |
| 3740 | "$G_CLI --priority=NORMAL:%NO_EXTENSIONS:%DISABLE_SAFE_RENEGOTIATION" \ |
| 3741 | 0 \ |
| 3742 | -s "dumping 'client hello extensions' (0 bytes)" |
| 3743 | |
Gilles Peskine | 5d2511c | 2017-05-12 13:16:40 +0200 | [diff] [blame] | 3744 | requires_gnutls |
| 3745 | run_test "ClientHello without extensions, SHA-1 forbidden in certificates on server" \ |
| 3746 | "$P_SRV debug_level=3 key_file=data_files/server2.key crt_file=data_files/server2.crt allow_sha1=0" \ |
| 3747 | "$G_CLI --priority=NORMAL:%NO_EXTENSIONS:%DISABLE_SAFE_RENEGOTIATION" \ |
| 3748 | 0 \ |
| 3749 | -s "dumping 'client hello extensions' (0 bytes)" |
| 3750 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3751 | # Tests for mbedtls_ssl_get_bytes_avail() |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 3752 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3753 | run_test "mbedtls_ssl_get_bytes_avail: no extra data" \ |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 3754 | "$P_SRV" \ |
| 3755 | "$P_CLI request_size=100" \ |
| 3756 | 0 \ |
| 3757 | -s "Read from client: 100 bytes read$" |
| 3758 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 3759 | run_test "mbedtls_ssl_get_bytes_avail: extra data" \ |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 3760 | "$P_SRV" \ |
| 3761 | "$P_CLI request_size=500" \ |
| 3762 | 0 \ |
| 3763 | -s "Read from client: 500 bytes read (.*+.*)" |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 3764 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3765 | # Tests for small client packets |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3766 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 3767 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3768 | run_test "Small client packet SSLv3 BlockCipher" \ |
Manuel Pégourié-Gonnard | 448ea50 | 2015-01-12 11:40:14 +0100 | [diff] [blame] | 3769 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3770 | "$P_CLI request_size=1 force_version=ssl3 \ |
| 3771 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3772 | 0 \ |
| 3773 | -s "Read from client: 1 bytes read" |
| 3774 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 3775 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3776 | run_test "Small client packet SSLv3 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3777 | "$P_SRV min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3778 | "$P_CLI request_size=1 force_version=ssl3 \ |
| 3779 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 3780 | 0 \ |
| 3781 | -s "Read from client: 1 bytes read" |
| 3782 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3783 | run_test "Small client packet TLS 1.0 BlockCipher" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3784 | "$P_SRV" \ |
| 3785 | "$P_CLI request_size=1 force_version=tls1 \ |
| 3786 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3787 | 0 \ |
| 3788 | -s "Read from client: 1 bytes read" |
| 3789 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3790 | run_test "Small client packet TLS 1.0 BlockCipher, without EtM" \ |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 3791 | "$P_SRV" \ |
| 3792 | "$P_CLI request_size=1 force_version=tls1 etm=0 \ |
| 3793 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3794 | 0 \ |
| 3795 | -s "Read from client: 1 bytes read" |
| 3796 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 3797 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3798 | run_test "Small client packet TLS 1.0 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3799 | "$P_SRV trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3800 | "$P_CLI request_size=1 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3801 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3802 | 0 \ |
| 3803 | -s "Read from client: 1 bytes read" |
| 3804 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 3805 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3806 | run_test "Small client packet TLS 1.0 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3807 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3808 | "$P_CLI request_size=1 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3809 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3810 | 0 \ |
| 3811 | -s "Read from client: 1 bytes read" |
| 3812 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3813 | run_test "Small client packet TLS 1.0 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3814 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3815 | "$P_CLI request_size=1 force_version=tls1 \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3816 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 3817 | 0 \ |
| 3818 | -s "Read from client: 1 bytes read" |
| 3819 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3820 | run_test "Small client packet TLS 1.0 StreamCipher, without EtM" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3821 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 3822 | "$P_CLI request_size=1 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3823 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3824 | 0 \ |
| 3825 | -s "Read from client: 1 bytes read" |
| 3826 | |
| 3827 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3828 | run_test "Small client packet TLS 1.0 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3829 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3830 | "$P_CLI request_size=1 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3831 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3832 | 0 \ |
| 3833 | -s "Read from client: 1 bytes read" |
| 3834 | |
| 3835 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3836 | run_test "Small client packet TLS 1.0 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3837 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 3838 | "$P_CLI request_size=1 force_version=tls1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 3839 | trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3840 | 0 \ |
| 3841 | -s "Read from client: 1 bytes read" |
| 3842 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3843 | run_test "Small client packet TLS 1.1 BlockCipher" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3844 | "$P_SRV" \ |
| 3845 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 3846 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3847 | 0 \ |
| 3848 | -s "Read from client: 1 bytes read" |
| 3849 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3850 | run_test "Small client packet TLS 1.1 BlockCipher, without EtM" \ |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 3851 | "$P_SRV" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3852 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3853 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA etm=0" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3854 | 0 \ |
| 3855 | -s "Read from client: 1 bytes read" |
| 3856 | |
| 3857 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3858 | run_test "Small client packet TLS 1.1 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3859 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3860 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3861 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3862 | 0 \ |
| 3863 | -s "Read from client: 1 bytes read" |
| 3864 | |
| 3865 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3866 | run_test "Small client packet TLS 1.1 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3867 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3868 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3869 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3870 | 0 \ |
| 3871 | -s "Read from client: 1 bytes read" |
| 3872 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3873 | run_test "Small client packet TLS 1.1 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3874 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3875 | "$P_CLI request_size=1 force_version=tls1_1 \ |
| 3876 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 3877 | 0 \ |
| 3878 | -s "Read from client: 1 bytes read" |
| 3879 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3880 | run_test "Small client packet TLS 1.1 StreamCipher, without EtM" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3881 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3882 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3883 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3884 | 0 \ |
| 3885 | -s "Read from client: 1 bytes read" |
| 3886 | |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3887 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3888 | run_test "Small client packet TLS 1.1 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3889 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3890 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3891 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3892 | 0 \ |
| 3893 | -s "Read from client: 1 bytes read" |
| 3894 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 3895 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3896 | run_test "Small client packet TLS 1.1 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3897 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3898 | "$P_CLI request_size=1 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3899 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3900 | 0 \ |
| 3901 | -s "Read from client: 1 bytes read" |
| 3902 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3903 | run_test "Small client packet TLS 1.2 BlockCipher" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3904 | "$P_SRV" \ |
| 3905 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 3906 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3907 | 0 \ |
| 3908 | -s "Read from client: 1 bytes read" |
| 3909 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3910 | run_test "Small client packet TLS 1.2 BlockCipher, without EtM" \ |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 3911 | "$P_SRV" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3912 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3913 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA etm=0" \ |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 3914 | 0 \ |
| 3915 | -s "Read from client: 1 bytes read" |
| 3916 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3917 | run_test "Small client packet TLS 1.2 BlockCipher larger MAC" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3918 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 3919 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 3920 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3921 | 0 \ |
| 3922 | -s "Read from client: 1 bytes read" |
| 3923 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 3924 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3925 | run_test "Small client packet TLS 1.2 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3926 | "$P_SRV trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3927 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3928 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3929 | 0 \ |
| 3930 | -s "Read from client: 1 bytes read" |
| 3931 | |
| 3932 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3933 | run_test "Small client packet TLS 1.2 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3934 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3935 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3936 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3937 | 0 \ |
| 3938 | -s "Read from client: 1 bytes read" |
| 3939 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3940 | run_test "Small client packet TLS 1.2 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3941 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3942 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 3943 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 3944 | 0 \ |
| 3945 | -s "Read from client: 1 bytes read" |
| 3946 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3947 | run_test "Small client packet TLS 1.2 StreamCipher, without EtM" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 3948 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3949 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3950 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3951 | 0 \ |
| 3952 | -s "Read from client: 1 bytes read" |
| 3953 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 3954 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3955 | run_test "Small client packet TLS 1.2 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3956 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3957 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3958 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3959 | 0 \ |
| 3960 | -s "Read from client: 1 bytes read" |
| 3961 | |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3962 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3963 | run_test "Small client packet TLS 1.2 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3964 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 8501f98 | 2017-11-10 08:59:04 +0000 | [diff] [blame] | 3965 | "$P_CLI request_size=1 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 3966 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3967 | 0 \ |
| 3968 | -s "Read from client: 1 bytes read" |
| 3969 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3970 | run_test "Small client packet TLS 1.2 AEAD" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3971 | "$P_SRV" \ |
| 3972 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 3973 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 3974 | 0 \ |
| 3975 | -s "Read from client: 1 bytes read" |
| 3976 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3977 | run_test "Small client packet TLS 1.2 AEAD shorter tag" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 3978 | "$P_SRV" \ |
| 3979 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 3980 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 3981 | 0 \ |
| 3982 | -s "Read from client: 1 bytes read" |
| 3983 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3984 | # Tests for small client packets in DTLS |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 3985 | |
| 3986 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3987 | run_test "Small client packet DTLS 1.0" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 3988 | "$P_SRV dtls=1 force_version=dtls1" \ |
| 3989 | "$P_CLI dtls=1 request_size=1 \ |
| 3990 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3991 | 0 \ |
| 3992 | -s "Read from client: 1 bytes read" |
| 3993 | |
| 3994 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 3995 | run_test "Small client packet DTLS 1.0, without EtM" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 3996 | "$P_SRV dtls=1 force_version=dtls1 etm=0" \ |
| 3997 | "$P_CLI dtls=1 request_size=1 \ |
| 3998 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 3999 | 0 \ |
| 4000 | -s "Read from client: 1 bytes read" |
| 4001 | |
| 4002 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4003 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4004 | run_test "Small client packet DTLS 1.0, truncated hmac" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4005 | "$P_SRV dtls=1 force_version=dtls1 trunc_hmac=1" \ |
| 4006 | "$P_CLI dtls=1 request_size=1 trunc_hmac=1 \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4007 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4008 | 0 \ |
| 4009 | -s "Read from client: 1 bytes read" |
| 4010 | |
| 4011 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4012 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4013 | run_test "Small client packet DTLS 1.0, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4014 | "$P_SRV dtls=1 force_version=dtls1 trunc_hmac=1 etm=0" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4015 | "$P_CLI dtls=1 request_size=1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4016 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1"\ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4017 | 0 \ |
| 4018 | -s "Read from client: 1 bytes read" |
| 4019 | |
| 4020 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4021 | run_test "Small client packet DTLS 1.2" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4022 | "$P_SRV dtls=1 force_version=dtls1_2" \ |
| 4023 | "$P_CLI dtls=1 request_size=1 \ |
| 4024 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4025 | 0 \ |
| 4026 | -s "Read from client: 1 bytes read" |
| 4027 | |
| 4028 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4029 | run_test "Small client packet DTLS 1.2, without EtM" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4030 | "$P_SRV dtls=1 force_version=dtls1_2 etm=0" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4031 | "$P_CLI dtls=1 request_size=1 \ |
| 4032 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4033 | 0 \ |
| 4034 | -s "Read from client: 1 bytes read" |
| 4035 | |
| 4036 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4037 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4038 | run_test "Small client packet DTLS 1.2, truncated hmac" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4039 | "$P_SRV dtls=1 force_version=dtls1_2 trunc_hmac=1" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4040 | "$P_CLI dtls=1 request_size=1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4041 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4042 | 0 \ |
| 4043 | -s "Read from client: 1 bytes read" |
| 4044 | |
| 4045 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4046 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4047 | run_test "Small client packet DTLS 1.2, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4048 | "$P_SRV dtls=1 force_version=dtls1_2 trunc_hmac=1 etm=0" \ |
Hanno Becker | e214804 | 2017-11-10 08:59:18 +0000 | [diff] [blame] | 4049 | "$P_CLI dtls=1 request_size=1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4050 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1"\ |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 4051 | 0 \ |
| 4052 | -s "Read from client: 1 bytes read" |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4053 | |
| 4054 | # Tests for small server packets |
| 4055 | |
| 4056 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 4057 | run_test "Small server packet SSLv3 BlockCipher" \ |
| 4058 | "$P_SRV response_size=1 min_version=ssl3" \ |
| 4059 | "$P_CLI force_version=ssl3 \ |
| 4060 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4061 | 0 \ |
| 4062 | -c "Read from server: 1 bytes read" |
| 4063 | |
| 4064 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 4065 | run_test "Small server packet SSLv3 StreamCipher" \ |
| 4066 | "$P_SRV response_size=1 min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4067 | "$P_CLI force_version=ssl3 \ |
| 4068 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4069 | 0 \ |
| 4070 | -c "Read from server: 1 bytes read" |
| 4071 | |
| 4072 | run_test "Small server packet TLS 1.0 BlockCipher" \ |
| 4073 | "$P_SRV response_size=1" \ |
| 4074 | "$P_CLI force_version=tls1 \ |
| 4075 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4076 | 0 \ |
| 4077 | -c "Read from server: 1 bytes read" |
| 4078 | |
| 4079 | run_test "Small server packet TLS 1.0 BlockCipher, without EtM" \ |
| 4080 | "$P_SRV response_size=1" \ |
| 4081 | "$P_CLI force_version=tls1 etm=0 \ |
| 4082 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4083 | 0 \ |
| 4084 | -c "Read from server: 1 bytes read" |
| 4085 | |
| 4086 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4087 | run_test "Small server packet TLS 1.0 BlockCipher, truncated MAC" \ |
| 4088 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4089 | "$P_CLI force_version=tls1 \ |
| 4090 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
| 4091 | 0 \ |
| 4092 | -c "Read from server: 1 bytes read" |
| 4093 | |
| 4094 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4095 | run_test "Small server packet TLS 1.0 BlockCipher, without EtM, truncated MAC" \ |
| 4096 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4097 | "$P_CLI force_version=tls1 \ |
| 4098 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
| 4099 | 0 \ |
| 4100 | -c "Read from server: 1 bytes read" |
| 4101 | |
| 4102 | run_test "Small server packet TLS 1.0 StreamCipher" \ |
| 4103 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4104 | "$P_CLI force_version=tls1 \ |
| 4105 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4106 | 0 \ |
| 4107 | -c "Read from server: 1 bytes read" |
| 4108 | |
| 4109 | run_test "Small server packet TLS 1.0 StreamCipher, without EtM" \ |
| 4110 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4111 | "$P_CLI force_version=tls1 \ |
| 4112 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4113 | 0 \ |
| 4114 | -c "Read from server: 1 bytes read" |
| 4115 | |
| 4116 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4117 | run_test "Small server packet TLS 1.0 StreamCipher, truncated MAC" \ |
| 4118 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4119 | "$P_CLI force_version=tls1 \ |
| 4120 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4121 | 0 \ |
| 4122 | -c "Read from server: 1 bytes read" |
| 4123 | |
| 4124 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4125 | run_test "Small server packet TLS 1.0 StreamCipher, without EtM, truncated MAC" \ |
| 4126 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4127 | "$P_CLI force_version=tls1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 4128 | trunc_hmac=1 etm=0" \ |
| 4129 | 0 \ |
| 4130 | -c "Read from server: 1 bytes read" |
| 4131 | |
| 4132 | run_test "Small server packet TLS 1.1 BlockCipher" \ |
| 4133 | "$P_SRV response_size=1" \ |
| 4134 | "$P_CLI force_version=tls1_1 \ |
| 4135 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4136 | 0 \ |
| 4137 | -c "Read from server: 1 bytes read" |
| 4138 | |
| 4139 | run_test "Small server packet TLS 1.1 BlockCipher, without EtM" \ |
| 4140 | "$P_SRV response_size=1" \ |
| 4141 | "$P_CLI force_version=tls1_1 \ |
| 4142 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA etm=0" \ |
| 4143 | 0 \ |
| 4144 | -c "Read from server: 1 bytes read" |
| 4145 | |
| 4146 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4147 | run_test "Small server packet TLS 1.1 BlockCipher, truncated MAC" \ |
| 4148 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4149 | "$P_CLI force_version=tls1_1 \ |
| 4150 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
| 4151 | 0 \ |
| 4152 | -c "Read from server: 1 bytes read" |
| 4153 | |
| 4154 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4155 | run_test "Small server packet TLS 1.1 BlockCipher, without EtM, truncated MAC" \ |
| 4156 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4157 | "$P_CLI force_version=tls1_1 \ |
| 4158 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
| 4159 | 0 \ |
| 4160 | -c "Read from server: 1 bytes read" |
| 4161 | |
| 4162 | run_test "Small server packet TLS 1.1 StreamCipher" \ |
| 4163 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4164 | "$P_CLI force_version=tls1_1 \ |
| 4165 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4166 | 0 \ |
| 4167 | -c "Read from server: 1 bytes read" |
| 4168 | |
| 4169 | run_test "Small server packet TLS 1.1 StreamCipher, without EtM" \ |
| 4170 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4171 | "$P_CLI force_version=tls1_1 \ |
| 4172 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4173 | 0 \ |
| 4174 | -c "Read from server: 1 bytes read" |
| 4175 | |
| 4176 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4177 | run_test "Small server packet TLS 1.1 StreamCipher, truncated MAC" \ |
| 4178 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4179 | "$P_CLI force_version=tls1_1 \ |
| 4180 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4181 | 0 \ |
| 4182 | -c "Read from server: 1 bytes read" |
| 4183 | |
| 4184 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4185 | run_test "Small server packet TLS 1.1 StreamCipher, without EtM, truncated MAC" \ |
| 4186 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4187 | "$P_CLI force_version=tls1_1 \ |
| 4188 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
| 4189 | 0 \ |
| 4190 | -c "Read from server: 1 bytes read" |
| 4191 | |
| 4192 | run_test "Small server packet TLS 1.2 BlockCipher" \ |
| 4193 | "$P_SRV response_size=1" \ |
| 4194 | "$P_CLI force_version=tls1_2 \ |
| 4195 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4196 | 0 \ |
| 4197 | -c "Read from server: 1 bytes read" |
| 4198 | |
| 4199 | run_test "Small server packet TLS 1.2 BlockCipher, without EtM" \ |
| 4200 | "$P_SRV response_size=1" \ |
| 4201 | "$P_CLI force_version=tls1_2 \ |
| 4202 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA etm=0" \ |
| 4203 | 0 \ |
| 4204 | -c "Read from server: 1 bytes read" |
| 4205 | |
| 4206 | run_test "Small server packet TLS 1.2 BlockCipher larger MAC" \ |
| 4207 | "$P_SRV response_size=1" \ |
| 4208 | "$P_CLI force_version=tls1_2 \ |
| 4209 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
| 4210 | 0 \ |
| 4211 | -c "Read from server: 1 bytes read" |
| 4212 | |
| 4213 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4214 | run_test "Small server packet TLS 1.2 BlockCipher, truncated MAC" \ |
| 4215 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4216 | "$P_CLI force_version=tls1_2 \ |
| 4217 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
| 4218 | 0 \ |
| 4219 | -c "Read from server: 1 bytes read" |
| 4220 | |
| 4221 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4222 | run_test "Small server packet TLS 1.2 BlockCipher, without EtM, truncated MAC" \ |
| 4223 | "$P_SRV response_size=1 trunc_hmac=1" \ |
| 4224 | "$P_CLI force_version=tls1_2 \ |
| 4225 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
| 4226 | 0 \ |
| 4227 | -c "Read from server: 1 bytes read" |
| 4228 | |
| 4229 | run_test "Small server packet TLS 1.2 StreamCipher" \ |
| 4230 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4231 | "$P_CLI force_version=tls1_2 \ |
| 4232 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4233 | 0 \ |
| 4234 | -c "Read from server: 1 bytes read" |
| 4235 | |
| 4236 | run_test "Small server packet TLS 1.2 StreamCipher, without EtM" \ |
| 4237 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4238 | "$P_CLI force_version=tls1_2 \ |
| 4239 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4240 | 0 \ |
| 4241 | -c "Read from server: 1 bytes read" |
| 4242 | |
| 4243 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4244 | run_test "Small server packet TLS 1.2 StreamCipher, truncated MAC" \ |
| 4245 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4246 | "$P_CLI force_version=tls1_2 \ |
| 4247 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4248 | 0 \ |
| 4249 | -c "Read from server: 1 bytes read" |
| 4250 | |
| 4251 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4252 | run_test "Small server packet TLS 1.2 StreamCipher, without EtM, truncated MAC" \ |
| 4253 | "$P_SRV response_size=1 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4254 | "$P_CLI force_version=tls1_2 \ |
| 4255 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
| 4256 | 0 \ |
| 4257 | -c "Read from server: 1 bytes read" |
| 4258 | |
| 4259 | run_test "Small server packet TLS 1.2 AEAD" \ |
| 4260 | "$P_SRV response_size=1" \ |
| 4261 | "$P_CLI force_version=tls1_2 \ |
| 4262 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 4263 | 0 \ |
| 4264 | -c "Read from server: 1 bytes read" |
| 4265 | |
| 4266 | run_test "Small server packet TLS 1.2 AEAD shorter tag" \ |
| 4267 | "$P_SRV response_size=1" \ |
| 4268 | "$P_CLI force_version=tls1_2 \ |
| 4269 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 4270 | 0 \ |
| 4271 | -c "Read from server: 1 bytes read" |
| 4272 | |
| 4273 | # Tests for small server packets in DTLS |
| 4274 | |
| 4275 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4276 | run_test "Small server packet DTLS 1.0" \ |
| 4277 | "$P_SRV dtls=1 response_size=1 force_version=dtls1" \ |
| 4278 | "$P_CLI dtls=1 \ |
| 4279 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4280 | 0 \ |
| 4281 | -c "Read from server: 1 bytes read" |
| 4282 | |
| 4283 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4284 | run_test "Small server packet DTLS 1.0, without EtM" \ |
| 4285 | "$P_SRV dtls=1 response_size=1 force_version=dtls1 etm=0" \ |
| 4286 | "$P_CLI dtls=1 \ |
| 4287 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4288 | 0 \ |
| 4289 | -c "Read from server: 1 bytes read" |
| 4290 | |
| 4291 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4292 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4293 | run_test "Small server packet DTLS 1.0, truncated hmac" \ |
| 4294 | "$P_SRV dtls=1 response_size=1 force_version=dtls1 trunc_hmac=1" \ |
| 4295 | "$P_CLI dtls=1 trunc_hmac=1 \ |
| 4296 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4297 | 0 \ |
| 4298 | -c "Read from server: 1 bytes read" |
| 4299 | |
| 4300 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4301 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4302 | run_test "Small server packet DTLS 1.0, without EtM, truncated MAC" \ |
| 4303 | "$P_SRV dtls=1 response_size=1 force_version=dtls1 trunc_hmac=1 etm=0" \ |
| 4304 | "$P_CLI dtls=1 \ |
| 4305 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1"\ |
| 4306 | 0 \ |
| 4307 | -c "Read from server: 1 bytes read" |
| 4308 | |
| 4309 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4310 | run_test "Small server packet DTLS 1.2" \ |
| 4311 | "$P_SRV dtls=1 response_size=1 force_version=dtls1_2" \ |
| 4312 | "$P_CLI dtls=1 \ |
| 4313 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4314 | 0 \ |
| 4315 | -c "Read from server: 1 bytes read" |
| 4316 | |
| 4317 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4318 | run_test "Small server packet DTLS 1.2, without EtM" \ |
| 4319 | "$P_SRV dtls=1 response_size=1 force_version=dtls1_2 etm=0" \ |
| 4320 | "$P_CLI dtls=1 \ |
| 4321 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4322 | 0 \ |
| 4323 | -c "Read from server: 1 bytes read" |
| 4324 | |
| 4325 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4326 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4327 | run_test "Small server packet DTLS 1.2, truncated hmac" \ |
| 4328 | "$P_SRV dtls=1 response_size=1 force_version=dtls1_2 trunc_hmac=1" \ |
| 4329 | "$P_CLI dtls=1 \ |
| 4330 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
| 4331 | 0 \ |
| 4332 | -c "Read from server: 1 bytes read" |
| 4333 | |
| 4334 | requires_config_enabled MBEDTLS_SSL_PROTO_DTLS |
| 4335 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4336 | run_test "Small server packet DTLS 1.2, without EtM, truncated MAC" \ |
| 4337 | "$P_SRV dtls=1 response_size=1 force_version=dtls1_2 trunc_hmac=1 etm=0" \ |
| 4338 | "$P_CLI dtls=1 \ |
| 4339 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1"\ |
| 4340 | 0 \ |
| 4341 | -c "Read from server: 1 bytes read" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 4342 | |
Janos Follath | 00efff7 | 2016-05-06 13:48:23 +0100 | [diff] [blame] | 4343 | # A test for extensions in SSLv3 |
| 4344 | |
| 4345 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 4346 | run_test "SSLv3 with extensions, server side" \ |
| 4347 | "$P_SRV min_version=ssl3 debug_level=3" \ |
| 4348 | "$P_CLI force_version=ssl3 tickets=1 max_frag_len=4096 alpn=abc,1234" \ |
| 4349 | 0 \ |
| 4350 | -S "dumping 'client hello extensions'" \ |
| 4351 | -S "server hello, total extension length:" |
| 4352 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4353 | # Test for large client packets |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4354 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 4355 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4356 | run_test "Large client packet SSLv3 BlockCipher" \ |
Manuel Pégourié-Gonnard | 448ea50 | 2015-01-12 11:40:14 +0100 | [diff] [blame] | 4357 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 4358 | "$P_CLI request_size=16384 force_version=ssl3 recsplit=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4359 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4360 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4361 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4362 | -s "Read from client: 16384 bytes read" |
| 4363 | |
Janos Follath | e2681a4 | 2016-03-07 15:57:05 +0000 | [diff] [blame] | 4364 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4365 | run_test "Large client packet SSLv3 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 4366 | "$P_SRV min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4367 | "$P_CLI request_size=16384 force_version=ssl3 \ |
| 4368 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4369 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4370 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4371 | -s "Read from client: 16384 bytes read" |
| 4372 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4373 | run_test "Large client packet TLS 1.0 BlockCipher" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4374 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 4375 | "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4376 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4377 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4378 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4379 | -s "Read from client: 16384 bytes read" |
| 4380 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4381 | run_test "Large client packet TLS 1.0 BlockCipher, without EtM" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4382 | "$P_SRV" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4383 | "$P_CLI request_size=16384 force_version=tls1 etm=0 recsplit=0 \ |
| 4384 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4385 | 0 \ |
| 4386 | -s "Read from client: 16384 bytes read" |
| 4387 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4388 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4389 | run_test "Large client packet TLS 1.0 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4390 | "$P_SRV trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 4391 | "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4392 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4393 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4394 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4395 | -s "Read from client: 16384 bytes read" |
| 4396 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4397 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4398 | run_test "Large client packet TLS 1.0 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4399 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4400 | "$P_CLI request_size=16384 force_version=tls1 etm=0 recsplit=0 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4401 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4402 | 0 \ |
| 4403 | -s "Read from client: 16384 bytes read" |
| 4404 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4405 | run_test "Large client packet TLS 1.0 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 4406 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4407 | "$P_CLI request_size=16384 force_version=tls1 \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4408 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4409 | 0 \ |
| 4410 | -s "Read from client: 16384 bytes read" |
| 4411 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4412 | run_test "Large client packet TLS 1.0 StreamCipher, without EtM" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4413 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4414 | "$P_CLI request_size=16384 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4415 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4416 | 0 \ |
| 4417 | -s "Read from client: 16384 bytes read" |
| 4418 | |
| 4419 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4420 | run_test "Large client packet TLS 1.0 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4421 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4422 | "$P_CLI request_size=16384 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4423 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4424 | 0 \ |
| 4425 | -s "Read from client: 16384 bytes read" |
| 4426 | |
| 4427 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4428 | run_test "Large client packet TLS 1.0 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4429 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4430 | "$P_CLI request_size=16384 force_version=tls1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4431 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4432 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4433 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4434 | -s "Read from client: 16384 bytes read" |
| 4435 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4436 | run_test "Large client packet TLS 1.1 BlockCipher" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4437 | "$P_SRV" \ |
| 4438 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 4439 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4440 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4441 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4442 | -s "Read from client: 16384 bytes read" |
| 4443 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4444 | run_test "Large client packet TLS 1.1 BlockCipher, without EtM" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4445 | "$P_SRV" \ |
| 4446 | "$P_CLI request_size=16384 force_version=tls1_1 etm=0 \ |
| 4447 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4448 | 0 \ |
| 4449 | -s "Read from client: 16384 bytes read" |
| 4450 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4451 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4452 | run_test "Large client packet TLS 1.1 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4453 | "$P_SRV trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4454 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4455 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4456 | 0 \ |
| 4457 | -s "Read from client: 16384 bytes read" |
| 4458 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4459 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4460 | run_test "Large client packet TLS 1.1 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4461 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4462 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4463 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4464 | 0 \ |
| 4465 | -s "Read from client: 16384 bytes read" |
| 4466 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4467 | run_test "Large client packet TLS 1.1 StreamCipher" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4468 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4469 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 4470 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4471 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4472 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4473 | -s "Read from client: 16384 bytes read" |
| 4474 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4475 | run_test "Large client packet TLS 1.1 StreamCipher, without EtM" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4476 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4477 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4478 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4479 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4480 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4481 | -s "Read from client: 16384 bytes read" |
| 4482 | |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4483 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4484 | run_test "Large client packet TLS 1.1 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4485 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4486 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4487 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4488 | 0 \ |
| 4489 | -s "Read from client: 16384 bytes read" |
| 4490 | |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4491 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4492 | run_test "Large client packet TLS 1.1 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4493 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4494 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4495 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4496 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4497 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4498 | -s "Read from client: 16384 bytes read" |
| 4499 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4500 | run_test "Large client packet TLS 1.2 BlockCipher" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4501 | "$P_SRV" \ |
| 4502 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 4503 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4504 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4505 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4506 | -s "Read from client: 16384 bytes read" |
| 4507 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4508 | run_test "Large client packet TLS 1.2 BlockCipher, without EtM" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4509 | "$P_SRV" \ |
| 4510 | "$P_CLI request_size=16384 force_version=tls1_2 etm=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4511 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4512 | 0 \ |
| 4513 | -s "Read from client: 16384 bytes read" |
| 4514 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4515 | run_test "Large client packet TLS 1.2 BlockCipher larger MAC" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4516 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 4517 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 4518 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4519 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4520 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4521 | -s "Read from client: 16384 bytes read" |
| 4522 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4523 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4524 | run_test "Large client packet TLS 1.2 BlockCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4525 | "$P_SRV trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4526 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4527 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4528 | 0 \ |
| 4529 | -s "Read from client: 16384 bytes read" |
| 4530 | |
| 4531 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4532 | run_test "Large client packet TLS 1.2 BlockCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4533 | "$P_SRV trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4534 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4535 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4536 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4537 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4538 | -s "Read from client: 16384 bytes read" |
| 4539 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4540 | run_test "Large client packet TLS 1.2 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 4541 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4542 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 4543 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4544 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4545 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4546 | -s "Read from client: 16384 bytes read" |
| 4547 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4548 | run_test "Large client packet TLS 1.2 StreamCipher, without EtM" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 4549 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4550 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4551 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4552 | 0 \ |
| 4553 | -s "Read from client: 16384 bytes read" |
| 4554 | |
Hanno Becker | 32c5501 | 2017-11-10 08:42:54 +0000 | [diff] [blame] | 4555 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4556 | run_test "Large client packet TLS 1.2 StreamCipher, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4557 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4558 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4559 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4560 | 0 \ |
| 4561 | -s "Read from client: 16384 bytes read" |
| 4562 | |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4563 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4564 | run_test "Large client packet TLS 1.2 StreamCipher, without EtM, truncated MAC" \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4565 | "$P_SRV arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
Hanno Becker | 278fc7a | 2017-11-10 09:16:28 +0000 | [diff] [blame] | 4566 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
Hanno Becker | 909f9a3 | 2017-11-21 17:10:12 +0000 | [diff] [blame] | 4567 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4568 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4569 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4570 | -s "Read from client: 16384 bytes read" |
| 4571 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4572 | run_test "Large client packet TLS 1.2 AEAD" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4573 | "$P_SRV" \ |
| 4574 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 4575 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 4576 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4577 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4578 | -s "Read from client: 16384 bytes read" |
| 4579 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4580 | run_test "Large client packet TLS 1.2 AEAD shorter tag" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4581 | "$P_SRV" \ |
| 4582 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 4583 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 4584 | 0 \ |
Hanno Becker | 09930d1 | 2017-09-18 15:04:19 +0100 | [diff] [blame] | 4585 | -c "16384 bytes written in 1 fragments" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 4586 | -s "Read from client: 16384 bytes read" |
| 4587 | |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4588 | # Tests for ECC extensions (rfc 4492) |
| 4589 | |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4590 | requires_config_enabled MBEDTLS_AES_C |
| 4591 | requires_config_enabled MBEDTLS_CIPHER_MODE_CBC |
| 4592 | requires_config_enabled MBEDTLS_SHA256_C |
| 4593 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_RSA_ENABLED |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4594 | run_test "Force a non ECC ciphersuite in the client side" \ |
| 4595 | "$P_SRV debug_level=3" \ |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4596 | "$P_CLI debug_level=3 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA256" \ |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4597 | 0 \ |
| 4598 | -C "client hello, adding supported_elliptic_curves extension" \ |
| 4599 | -C "client hello, adding supported_point_formats extension" \ |
| 4600 | -S "found supported elliptic curves extension" \ |
| 4601 | -S "found supported point formats extension" |
| 4602 | |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4603 | requires_config_enabled MBEDTLS_AES_C |
| 4604 | requires_config_enabled MBEDTLS_CIPHER_MODE_CBC |
| 4605 | requires_config_enabled MBEDTLS_SHA256_C |
| 4606 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_RSA_ENABLED |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4607 | run_test "Force a non ECC ciphersuite in the server side" \ |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4608 | "$P_SRV debug_level=3 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA256" \ |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4609 | "$P_CLI debug_level=3" \ |
| 4610 | 0 \ |
| 4611 | -C "found supported_point_formats extension" \ |
| 4612 | -S "server hello, supported_point_formats extension" |
| 4613 | |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4614 | requires_config_enabled MBEDTLS_AES_C |
| 4615 | requires_config_enabled MBEDTLS_CIPHER_MODE_CBC |
| 4616 | requires_config_enabled MBEDTLS_SHA256_C |
| 4617 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4618 | run_test "Force an ECC ciphersuite in the client side" \ |
| 4619 | "$P_SRV debug_level=3" \ |
| 4620 | "$P_CLI debug_level=3 force_ciphersuite=TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA256" \ |
| 4621 | 0 \ |
| 4622 | -c "client hello, adding supported_elliptic_curves extension" \ |
| 4623 | -c "client hello, adding supported_point_formats extension" \ |
| 4624 | -s "found supported elliptic curves extension" \ |
| 4625 | -s "found supported point formats extension" |
| 4626 | |
Ron Eldor | 94226d8 | 2018-06-28 16:17:00 +0300 | [diff] [blame] | 4627 | requires_config_enabled MBEDTLS_AES_C |
| 4628 | requires_config_enabled MBEDTLS_CIPHER_MODE_CBC |
| 4629 | requires_config_enabled MBEDTLS_SHA256_C |
| 4630 | requires_config_enabled MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED |
Ron Eldor | c7f1523 | 2018-06-28 13:22:05 +0300 | [diff] [blame] | 4631 | run_test "Force an ECC ciphersuite in the server side" \ |
| 4632 | "$P_SRV debug_level=3 force_ciphersuite=TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA256" \ |
| 4633 | "$P_CLI debug_level=3" \ |
| 4634 | 0 \ |
| 4635 | -c "found supported_point_formats extension" \ |
| 4636 | -s "server hello, supported_point_formats extension" |
| 4637 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4638 | # Test for large server packets |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4639 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 4640 | run_test "Large server packet SSLv3 StreamCipher" \ |
| 4641 | "$P_SRV response_size=16384 min_version=ssl3 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4642 | "$P_CLI force_version=ssl3 \ |
| 4643 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4644 | 0 \ |
| 4645 | -c "Read from server: 16384 bytes read" |
| 4646 | |
Andrzej Kurek | c895821 | 2018-08-27 08:00:13 -0400 | [diff] [blame] | 4647 | # Checking next 4 tests logs for 1n-1 split against BEAST too |
| 4648 | requires_config_enabled MBEDTLS_SSL_PROTO_SSL3 |
| 4649 | run_test "Large server packet SSLv3 BlockCipher" \ |
| 4650 | "$P_SRV response_size=16384 min_version=ssl3" \ |
| 4651 | "$P_CLI force_version=ssl3 recsplit=0 \ |
| 4652 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4653 | 0 \ |
| 4654 | -c "Read from server: 1 bytes read"\ |
| 4655 | -c "16383 bytes read"\ |
| 4656 | -C "Read from server: 16384 bytes read" |
| 4657 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4658 | run_test "Large server packet TLS 1.0 BlockCipher" \ |
| 4659 | "$P_SRV response_size=16384" \ |
| 4660 | "$P_CLI force_version=tls1 recsplit=0 \ |
| 4661 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4662 | 0 \ |
| 4663 | -c "Read from server: 1 bytes read"\ |
| 4664 | -c "16383 bytes read"\ |
| 4665 | -C "Read from server: 16384 bytes read" |
| 4666 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4667 | run_test "Large server packet TLS 1.0 BlockCipher, without EtM" \ |
| 4668 | "$P_SRV response_size=16384" \ |
| 4669 | "$P_CLI force_version=tls1 etm=0 recsplit=0 \ |
| 4670 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4671 | 0 \ |
| 4672 | -c "Read from server: 1 bytes read"\ |
| 4673 | -c "16383 bytes read"\ |
| 4674 | -C "Read from server: 16384 bytes read" |
| 4675 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4676 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4677 | run_test "Large server packet TLS 1.0 BlockCipher truncated MAC" \ |
| 4678 | "$P_SRV response_size=16384" \ |
| 4679 | "$P_CLI force_version=tls1 recsplit=0 \ |
| 4680 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 4681 | trunc_hmac=1" \ |
| 4682 | 0 \ |
| 4683 | -c "Read from server: 1 bytes read"\ |
| 4684 | -c "16383 bytes read"\ |
| 4685 | -C "Read from server: 16384 bytes read" |
| 4686 | |
| 4687 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4688 | run_test "Large server packet TLS 1.0 StreamCipher truncated MAC" \ |
| 4689 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4690 | "$P_CLI force_version=tls1 \ |
| 4691 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 4692 | trunc_hmac=1" \ |
| 4693 | 0 \ |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4694 | -s "16384 bytes written in 1 fragments" \ |
| 4695 | -c "Read from server: 16384 bytes read" |
| 4696 | |
| 4697 | run_test "Large server packet TLS 1.0 StreamCipher" \ |
| 4698 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4699 | "$P_CLI force_version=tls1 \ |
| 4700 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4701 | 0 \ |
| 4702 | -s "16384 bytes written in 1 fragments" \ |
| 4703 | -c "Read from server: 16384 bytes read" |
| 4704 | |
| 4705 | run_test "Large server packet TLS 1.0 StreamCipher, without EtM" \ |
| 4706 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4707 | "$P_CLI force_version=tls1 \ |
| 4708 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4709 | 0 \ |
| 4710 | -s "16384 bytes written in 1 fragments" \ |
| 4711 | -c "Read from server: 16384 bytes read" |
| 4712 | |
| 4713 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4714 | run_test "Large server packet TLS 1.0 StreamCipher, truncated MAC" \ |
| 4715 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4716 | "$P_CLI force_version=tls1 \ |
| 4717 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4718 | 0 \ |
| 4719 | -s "16384 bytes written in 1 fragments" \ |
| 4720 | -c "Read from server: 16384 bytes read" |
| 4721 | |
| 4722 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4723 | run_test "Large server packet TLS 1.0 StreamCipher, without EtM, truncated MAC" \ |
| 4724 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4725 | "$P_CLI force_version=tls1 \ |
| 4726 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
| 4727 | 0 \ |
| 4728 | -s "16384 bytes written in 1 fragments" \ |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4729 | -c "Read from server: 16384 bytes read" |
| 4730 | |
| 4731 | run_test "Large server packet TLS 1.1 BlockCipher" \ |
| 4732 | "$P_SRV response_size=16384" \ |
| 4733 | "$P_CLI force_version=tls1_1 \ |
| 4734 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4735 | 0 \ |
| 4736 | -c "Read from server: 16384 bytes read" |
| 4737 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4738 | run_test "Large server packet TLS 1.1 BlockCipher, without EtM" \ |
| 4739 | "$P_SRV response_size=16384" \ |
| 4740 | "$P_CLI force_version=tls1_1 etm=0 \ |
| 4741 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4742 | 0 \ |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4743 | -s "16384 bytes written in 1 fragments" \ |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4744 | -c "Read from server: 16384 bytes read" |
| 4745 | |
| 4746 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4747 | run_test "Large server packet TLS 1.1 BlockCipher truncated MAC" \ |
| 4748 | "$P_SRV response_size=16384" \ |
| 4749 | "$P_CLI force_version=tls1_1 \ |
| 4750 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 4751 | trunc_hmac=1" \ |
| 4752 | 0 \ |
| 4753 | -c "Read from server: 16384 bytes read" |
| 4754 | |
| 4755 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4756 | run_test "Large server packet TLS 1.1 BlockCipher, without EtM, truncated MAC" \ |
| 4757 | "$P_SRV response_size=16384 trunc_hmac=1" \ |
| 4758 | "$P_CLI force_version=tls1_1 \ |
| 4759 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
| 4760 | 0 \ |
| 4761 | -s "16384 bytes written in 1 fragments" \ |
| 4762 | -c "Read from server: 16384 bytes read" |
| 4763 | |
| 4764 | run_test "Large server packet TLS 1.1 StreamCipher" \ |
| 4765 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4766 | "$P_CLI force_version=tls1_1 \ |
| 4767 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4768 | 0 \ |
| 4769 | -c "Read from server: 16384 bytes read" |
| 4770 | |
| 4771 | run_test "Large server packet TLS 1.1 StreamCipher, without EtM" \ |
| 4772 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4773 | "$P_CLI force_version=tls1_1 \ |
| 4774 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4775 | 0 \ |
| 4776 | -s "16384 bytes written in 1 fragments" \ |
| 4777 | -c "Read from server: 16384 bytes read" |
| 4778 | |
| 4779 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4780 | run_test "Large server packet TLS 1.1 StreamCipher truncated MAC" \ |
| 4781 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4782 | "$P_CLI force_version=tls1_1 \ |
| 4783 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 4784 | trunc_hmac=1" \ |
| 4785 | 0 \ |
| 4786 | -c "Read from server: 16384 bytes read" |
| 4787 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4788 | run_test "Large server packet TLS 1.1 StreamCipher, without EtM, truncated MAC" \ |
| 4789 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4790 | "$P_CLI force_version=tls1_1 \ |
| 4791 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
| 4792 | 0 \ |
| 4793 | -s "16384 bytes written in 1 fragments" \ |
| 4794 | -c "Read from server: 16384 bytes read" |
| 4795 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4796 | run_test "Large server packet TLS 1.2 BlockCipher" \ |
| 4797 | "$P_SRV response_size=16384" \ |
| 4798 | "$P_CLI force_version=tls1_2 \ |
| 4799 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4800 | 0 \ |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4801 | -c "Read from server: 16384 bytes read" |
| 4802 | |
| 4803 | run_test "Large server packet TLS 1.2 BlockCipher, without EtM" \ |
| 4804 | "$P_SRV response_size=16384" \ |
| 4805 | "$P_CLI force_version=tls1_2 etm=0 \ |
| 4806 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 4807 | 0 \ |
| 4808 | -s "16384 bytes written in 1 fragments" \ |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4809 | -c "Read from server: 16384 bytes read" |
| 4810 | |
| 4811 | run_test "Large server packet TLS 1.2 BlockCipher larger MAC" \ |
| 4812 | "$P_SRV response_size=16384" \ |
| 4813 | "$P_CLI force_version=tls1_2 \ |
| 4814 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
| 4815 | 0 \ |
| 4816 | -c "Read from server: 16384 bytes read" |
| 4817 | |
| 4818 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4819 | run_test "Large server packet TLS 1.2 BlockCipher truncated MAC" \ |
| 4820 | "$P_SRV response_size=16384" \ |
| 4821 | "$P_CLI force_version=tls1_2 \ |
| 4822 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 4823 | trunc_hmac=1" \ |
| 4824 | 0 \ |
| 4825 | -c "Read from server: 16384 bytes read" |
| 4826 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4827 | run_test "Large server packet TLS 1.2 BlockCipher, without EtM, truncated MAC" \ |
| 4828 | "$P_SRV response_size=16384 trunc_hmac=1" \ |
| 4829 | "$P_CLI force_version=tls1_2 \ |
| 4830 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA trunc_hmac=1 etm=0" \ |
| 4831 | 0 \ |
| 4832 | -s "16384 bytes written in 1 fragments" \ |
| 4833 | -c "Read from server: 16384 bytes read" |
| 4834 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4835 | run_test "Large server packet TLS 1.2 StreamCipher" \ |
| 4836 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4837 | "$P_CLI force_version=tls1_2 \ |
| 4838 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4839 | 0 \ |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4840 | -s "16384 bytes written in 1 fragments" \ |
| 4841 | -c "Read from server: 16384 bytes read" |
| 4842 | |
| 4843 | run_test "Large server packet TLS 1.2 StreamCipher, without EtM" \ |
| 4844 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4845 | "$P_CLI force_version=tls1_2 \ |
| 4846 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA etm=0" \ |
| 4847 | 0 \ |
| 4848 | -s "16384 bytes written in 1 fragments" \ |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4849 | -c "Read from server: 16384 bytes read" |
| 4850 | |
| 4851 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4852 | run_test "Large server packet TLS 1.2 StreamCipher truncated MAC" \ |
| 4853 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 4854 | "$P_CLI force_version=tls1_2 \ |
| 4855 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 4856 | trunc_hmac=1" \ |
| 4857 | 0 \ |
| 4858 | -c "Read from server: 16384 bytes read" |
| 4859 | |
Andrzej Kurek | d731a63 | 2018-06-19 09:37:30 -0400 | [diff] [blame] | 4860 | requires_config_enabled MBEDTLS_SSL_TRUNCATED_HMAC |
| 4861 | run_test "Large server packet TLS 1.2 StreamCipher, without EtM, truncated MAC" \ |
| 4862 | "$P_SRV response_size=16384 arc4=1 force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1" \ |
| 4863 | "$P_CLI force_version=tls1_2 \ |
| 4864 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA trunc_hmac=1 etm=0" \ |
| 4865 | 0 \ |
| 4866 | -s "16384 bytes written in 1 fragments" \ |
| 4867 | -c "Read from server: 16384 bytes read" |
| 4868 | |
Andrzej Kurek | 557335e | 2018-06-28 04:03:10 -0400 | [diff] [blame] | 4869 | run_test "Large server packet TLS 1.2 AEAD" \ |
| 4870 | "$P_SRV response_size=16384" \ |
| 4871 | "$P_CLI force_version=tls1_2 \ |
| 4872 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 4873 | 0 \ |
| 4874 | -c "Read from server: 16384 bytes read" |
| 4875 | |
| 4876 | run_test "Large server packet TLS 1.2 AEAD shorter tag" \ |
| 4877 | "$P_SRV response_size=16384" \ |
| 4878 | "$P_CLI force_version=tls1_2 \ |
| 4879 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 4880 | 0 \ |
| 4881 | -c "Read from server: 16384 bytes read" |
| 4882 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 4883 | # Tests for DTLS HelloVerifyRequest |
| 4884 | |
| 4885 | run_test "DTLS cookie: enabled" \ |
| 4886 | "$P_SRV dtls=1 debug_level=2" \ |
| 4887 | "$P_CLI dtls=1 debug_level=2" \ |
| 4888 | 0 \ |
| 4889 | -s "cookie verification failed" \ |
| 4890 | -s "cookie verification passed" \ |
| 4891 | -S "cookie verification skipped" \ |
| 4892 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 4893 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 4894 | -S "SSL - The requested feature is not available" |
| 4895 | |
| 4896 | run_test "DTLS cookie: disabled" \ |
| 4897 | "$P_SRV dtls=1 debug_level=2 cookies=0" \ |
| 4898 | "$P_CLI dtls=1 debug_level=2" \ |
| 4899 | 0 \ |
| 4900 | -S "cookie verification failed" \ |
| 4901 | -S "cookie verification passed" \ |
| 4902 | -s "cookie verification skipped" \ |
| 4903 | -C "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 4904 | -S "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 4905 | -S "SSL - The requested feature is not available" |
| 4906 | |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 4907 | run_test "DTLS cookie: default (failing)" \ |
| 4908 | "$P_SRV dtls=1 debug_level=2 cookies=-1" \ |
| 4909 | "$P_CLI dtls=1 debug_level=2 hs_timeout=100-400" \ |
| 4910 | 1 \ |
| 4911 | -s "cookie verification failed" \ |
| 4912 | -S "cookie verification passed" \ |
| 4913 | -S "cookie verification skipped" \ |
| 4914 | -C "received hello verify request" \ |
| 4915 | -S "hello verification requested" \ |
| 4916 | -s "SSL - The requested feature is not available" |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 4917 | |
| 4918 | requires_ipv6 |
| 4919 | run_test "DTLS cookie: enabled, IPv6" \ |
| 4920 | "$P_SRV dtls=1 debug_level=2 server_addr=::1" \ |
| 4921 | "$P_CLI dtls=1 debug_level=2 server_addr=::1" \ |
| 4922 | 0 \ |
| 4923 | -s "cookie verification failed" \ |
| 4924 | -s "cookie verification passed" \ |
| 4925 | -S "cookie verification skipped" \ |
| 4926 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 4927 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 4928 | -S "SSL - The requested feature is not available" |
| 4929 | |
Manuel Pégourié-Gonnard | 579950c | 2014-09-29 17:47:33 +0200 | [diff] [blame] | 4930 | run_test "DTLS cookie: enabled, nbio" \ |
| 4931 | "$P_SRV dtls=1 nbio=2 debug_level=2" \ |
| 4932 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 4933 | 0 \ |
| 4934 | -s "cookie verification failed" \ |
| 4935 | -s "cookie verification passed" \ |
| 4936 | -S "cookie verification skipped" \ |
| 4937 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 4938 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 579950c | 2014-09-29 17:47:33 +0200 | [diff] [blame] | 4939 | -S "SSL - The requested feature is not available" |
| 4940 | |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4941 | # Tests for client reconnecting from the same port with DTLS |
| 4942 | |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4943 | not_with_valgrind # spurious resend |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4944 | run_test "DTLS client reconnect from same port: reference" \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4945 | "$P_SRV dtls=1 exchanges=2 read_timeout=1000" \ |
| 4946 | "$P_CLI dtls=1 exchanges=2 debug_level=2 hs_timeout=500-1000" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4947 | 0 \ |
| 4948 | -C "resend" \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4949 | -S "The operation timed out" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4950 | -S "Client initiated reconnection from same port" |
| 4951 | |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4952 | not_with_valgrind # spurious resend |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4953 | run_test "DTLS client reconnect from same port: reconnect" \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4954 | "$P_SRV dtls=1 exchanges=2 read_timeout=1000" \ |
| 4955 | "$P_CLI dtls=1 exchanges=2 debug_level=2 hs_timeout=500-1000 reconnect_hard=1" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4956 | 0 \ |
| 4957 | -C "resend" \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4958 | -S "The operation timed out" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4959 | -s "Client initiated reconnection from same port" |
| 4960 | |
Paul Bakker | 362689d | 2016-05-13 10:33:25 +0100 | [diff] [blame] | 4961 | not_with_valgrind # server/client too slow to respond in time (next test has higher timeouts) |
| 4962 | run_test "DTLS client reconnect from same port: reconnect, nbio, no valgrind" \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4963 | "$P_SRV dtls=1 exchanges=2 read_timeout=1000 nbio=2" \ |
| 4964 | "$P_CLI dtls=1 exchanges=2 debug_level=2 hs_timeout=500-1000 reconnect_hard=1" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4965 | 0 \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4966 | -S "The operation timed out" \ |
Manuel Pégourié-Gonnard | d745a1a | 2015-09-08 12:40:43 +0200 | [diff] [blame] | 4967 | -s "Client initiated reconnection from same port" |
| 4968 | |
Paul Bakker | 362689d | 2016-05-13 10:33:25 +0100 | [diff] [blame] | 4969 | only_with_valgrind # Only with valgrind, do previous test but with higher read_timeout and hs_timeout |
| 4970 | run_test "DTLS client reconnect from same port: reconnect, nbio, valgrind" \ |
| 4971 | "$P_SRV dtls=1 exchanges=2 read_timeout=2000 nbio=2 hs_timeout=1500-6000" \ |
| 4972 | "$P_CLI dtls=1 exchanges=2 debug_level=2 hs_timeout=1500-3000 reconnect_hard=1" \ |
| 4973 | 0 \ |
| 4974 | -S "The operation timed out" \ |
| 4975 | -s "Client initiated reconnection from same port" |
| 4976 | |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4977 | run_test "DTLS client reconnect from same port: no cookies" \ |
| 4978 | "$P_SRV dtls=1 exchanges=2 read_timeout=1000 cookies=0" \ |
Manuel Pégourié-Gonnard | 6ad23b9 | 2015-09-15 12:57:46 +0200 | [diff] [blame] | 4979 | "$P_CLI dtls=1 exchanges=2 debug_level=2 hs_timeout=500-8000 reconnect_hard=1" \ |
| 4980 | 0 \ |
Manuel Pégourié-Gonnard | 259db91 | 2015-09-09 11:37:17 +0200 | [diff] [blame] | 4981 | -s "The operation timed out" \ |
| 4982 | -S "Client initiated reconnection from same port" |
| 4983 | |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 4984 | # Tests for various cases of client authentication with DTLS |
| 4985 | # (focused on handshake flows and message parsing) |
| 4986 | |
| 4987 | run_test "DTLS client auth: required" \ |
| 4988 | "$P_SRV dtls=1 auth_mode=required" \ |
| 4989 | "$P_CLI dtls=1" \ |
| 4990 | 0 \ |
| 4991 | -s "Verifying peer X.509 certificate... ok" |
| 4992 | |
| 4993 | run_test "DTLS client auth: optional, client has no cert" \ |
| 4994 | "$P_SRV dtls=1 auth_mode=optional" \ |
| 4995 | "$P_CLI dtls=1 crt_file=none key_file=none" \ |
| 4996 | 0 \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 4997 | -s "! Certificate was missing" |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 4998 | |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 4999 | run_test "DTLS client auth: none, client has no cert" \ |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 5000 | "$P_SRV dtls=1 auth_mode=none" \ |
| 5001 | "$P_CLI dtls=1 crt_file=none key_file=none debug_level=2" \ |
| 5002 | 0 \ |
| 5003 | -c "skip write certificate$" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 5004 | -s "! Certificate verification was skipped" |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 5005 | |
Manuel Pégourié-Gonnard | 0a88574 | 2015-08-04 12:08:35 +0200 | [diff] [blame] | 5006 | run_test "DTLS wrong PSK: badmac alert" \ |
| 5007 | "$P_SRV dtls=1 psk=abc123 force_ciphersuite=TLS-PSK-WITH-AES-128-GCM-SHA256" \ |
| 5008 | "$P_CLI dtls=1 psk=abc124" \ |
| 5009 | 1 \ |
| 5010 | -s "SSL - Verification of the message MAC failed" \ |
| 5011 | -c "SSL - A fatal alert message was received from our peer" |
| 5012 | |
Manuel Pégourié-Gonnard | 502bf30 | 2014-08-20 13:12:58 +0200 | [diff] [blame] | 5013 | # Tests for receiving fragmented handshake messages with DTLS |
| 5014 | |
| 5015 | requires_gnutls |
| 5016 | run_test "DTLS reassembly: no fragmentation (gnutls server)" \ |
| 5017 | "$G_SRV -u --mtu 2048 -a" \ |
| 5018 | "$P_CLI dtls=1 debug_level=2" \ |
| 5019 | 0 \ |
| 5020 | -C "found fragmented DTLS handshake message" \ |
| 5021 | -C "error" |
| 5022 | |
| 5023 | requires_gnutls |
| 5024 | run_test "DTLS reassembly: some fragmentation (gnutls server)" \ |
| 5025 | "$G_SRV -u --mtu 512" \ |
| 5026 | "$P_CLI dtls=1 debug_level=2" \ |
| 5027 | 0 \ |
| 5028 | -c "found fragmented DTLS handshake message" \ |
| 5029 | -C "error" |
| 5030 | |
| 5031 | requires_gnutls |
| 5032 | run_test "DTLS reassembly: more fragmentation (gnutls server)" \ |
| 5033 | "$G_SRV -u --mtu 128" \ |
| 5034 | "$P_CLI dtls=1 debug_level=2" \ |
| 5035 | 0 \ |
| 5036 | -c "found fragmented DTLS handshake message" \ |
| 5037 | -C "error" |
| 5038 | |
| 5039 | requires_gnutls |
| 5040 | run_test "DTLS reassembly: more fragmentation, nbio (gnutls server)" \ |
| 5041 | "$G_SRV -u --mtu 128" \ |
| 5042 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 5043 | 0 \ |
| 5044 | -c "found fragmented DTLS handshake message" \ |
| 5045 | -C "error" |
| 5046 | |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 5047 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5048 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 5049 | run_test "DTLS reassembly: fragmentation, renego (gnutls server)" \ |
| 5050 | "$G_SRV -u --mtu 256" \ |
| 5051 | "$P_CLI debug_level=3 dtls=1 renegotiation=1 renegotiate=1" \ |
| 5052 | 0 \ |
| 5053 | -c "found fragmented DTLS handshake message" \ |
| 5054 | -c "client hello, adding renegotiation extension" \ |
| 5055 | -c "found renegotiation extension" \ |
| 5056 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 5057 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 5058 | -C "error" \ |
| 5059 | -s "Extra-header:" |
| 5060 | |
| 5061 | requires_gnutls |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5062 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 5063 | run_test "DTLS reassembly: fragmentation, nbio, renego (gnutls server)" \ |
| 5064 | "$G_SRV -u --mtu 256" \ |
| 5065 | "$P_CLI debug_level=3 nbio=2 dtls=1 renegotiation=1 renegotiate=1" \ |
| 5066 | 0 \ |
| 5067 | -c "found fragmented DTLS handshake message" \ |
| 5068 | -c "client hello, adding renegotiation extension" \ |
| 5069 | -c "found renegotiation extension" \ |
| 5070 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 5071 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 5072 | -C "error" \ |
| 5073 | -s "Extra-header:" |
| 5074 | |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 5075 | run_test "DTLS reassembly: no fragmentation (openssl server)" \ |
| 5076 | "$O_SRV -dtls1 -mtu 2048" \ |
| 5077 | "$P_CLI dtls=1 debug_level=2" \ |
| 5078 | 0 \ |
| 5079 | -C "found fragmented DTLS handshake message" \ |
| 5080 | -C "error" |
| 5081 | |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5082 | run_test "DTLS reassembly: some fragmentation (openssl server)" \ |
| 5083 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 64dffc5 | 2014-09-02 13:39:16 +0200 | [diff] [blame] | 5084 | "$P_CLI dtls=1 debug_level=2" \ |
| 5085 | 0 \ |
| 5086 | -c "found fragmented DTLS handshake message" \ |
| 5087 | -C "error" |
| 5088 | |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5089 | run_test "DTLS reassembly: more fragmentation (openssl server)" \ |
Manuel Pégourié-Gonnard | 64dffc5 | 2014-09-02 13:39:16 +0200 | [diff] [blame] | 5090 | "$O_SRV -dtls1 -mtu 256" \ |
| 5091 | "$P_CLI dtls=1 debug_level=2" \ |
| 5092 | 0 \ |
| 5093 | -c "found fragmented DTLS handshake message" \ |
| 5094 | -C "error" |
| 5095 | |
| 5096 | run_test "DTLS reassembly: fragmentation, nbio (openssl server)" \ |
| 5097 | "$O_SRV -dtls1 -mtu 256" \ |
| 5098 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 5099 | 0 \ |
| 5100 | -c "found fragmented DTLS handshake message" \ |
| 5101 | -C "error" |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 5102 | |
Manuel Pégourié-Gonnard | 7a66cbc | 2014-09-26 16:31:46 +0200 | [diff] [blame] | 5103 | # Tests for specific things with "unreliable" UDP connection |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 5104 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5105 | not_with_valgrind # spurious resend due to timeout |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 5106 | run_test "DTLS proxy: reference" \ |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 5107 | -p "$P_PXY" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5108 | "$P_SRV dtls=1 debug_level=2" \ |
| 5109 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 5110 | 0 \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5111 | -C "replayed record" \ |
| 5112 | -S "replayed record" \ |
| 5113 | -C "record from another epoch" \ |
| 5114 | -S "record from another epoch" \ |
| 5115 | -C "discarding invalid record" \ |
| 5116 | -S "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5117 | -S "resend" \ |
Manuel Pégourié-Gonnard | 63eca93 | 2014-09-08 16:39:08 +0200 | [diff] [blame] | 5118 | -s "Extra-header:" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 5119 | -c "HTTP/1.0 200 OK" |
| 5120 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5121 | not_with_valgrind # spurious resend due to timeout |
Manuel Pégourié-Gonnard | b47368a | 2014-09-24 13:29:58 +0200 | [diff] [blame] | 5122 | run_test "DTLS proxy: duplicate every packet" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 5123 | -p "$P_PXY duplicate=1" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5124 | "$P_SRV dtls=1 debug_level=2" \ |
| 5125 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 5126 | 0 \ |
Manuel Pégourié-Gonnard | b47368a | 2014-09-24 13:29:58 +0200 | [diff] [blame] | 5127 | -c "replayed record" \ |
| 5128 | -s "replayed record" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5129 | -c "discarding invalid record" \ |
| 5130 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5131 | -S "resend" \ |
Manuel Pégourié-Gonnard | 63eca93 | 2014-09-08 16:39:08 +0200 | [diff] [blame] | 5132 | -s "Extra-header:" \ |
| 5133 | -c "HTTP/1.0 200 OK" |
| 5134 | |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 5135 | run_test "DTLS proxy: duplicate every packet, server anti-replay off" \ |
| 5136 | -p "$P_PXY duplicate=1" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5137 | "$P_SRV dtls=1 debug_level=2 anti_replay=0" \ |
| 5138 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 5139 | 0 \ |
| 5140 | -c "replayed record" \ |
| 5141 | -S "replayed record" \ |
| 5142 | -c "discarding invalid record" \ |
| 5143 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 5144 | -c "resend" \ |
| 5145 | -s "resend" \ |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 5146 | -s "Extra-header:" \ |
| 5147 | -c "HTTP/1.0 200 OK" |
| 5148 | |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5149 | run_test "DTLS proxy: inject invalid AD record, default badmac_limit" \ |
Manuel Pégourié-Gonnard | 63eca93 | 2014-09-08 16:39:08 +0200 | [diff] [blame] | 5150 | -p "$P_PXY bad_ad=1" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5151 | "$P_SRV dtls=1 debug_level=1" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5152 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5153 | 0 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 5154 | -c "discarding invalid record (mac)" \ |
| 5155 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5156 | -s "Extra-header:" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5157 | -c "HTTP/1.0 200 OK" \ |
| 5158 | -S "too many records with bad MAC" \ |
| 5159 | -S "Verification of the message MAC failed" |
| 5160 | |
| 5161 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 1" \ |
| 5162 | -p "$P_PXY bad_ad=1" \ |
| 5163 | "$P_SRV dtls=1 debug_level=1 badmac_limit=1" \ |
| 5164 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
| 5165 | 1 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 5166 | -C "discarding invalid record (mac)" \ |
| 5167 | -S "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5168 | -S "Extra-header:" \ |
| 5169 | -C "HTTP/1.0 200 OK" \ |
| 5170 | -s "too many records with bad MAC" \ |
| 5171 | -s "Verification of the message MAC failed" |
| 5172 | |
| 5173 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 2" \ |
| 5174 | -p "$P_PXY bad_ad=1" \ |
| 5175 | "$P_SRV dtls=1 debug_level=1 badmac_limit=2" \ |
| 5176 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
| 5177 | 0 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 5178 | -c "discarding invalid record (mac)" \ |
| 5179 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5180 | -s "Extra-header:" \ |
| 5181 | -c "HTTP/1.0 200 OK" \ |
| 5182 | -S "too many records with bad MAC" \ |
| 5183 | -S "Verification of the message MAC failed" |
| 5184 | |
| 5185 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 2, exchanges 2"\ |
| 5186 | -p "$P_PXY bad_ad=1" \ |
| 5187 | "$P_SRV dtls=1 debug_level=1 badmac_limit=2 exchanges=2" \ |
| 5188 | "$P_CLI dtls=1 debug_level=1 read_timeout=100 exchanges=2" \ |
| 5189 | 1 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 5190 | -c "discarding invalid record (mac)" \ |
| 5191 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 5192 | -s "Extra-header:" \ |
| 5193 | -c "HTTP/1.0 200 OK" \ |
| 5194 | -s "too many records with bad MAC" \ |
| 5195 | -s "Verification of the message MAC failed" |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5196 | |
| 5197 | run_test "DTLS proxy: delay ChangeCipherSpec" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5198 | -p "$P_PXY delay_ccs=1" \ |
| 5199 | "$P_SRV dtls=1 debug_level=1" \ |
| 5200 | "$P_CLI dtls=1 debug_level=1" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5201 | 0 \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5202 | -c "record from another epoch" \ |
| 5203 | -s "record from another epoch" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5204 | -c "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 5205 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5206 | -s "Extra-header:" \ |
| 5207 | -c "HTTP/1.0 200 OK" |
| 5208 | |
Manuel Pégourié-Gonnard | 7a66cbc | 2014-09-26 16:31:46 +0200 | [diff] [blame] | 5209 | # Tests for "randomly unreliable connection": try a variety of flows and peers |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5210 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5211 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5212 | run_test "DTLS proxy: 3d (drop, delay, duplicate), \"short\" PSK handshake" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5213 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5214 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 5215 | psk=abc123" \ |
| 5216 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5217 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5218 | 0 \ |
| 5219 | -s "Extra-header:" \ |
| 5220 | -c "HTTP/1.0 200 OK" |
| 5221 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5222 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5223 | run_test "DTLS proxy: 3d, \"short\" RSA handshake" \ |
| 5224 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5225 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \ |
| 5226 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5227 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 5228 | 0 \ |
| 5229 | -s "Extra-header:" \ |
| 5230 | -c "HTTP/1.0 200 OK" |
| 5231 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5232 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5233 | run_test "DTLS proxy: 3d, \"short\" (no ticket, no cli_auth) FS handshake" \ |
| 5234 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5235 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \ |
| 5236 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5237 | 0 \ |
| 5238 | -s "Extra-header:" \ |
| 5239 | -c "HTTP/1.0 200 OK" |
| 5240 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5241 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5242 | run_test "DTLS proxy: 3d, FS, client auth" \ |
| 5243 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5244 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=required" \ |
| 5245 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5246 | 0 \ |
| 5247 | -s "Extra-header:" \ |
| 5248 | -c "HTTP/1.0 200 OK" |
| 5249 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5250 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5251 | run_test "DTLS proxy: 3d, FS, ticket" \ |
| 5252 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5253 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=none" \ |
| 5254 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5255 | 0 \ |
| 5256 | -s "Extra-header:" \ |
| 5257 | -c "HTTP/1.0 200 OK" |
| 5258 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5259 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 5260 | run_test "DTLS proxy: 3d, max handshake (FS, ticket + client auth)" \ |
| 5261 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5262 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=required" \ |
| 5263 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 5264 | 0 \ |
| 5265 | -s "Extra-header:" \ |
| 5266 | -c "HTTP/1.0 200 OK" |
| 5267 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5268 | client_needs_more_time 2 |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5269 | run_test "DTLS proxy: 3d, max handshake, nbio" \ |
| 5270 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5271 | "$P_SRV dtls=1 hs_timeout=250-10000 nbio=2 tickets=1 \ |
| 5272 | auth_mode=required" \ |
| 5273 | "$P_CLI dtls=1 hs_timeout=250-10000 nbio=2 tickets=1" \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5274 | 0 \ |
| 5275 | -s "Extra-header:" \ |
| 5276 | -c "HTTP/1.0 200 OK" |
| 5277 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5278 | client_needs_more_time 4 |
Manuel Pégourié-Gonnard | 7a26d73 | 2014-10-02 14:50:46 +0200 | [diff] [blame] | 5279 | run_test "DTLS proxy: 3d, min handshake, resumption" \ |
| 5280 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 5281 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 5282 | psk=abc123 debug_level=3" \ |
| 5283 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 5284 | debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \ |
| 5285 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5286 | 0 \ |
| 5287 | -s "a session has been resumed" \ |
| 5288 | -c "a session has been resumed" \ |
| 5289 | -s "Extra-header:" \ |
| 5290 | -c "HTTP/1.0 200 OK" |
| 5291 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5292 | client_needs_more_time 4 |
Manuel Pégourié-Gonnard | 85beb30 | 2014-10-02 17:59:19 +0200 | [diff] [blame] | 5293 | run_test "DTLS proxy: 3d, min handshake, resumption, nbio" \ |
| 5294 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 5295 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 5296 | psk=abc123 debug_level=3 nbio=2" \ |
| 5297 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 5298 | debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \ |
| 5299 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8 nbio=2" \ |
| 5300 | 0 \ |
| 5301 | -s "a session has been resumed" \ |
| 5302 | -c "a session has been resumed" \ |
| 5303 | -s "Extra-header:" \ |
| 5304 | -c "HTTP/1.0 200 OK" |
| 5305 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5306 | client_needs_more_time 4 |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5307 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5308 | run_test "DTLS proxy: 3d, min handshake, client-initiated renego" \ |
Manuel Pégourié-Gonnard | 1b753f1 | 2014-09-25 16:09:36 +0200 | [diff] [blame] | 5309 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5310 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 5311 | psk=abc123 renegotiation=1 debug_level=2" \ |
| 5312 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 5313 | renegotiate=1 debug_level=2 \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5314 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5315 | 0 \ |
| 5316 | -c "=> renegotiate" \ |
| 5317 | -s "=> renegotiate" \ |
| 5318 | -s "Extra-header:" \ |
| 5319 | -c "HTTP/1.0 200 OK" |
| 5320 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5321 | client_needs_more_time 4 |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5322 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5323 | run_test "DTLS proxy: 3d, min handshake, client-initiated renego, nbio" \ |
| 5324 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 5325 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 5326 | psk=abc123 renegotiation=1 debug_level=2" \ |
| 5327 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 5328 | renegotiate=1 debug_level=2 \ |
Manuel Pégourié-Gonnard | 1b753f1 | 2014-09-25 16:09:36 +0200 | [diff] [blame] | 5329 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5330 | 0 \ |
| 5331 | -c "=> renegotiate" \ |
| 5332 | -s "=> renegotiate" \ |
| 5333 | -s "Extra-header:" \ |
| 5334 | -c "HTTP/1.0 200 OK" |
| 5335 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5336 | client_needs_more_time 4 |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5337 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5338 | run_test "DTLS proxy: 3d, min handshake, server-initiated renego" \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5339 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5340 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5341 | psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5342 | debug_level=2" \ |
| 5343 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5344 | renegotiation=1 exchanges=4 debug_level=2 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5345 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5346 | 0 \ |
| 5347 | -c "=> renegotiate" \ |
| 5348 | -s "=> renegotiate" \ |
| 5349 | -s "Extra-header:" \ |
| 5350 | -c "HTTP/1.0 200 OK" |
| 5351 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5352 | client_needs_more_time 4 |
Hanno Becker | 6a24364 | 2017-10-12 15:18:45 +0100 | [diff] [blame] | 5353 | requires_config_enabled MBEDTLS_SSL_RENEGOTIATION |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5354 | run_test "DTLS proxy: 3d, min handshake, server-initiated renego, nbio" \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5355 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5356 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5357 | psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5358 | debug_level=2 nbio=2" \ |
| 5359 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 5360 | renegotiation=1 exchanges=4 debug_level=2 nbio=2 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 5361 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 5362 | 0 \ |
| 5363 | -c "=> renegotiate" \ |
| 5364 | -s "=> renegotiate" \ |
| 5365 | -s "Extra-header:" \ |
| 5366 | -c "HTTP/1.0 200 OK" |
| 5367 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5368 | client_needs_more_time 6 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5369 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5370 | run_test "DTLS proxy: 3d, openssl server" \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 5371 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 5372 | "$O_SRV -dtls1 -mtu 2048" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 5373 | "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 5374 | 0 \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 5375 | -c "HTTP/1.0 200 OK" |
| 5376 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5377 | client_needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5378 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5379 | run_test "DTLS proxy: 3d, openssl server, fragmentation" \ |
| 5380 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 5381 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 5382 | "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5383 | 0 \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5384 | -c "HTTP/1.0 200 OK" |
| 5385 | |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5386 | client_needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5387 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5388 | run_test "DTLS proxy: 3d, openssl server, fragmentation, nbio" \ |
| 5389 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 5390 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 5391 | "$P_CLI dtls=1 hs_timeout=250-60000 nbio=2 tickets=0" \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5392 | 0 \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5393 | -c "HTTP/1.0 200 OK" |
| 5394 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 5395 | requires_gnutls |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5396 | client_needs_more_time 6 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5397 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5398 | run_test "DTLS proxy: 3d, gnutls server" \ |
| 5399 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 5400 | "$G_SRV -u --mtu 2048 -a" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 5401 | "$P_CLI dtls=1 hs_timeout=250-60000" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5402 | 0 \ |
| 5403 | -s "Extra-header:" \ |
| 5404 | -c "Extra-header:" |
| 5405 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 5406 | requires_gnutls |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5407 | client_needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5408 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5409 | run_test "DTLS proxy: 3d, gnutls server, fragmentation" \ |
| 5410 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 5411 | "$G_SRV -u --mtu 512" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 5412 | "$P_CLI dtls=1 hs_timeout=250-60000" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 5413 | 0 \ |
| 5414 | -s "Extra-header:" \ |
| 5415 | -c "Extra-header:" |
| 5416 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 5417 | requires_gnutls |
Janos Follath | 74537a6 | 2016-09-02 13:45:28 +0100 | [diff] [blame] | 5418 | client_needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 5419 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5420 | run_test "DTLS proxy: 3d, gnutls server, fragmentation, nbio" \ |
| 5421 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 5422 | "$G_SRV -u --mtu 512" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 5423 | "$P_CLI dtls=1 hs_timeout=250-60000 nbio=2" \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 5424 | 0 \ |
| 5425 | -s "Extra-header:" \ |
| 5426 | -c "Extra-header:" |
| 5427 | |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 5428 | # Final report |
| 5429 | |
| 5430 | echo "------------------------------------------------------------------------" |
| 5431 | |
| 5432 | if [ $FAILS = 0 ]; then |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 5433 | printf "PASSED" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 5434 | else |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 5435 | printf "FAILED" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 5436 | fi |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 5437 | PASSES=$(( $TESTS - $FAILS )) |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 5438 | echo " ($PASSES / $TESTS tests ($SKIPS skipped))" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 5439 | |
| 5440 | exit $FAILS |