Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Test various options that are not covered by compat.sh |
| 4 | # |
| 5 | # Here the goal is not to cover every ciphersuite/version, but |
| 6 | # rather specific options (max fragment length, truncated hmac, etc) |
| 7 | # or procedures (session resumption from cache or ticket, renego, etc). |
| 8 | # |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 9 | # Assumes a build with default options. |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 10 | |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 11 | set -u |
| 12 | |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 13 | # default values, can be overriden by the environment |
| 14 | : ${P_SRV:=../programs/ssl/ssl_server2} |
| 15 | : ${P_CLI:=../programs/ssl/ssl_client2} |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 16 | : ${P_PXY:=../programs/test/udp_proxy} |
Manuel Pégourié-Gonnard | 74faf3c | 2014-03-13 18:47:44 +0100 | [diff] [blame] | 17 | : ${OPENSSL_CMD:=openssl} # OPENSSL would conflict with the build system |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 18 | : ${GNUTLS_CLI:=gnutls-cli} |
| 19 | : ${GNUTLS_SERV:=gnutls-serv} |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 20 | |
Manuel Pégourié-Gonnard | fa60f12 | 2014-09-26 16:07:29 +0200 | [diff] [blame] | 21 | 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] | 22 | 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] | 23 | 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] | 24 | G_CLI="echo 'GET / HTTP/1.0' | $GNUTLS_CLI --x509cafile data_files/test-ca_cat12.crt" |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 25 | |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 26 | TESTS=0 |
| 27 | FAILS=0 |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 28 | SKIPS=0 |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 29 | |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 30 | CONFIG_H='../include/mbedtls/config.h' |
Manuel Pégourié-Gonnard | 83d8c73 | 2014-04-07 13:24:21 +0200 | [diff] [blame] | 31 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 32 | MEMCHECK=0 |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 33 | FILTER='.*' |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 34 | EXCLUDE='^$' |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 35 | |
| 36 | print_usage() { |
| 37 | echo "Usage: $0 [options]" |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 38 | printf " -h|--help\tPrint this help.\n" |
| 39 | printf " -m|--memcheck\tCheck memory leaks and errors.\n" |
| 40 | printf " -f|--filter\tOnly matching tests are executed (default: '$FILTER')\n" |
| 41 | printf " -e|--exclude\tMatching tests are excluded (default: '$EXCLUDE')\n" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | get_options() { |
| 45 | while [ $# -gt 0 ]; do |
| 46 | case "$1" in |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 47 | -f|--filter) |
| 48 | shift; FILTER=$1 |
| 49 | ;; |
| 50 | -e|--exclude) |
| 51 | shift; EXCLUDE=$1 |
| 52 | ;; |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 53 | -m|--memcheck) |
| 54 | MEMCHECK=1 |
| 55 | ;; |
| 56 | -h|--help) |
| 57 | print_usage |
| 58 | exit 0 |
| 59 | ;; |
| 60 | *) |
Paul Bakker | 1ebc0c5 | 2014-05-22 15:47:58 +0200 | [diff] [blame] | 61 | echo "Unknown argument: '$1'" |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 62 | print_usage |
| 63 | exit 1 |
| 64 | ;; |
| 65 | esac |
| 66 | shift |
| 67 | done |
| 68 | } |
| 69 | |
Manuel Pégourié-Gonnard | 988209f | 2015-03-24 10:43:55 +0100 | [diff] [blame] | 70 | # skip next test if the flag is not enabled in config.h |
| 71 | requires_config_enabled() { |
| 72 | if grep "^#define $1" $CONFIG_H > /dev/null; then :; else |
| 73 | SKIP_NEXT="YES" |
| 74 | fi |
| 75 | } |
| 76 | |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 77 | # skip next test if OpenSSL doesn't support FALLBACK_SCSV |
| 78 | requires_openssl_with_fallback_scsv() { |
| 79 | if [ -z "${OPENSSL_HAS_FBSCSV:-}" ]; then |
| 80 | if $OPENSSL_CMD s_client -help 2>&1 | grep fallback_scsv >/dev/null |
| 81 | then |
| 82 | OPENSSL_HAS_FBSCSV="YES" |
| 83 | else |
| 84 | OPENSSL_HAS_FBSCSV="NO" |
| 85 | fi |
| 86 | fi |
| 87 | if [ "$OPENSSL_HAS_FBSCSV" = "NO" ]; then |
| 88 | SKIP_NEXT="YES" |
| 89 | fi |
| 90 | } |
| 91 | |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 92 | # skip next test if GnuTLS isn't available |
| 93 | requires_gnutls() { |
| 94 | if [ -z "${GNUTLS_AVAILABLE:-}" ]; then |
Manuel Pégourié-Gonnard | 03db6b0 | 2015-06-26 15:45:30 +0200 | [diff] [blame] | 95 | 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] | 96 | GNUTLS_AVAILABLE="YES" |
| 97 | else |
| 98 | GNUTLS_AVAILABLE="NO" |
| 99 | fi |
| 100 | fi |
| 101 | if [ "$GNUTLS_AVAILABLE" = "NO" ]; then |
| 102 | SKIP_NEXT="YES" |
| 103 | fi |
| 104 | } |
| 105 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 106 | # skip next test if IPv6 isn't available on this host |
| 107 | requires_ipv6() { |
| 108 | if [ -z "${HAS_IPV6:-}" ]; then |
| 109 | $P_SRV server_addr='::1' > $SRV_OUT 2>&1 & |
| 110 | SRV_PID=$! |
| 111 | sleep 1 |
| 112 | kill $SRV_PID >/dev/null 2>&1 |
| 113 | if grep "NET - Binding of the socket failed" $SRV_OUT >/dev/null; then |
| 114 | HAS_IPV6="NO" |
| 115 | else |
| 116 | HAS_IPV6="YES" |
| 117 | fi |
| 118 | rm -r $SRV_OUT |
| 119 | fi |
| 120 | |
| 121 | if [ "$HAS_IPV6" = "NO" ]; then |
| 122 | SKIP_NEXT="YES" |
| 123 | fi |
| 124 | } |
| 125 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 126 | # skip the next test if valgrind is in use |
| 127 | not_with_valgrind() { |
| 128 | if [ "$MEMCHECK" -gt 0 ]; then |
| 129 | SKIP_NEXT="YES" |
| 130 | fi |
| 131 | } |
| 132 | |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 133 | # multiply the client timeout delay by the given factor for the next test |
| 134 | needs_more_time() { |
| 135 | CLI_DELAY_FACTOR=$1 |
| 136 | } |
| 137 | |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 138 | # print_name <name> |
| 139 | print_name() { |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 140 | printf "$1 " |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 141 | LEN=$(( 72 - `echo "$1" | wc -c` )) |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 142 | for i in `seq 1 $LEN`; do printf '.'; done |
| 143 | printf ' ' |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 144 | |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 145 | TESTS=$(( $TESTS + 1 )) |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | # fail <message> |
| 149 | fail() { |
| 150 | echo "FAIL" |
Manuel Pégourié-Gonnard | 3eec604 | 2014-02-27 15:37:24 +0100 | [diff] [blame] | 151 | echo " ! $1" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 152 | |
Manuel Pégourié-Gonnard | c2b0092 | 2014-08-31 16:46:04 +0200 | [diff] [blame] | 153 | mv $SRV_OUT o-srv-${TESTS}.log |
| 154 | mv $CLI_OUT o-cli-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 155 | if [ -n "$PXY_CMD" ]; then |
| 156 | mv $PXY_OUT o-pxy-${TESTS}.log |
| 157 | fi |
| 158 | echo " ! outputs saved to o-XXX-${TESTS}.log" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 159 | |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 160 | if [ "X${USER:-}" = Xbuildbot -o "X${LOGNAME:-}" = Xbuildbot ]; then |
| 161 | echo " ! server output:" |
| 162 | cat o-srv-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 163 | echo " ! ========================================================" |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 164 | echo " ! client output:" |
| 165 | cat o-cli-${TESTS}.log |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 166 | if [ -n "$PXY_CMD" ]; then |
| 167 | echo " ! ========================================================" |
| 168 | echo " ! proxy output:" |
| 169 | cat o-pxy-${TESTS}.log |
| 170 | fi |
| 171 | echo "" |
Manuel Pégourié-Gonnard | 7fa6772 | 2014-08-31 17:42:53 +0200 | [diff] [blame] | 172 | fi |
| 173 | |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 174 | FAILS=$(( $FAILS + 1 )) |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 175 | } |
| 176 | |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 177 | # is_polar <cmd_line> |
| 178 | is_polar() { |
| 179 | echo "$1" | grep 'ssl_server2\|ssl_client2' > /dev/null |
| 180 | } |
| 181 | |
Manuel Pégourié-Gonnard | fa60f12 | 2014-09-26 16:07:29 +0200 | [diff] [blame] | 182 | # openssl s_server doesn't have -www with DTLS |
| 183 | check_osrv_dtls() { |
| 184 | if echo "$SRV_CMD" | grep 's_server.*-dtls' >/dev/null; then |
| 185 | NEEDS_INPUT=1 |
| 186 | SRV_CMD="$( echo $SRV_CMD | sed s/-www// )" |
| 187 | else |
| 188 | NEEDS_INPUT=0 |
| 189 | fi |
| 190 | } |
| 191 | |
| 192 | # provide input to commands that need it |
| 193 | provide_input() { |
| 194 | if [ $NEEDS_INPUT -eq 0 ]; then |
| 195 | return |
| 196 | fi |
| 197 | |
| 198 | while true; do |
| 199 | echo "HTTP/1.0 200 OK" |
| 200 | sleep 1 |
| 201 | done |
| 202 | } |
| 203 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 204 | # has_mem_err <log_file_name> |
| 205 | has_mem_err() { |
| 206 | if ( grep -F 'All heap blocks were freed -- no leaks are possible' "$1" && |
| 207 | grep -F 'ERROR SUMMARY: 0 errors from 0 contexts' "$1" ) > /dev/null |
| 208 | then |
| 209 | return 1 # false: does not have errors |
| 210 | else |
| 211 | return 0 # true: has errors |
| 212 | fi |
| 213 | } |
| 214 | |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 215 | # wait for server to start: two versions depending on lsof availability |
| 216 | wait_server_start() { |
Manuel Pégourié-Gonnard | 03db6b0 | 2015-06-26 15:45:30 +0200 | [diff] [blame] | 217 | if which lsof >/dev/null 2>&1; then |
Manuel Pégourié-Gonnard | 74681fa | 2015-08-04 20:34:39 +0200 | [diff] [blame] | 218 | START_TIME=$( date +%s ) |
| 219 | DONE=0 |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 220 | |
| 221 | # make a tight loop, server usually takes less than 1 sec to start |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 222 | if [ "$DTLS" -eq 1 ]; then |
Manuel Pégourié-Gonnard | 74681fa | 2015-08-04 20:34:39 +0200 | [diff] [blame] | 223 | while [ $DONE -eq 0 ]; do |
| 224 | if lsof -nbi UDP:"$SRV_PORT" 2>/dev/null | grep UDP >/dev/null |
| 225 | then |
| 226 | DONE=1 |
| 227 | elif [ $(( $( date +%s ) - $START_TIME )) -gt $DOG_DELAY ]; then |
| 228 | echo "SERVERSTART TIMEOUT" |
| 229 | echo "SERVERSTART TIMEOUT" >> $SRV_OUT |
| 230 | DONE=1 |
| 231 | fi |
| 232 | done |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 233 | else |
Manuel Pégourié-Gonnard | 74681fa | 2015-08-04 20:34:39 +0200 | [diff] [blame] | 234 | while [ $DONE -eq 0 ]; do |
| 235 | if lsof -nbi TCP:"$SRV_PORT" 2>/dev/null | grep LISTEN >/dev/null |
| 236 | then |
| 237 | DONE=1 |
| 238 | elif [ $(( $( date +%s ) - $START_TIME )) -gt $DOG_DELAY ]; then |
| 239 | echo "SERVERSTART TIMEOUT" |
| 240 | echo "SERVERSTART TIMEOUT" >> $SRV_OUT |
| 241 | DONE=1 |
| 242 | fi |
| 243 | done |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 244 | fi |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 245 | else |
| 246 | sleep "$START_DELAY" |
| 247 | fi |
| 248 | } |
| 249 | |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 250 | # wait for client to terminate and set CLI_EXIT |
| 251 | # must be called right after starting the client |
| 252 | wait_client_done() { |
| 253 | CLI_PID=$! |
| 254 | |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 255 | CLI_DELAY=$(( $DOG_DELAY * $CLI_DELAY_FACTOR )) |
| 256 | CLI_DELAY_FACTOR=1 |
| 257 | |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 258 | ( 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] | 259 | DOG_PID=$! |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 260 | |
| 261 | wait $CLI_PID |
| 262 | CLI_EXIT=$? |
| 263 | |
Manuel Pégourié-Gonnard | a6189f0 | 2014-09-20 13:15:43 +0200 | [diff] [blame] | 264 | kill $DOG_PID >/dev/null 2>&1 |
| 265 | wait $DOG_PID |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 266 | |
| 267 | echo "EXIT: $CLI_EXIT" >> $CLI_OUT |
| 268 | } |
| 269 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 270 | # check if the given command uses dtls and sets global variable DTLS |
| 271 | detect_dtls() { |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 272 | 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] | 273 | DTLS=1 |
| 274 | else |
| 275 | DTLS=0 |
| 276 | fi |
| 277 | } |
| 278 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 279 | # 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] | 280 | # Options: -s pattern pattern that must be present in server output |
| 281 | # -c pattern pattern that must be present in client output |
| 282 | # -S pattern pattern that must be absent in server output |
| 283 | # -C pattern pattern that must be absent in client output |
| 284 | run_test() { |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 285 | NAME="$1" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 286 | shift 1 |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 287 | |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 288 | if echo "$NAME" | grep "$FILTER" | grep -v "$EXCLUDE" >/dev/null; then : |
| 289 | else |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 290 | SKIP_NEXT="NO" |
Manuel Pégourié-Gonnard | 417d46c | 2014-03-13 19:17:53 +0100 | [diff] [blame] | 291 | return |
| 292 | fi |
| 293 | |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 294 | print_name "$NAME" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 295 | |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 296 | # should we skip? |
| 297 | if [ "X$SKIP_NEXT" = "XYES" ]; then |
| 298 | SKIP_NEXT="NO" |
| 299 | echo "SKIP" |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 300 | SKIPS=$(( $SKIPS + 1 )) |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 301 | return |
| 302 | fi |
| 303 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 304 | # does this test use a proxy? |
| 305 | if [ "X$1" = "X-p" ]; then |
| 306 | PXY_CMD="$2" |
| 307 | shift 2 |
| 308 | else |
| 309 | PXY_CMD="" |
| 310 | fi |
| 311 | |
| 312 | # get commands and client output |
| 313 | SRV_CMD="$1" |
| 314 | CLI_CMD="$2" |
| 315 | CLI_EXPECT="$3" |
| 316 | shift 3 |
| 317 | |
| 318 | # fix client port |
| 319 | if [ -n "$PXY_CMD" ]; then |
| 320 | CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$PXY_PORT/g ) |
| 321 | else |
| 322 | CLI_CMD=$( echo "$CLI_CMD" | sed s/+SRV_PORT/$SRV_PORT/g ) |
| 323 | fi |
| 324 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 325 | # update DTLS variable |
| 326 | detect_dtls "$SRV_CMD" |
| 327 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 328 | # prepend valgrind to our commands if active |
| 329 | if [ "$MEMCHECK" -gt 0 ]; then |
| 330 | if is_polar "$SRV_CMD"; then |
| 331 | SRV_CMD="valgrind --leak-check=full $SRV_CMD" |
| 332 | fi |
| 333 | if is_polar "$CLI_CMD"; then |
| 334 | CLI_CMD="valgrind --leak-check=full $CLI_CMD" |
| 335 | fi |
| 336 | fi |
| 337 | |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 338 | TIMES_LEFT=2 |
| 339 | while [ $TIMES_LEFT -gt 0 ]; do |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 340 | TIMES_LEFT=$(( $TIMES_LEFT - 1 )) |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 341 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 342 | # run the commands |
| 343 | if [ -n "$PXY_CMD" ]; then |
| 344 | echo "$PXY_CMD" > $PXY_OUT |
| 345 | $PXY_CMD >> $PXY_OUT 2>&1 & |
| 346 | PXY_PID=$! |
| 347 | # assume proxy starts faster than server |
| 348 | fi |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 349 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 350 | check_osrv_dtls |
| 351 | echo "$SRV_CMD" > $SRV_OUT |
| 352 | provide_input | $SRV_CMD >> $SRV_OUT 2>&1 & |
| 353 | SRV_PID=$! |
| 354 | wait_server_start |
Manuel Pégourié-Gonnard | c0f6a69 | 2014-08-30 22:41:47 +0200 | [diff] [blame] | 355 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 356 | echo "$CLI_CMD" > $CLI_OUT |
| 357 | eval "$CLI_CMD" >> $CLI_OUT 2>&1 & |
| 358 | wait_client_done |
Manuel Pégourié-Gonnard | e01af4c | 2014-03-25 14:16:44 +0100 | [diff] [blame] | 359 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 360 | # terminate the server (and the proxy) |
| 361 | kill $SRV_PID |
| 362 | wait $SRV_PID |
| 363 | if [ -n "$PXY_CMD" ]; then |
| 364 | kill $PXY_PID >/dev/null 2>&1 |
| 365 | wait $PXY_PID |
| 366 | fi |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 367 | |
Manuel Pégourié-Gonnard | ab5f7b4 | 2015-08-04 21:01:37 +0200 | [diff] [blame] | 368 | # retry only on timeouts |
| 369 | if grep '===CLIENT_TIMEOUT===' $CLI_OUT >/dev/null; then |
| 370 | printf "RETRY " |
| 371 | else |
| 372 | TIMES_LEFT=0 |
| 373 | fi |
Manuel Pégourié-Gonnard | a365add | 2015-08-04 20:57:59 +0200 | [diff] [blame] | 374 | done |
| 375 | |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 376 | # 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] | 377 | # (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] | 378 | # expected client exit to incorrectly succeed in case of catastrophic |
| 379 | # failure) |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 380 | if is_polar "$SRV_CMD"; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 381 | 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] | 382 | else |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 383 | fail "server or client failed to reach handshake stage" |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 384 | return |
| 385 | fi |
| 386 | fi |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 387 | if is_polar "$CLI_CMD"; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 388 | 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] | 389 | else |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 390 | fail "server or client failed to reach handshake stage" |
Manuel Pégourié-Gonnard | 677884d | 2014-02-25 16:42:31 +0100 | [diff] [blame] | 391 | return |
| 392 | fi |
| 393 | fi |
| 394 | |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 395 | # check server exit code |
| 396 | if [ $? != 0 ]; then |
| 397 | fail "server fail" |
| 398 | return |
| 399 | fi |
| 400 | |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 401 | # check client exit code |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 402 | if [ \( "$CLI_EXPECT" = 0 -a "$CLI_EXIT" != 0 \) -o \ |
| 403 | \( "$CLI_EXPECT" != 0 -a "$CLI_EXIT" = 0 \) ] |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 404 | then |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 405 | 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] | 406 | return |
| 407 | fi |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 408 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 409 | # check other assertions |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 410 | # lines beginning with == are added by valgrind, ignore them |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 411 | while [ $# -gt 0 ] |
| 412 | do |
| 413 | case $1 in |
| 414 | "-s") |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 415 | if grep -v '^==' $SRV_OUT | grep "$2" >/dev/null; then :; else |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 416 | fail "-s $2" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 417 | return |
| 418 | fi |
| 419 | ;; |
| 420 | |
| 421 | "-c") |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 422 | if grep -v '^==' $CLI_OUT | grep "$2" >/dev/null; then :; else |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 423 | fail "-c $2" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 424 | return |
| 425 | fi |
| 426 | ;; |
| 427 | |
| 428 | "-S") |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 429 | if grep -v '^==' $SRV_OUT | grep "$2" >/dev/null; then |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 430 | fail "-S $2" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 431 | return |
| 432 | fi |
| 433 | ;; |
| 434 | |
| 435 | "-C") |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 436 | if grep -v '^==' $CLI_OUT | grep "$2" >/dev/null; then |
Manuel Pégourié-Gonnard | f8bdbb5 | 2014-02-21 09:20:14 +0100 | [diff] [blame] | 437 | fail "-C $2" |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 438 | return |
| 439 | fi |
| 440 | ;; |
| 441 | |
| 442 | *) |
Paul Bakker | 1ebc0c5 | 2014-05-22 15:47:58 +0200 | [diff] [blame] | 443 | echo "Unknown test: $1" >&2 |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 444 | exit 1 |
| 445 | esac |
| 446 | shift 2 |
| 447 | done |
| 448 | |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 449 | # check valgrind's results |
| 450 | if [ "$MEMCHECK" -gt 0 ]; then |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 451 | 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] | 452 | fail "Server has memory errors" |
| 453 | return |
| 454 | fi |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 455 | 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] | 456 | fail "Client has memory errors" |
| 457 | return |
| 458 | fi |
| 459 | fi |
| 460 | |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 461 | # if we're here, everything is ok |
| 462 | echo "PASS" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 463 | rm -f $SRV_OUT $CLI_OUT $PXY_OUT |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 464 | } |
| 465 | |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 466 | cleanup() { |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 467 | rm -f $CLI_OUT $SRV_OUT $PXY_OUT $SESSION |
Manuel Pégourié-Gonnard | a6189f0 | 2014-09-20 13:15:43 +0200 | [diff] [blame] | 468 | test -n "${SRV_PID:-}" && kill $SRV_PID >/dev/null 2>&1 |
| 469 | test -n "${PXY_PID:-}" && kill $PXY_PID >/dev/null 2>&1 |
| 470 | test -n "${CLI_PID:-}" && kill $CLI_PID >/dev/null 2>&1 |
| 471 | test -n "${DOG_PID:-}" && kill $DOG_PID >/dev/null 2>&1 |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 472 | exit 1 |
| 473 | } |
| 474 | |
Manuel Pégourié-Gonnard | 9dea8bd | 2014-02-26 18:21:02 +0100 | [diff] [blame] | 475 | # |
| 476 | # MAIN |
| 477 | # |
| 478 | |
Manuel Pégourié-Gonnard | 19db8ea | 2015-03-10 13:41:04 +0000 | [diff] [blame] | 479 | if cd $( dirname $0 ); then :; else |
| 480 | echo "cd $( dirname $0 ) failed" >&2 |
| 481 | exit 1 |
| 482 | fi |
| 483 | |
Manuel Pégourié-Gonnard | 913030c | 2014-03-28 10:12:38 +0100 | [diff] [blame] | 484 | get_options "$@" |
| 485 | |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 486 | # sanity checks, avoid an avalanche of errors |
| 487 | if [ ! -x "$P_SRV" ]; then |
| 488 | echo "Command '$P_SRV' is not an executable file" |
| 489 | exit 1 |
| 490 | fi |
| 491 | if [ ! -x "$P_CLI" ]; then |
| 492 | echo "Command '$P_CLI' is not an executable file" |
| 493 | exit 1 |
| 494 | fi |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 495 | if [ ! -x "$P_PXY" ]; then |
| 496 | echo "Command '$P_PXY' is not an executable file" |
| 497 | exit 1 |
| 498 | fi |
Manuel Pégourié-Gonnard | 74faf3c | 2014-03-13 18:47:44 +0100 | [diff] [blame] | 499 | if which $OPENSSL_CMD >/dev/null 2>&1; then :; else |
| 500 | echo "Command '$OPENSSL_CMD' not found" |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 501 | exit 1 |
| 502 | fi |
| 503 | |
Manuel Pégourié-Gonnard | 32f8f4d | 2014-05-29 11:31:20 +0200 | [diff] [blame] | 504 | # used by watchdog |
| 505 | MAIN_PID="$$" |
| 506 | |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 507 | # be more patient with valgrind |
| 508 | if [ "$MEMCHECK" -gt 0 ]; then |
| 509 | START_DELAY=3 |
| 510 | DOG_DELAY=30 |
| 511 | else |
| 512 | START_DELAY=1 |
| 513 | DOG_DELAY=10 |
| 514 | fi |
Manuel Pégourié-Gonnard | a071972 | 2014-09-20 12:46:27 +0200 | [diff] [blame] | 515 | CLI_DELAY_FACTOR=1 |
Manuel Pégourié-Gonnard | 0c1ec47 | 2014-06-20 18:41:11 +0200 | [diff] [blame] | 516 | |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 517 | # Pick a "unique" server port in the range 10000-19999, and a proxy port |
| 518 | PORT_BASE="0000$$" |
Manuel Pégourié-Gonnard | 3a173f4 | 2015-01-22 13:30:33 +0000 | [diff] [blame] | 519 | PORT_BASE="$( printf $PORT_BASE | tail -c 4 )" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 520 | SRV_PORT="1$PORT_BASE" |
| 521 | PXY_PORT="2$PORT_BASE" |
| 522 | unset PORT_BASE |
Manuel Pégourié-Gonnard | 8066b81 | 2014-05-28 22:59:30 +0200 | [diff] [blame] | 523 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 524 | # 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] | 525 | # +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] | 526 | P_SRV="$P_SRV server_addr=127.0.0.1 server_port=$SRV_PORT" |
| 527 | P_CLI="$P_CLI server_addr=127.0.0.1 server_port=+SRV_PORT" |
| 528 | P_PXY="$P_PXY server_addr=127.0.0.1 server_port=$SRV_PORT listen_addr=127.0.0.1 listen_port=$PXY_PORT" |
Manuel Pégourié-Gonnard | 6195767 | 2015-06-18 17:54:58 +0200 | [diff] [blame] | 529 | 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] | 530 | O_CLI="$O_CLI -connect localhost:+SRV_PORT" |
| 531 | G_SRV="$G_SRV -p $SRV_PORT" |
Manuel Pégourié-Gonnard | 0af1ba3 | 2015-01-21 11:44:33 +0000 | [diff] [blame] | 532 | G_CLI="$G_CLI -p +SRV_PORT localhost" |
Manuel Pégourié-Gonnard | 8066b81 | 2014-05-28 22:59:30 +0200 | [diff] [blame] | 533 | |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 534 | # Also pick a unique name for intermediate files |
| 535 | SRV_OUT="srv_out.$$" |
| 536 | CLI_OUT="cli_out.$$" |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 537 | PXY_OUT="pxy_out.$$" |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 538 | SESSION="session.$$" |
| 539 | |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 540 | SKIP_NEXT="NO" |
| 541 | |
Manuel Pégourié-Gonnard | a9062e9 | 2014-02-25 16:21:22 +0100 | [diff] [blame] | 542 | trap cleanup INT TERM HUP |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 543 | |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 544 | # Basic test |
| 545 | |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 546 | # Checks that: |
| 547 | # - things work with all ciphersuites active (used with config-full in all.sh) |
| 548 | # - the expected (highest security) parameters are selected |
| 549 | # ("signature_algorithm ext: 6" means SHA-512 (highest common hash)) |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 550 | run_test "Default" \ |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 551 | "$P_SRV debug_level=3" \ |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 552 | "$P_CLI" \ |
| 553 | 0 \ |
Manuel Pégourié-Gonnard | 480905d | 2014-08-21 19:38:32 +0200 | [diff] [blame] | 554 | -s "Protocol is TLSv1.2" \ |
| 555 | -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" \ |
| 556 | -s "client hello v3, signature_algorithm ext: 6" \ |
| 557 | -s "ECDHE curve: secp521r1" \ |
| 558 | -S "error" \ |
| 559 | -C "error" |
Manuel Pégourié-Gonnard | e73b263 | 2014-07-12 04:00:00 +0200 | [diff] [blame] | 560 | |
Manuel Pégourié-Gonnard | 3bb0801 | 2015-01-22 13:34:21 +0000 | [diff] [blame] | 561 | run_test "Default, DTLS" \ |
| 562 | "$P_SRV dtls=1" \ |
| 563 | "$P_CLI dtls=1" \ |
| 564 | 0 \ |
| 565 | -s "Protocol is DTLSv1.2" \ |
| 566 | -s "Ciphersuite is TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384" |
| 567 | |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 568 | # Tests for rc4 option |
| 569 | |
| 570 | run_test "RC4: server disabled, client enabled" \ |
| 571 | "$P_SRV" \ |
| 572 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 573 | 1 \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 574 | -s "SSL - The server has no ciphersuites in common" |
| 575 | |
| 576 | run_test "RC4: server half, client enabled" \ |
| 577 | "$P_SRV arc4=1" \ |
| 578 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 579 | 1 \ |
| 580 | -s "SSL - The server has no ciphersuites in common" |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 581 | |
| 582 | run_test "RC4: server enabled, client disabled" \ |
| 583 | "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 584 | "$P_CLI" \ |
| 585 | 1 \ |
| 586 | -s "SSL - The server has no ciphersuites in common" |
| 587 | |
| 588 | run_test "RC4: both enabled" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 589 | "$P_SRV force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 590 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 591 | 0 \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 592 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | bd47a58 | 2015-01-12 13:43:29 +0100 | [diff] [blame] | 593 | -S "SSL - The server has no ciphersuites in common" |
| 594 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 595 | # Tests for Truncated HMAC extension |
| 596 | |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 597 | run_test "Truncated HMAC: client default, server default" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 598 | "$P_SRV debug_level=4" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 599 | "$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] | 600 | 0 \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 601 | -s "dumping 'computed mac' (20 bytes)" \ |
| 602 | -S "dumping 'computed mac' (10 bytes)" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 603 | |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 604 | run_test "Truncated HMAC: client disabled, server default" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 605 | "$P_SRV debug_level=4" \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 606 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 607 | trunc_hmac=0" \ |
Manuel Pégourié-Gonnard | eaadc50 | 2014-02-20 11:01:30 +0100 | [diff] [blame] | 608 | 0 \ |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 609 | -s "dumping 'computed mac' (20 bytes)" \ |
| 610 | -S "dumping 'computed mac' (10 bytes)" |
| 611 | |
| 612 | run_test "Truncated HMAC: client enabled, server default" \ |
| 613 | "$P_SRV debug_level=4" \ |
| 614 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 615 | trunc_hmac=1" \ |
| 616 | 0 \ |
Manuel Pégourié-Gonnard | 662c6e8 | 2015-05-06 17:39:23 +0100 | [diff] [blame] | 617 | -s "dumping 'computed mac' (20 bytes)" \ |
| 618 | -S "dumping 'computed mac' (10 bytes)" |
Manuel Pégourié-Gonnard | e117a8f | 2015-01-09 12:39:35 +0100 | [diff] [blame] | 619 | |
| 620 | run_test "Truncated HMAC: client enabled, server disabled" \ |
| 621 | "$P_SRV debug_level=4 trunc_hmac=0" \ |
| 622 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 623 | trunc_hmac=1" \ |
| 624 | 0 \ |
| 625 | -s "dumping 'computed mac' (20 bytes)" \ |
| 626 | -S "dumping 'computed mac' (10 bytes)" |
| 627 | |
| 628 | run_test "Truncated HMAC: client enabled, server enabled" \ |
| 629 | "$P_SRV debug_level=4 trunc_hmac=1" \ |
| 630 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 631 | trunc_hmac=1" \ |
| 632 | 0 \ |
| 633 | -S "dumping 'computed mac' (20 bytes)" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 634 | -s "dumping 'computed mac' (10 bytes)" |
| 635 | |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 636 | # Tests for Encrypt-then-MAC extension |
| 637 | |
| 638 | run_test "Encrypt then MAC: default" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 639 | "$P_SRV debug_level=3 \ |
| 640 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 641 | "$P_CLI debug_level=3" \ |
| 642 | 0 \ |
| 643 | -c "client hello, adding encrypt_then_mac extension" \ |
| 644 | -s "found encrypt then mac extension" \ |
| 645 | -s "server hello, adding encrypt then mac extension" \ |
| 646 | -c "found encrypt_then_mac extension" \ |
| 647 | -c "using encrypt then mac" \ |
| 648 | -s "using encrypt then mac" |
| 649 | |
| 650 | run_test "Encrypt then MAC: client enabled, server disabled" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 651 | "$P_SRV debug_level=3 etm=0 \ |
| 652 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 653 | "$P_CLI debug_level=3 etm=1" \ |
| 654 | 0 \ |
| 655 | -c "client hello, adding encrypt_then_mac extension" \ |
| 656 | -s "found encrypt then mac extension" \ |
| 657 | -S "server hello, adding encrypt then mac extension" \ |
| 658 | -C "found encrypt_then_mac extension" \ |
| 659 | -C "using encrypt then mac" \ |
| 660 | -S "using encrypt then mac" |
| 661 | |
Manuel Pégourié-Gonnard | 78e745f | 2014-11-04 15:44:06 +0100 | [diff] [blame] | 662 | run_test "Encrypt then MAC: client enabled, aead cipher" \ |
| 663 | "$P_SRV debug_level=3 etm=1 \ |
| 664 | force_ciphersuite=TLS-RSA-WITH-AES-128-GCM-SHA256" \ |
| 665 | "$P_CLI debug_level=3 etm=1" \ |
| 666 | 0 \ |
| 667 | -c "client hello, adding encrypt_then_mac extension" \ |
| 668 | -s "found encrypt then mac extension" \ |
| 669 | -S "server hello, adding encrypt then mac extension" \ |
| 670 | -C "found encrypt_then_mac extension" \ |
| 671 | -C "using encrypt then mac" \ |
| 672 | -S "using encrypt then mac" |
| 673 | |
| 674 | run_test "Encrypt then MAC: client enabled, stream cipher" \ |
| 675 | "$P_SRV debug_level=3 etm=1 \ |
| 676 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 677 | "$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] | 678 | 0 \ |
| 679 | -c "client hello, adding encrypt_then_mac extension" \ |
| 680 | -s "found encrypt then mac extension" \ |
| 681 | -S "server hello, adding encrypt then mac extension" \ |
| 682 | -C "found encrypt_then_mac extension" \ |
| 683 | -C "using encrypt then mac" \ |
| 684 | -S "using encrypt then mac" |
| 685 | |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 686 | run_test "Encrypt then MAC: client disabled, server enabled" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 687 | "$P_SRV debug_level=3 etm=1 \ |
| 688 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 689 | "$P_CLI debug_level=3 etm=0" \ |
| 690 | 0 \ |
| 691 | -C "client hello, adding encrypt_then_mac extension" \ |
| 692 | -S "found encrypt then mac extension" \ |
| 693 | -S "server hello, adding encrypt then mac extension" \ |
| 694 | -C "found encrypt_then_mac extension" \ |
| 695 | -C "using encrypt then mac" \ |
| 696 | -S "using encrypt then mac" |
| 697 | |
| 698 | run_test "Encrypt then MAC: client SSLv3, server enabled" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 699 | "$P_SRV debug_level=3 min_version=ssl3 \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 700 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 701 | "$P_CLI debug_level=3 force_version=ssl3" \ |
| 702 | 0 \ |
| 703 | -C "client hello, adding encrypt_then_mac extension" \ |
| 704 | -S "found encrypt then mac extension" \ |
| 705 | -S "server hello, adding encrypt then mac extension" \ |
| 706 | -C "found encrypt_then_mac extension" \ |
| 707 | -C "using encrypt then mac" \ |
| 708 | -S "using encrypt then mac" |
| 709 | |
| 710 | run_test "Encrypt then MAC: client enabled, server SSLv3" \ |
Manuel Pégourié-Gonnard | 0098e7d | 2014-10-28 13:08:59 +0100 | [diff] [blame] | 711 | "$P_SRV debug_level=3 force_version=ssl3 \ |
| 712 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 713 | "$P_CLI debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | 699cafa | 2014-10-27 13:57:03 +0100 | [diff] [blame] | 714 | 0 \ |
| 715 | -c "client hello, adding encrypt_then_mac extension" \ |
| 716 | -s "found encrypt then mac extension" \ |
| 717 | -S "server hello, adding encrypt then mac extension" \ |
| 718 | -C "found encrypt_then_mac extension" \ |
| 719 | -C "using encrypt then mac" \ |
| 720 | -S "using encrypt then mac" |
| 721 | |
Manuel Pégourié-Gonnard | 367381f | 2014-10-20 18:40:56 +0200 | [diff] [blame] | 722 | # Tests for Extended Master Secret extension |
| 723 | |
| 724 | run_test "Extended Master Secret: default" \ |
| 725 | "$P_SRV debug_level=3" \ |
| 726 | "$P_CLI debug_level=3" \ |
| 727 | 0 \ |
| 728 | -c "client hello, adding extended_master_secret extension" \ |
| 729 | -s "found extended master secret extension" \ |
| 730 | -s "server hello, adding extended master secret extension" \ |
| 731 | -c "found extended_master_secret extension" \ |
| 732 | -c "using extended master secret" \ |
| 733 | -s "using extended master secret" |
| 734 | |
| 735 | run_test "Extended Master Secret: client enabled, server disabled" \ |
| 736 | "$P_SRV debug_level=3 extended_ms=0" \ |
| 737 | "$P_CLI debug_level=3 extended_ms=1" \ |
| 738 | 0 \ |
| 739 | -c "client hello, adding extended_master_secret extension" \ |
| 740 | -s "found extended master secret extension" \ |
| 741 | -S "server hello, adding extended master secret extension" \ |
| 742 | -C "found extended_master_secret extension" \ |
| 743 | -C "using extended master secret" \ |
| 744 | -S "using extended master secret" |
| 745 | |
| 746 | run_test "Extended Master Secret: client disabled, server enabled" \ |
| 747 | "$P_SRV debug_level=3 extended_ms=1" \ |
| 748 | "$P_CLI debug_level=3 extended_ms=0" \ |
| 749 | 0 \ |
| 750 | -C "client hello, adding extended_master_secret extension" \ |
| 751 | -S "found extended master secret extension" \ |
| 752 | -S "server hello, adding extended master secret extension" \ |
| 753 | -C "found extended_master_secret extension" \ |
| 754 | -C "using extended master secret" \ |
| 755 | -S "using extended master secret" |
| 756 | |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 757 | run_test "Extended Master Secret: client SSLv3, server enabled" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 758 | "$P_SRV debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 759 | "$P_CLI debug_level=3 force_version=ssl3" \ |
| 760 | 0 \ |
| 761 | -C "client hello, adding extended_master_secret extension" \ |
| 762 | -S "found extended master secret extension" \ |
| 763 | -S "server hello, adding extended master secret extension" \ |
| 764 | -C "found extended_master_secret extension" \ |
| 765 | -C "using extended master secret" \ |
| 766 | -S "using extended master secret" |
| 767 | |
| 768 | run_test "Extended Master Secret: client enabled, server SSLv3" \ |
| 769 | "$P_SRV debug_level=3 force_version=ssl3" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 770 | "$P_CLI debug_level=3 min_version=ssl3" \ |
Manuel Pégourié-Gonnard | b575b54 | 2014-10-24 15:12:31 +0200 | [diff] [blame] | 771 | 0 \ |
| 772 | -c "client hello, adding extended_master_secret extension" \ |
| 773 | -s "found extended master secret extension" \ |
| 774 | -S "server hello, adding extended master secret extension" \ |
| 775 | -C "found extended_master_secret extension" \ |
| 776 | -C "using extended master secret" \ |
| 777 | -S "using extended master secret" |
| 778 | |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 779 | # Tests for FALLBACK_SCSV |
| 780 | |
| 781 | run_test "Fallback SCSV: default" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 782 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 783 | "$P_CLI debug_level=3 force_version=tls1_1" \ |
| 784 | 0 \ |
| 785 | -C "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 786 | -S "received FALLBACK_SCSV" \ |
| 787 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 788 | -C "is a fatal alert message (msg 86)" |
| 789 | |
| 790 | run_test "Fallback SCSV: explicitly disabled" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 791 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 792 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \ |
| 793 | 0 \ |
| 794 | -C "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 795 | -S "received FALLBACK_SCSV" \ |
| 796 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 797 | -C "is a fatal alert message (msg 86)" |
| 798 | |
| 799 | run_test "Fallback SCSV: enabled" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 800 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 801 | "$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] | 802 | 1 \ |
| 803 | -c "adding FALLBACK_SCSV" \ |
| 804 | -s "received FALLBACK_SCSV" \ |
| 805 | -s "inapropriate fallback" \ |
| 806 | -c "is a fatal alert message (msg 86)" |
| 807 | |
| 808 | run_test "Fallback SCSV: enabled, max version" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 809 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 810 | "$P_CLI debug_level=3 fallback=1" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 811 | 0 \ |
| 812 | -c "adding FALLBACK_SCSV" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 813 | -s "received FALLBACK_SCSV" \ |
| 814 | -S "inapropriate fallback" \ |
Manuel Pégourié-Gonnard | 1cbd39d | 2014-10-20 13:34:59 +0200 | [diff] [blame] | 815 | -C "is a fatal alert message (msg 86)" |
| 816 | |
| 817 | requires_openssl_with_fallback_scsv |
| 818 | run_test "Fallback SCSV: default, openssl server" \ |
| 819 | "$O_SRV" \ |
| 820 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=0" \ |
| 821 | 0 \ |
| 822 | -C "adding FALLBACK_SCSV" \ |
| 823 | -C "is a fatal alert message (msg 86)" |
| 824 | |
| 825 | requires_openssl_with_fallback_scsv |
| 826 | run_test "Fallback SCSV: enabled, openssl server" \ |
| 827 | "$O_SRV" \ |
| 828 | "$P_CLI debug_level=3 force_version=tls1_1 fallback=1" \ |
| 829 | 1 \ |
| 830 | -c "adding FALLBACK_SCSV" \ |
| 831 | -c "is a fatal alert message (msg 86)" |
| 832 | |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 833 | requires_openssl_with_fallback_scsv |
| 834 | run_test "Fallback SCSV: disabled, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 835 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 836 | "$O_CLI -tls1_1" \ |
| 837 | 0 \ |
| 838 | -S "received FALLBACK_SCSV" \ |
| 839 | -S "inapropriate fallback" |
| 840 | |
| 841 | requires_openssl_with_fallback_scsv |
| 842 | run_test "Fallback SCSV: enabled, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 843 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 844 | "$O_CLI -tls1_1 -fallback_scsv" \ |
| 845 | 1 \ |
| 846 | -s "received FALLBACK_SCSV" \ |
| 847 | -s "inapropriate fallback" |
| 848 | |
| 849 | requires_openssl_with_fallback_scsv |
| 850 | run_test "Fallback SCSV: enabled, max version, openssl client" \ |
Manuel Pégourié-Gonnard | 4268ae0 | 2015-08-04 12:44:10 +0200 | [diff] [blame] | 851 | "$P_SRV debug_level=2" \ |
Manuel Pégourié-Gonnard | 01b2699 | 2014-10-20 14:05:28 +0200 | [diff] [blame] | 852 | "$O_CLI -fallback_scsv" \ |
| 853 | 0 \ |
| 854 | -s "received FALLBACK_SCSV" \ |
| 855 | -S "inapropriate fallback" |
| 856 | |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 857 | # Tests for CBC 1/n-1 record splitting |
| 858 | |
| 859 | run_test "CBC Record splitting: TLS 1.2, no splitting" \ |
| 860 | "$P_SRV" \ |
| 861 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 862 | request_size=123 force_version=tls1_2" \ |
| 863 | 0 \ |
| 864 | -s "Read from client: 123 bytes read" \ |
| 865 | -S "Read from client: 1 bytes read" \ |
| 866 | -S "122 bytes read" |
| 867 | |
| 868 | run_test "CBC Record splitting: TLS 1.1, no splitting" \ |
| 869 | "$P_SRV" \ |
| 870 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 871 | request_size=123 force_version=tls1_1" \ |
| 872 | 0 \ |
| 873 | -s "Read from client: 123 bytes read" \ |
| 874 | -S "Read from client: 1 bytes read" \ |
| 875 | -S "122 bytes read" |
| 876 | |
| 877 | run_test "CBC Record splitting: TLS 1.0, splitting" \ |
| 878 | "$P_SRV" \ |
| 879 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 880 | request_size=123 force_version=tls1" \ |
| 881 | 0 \ |
| 882 | -S "Read from client: 123 bytes read" \ |
| 883 | -s "Read from client: 1 bytes read" \ |
| 884 | -s "122 bytes read" |
| 885 | |
| 886 | run_test "CBC Record splitting: SSLv3, splitting" \ |
Manuel Pégourié-Gonnard | 51d8166 | 2015-01-14 17:20:46 +0100 | [diff] [blame] | 887 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | 3ff7823 | 2015-01-08 11:15:09 +0100 | [diff] [blame] | 888 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 889 | request_size=123 force_version=ssl3" \ |
| 890 | 0 \ |
| 891 | -S "Read from client: 123 bytes read" \ |
| 892 | -s "Read from client: 1 bytes read" \ |
| 893 | -s "122 bytes read" |
| 894 | |
| 895 | 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] | 896 | "$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] | 897 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 898 | request_size=123 force_version=tls1" \ |
| 899 | 0 \ |
| 900 | -s "Read from client: 123 bytes read" \ |
| 901 | -S "Read from client: 1 bytes read" \ |
| 902 | -S "122 bytes read" |
| 903 | |
| 904 | run_test "CBC Record splitting: TLS 1.0, splitting disabled" \ |
| 905 | "$P_SRV" \ |
| 906 | "$P_CLI force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 907 | request_size=123 force_version=tls1 recsplit=0" \ |
| 908 | 0 \ |
| 909 | -s "Read from client: 123 bytes read" \ |
| 910 | -S "Read from client: 1 bytes read" \ |
| 911 | -S "122 bytes read" |
| 912 | |
Manuel Pégourié-Gonnard | a852cf4 | 2015-01-13 20:56:15 +0100 | [diff] [blame] | 913 | run_test "CBC Record splitting: TLS 1.0, splitting, nbio" \ |
| 914 | "$P_SRV nbio=2" \ |
| 915 | "$P_CLI nbio=2 force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA \ |
| 916 | request_size=123 force_version=tls1" \ |
| 917 | 0 \ |
| 918 | -S "Read from client: 123 bytes read" \ |
| 919 | -s "Read from client: 1 bytes read" \ |
| 920 | -s "122 bytes read" |
| 921 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 922 | # Tests for Session Tickets |
| 923 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 924 | run_test "Session resume using tickets: basic" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 925 | "$P_SRV debug_level=3 tickets=1" \ |
| 926 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 927 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 928 | -c "client hello, adding session ticket extension" \ |
| 929 | -s "found session ticket extension" \ |
| 930 | -s "server hello, adding session ticket extension" \ |
| 931 | -c "found session_ticket extension" \ |
| 932 | -c "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 933 | -S "session successfully restored from cache" \ |
| 934 | -s "session successfully restored from ticket" \ |
| 935 | -s "a session has been resumed" \ |
| 936 | -c "a session has been resumed" |
| 937 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 938 | run_test "Session resume using tickets: cache disabled" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 939 | "$P_SRV debug_level=3 tickets=1 cache_max=0" \ |
| 940 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | dbe1ee1 | 2014-02-21 09:18:13 +0100 | [diff] [blame] | 941 | 0 \ |
| 942 | -c "client hello, adding session ticket extension" \ |
| 943 | -s "found session ticket extension" \ |
| 944 | -s "server hello, adding session ticket extension" \ |
| 945 | -c "found session_ticket extension" \ |
| 946 | -c "parse new session ticket" \ |
| 947 | -S "session successfully restored from cache" \ |
| 948 | -s "session successfully restored from ticket" \ |
| 949 | -s "a session has been resumed" \ |
| 950 | -c "a session has been resumed" |
| 951 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 952 | run_test "Session resume using tickets: timeout" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 953 | "$P_SRV debug_level=3 tickets=1 cache_max=0 ticket_timeout=1" \ |
| 954 | "$P_CLI debug_level=3 tickets=1 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | dbe1ee1 | 2014-02-21 09:18:13 +0100 | [diff] [blame] | 955 | 0 \ |
| 956 | -c "client hello, adding session ticket extension" \ |
| 957 | -s "found session ticket extension" \ |
| 958 | -s "server hello, adding session ticket extension" \ |
| 959 | -c "found session_ticket extension" \ |
| 960 | -c "parse new session ticket" \ |
| 961 | -S "session successfully restored from cache" \ |
| 962 | -S "session successfully restored from ticket" \ |
| 963 | -S "a session has been resumed" \ |
| 964 | -C "a session has been resumed" |
| 965 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 966 | run_test "Session resume using tickets: openssl server" \ |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 967 | "$O_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 968 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 969 | 0 \ |
| 970 | -c "client hello, adding session ticket extension" \ |
| 971 | -c "found session_ticket extension" \ |
| 972 | -c "parse new session ticket" \ |
| 973 | -c "a session has been resumed" |
| 974 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 975 | run_test "Session resume using tickets: openssl client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 976 | "$P_SRV debug_level=3 tickets=1" \ |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 977 | "( $O_CLI -sess_out $SESSION; \ |
| 978 | $O_CLI -sess_in $SESSION; \ |
| 979 | rm -f $SESSION )" \ |
Manuel Pégourié-Gonnard | fccd325 | 2014-02-25 17:14:15 +0100 | [diff] [blame] | 980 | 0 \ |
| 981 | -s "found session ticket extension" \ |
| 982 | -s "server hello, adding session ticket extension" \ |
| 983 | -S "session successfully restored from cache" \ |
| 984 | -s "session successfully restored from ticket" \ |
| 985 | -s "a session has been resumed" |
| 986 | |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 987 | # Tests for Session Resume based on session-ID and cache |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 988 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 989 | run_test "Session resume using cache: tickets enabled on client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 990 | "$P_SRV debug_level=3 tickets=0" \ |
| 991 | "$P_CLI debug_level=3 tickets=1 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 992 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 993 | -c "client hello, adding session ticket extension" \ |
| 994 | -s "found session ticket extension" \ |
| 995 | -S "server hello, adding session ticket extension" \ |
| 996 | -C "found session_ticket extension" \ |
| 997 | -C "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 998 | -s "session successfully restored from cache" \ |
| 999 | -S "session successfully restored from ticket" \ |
| 1000 | -s "a session has been resumed" \ |
| 1001 | -c "a session has been resumed" |
| 1002 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1003 | run_test "Session resume using cache: tickets enabled on server" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1004 | "$P_SRV debug_level=3 tickets=1" \ |
| 1005 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1006 | 0 \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1007 | -C "client hello, adding session ticket extension" \ |
| 1008 | -S "found session ticket extension" \ |
| 1009 | -S "server hello, adding session ticket extension" \ |
| 1010 | -C "found session_ticket extension" \ |
| 1011 | -C "parse new session ticket" \ |
Manuel Pégourié-Gonnard | f7c5201 | 2014-02-20 11:43:46 +0100 | [diff] [blame] | 1012 | -s "session successfully restored from cache" \ |
| 1013 | -S "session successfully restored from ticket" \ |
| 1014 | -s "a session has been resumed" \ |
| 1015 | -c "a session has been resumed" |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1016 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1017 | run_test "Session resume using cache: cache_max=0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1018 | "$P_SRV debug_level=3 tickets=0 cache_max=0" \ |
| 1019 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1020 | 0 \ |
| 1021 | -S "session successfully restored from cache" \ |
| 1022 | -S "session successfully restored from ticket" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1023 | -S "a session has been resumed" \ |
| 1024 | -C "a session has been resumed" |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1025 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1026 | run_test "Session resume using cache: cache_max=1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1027 | "$P_SRV debug_level=3 tickets=0 cache_max=1" \ |
| 1028 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1029 | 0 \ |
| 1030 | -s "session successfully restored from cache" \ |
| 1031 | -S "session successfully restored from ticket" \ |
| 1032 | -s "a session has been resumed" \ |
| 1033 | -c "a session has been resumed" |
| 1034 | |
Manuel Pégourié-Gonnard | 6df3196 | 2015-05-04 10:55:47 +0200 | [diff] [blame] | 1035 | run_test "Session resume using cache: timeout > delay" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1036 | "$P_SRV debug_level=3 tickets=0" \ |
| 1037 | "$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] | 1038 | 0 \ |
| 1039 | -s "session successfully restored from cache" \ |
| 1040 | -S "session successfully restored from ticket" \ |
| 1041 | -s "a session has been resumed" \ |
| 1042 | -c "a session has been resumed" |
| 1043 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1044 | run_test "Session resume using cache: timeout < delay" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1045 | "$P_SRV debug_level=3 tickets=0 cache_timeout=1" \ |
| 1046 | "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | c55a5b7 | 2014-02-20 22:50:56 +0100 | [diff] [blame] | 1047 | 0 \ |
| 1048 | -S "session successfully restored from cache" \ |
| 1049 | -S "session successfully restored from ticket" \ |
| 1050 | -S "a session has been resumed" \ |
| 1051 | -C "a session has been resumed" |
| 1052 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1053 | run_test "Session resume using cache: no timeout" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1054 | "$P_SRV debug_level=3 tickets=0 cache_timeout=0" \ |
| 1055 | "$P_CLI debug_level=3 tickets=0 reconnect=1 reco_delay=2" \ |
Manuel Pégourié-Gonnard | 4c88345 | 2014-02-20 21:32:41 +0100 | [diff] [blame] | 1056 | 0 \ |
| 1057 | -s "session successfully restored from cache" \ |
| 1058 | -S "session successfully restored from ticket" \ |
| 1059 | -s "a session has been resumed" \ |
| 1060 | -c "a session has been resumed" |
| 1061 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1062 | run_test "Session resume using cache: openssl client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1063 | "$P_SRV debug_level=3 tickets=0" \ |
Manuel Pégourié-Gonnard | bc3b16c | 2014-05-28 23:06:50 +0200 | [diff] [blame] | 1064 | "( $O_CLI -sess_out $SESSION; \ |
| 1065 | $O_CLI -sess_in $SESSION; \ |
| 1066 | rm -f $SESSION )" \ |
Manuel Pégourié-Gonnard | db735f6 | 2014-02-25 17:57:59 +0100 | [diff] [blame] | 1067 | 0 \ |
| 1068 | -s "found session ticket extension" \ |
| 1069 | -S "server hello, adding session ticket extension" \ |
| 1070 | -s "session successfully restored from cache" \ |
| 1071 | -S "session successfully restored from ticket" \ |
| 1072 | -s "a session has been resumed" |
| 1073 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1074 | run_test "Session resume using cache: openssl server" \ |
Manuel Pégourié-Gonnard | f7a2690 | 2014-02-27 12:25:54 +0100 | [diff] [blame] | 1075 | "$O_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1076 | "$P_CLI debug_level=3 tickets=0 reconnect=1" \ |
Manuel Pégourié-Gonnard | db735f6 | 2014-02-25 17:57:59 +0100 | [diff] [blame] | 1077 | 0 \ |
| 1078 | -C "found session_ticket extension" \ |
| 1079 | -C "parse new session ticket" \ |
| 1080 | -c "a session has been resumed" |
| 1081 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1082 | # Tests for Max Fragment Length extension |
| 1083 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1084 | run_test "Max fragment length: not used, reference" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1085 | "$P_SRV debug_level=3" \ |
| 1086 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1087 | 0 \ |
| 1088 | -C "client hello, adding max_fragment_length extension" \ |
| 1089 | -S "found max fragment length extension" \ |
| 1090 | -S "server hello, max_fragment_length extension" \ |
| 1091 | -C "found max_fragment_length extension" |
| 1092 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1093 | run_test "Max fragment length: used by client" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1094 | "$P_SRV debug_level=3" \ |
| 1095 | "$P_CLI debug_level=3 max_frag_len=4096" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1096 | 0 \ |
| 1097 | -c "client hello, adding max_fragment_length extension" \ |
| 1098 | -s "found max fragment length extension" \ |
| 1099 | -s "server hello, max_fragment_length extension" \ |
| 1100 | -c "found max_fragment_length extension" |
| 1101 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1102 | run_test "Max fragment length: used by server" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1103 | "$P_SRV debug_level=3 max_frag_len=4096" \ |
| 1104 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | de14378 | 2014-02-20 14:50:42 +0100 | [diff] [blame] | 1105 | 0 \ |
| 1106 | -C "client hello, adding max_fragment_length extension" \ |
| 1107 | -S "found max fragment length extension" \ |
| 1108 | -S "server hello, max_fragment_length extension" \ |
| 1109 | -C "found max_fragment_length extension" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1110 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1111 | requires_gnutls |
| 1112 | run_test "Max fragment length: gnutls server" \ |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 1113 | "$G_SRV" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1114 | "$P_CLI debug_level=3 max_frag_len=4096" \ |
Manuel Pégourié-Gonnard | baa7f07 | 2014-08-20 20:15:53 +0200 | [diff] [blame] | 1115 | 0 \ |
| 1116 | -c "client hello, adding max_fragment_length extension" \ |
| 1117 | -c "found max_fragment_length extension" |
| 1118 | |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1119 | run_test "Max fragment length: client, message just fits" \ |
| 1120 | "$P_SRV debug_level=3" \ |
| 1121 | "$P_CLI debug_level=3 max_frag_len=2048 request_size=2048" \ |
| 1122 | 0 \ |
| 1123 | -c "client hello, adding max_fragment_length extension" \ |
| 1124 | -s "found max fragment length extension" \ |
| 1125 | -s "server hello, max_fragment_length extension" \ |
| 1126 | -c "found max_fragment_length extension" \ |
| 1127 | -c "2048 bytes written in 1 fragments" \ |
| 1128 | -s "2048 bytes read" |
| 1129 | |
| 1130 | run_test "Max fragment length: client, larger message" \ |
| 1131 | "$P_SRV debug_level=3" \ |
| 1132 | "$P_CLI debug_level=3 max_frag_len=2048 request_size=2345" \ |
| 1133 | 0 \ |
| 1134 | -c "client hello, adding max_fragment_length extension" \ |
| 1135 | -s "found max fragment length extension" \ |
| 1136 | -s "server hello, max_fragment_length extension" \ |
| 1137 | -c "found max_fragment_length extension" \ |
| 1138 | -c "2345 bytes written in 2 fragments" \ |
| 1139 | -s "2048 bytes read" \ |
| 1140 | -s "297 bytes read" |
| 1141 | |
Manuel Pégourié-Gonnard | 23eb74d | 2015-01-21 14:37:13 +0000 | [diff] [blame] | 1142 | run_test "Max fragment length: DTLS client, larger message" \ |
Manuel Pégourié-Gonnard | 37e08e1 | 2014-10-13 17:55:52 +0200 | [diff] [blame] | 1143 | "$P_SRV debug_level=3 dtls=1" \ |
| 1144 | "$P_CLI debug_level=3 dtls=1 max_frag_len=2048 request_size=2345" \ |
| 1145 | 1 \ |
| 1146 | -c "client hello, adding max_fragment_length extension" \ |
| 1147 | -s "found max fragment length extension" \ |
| 1148 | -s "server hello, max_fragment_length extension" \ |
| 1149 | -c "found max_fragment_length extension" \ |
| 1150 | -c "fragment larger than.*maximum" |
| 1151 | |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1152 | # Tests for renegotiation |
| 1153 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1154 | run_test "Renegotiation: none, for reference" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1155 | "$P_SRV debug_level=3 exchanges=2 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1156 | "$P_CLI debug_level=3 exchanges=2" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1157 | 0 \ |
| 1158 | -C "client hello, adding renegotiation extension" \ |
| 1159 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1160 | -S "found renegotiation extension" \ |
| 1161 | -s "server hello, secure renegotiation extension" \ |
| 1162 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1163 | -C "=> renegotiate" \ |
| 1164 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1165 | -S "write hello request" |
| 1166 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1167 | run_test "Renegotiation: client-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1168 | "$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] | 1169 | "$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] | 1170 | 0 \ |
| 1171 | -c "client hello, adding renegotiation extension" \ |
| 1172 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1173 | -s "found renegotiation extension" \ |
| 1174 | -s "server hello, secure renegotiation extension" \ |
| 1175 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1176 | -c "=> renegotiate" \ |
| 1177 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1178 | -S "write hello request" |
| 1179 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1180 | run_test "Renegotiation: server-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1181 | "$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] | 1182 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1183 | 0 \ |
| 1184 | -c "client hello, adding renegotiation extension" \ |
| 1185 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1186 | -s "found renegotiation extension" \ |
| 1187 | -s "server hello, secure renegotiation extension" \ |
| 1188 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1189 | -c "=> renegotiate" \ |
| 1190 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1191 | -s "write hello request" |
| 1192 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1193 | run_test "Renegotiation: double" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1194 | "$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] | 1195 | "$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] | 1196 | 0 \ |
| 1197 | -c "client hello, adding renegotiation extension" \ |
| 1198 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1199 | -s "found renegotiation extension" \ |
| 1200 | -s "server hello, secure renegotiation extension" \ |
| 1201 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1202 | -c "=> renegotiate" \ |
| 1203 | -s "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1204 | -s "write hello request" |
| 1205 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1206 | run_test "Renegotiation: client-initiated, server-rejected" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1207 | "$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] | 1208 | "$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] | 1209 | 1 \ |
| 1210 | -c "client hello, adding renegotiation extension" \ |
| 1211 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1212 | -S "found renegotiation extension" \ |
| 1213 | -s "server hello, secure renegotiation extension" \ |
| 1214 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1215 | -c "=> renegotiate" \ |
| 1216 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1217 | -S "write hello request" \ |
Manuel Pégourié-Gonnard | 6591962 | 2014-08-19 12:50:30 +0200 | [diff] [blame] | 1218 | -c "SSL - Unexpected message at ServerHello in renegotiation" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1219 | -c "failed" |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1220 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1221 | run_test "Renegotiation: server-initiated, client-rejected, default" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1222 | "$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] | 1223 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1224 | 0 \ |
| 1225 | -C "client hello, adding renegotiation extension" \ |
| 1226 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1227 | -S "found renegotiation extension" \ |
| 1228 | -s "server hello, secure renegotiation extension" \ |
| 1229 | -c "found renegotiation extension" \ |
Manuel Pégourié-Gonnard | c73339f | 2014-02-26 16:35:27 +0100 | [diff] [blame] | 1230 | -C "=> renegotiate" \ |
| 1231 | -S "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 780d671 | 2014-02-20 17:19:59 +0100 | [diff] [blame] | 1232 | -s "write hello request" \ |
Manuel Pégourié-Gonnard | a9964db | 2014-07-03 19:29:16 +0200 | [diff] [blame] | 1233 | -S "SSL - An unexpected message was received from our peer" \ |
| 1234 | -S "failed" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 1235 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1236 | run_test "Renegotiation: server-initiated, client-rejected, not enforced" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1237 | "$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] | 1238 | renego_delay=-1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1239 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1240 | 0 \ |
| 1241 | -C "client hello, adding renegotiation extension" \ |
| 1242 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1243 | -S "found renegotiation extension" \ |
| 1244 | -s "server hello, secure renegotiation extension" \ |
| 1245 | -c "found renegotiation extension" \ |
| 1246 | -C "=> renegotiate" \ |
| 1247 | -S "=> renegotiate" \ |
| 1248 | -s "write hello request" \ |
| 1249 | -S "SSL - An unexpected message was received from our peer" \ |
| 1250 | -S "failed" |
| 1251 | |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 1252 | # delay 2 for 1 alert record + 1 application data record |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1253 | run_test "Renegotiation: server-initiated, client-rejected, delay 2" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1254 | "$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] | 1255 | renego_delay=2 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1256 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1257 | 0 \ |
| 1258 | -C "client hello, adding renegotiation extension" \ |
| 1259 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1260 | -S "found renegotiation extension" \ |
| 1261 | -s "server hello, secure renegotiation extension" \ |
| 1262 | -c "found renegotiation extension" \ |
| 1263 | -C "=> renegotiate" \ |
| 1264 | -S "=> renegotiate" \ |
| 1265 | -s "write hello request" \ |
| 1266 | -S "SSL - An unexpected message was received from our peer" \ |
| 1267 | -S "failed" |
| 1268 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1269 | run_test "Renegotiation: server-initiated, client-rejected, delay 0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1270 | "$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] | 1271 | renego_delay=0 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1272 | "$P_CLI debug_level=3 exchanges=2 renegotiation=0" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1273 | 0 \ |
| 1274 | -C "client hello, adding renegotiation extension" \ |
| 1275 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1276 | -S "found renegotiation extension" \ |
| 1277 | -s "server hello, secure renegotiation extension" \ |
| 1278 | -c "found renegotiation extension" \ |
| 1279 | -C "=> renegotiate" \ |
| 1280 | -S "=> renegotiate" \ |
| 1281 | -s "write hello request" \ |
Manuel Pégourié-Gonnard | a8c0a0d | 2014-08-15 12:07:38 +0200 | [diff] [blame] | 1282 | -s "SSL - An unexpected message was received from our peer" |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1283 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1284 | run_test "Renegotiation: server-initiated, client-accepted, delay 0" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1285 | "$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] | 1286 | renego_delay=0 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1287 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
Manuel Pégourié-Gonnard | fae355e | 2014-07-04 14:32:27 +0200 | [diff] [blame] | 1288 | 0 \ |
| 1289 | -c "client hello, adding renegotiation extension" \ |
| 1290 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1291 | -s "found renegotiation extension" \ |
| 1292 | -s "server hello, secure renegotiation extension" \ |
| 1293 | -c "found renegotiation extension" \ |
| 1294 | -c "=> renegotiate" \ |
| 1295 | -s "=> renegotiate" \ |
| 1296 | -s "write hello request" \ |
| 1297 | -S "SSL - An unexpected message was received from our peer" \ |
| 1298 | -S "failed" |
| 1299 | |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1300 | run_test "Renegotiation: periodic, just below period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1301 | "$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] | 1302 | "$P_CLI debug_level=3 exchanges=2 renegotiation=1" \ |
| 1303 | 0 \ |
| 1304 | -C "client hello, adding renegotiation extension" \ |
| 1305 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1306 | -S "found renegotiation extension" \ |
| 1307 | -s "server hello, secure renegotiation extension" \ |
| 1308 | -c "found renegotiation extension" \ |
| 1309 | -S "record counter limit reached: renegotiate" \ |
| 1310 | -C "=> renegotiate" \ |
| 1311 | -S "=> renegotiate" \ |
| 1312 | -S "write hello request" \ |
| 1313 | -S "SSL - An unexpected message was received from our peer" \ |
| 1314 | -S "failed" |
| 1315 | |
Manuel Pégourié-Gonnard | 9835bc0 | 2015-01-14 14:41:58 +0100 | [diff] [blame] | 1316 | # one extra exchange to be able to complete renego |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1317 | run_test "Renegotiation: periodic, just above period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1318 | "$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] | 1319 | "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1320 | 0 \ |
| 1321 | -c "client hello, adding renegotiation extension" \ |
| 1322 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1323 | -s "found renegotiation extension" \ |
| 1324 | -s "server hello, secure renegotiation extension" \ |
| 1325 | -c "found renegotiation extension" \ |
| 1326 | -s "record counter limit reached: renegotiate" \ |
| 1327 | -c "=> renegotiate" \ |
| 1328 | -s "=> renegotiate" \ |
| 1329 | -s "write hello request" \ |
| 1330 | -S "SSL - An unexpected message was received from our peer" \ |
| 1331 | -S "failed" |
| 1332 | |
| 1333 | run_test "Renegotiation: periodic, two times period" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1334 | "$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] | 1335 | "$P_CLI debug_level=3 exchanges=7 renegotiation=1" \ |
Manuel Pégourié-Gonnard | 590f416 | 2014-11-05 14:23:03 +0100 | [diff] [blame] | 1336 | 0 \ |
| 1337 | -c "client hello, adding renegotiation extension" \ |
| 1338 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1339 | -s "found renegotiation extension" \ |
| 1340 | -s "server hello, secure renegotiation extension" \ |
| 1341 | -c "found renegotiation extension" \ |
| 1342 | -s "record counter limit reached: renegotiate" \ |
| 1343 | -c "=> renegotiate" \ |
| 1344 | -s "=> renegotiate" \ |
| 1345 | -s "write hello request" \ |
| 1346 | -S "SSL - An unexpected message was received from our peer" \ |
| 1347 | -S "failed" |
| 1348 | |
| 1349 | run_test "Renegotiation: periodic, above period, disabled" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1350 | "$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] | 1351 | "$P_CLI debug_level=3 exchanges=4 renegotiation=1" \ |
| 1352 | 0 \ |
| 1353 | -C "client hello, adding renegotiation extension" \ |
| 1354 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1355 | -S "found renegotiation extension" \ |
| 1356 | -s "server hello, secure renegotiation extension" \ |
| 1357 | -c "found renegotiation extension" \ |
| 1358 | -S "record counter limit reached: renegotiate" \ |
| 1359 | -C "=> renegotiate" \ |
| 1360 | -S "=> renegotiate" \ |
| 1361 | -S "write hello request" \ |
| 1362 | -S "SSL - An unexpected message was received from our peer" \ |
| 1363 | -S "failed" |
| 1364 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1365 | run_test "Renegotiation: nbio, client-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1366 | "$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] | 1367 | "$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] | 1368 | 0 \ |
| 1369 | -c "client hello, adding renegotiation extension" \ |
| 1370 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1371 | -s "found renegotiation extension" \ |
| 1372 | -s "server hello, secure renegotiation extension" \ |
| 1373 | -c "found renegotiation extension" \ |
| 1374 | -c "=> renegotiate" \ |
| 1375 | -s "=> renegotiate" \ |
| 1376 | -S "write hello request" |
| 1377 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1378 | run_test "Renegotiation: nbio, server-initiated" \ |
Manuel Pégourié-Gonnard | fa44f20 | 2015-03-27 17:52:25 +0100 | [diff] [blame] | 1379 | "$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] | 1380 | "$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] | 1381 | 0 \ |
| 1382 | -c "client hello, adding renegotiation extension" \ |
| 1383 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1384 | -s "found renegotiation extension" \ |
| 1385 | -s "server hello, secure renegotiation extension" \ |
| 1386 | -c "found renegotiation extension" \ |
| 1387 | -c "=> renegotiate" \ |
| 1388 | -s "=> renegotiate" \ |
| 1389 | -s "write hello request" |
| 1390 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1391 | run_test "Renegotiation: openssl server, client-initiated" \ |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 1392 | "$O_SRV -www" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1393 | "$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] | 1394 | 0 \ |
| 1395 | -c "client hello, adding renegotiation extension" \ |
| 1396 | -c "found renegotiation extension" \ |
| 1397 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1398 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 1399 | -C "error" \ |
| 1400 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 1401 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1402 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1403 | run_test "Renegotiation: gnutls server strict, client-initiated" \ |
| 1404 | "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1405 | "$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] | 1406 | 0 \ |
| 1407 | -c "client hello, adding renegotiation extension" \ |
| 1408 | -c "found renegotiation extension" \ |
| 1409 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1410 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 5136296 | 2014-08-30 21:22:47 +0200 | [diff] [blame] | 1411 | -C "error" \ |
| 1412 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 1413 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1414 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1415 | run_test "Renegotiation: gnutls server unsafe, client-initiated default" \ |
| 1416 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1417 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1" \ |
| 1418 | 1 \ |
| 1419 | -c "client hello, adding renegotiation extension" \ |
| 1420 | -C "found renegotiation extension" \ |
| 1421 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1422 | -c "mbedtls_ssl_handshake() returned" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1423 | -c "error" \ |
| 1424 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 1425 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1426 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1427 | run_test "Renegotiation: gnutls server unsafe, client-inititated no legacy" \ |
| 1428 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1429 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \ |
| 1430 | allow_legacy=0" \ |
| 1431 | 1 \ |
| 1432 | -c "client hello, adding renegotiation extension" \ |
| 1433 | -C "found renegotiation extension" \ |
| 1434 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1435 | -c "mbedtls_ssl_handshake() returned" \ |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1436 | -c "error" \ |
| 1437 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 1438 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1439 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1440 | run_test "Renegotiation: gnutls server unsafe, client-inititated legacy" \ |
| 1441 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1442 | "$P_CLI debug_level=3 exchanges=1 renegotiation=1 renegotiate=1 \ |
| 1443 | allow_legacy=1" \ |
| 1444 | 0 \ |
| 1445 | -c "client hello, adding renegotiation extension" \ |
| 1446 | -C "found renegotiation extension" \ |
| 1447 | -c "=> renegotiate" \ |
| 1448 | -C "ssl_hanshake() returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1449 | -C "error" \ |
| 1450 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 1451 | |
Manuel Pégourié-Gonnard | 30d16eb | 2014-08-19 17:43:50 +0200 | [diff] [blame] | 1452 | run_test "Renegotiation: DTLS, client-initiated" \ |
| 1453 | "$P_SRV debug_level=3 dtls=1 exchanges=2 renegotiation=1" \ |
| 1454 | "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 renegotiate=1" \ |
| 1455 | 0 \ |
| 1456 | -c "client hello, adding renegotiation extension" \ |
| 1457 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1458 | -s "found renegotiation extension" \ |
| 1459 | -s "server hello, secure renegotiation extension" \ |
| 1460 | -c "found renegotiation extension" \ |
| 1461 | -c "=> renegotiate" \ |
| 1462 | -s "=> renegotiate" \ |
| 1463 | -S "write hello request" |
| 1464 | |
Manuel Pégourié-Gonnard | c392b24 | 2014-08-19 17:53:11 +0200 | [diff] [blame] | 1465 | run_test "Renegotiation: DTLS, server-initiated" \ |
| 1466 | "$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] | 1467 | "$P_CLI debug_level=3 dtls=1 exchanges=2 renegotiation=1 \ |
| 1468 | read_timeout=1000 max_resend=2" \ |
Manuel Pégourié-Gonnard | c392b24 | 2014-08-19 17:53:11 +0200 | [diff] [blame] | 1469 | 0 \ |
| 1470 | -c "client hello, adding renegotiation extension" \ |
| 1471 | -s "received TLS_EMPTY_RENEGOTIATION_INFO" \ |
| 1472 | -s "found renegotiation extension" \ |
| 1473 | -s "server hello, secure renegotiation extension" \ |
| 1474 | -c "found renegotiation extension" \ |
| 1475 | -c "=> renegotiate" \ |
| 1476 | -s "=> renegotiate" \ |
| 1477 | -s "write hello request" |
| 1478 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 1479 | requires_gnutls |
Manuel Pégourié-Gonnard | f1499f6 | 2014-08-31 17:13:13 +0200 | [diff] [blame] | 1480 | run_test "Renegotiation: DTLS, gnutls server, client-initiated" \ |
| 1481 | "$G_SRV -u --mtu 4096" \ |
| 1482 | "$P_CLI debug_level=3 dtls=1 exchanges=1 renegotiation=1 renegotiate=1" \ |
| 1483 | 0 \ |
| 1484 | -c "client hello, adding renegotiation extension" \ |
| 1485 | -c "found renegotiation extension" \ |
| 1486 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1487 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | f1499f6 | 2014-08-31 17:13:13 +0200 | [diff] [blame] | 1488 | -C "error" \ |
| 1489 | -s "Extra-header:" |
| 1490 | |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1491 | # Test for the "secure renegotation" extension only (no actual renegotiation) |
| 1492 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1493 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1494 | run_test "Renego ext: gnutls server strict, client default" \ |
| 1495 | "$G_SRV --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
| 1496 | "$P_CLI debug_level=3" \ |
| 1497 | 0 \ |
| 1498 | -c "found renegotiation extension" \ |
| 1499 | -C "error" \ |
| 1500 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 1501 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1502 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1503 | run_test "Renego ext: gnutls server unsafe, client default" \ |
| 1504 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1505 | "$P_CLI debug_level=3" \ |
| 1506 | 0 \ |
| 1507 | -C "found renegotiation extension" \ |
| 1508 | -C "error" \ |
| 1509 | -c "HTTP/1.0 200 [Oo][Kk]" |
| 1510 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1511 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1512 | run_test "Renego ext: gnutls server unsafe, client break legacy" \ |
| 1513 | "$G_SRV --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1514 | "$P_CLI debug_level=3 allow_legacy=-1" \ |
| 1515 | 1 \ |
| 1516 | -C "found renegotiation extension" \ |
| 1517 | -c "error" \ |
| 1518 | -C "HTTP/1.0 200 [Oo][Kk]" |
| 1519 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1520 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1521 | run_test "Renego ext: gnutls client strict, server default" \ |
| 1522 | "$P_SRV debug_level=3" \ |
| 1523 | "$G_CLI --priority=NORMAL:%SAFE_RENEGOTIATION" \ |
| 1524 | 0 \ |
| 1525 | -s "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 1526 | -s "server hello, secure renegotiation extension" |
| 1527 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1528 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1529 | run_test "Renego ext: gnutls client unsafe, server default" \ |
| 1530 | "$P_SRV debug_level=3" \ |
| 1531 | "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1532 | 0 \ |
| 1533 | -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 1534 | -S "server hello, secure renegotiation extension" |
| 1535 | |
Paul Bakker | 539d972 | 2015-02-08 16:18:35 +0100 | [diff] [blame] | 1536 | requires_gnutls |
Manuel Pégourié-Gonnard | 85d915b | 2014-11-03 20:10:36 +0100 | [diff] [blame] | 1537 | run_test "Renego ext: gnutls client unsafe, server break legacy" \ |
| 1538 | "$P_SRV debug_level=3 allow_legacy=-1" \ |
| 1539 | "$G_CLI --priority=NORMAL:%DISABLE_SAFE_RENEGOTIATION" \ |
| 1540 | 1 \ |
| 1541 | -S "received TLS_EMPTY_RENEGOTIATION_INFO\|found renegotiation extension" \ |
| 1542 | -S "server hello, secure renegotiation extension" |
| 1543 | |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1544 | # Tests for auth_mode |
| 1545 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1546 | run_test "Authentication: server badcert, client required" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1547 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
| 1548 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1549 | "$P_CLI debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1550 | 1 \ |
| 1551 | -c "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1552 | -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] | 1553 | -c "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1554 | -c "X509 - Certificate verification failed" |
| 1555 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1556 | run_test "Authentication: server badcert, client optional" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1557 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
| 1558 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1559 | "$P_CLI debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1560 | 0 \ |
| 1561 | -c "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1562 | -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] | 1563 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1564 | -C "X509 - Certificate verification failed" |
| 1565 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1566 | run_test "Authentication: server badcert, client none" \ |
Manuel Pégourié-Gonnard | c1da664 | 2014-02-25 14:18:30 +0100 | [diff] [blame] | 1567 | "$P_SRV crt_file=data_files/server5-badsign.crt \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1568 | key_file=data_files/server5.key" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1569 | "$P_CLI debug_level=1 auth_mode=none" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1570 | 0 \ |
| 1571 | -C "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1572 | -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] | 1573 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1574 | -C "X509 - Certificate verification failed" |
| 1575 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1576 | run_test "Authentication: client badcert, server required" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1577 | "$P_SRV debug_level=3 auth_mode=required" \ |
| 1578 | "$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] | 1579 | key_file=data_files/server5.key" \ |
| 1580 | 1 \ |
| 1581 | -S "skip write certificate request" \ |
| 1582 | -C "skip parse certificate request" \ |
| 1583 | -c "got a certificate request" \ |
| 1584 | -C "skip write certificate" \ |
| 1585 | -C "skip write certificate verify" \ |
| 1586 | -S "skip parse certificate verify" \ |
| 1587 | -s "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1588 | -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] | 1589 | -s "! mbedtls_ssl_handshake returned" \ |
| 1590 | -c "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1591 | -s "X509 - Certificate verification failed" |
| 1592 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1593 | run_test "Authentication: client badcert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1594 | "$P_SRV debug_level=3 auth_mode=optional" \ |
| 1595 | "$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] | 1596 | key_file=data_files/server5.key" \ |
| 1597 | 0 \ |
| 1598 | -S "skip write certificate request" \ |
| 1599 | -C "skip parse certificate request" \ |
| 1600 | -c "got a certificate request" \ |
| 1601 | -C "skip write certificate" \ |
| 1602 | -C "skip write certificate verify" \ |
| 1603 | -S "skip parse certificate verify" \ |
| 1604 | -s "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1605 | -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] | 1606 | -S "! mbedtls_ssl_handshake returned" \ |
| 1607 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1608 | -S "X509 - Certificate verification failed" |
| 1609 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1610 | run_test "Authentication: client badcert, server none" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1611 | "$P_SRV debug_level=3 auth_mode=none" \ |
| 1612 | "$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] | 1613 | key_file=data_files/server5.key" \ |
| 1614 | 0 \ |
| 1615 | -s "skip write certificate request" \ |
| 1616 | -C "skip parse certificate request" \ |
| 1617 | -c "got no certificate request" \ |
| 1618 | -c "skip write certificate" \ |
| 1619 | -c "skip write certificate verify" \ |
| 1620 | -s "skip parse certificate verify" \ |
| 1621 | -S "x509_verify_cert() returned" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1622 | -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] | 1623 | -S "! mbedtls_ssl_handshake returned" \ |
| 1624 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 1625 | -S "X509 - Certificate verification failed" |
| 1626 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1627 | run_test "Authentication: client no cert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1628 | "$P_SRV debug_level=3 auth_mode=optional" \ |
| 1629 | "$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] | 1630 | 0 \ |
| 1631 | -S "skip write certificate request" \ |
| 1632 | -C "skip parse certificate request" \ |
| 1633 | -c "got a certificate request" \ |
| 1634 | -C "skip write certificate$" \ |
| 1635 | -C "got no certificate to send" \ |
| 1636 | -S "SSLv3 client has no certificate" \ |
| 1637 | -c "skip write certificate verify" \ |
| 1638 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1639 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1640 | -S "! mbedtls_ssl_handshake returned" \ |
| 1641 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1642 | -S "X509 - Certificate verification failed" |
| 1643 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1644 | run_test "Authentication: openssl client no cert, server optional" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1645 | "$P_SRV debug_level=3 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1646 | "$O_CLI" \ |
| 1647 | 0 \ |
| 1648 | -S "skip write certificate request" \ |
| 1649 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1650 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1651 | -S "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1652 | -S "X509 - Certificate verification failed" |
| 1653 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1654 | run_test "Authentication: client no cert, openssl server optional" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1655 | "$O_SRV -verify 10" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1656 | "$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] | 1657 | 0 \ |
| 1658 | -C "skip parse certificate request" \ |
| 1659 | -c "got a certificate request" \ |
| 1660 | -C "skip write certificate$" \ |
| 1661 | -c "skip write certificate verify" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1662 | -C "! mbedtls_ssl_handshake returned" |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1663 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1664 | run_test "Authentication: client no cert, ssl3" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 1665 | "$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] | 1666 | "$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] | 1667 | 0 \ |
| 1668 | -S "skip write certificate request" \ |
| 1669 | -C "skip parse certificate request" \ |
| 1670 | -c "got a certificate request" \ |
| 1671 | -C "skip write certificate$" \ |
| 1672 | -c "skip write certificate verify" \ |
| 1673 | -c "got no certificate to send" \ |
| 1674 | -s "SSLv3 client has no certificate" \ |
| 1675 | -s "skip parse certificate verify" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 1676 | -s "! Certificate was missing" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1677 | -S "! mbedtls_ssl_handshake returned" \ |
| 1678 | -C "! mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | de515cc | 2014-02-27 14:58:26 +0100 | [diff] [blame] | 1679 | -S "X509 - Certificate verification failed" |
| 1680 | |
Manuel Pégourié-Gonnard | df331a5 | 2015-01-08 16:43:07 +0100 | [diff] [blame] | 1681 | # Tests for certificate selection based on SHA verson |
| 1682 | |
| 1683 | run_test "Certificate hash: client TLS 1.2 -> SHA-2" \ |
| 1684 | "$P_SRV crt_file=data_files/server5.crt \ |
| 1685 | key_file=data_files/server5.key \ |
| 1686 | crt_file2=data_files/server5-sha1.crt \ |
| 1687 | key_file2=data_files/server5.key" \ |
| 1688 | "$P_CLI force_version=tls1_2" \ |
| 1689 | 0 \ |
| 1690 | -c "signed using.*ECDSA with SHA256" \ |
| 1691 | -C "signed using.*ECDSA with SHA1" |
| 1692 | |
| 1693 | run_test "Certificate hash: client TLS 1.1 -> SHA-1" \ |
| 1694 | "$P_SRV crt_file=data_files/server5.crt \ |
| 1695 | key_file=data_files/server5.key \ |
| 1696 | crt_file2=data_files/server5-sha1.crt \ |
| 1697 | key_file2=data_files/server5.key" \ |
| 1698 | "$P_CLI force_version=tls1_1" \ |
| 1699 | 0 \ |
| 1700 | -C "signed using.*ECDSA with SHA256" \ |
| 1701 | -c "signed using.*ECDSA with SHA1" |
| 1702 | |
| 1703 | run_test "Certificate hash: client TLS 1.0 -> SHA-1" \ |
| 1704 | "$P_SRV crt_file=data_files/server5.crt \ |
| 1705 | key_file=data_files/server5.key \ |
| 1706 | crt_file2=data_files/server5-sha1.crt \ |
| 1707 | key_file2=data_files/server5.key" \ |
| 1708 | "$P_CLI force_version=tls1" \ |
| 1709 | 0 \ |
| 1710 | -C "signed using.*ECDSA with SHA256" \ |
| 1711 | -c "signed using.*ECDSA with SHA1" |
| 1712 | |
| 1713 | run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 1)" \ |
| 1714 | "$P_SRV crt_file=data_files/server5.crt \ |
| 1715 | key_file=data_files/server5.key \ |
| 1716 | crt_file2=data_files/server6.crt \ |
| 1717 | key_file2=data_files/server6.key" \ |
| 1718 | "$P_CLI force_version=tls1_1" \ |
| 1719 | 0 \ |
| 1720 | -c "serial number.*09" \ |
| 1721 | -c "signed using.*ECDSA with SHA256" \ |
| 1722 | -C "signed using.*ECDSA with SHA1" |
| 1723 | |
| 1724 | run_test "Certificate hash: client TLS 1.1, no SHA-1 -> SHA-2 (order 2)" \ |
| 1725 | "$P_SRV crt_file=data_files/server6.crt \ |
| 1726 | key_file=data_files/server6.key \ |
| 1727 | crt_file2=data_files/server5.crt \ |
| 1728 | key_file2=data_files/server5.key" \ |
| 1729 | "$P_CLI force_version=tls1_1" \ |
| 1730 | 0 \ |
| 1731 | -c "serial number.*0A" \ |
| 1732 | -c "signed using.*ECDSA with SHA256" \ |
| 1733 | -C "signed using.*ECDSA with SHA1" |
| 1734 | |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1735 | # tests for SNI |
| 1736 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1737 | run_test "SNI: no SNI callback" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 1738 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1739 | 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] | 1740 | "$P_CLI server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1741 | 0 \ |
| 1742 | -S "parse ServerName extension" \ |
| 1743 | -c "issuer name *: C=NL, O=PolarSSL, CN=Polarssl Test EC CA" \ |
| 1744 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1745 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1746 | run_test "SNI: matching cert 1" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 1747 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1748 | 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] | 1749 | 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] | 1750 | "$P_CLI server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1751 | 0 \ |
| 1752 | -s "parse ServerName extension" \ |
| 1753 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 1754 | -c "subject name *: C=NL, O=PolarSSL, CN=localhost" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1755 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1756 | run_test "SNI: matching cert 2" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 1757 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1758 | 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] | 1759 | 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] | 1760 | "$P_CLI server_name=polarssl.example" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1761 | 0 \ |
| 1762 | -s "parse ServerName extension" \ |
| 1763 | -c "issuer name *: C=NL, O=PolarSSL, CN=PolarSSL Test CA" \ |
| 1764 | -c "subject name *: C=NL, O=PolarSSL, CN=polarssl.example" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1765 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1766 | run_test "SNI: no matching cert" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 1767 | "$P_SRV debug_level=3 \ |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1768 | 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] | 1769 | 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] | 1770 | "$P_CLI server_name=nonesuch.example" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1771 | 1 \ |
| 1772 | -s "parse ServerName extension" \ |
| 1773 | -s "ssl_sni_wrapper() returned" \ |
| 1774 | -s "mbedtls_ssl_handshake returned" \ |
| 1775 | -c "mbedtls_ssl_handshake returned" \ |
| 1776 | -c "SSL - A fatal alert message was received from our peer" |
Manuel Pégourié-Gonnard | 96ea2f2 | 2014-02-25 12:26:29 +0100 | [diff] [blame] | 1777 | |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 1778 | run_test "SNI: client auth no override: optional" \ |
| 1779 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 1780 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1781 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,-" \ |
| 1782 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1783 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 1784 | -S "skip write certificate request" \ |
| 1785 | -C "skip parse certificate request" \ |
| 1786 | -c "got a certificate request" \ |
| 1787 | -C "skip write certificate" \ |
| 1788 | -C "skip write certificate verify" \ |
| 1789 | -S "skip parse certificate verify" |
| 1790 | |
| 1791 | run_test "SNI: client auth override: none -> optional" \ |
| 1792 | "$P_SRV debug_level=3 auth_mode=none \ |
| 1793 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1794 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,optional" \ |
| 1795 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1796 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 1797 | -S "skip write certificate request" \ |
| 1798 | -C "skip parse certificate request" \ |
| 1799 | -c "got a certificate request" \ |
| 1800 | -C "skip write certificate" \ |
| 1801 | -C "skip write certificate verify" \ |
| 1802 | -S "skip parse certificate verify" |
| 1803 | |
| 1804 | run_test "SNI: client auth override: optional -> none" \ |
| 1805 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 1806 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1807 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,none" \ |
| 1808 | "$P_CLI debug_level=3 server_name=localhost" \ |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1809 | 0 \ |
Manuel Pégourié-Gonnard | c948a79 | 2015-06-22 16:04:20 +0200 | [diff] [blame] | 1810 | -s "skip write certificate request" \ |
| 1811 | -C "skip parse certificate request" \ |
| 1812 | -c "got no certificate request" \ |
| 1813 | -c "skip write certificate" \ |
| 1814 | -c "skip write certificate verify" \ |
| 1815 | -s "skip parse certificate verify" |
| 1816 | |
Manuel Pégourié-Gonnard | 6ea831d | 2015-06-22 16:50:52 +0200 | [diff] [blame] | 1817 | run_test "SNI: CA no override" \ |
| 1818 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 1819 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1820 | ca_file=data_files/test-ca.crt \ |
| 1821 | sni=localhost,data_files/server2.crt,data_files/server2.key,-,-,required" \ |
| 1822 | "$P_CLI debug_level=3 server_name=localhost \ |
| 1823 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 1824 | 1 \ |
| 1825 | -S "skip write certificate request" \ |
| 1826 | -C "skip parse certificate request" \ |
| 1827 | -c "got a certificate request" \ |
| 1828 | -C "skip write certificate" \ |
| 1829 | -C "skip write certificate verify" \ |
| 1830 | -S "skip parse certificate verify" \ |
| 1831 | -s "x509_verify_cert() returned" \ |
| 1832 | -s "! The certificate is not correctly signed by the trusted CA" \ |
| 1833 | -S "The certificate has been revoked (is on a CRL)" |
| 1834 | |
| 1835 | run_test "SNI: CA override" \ |
| 1836 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 1837 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1838 | ca_file=data_files/test-ca.crt \ |
| 1839 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,-,required" \ |
| 1840 | "$P_CLI debug_level=3 server_name=localhost \ |
| 1841 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 1842 | 0 \ |
| 1843 | -S "skip write certificate request" \ |
| 1844 | -C "skip parse certificate request" \ |
| 1845 | -c "got a certificate request" \ |
| 1846 | -C "skip write certificate" \ |
| 1847 | -C "skip write certificate verify" \ |
| 1848 | -S "skip parse certificate verify" \ |
| 1849 | -S "x509_verify_cert() returned" \ |
| 1850 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 1851 | -S "The certificate has been revoked (is on a CRL)" |
| 1852 | |
| 1853 | run_test "SNI: CA override with CRL" \ |
| 1854 | "$P_SRV debug_level=3 auth_mode=optional \ |
| 1855 | crt_file=data_files/server5.crt key_file=data_files/server5.key \ |
| 1856 | ca_file=data_files/test-ca.crt \ |
| 1857 | sni=localhost,data_files/server2.crt,data_files/server2.key,data_files/test-ca2.crt,data_files/crl-ec-sha256.pem,required" \ |
| 1858 | "$P_CLI debug_level=3 server_name=localhost \ |
| 1859 | crt_file=data_files/server6.crt key_file=data_files/server6.key" \ |
| 1860 | 1 \ |
| 1861 | -S "skip write certificate request" \ |
| 1862 | -C "skip parse certificate request" \ |
| 1863 | -c "got a certificate request" \ |
| 1864 | -C "skip write certificate" \ |
| 1865 | -C "skip write certificate verify" \ |
| 1866 | -S "skip parse certificate verify" \ |
| 1867 | -s "x509_verify_cert() returned" \ |
| 1868 | -S "! The certificate is not correctly signed by the trusted CA" \ |
| 1869 | -s "The certificate has been revoked (is on a CRL)" |
| 1870 | |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1871 | # Tests for non-blocking I/O: exercise a variety of handshake flows |
| 1872 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1873 | run_test "Non-blocking I/O: basic handshake" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1874 | "$P_SRV nbio=2 tickets=0 auth_mode=none" \ |
| 1875 | "$P_CLI nbio=2 tickets=0" \ |
| 1876 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1877 | -S "mbedtls_ssl_handshake returned" \ |
| 1878 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1879 | -c "Read from server: .* bytes read" |
| 1880 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1881 | run_test "Non-blocking I/O: client auth" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1882 | "$P_SRV nbio=2 tickets=0 auth_mode=required" \ |
| 1883 | "$P_CLI nbio=2 tickets=0" \ |
| 1884 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1885 | -S "mbedtls_ssl_handshake returned" \ |
| 1886 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1887 | -c "Read from server: .* bytes read" |
| 1888 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1889 | run_test "Non-blocking I/O: ticket" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1890 | "$P_SRV nbio=2 tickets=1 auth_mode=none" \ |
| 1891 | "$P_CLI nbio=2 tickets=1" \ |
| 1892 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1893 | -S "mbedtls_ssl_handshake returned" \ |
| 1894 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1895 | -c "Read from server: .* bytes read" |
| 1896 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1897 | run_test "Non-blocking I/O: ticket + client auth" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1898 | "$P_SRV nbio=2 tickets=1 auth_mode=required" \ |
| 1899 | "$P_CLI nbio=2 tickets=1" \ |
| 1900 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1901 | -S "mbedtls_ssl_handshake returned" \ |
| 1902 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1903 | -c "Read from server: .* bytes read" |
| 1904 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1905 | run_test "Non-blocking I/O: ticket + client auth + resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1906 | "$P_SRV nbio=2 tickets=1 auth_mode=required" \ |
| 1907 | "$P_CLI nbio=2 tickets=1 reconnect=1" \ |
| 1908 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1909 | -S "mbedtls_ssl_handshake returned" \ |
| 1910 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1911 | -c "Read from server: .* bytes read" |
| 1912 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1913 | run_test "Non-blocking I/O: ticket + resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1914 | "$P_SRV nbio=2 tickets=1 auth_mode=none" \ |
| 1915 | "$P_CLI nbio=2 tickets=1 reconnect=1" \ |
| 1916 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1917 | -S "mbedtls_ssl_handshake returned" \ |
| 1918 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1919 | -c "Read from server: .* bytes read" |
| 1920 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1921 | run_test "Non-blocking I/O: session-id resume" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1922 | "$P_SRV nbio=2 tickets=0 auth_mode=none" \ |
| 1923 | "$P_CLI nbio=2 tickets=0 reconnect=1" \ |
| 1924 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1925 | -S "mbedtls_ssl_handshake returned" \ |
| 1926 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0b6609b | 2014-02-26 14:45:12 +0100 | [diff] [blame] | 1927 | -c "Read from server: .* bytes read" |
| 1928 | |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 1929 | # Tests for version negotiation |
| 1930 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1931 | run_test "Version check: all -> 1.2" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1932 | "$P_SRV" \ |
| 1933 | "$P_CLI" \ |
| 1934 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1935 | -S "mbedtls_ssl_handshake returned" \ |
| 1936 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1937 | -s "Protocol is TLSv1.2" \ |
| 1938 | -c "Protocol is TLSv1.2" |
| 1939 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1940 | run_test "Version check: cli max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1941 | "$P_SRV" \ |
| 1942 | "$P_CLI max_version=tls1_1" \ |
| 1943 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1944 | -S "mbedtls_ssl_handshake returned" \ |
| 1945 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1946 | -s "Protocol is TLSv1.1" \ |
| 1947 | -c "Protocol is TLSv1.1" |
| 1948 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1949 | run_test "Version check: srv max 1.1 -> 1.1" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1950 | "$P_SRV max_version=tls1_1" \ |
| 1951 | "$P_CLI" \ |
| 1952 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1953 | -S "mbedtls_ssl_handshake returned" \ |
| 1954 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1955 | -s "Protocol is TLSv1.1" \ |
| 1956 | -c "Protocol is TLSv1.1" |
| 1957 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1958 | 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] | 1959 | "$P_SRV max_version=tls1_1" \ |
| 1960 | "$P_CLI max_version=tls1_1" \ |
| 1961 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1962 | -S "mbedtls_ssl_handshake returned" \ |
| 1963 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1964 | -s "Protocol is TLSv1.1" \ |
| 1965 | -c "Protocol is TLSv1.1" |
| 1966 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1967 | 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] | 1968 | "$P_SRV min_version=tls1_1" \ |
| 1969 | "$P_CLI max_version=tls1_1" \ |
| 1970 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1971 | -S "mbedtls_ssl_handshake returned" \ |
| 1972 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1973 | -s "Protocol is TLSv1.1" \ |
| 1974 | -c "Protocol is TLSv1.1" |
| 1975 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1976 | 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] | 1977 | "$P_SRV max_version=tls1_1" \ |
| 1978 | "$P_CLI min_version=tls1_1" \ |
| 1979 | 0 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1980 | -S "mbedtls_ssl_handshake returned" \ |
| 1981 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1982 | -s "Protocol is TLSv1.1" \ |
| 1983 | -c "Protocol is TLSv1.1" |
| 1984 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1985 | 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] | 1986 | "$P_SRV max_version=tls1_1" \ |
| 1987 | "$P_CLI min_version=tls1_2" \ |
| 1988 | 1 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1989 | -s "mbedtls_ssl_handshake returned" \ |
| 1990 | -c "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1991 | -c "SSL - Handshake protocol not within min/max boundaries" |
| 1992 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 1993 | 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] | 1994 | "$P_SRV min_version=tls1_2" \ |
| 1995 | "$P_CLI max_version=tls1_1" \ |
| 1996 | 1 \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 1997 | -s "mbedtls_ssl_handshake returned" \ |
| 1998 | -c "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | a3d808e | 2014-02-26 16:33:03 +0100 | [diff] [blame] | 1999 | -s "SSL - Handshake protocol not within min/max boundaries" |
| 2000 | |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2001 | # Tests for ALPN extension |
| 2002 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2003 | run_test "ALPN: none" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2004 | "$P_SRV debug_level=3" \ |
| 2005 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2006 | 0 \ |
| 2007 | -C "client hello, adding alpn extension" \ |
| 2008 | -S "found alpn extension" \ |
| 2009 | -C "got an alert message, type: \\[2:120]" \ |
| 2010 | -S "server hello, adding alpn extension" \ |
| 2011 | -C "found alpn extension " \ |
| 2012 | -C "Application Layer Protocol is" \ |
| 2013 | -S "Application Layer Protocol is" |
| 2014 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2015 | run_test "ALPN: client only" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2016 | "$P_SRV debug_level=3" \ |
| 2017 | "$P_CLI debug_level=3 alpn=abc,1234" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2018 | 0 \ |
| 2019 | -c "client hello, adding alpn extension" \ |
| 2020 | -s "found alpn extension" \ |
| 2021 | -C "got an alert message, type: \\[2:120]" \ |
| 2022 | -S "server hello, adding alpn extension" \ |
| 2023 | -C "found alpn extension " \ |
| 2024 | -c "Application Layer Protocol is (none)" \ |
| 2025 | -S "Application Layer Protocol is" |
| 2026 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2027 | run_test "ALPN: server only" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2028 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 2029 | "$P_CLI debug_level=3" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2030 | 0 \ |
| 2031 | -C "client hello, adding alpn extension" \ |
| 2032 | -S "found alpn extension" \ |
| 2033 | -C "got an alert message, type: \\[2:120]" \ |
| 2034 | -S "server hello, adding alpn extension" \ |
| 2035 | -C "found alpn extension " \ |
| 2036 | -C "Application Layer Protocol is" \ |
| 2037 | -s "Application Layer Protocol is (none)" |
| 2038 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2039 | run_test "ALPN: both, common cli1-srv1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2040 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 2041 | "$P_CLI debug_level=3 alpn=abc,1234" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2042 | 0 \ |
| 2043 | -c "client hello, adding alpn extension" \ |
| 2044 | -s "found alpn extension" \ |
| 2045 | -C "got an alert message, type: \\[2:120]" \ |
| 2046 | -s "server hello, adding alpn extension" \ |
| 2047 | -c "found alpn extension" \ |
| 2048 | -c "Application Layer Protocol is abc" \ |
| 2049 | -s "Application Layer Protocol is abc" |
| 2050 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2051 | run_test "ALPN: both, common cli2-srv1" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2052 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 2053 | "$P_CLI debug_level=3 alpn=1234,abc" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2054 | 0 \ |
| 2055 | -c "client hello, adding alpn extension" \ |
| 2056 | -s "found alpn extension" \ |
| 2057 | -C "got an alert message, type: \\[2:120]" \ |
| 2058 | -s "server hello, adding alpn extension" \ |
| 2059 | -c "found alpn extension" \ |
| 2060 | -c "Application Layer Protocol is abc" \ |
| 2061 | -s "Application Layer Protocol is abc" |
| 2062 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2063 | run_test "ALPN: both, common cli1-srv2" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2064 | "$P_SRV debug_level=3 alpn=abc,1234" \ |
| 2065 | "$P_CLI debug_level=3 alpn=1234,abcde" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2066 | 0 \ |
| 2067 | -c "client hello, adding alpn extension" \ |
| 2068 | -s "found alpn extension" \ |
| 2069 | -C "got an alert message, type: \\[2:120]" \ |
| 2070 | -s "server hello, adding alpn extension" \ |
| 2071 | -c "found alpn extension" \ |
| 2072 | -c "Application Layer Protocol is 1234" \ |
| 2073 | -s "Application Layer Protocol is 1234" |
| 2074 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2075 | run_test "ALPN: both, no common" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2076 | "$P_SRV debug_level=3 alpn=abc,123" \ |
| 2077 | "$P_CLI debug_level=3 alpn=1234,abcde" \ |
Manuel Pégourié-Gonnard | f6521de | 2014-04-07 12:42:04 +0200 | [diff] [blame] | 2078 | 1 \ |
| 2079 | -c "client hello, adding alpn extension" \ |
| 2080 | -s "found alpn extension" \ |
| 2081 | -c "got an alert message, type: \\[2:120]" \ |
| 2082 | -S "server hello, adding alpn extension" \ |
| 2083 | -C "found alpn extension" \ |
| 2084 | -C "Application Layer Protocol is 1234" \ |
| 2085 | -S "Application Layer Protocol is 1234" |
| 2086 | |
Manuel Pégourié-Gonnard | 83d8c73 | 2014-04-07 13:24:21 +0200 | [diff] [blame] | 2087 | |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2088 | # Tests for keyUsage in leaf certificates, part 1: |
| 2089 | # server-side certificate/suite selection |
| 2090 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2091 | run_test "keyUsage srv: RSA, digitalSignature -> (EC)DHE-RSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2092 | "$P_SRV key_file=data_files/server2.key \ |
| 2093 | crt_file=data_files/server2.ku-ds.crt" \ |
| 2094 | "$P_CLI" \ |
| 2095 | 0 \ |
Manuel Pégourié-Gonnard | 17cde5f | 2014-05-22 14:42:39 +0200 | [diff] [blame] | 2096 | -c "Ciphersuite is TLS-[EC]*DHE-RSA-WITH-" |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2097 | |
| 2098 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2099 | run_test "keyUsage srv: RSA, keyEncipherment -> RSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2100 | "$P_SRV key_file=data_files/server2.key \ |
| 2101 | crt_file=data_files/server2.ku-ke.crt" \ |
| 2102 | "$P_CLI" \ |
| 2103 | 0 \ |
| 2104 | -c "Ciphersuite is TLS-RSA-WITH-" |
| 2105 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2106 | run_test "keyUsage srv: RSA, keyAgreement -> fail" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 2107 | "$P_SRV key_file=data_files/server2.key \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2108 | crt_file=data_files/server2.ku-ka.crt" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 2109 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2110 | 1 \ |
| 2111 | -C "Ciphersuite is " |
| 2112 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2113 | run_test "keyUsage srv: ECDSA, digitalSignature -> ECDHE-ECDSA" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2114 | "$P_SRV key_file=data_files/server5.key \ |
| 2115 | crt_file=data_files/server5.ku-ds.crt" \ |
| 2116 | "$P_CLI" \ |
| 2117 | 0 \ |
| 2118 | -c "Ciphersuite is TLS-ECDHE-ECDSA-WITH-" |
| 2119 | |
| 2120 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2121 | run_test "keyUsage srv: ECDSA, keyAgreement -> ECDH-" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2122 | "$P_SRV key_file=data_files/server5.key \ |
| 2123 | crt_file=data_files/server5.ku-ka.crt" \ |
| 2124 | "$P_CLI" \ |
| 2125 | 0 \ |
| 2126 | -c "Ciphersuite is TLS-ECDH-" |
| 2127 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2128 | run_test "keyUsage srv: ECDSA, keyEncipherment -> fail" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 2129 | "$P_SRV key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2130 | crt_file=data_files/server5.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | f2629b9 | 2014-08-30 14:20:14 +0200 | [diff] [blame] | 2131 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2132 | 1 \ |
| 2133 | -C "Ciphersuite is " |
| 2134 | |
| 2135 | # Tests for keyUsage in leaf certificates, part 2: |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2136 | # client-side checking of server cert |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2137 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2138 | run_test "keyUsage cli: DigitalSignature+KeyEncipherment, RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2139 | "$O_SRV -key data_files/server2.key \ |
| 2140 | -cert data_files/server2.ku-ds_ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2141 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2142 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 2143 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2144 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2145 | -C "Processing of the Certificate handshake message failed" \ |
| 2146 | -c "Ciphersuite is TLS-" |
| 2147 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2148 | run_test "keyUsage cli: DigitalSignature+KeyEncipherment, DHE-RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2149 | "$O_SRV -key data_files/server2.key \ |
| 2150 | -cert data_files/server2.ku-ds_ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2151 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2152 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 2153 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2154 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2155 | -C "Processing of the Certificate handshake message failed" \ |
| 2156 | -c "Ciphersuite is TLS-" |
| 2157 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2158 | run_test "keyUsage cli: KeyEncipherment, RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2159 | "$O_SRV -key data_files/server2.key \ |
| 2160 | -cert data_files/server2.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2161 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2162 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 2163 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2164 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2165 | -C "Processing of the Certificate handshake message failed" \ |
| 2166 | -c "Ciphersuite is TLS-" |
| 2167 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2168 | run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2169 | "$O_SRV -key data_files/server2.key \ |
| 2170 | -cert data_files/server2.ku-ke.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2171 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2172 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 2173 | 1 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2174 | -c "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2175 | -c "Processing of the Certificate handshake message failed" \ |
| 2176 | -C "Ciphersuite is TLS-" |
| 2177 | |
Manuel Pégourié-Gonnard | e6efa6f | 2015-04-20 11:01:48 +0100 | [diff] [blame] | 2178 | run_test "keyUsage cli: KeyEncipherment, DHE-RSA: fail, soft" \ |
| 2179 | "$O_SRV -key data_files/server2.key \ |
| 2180 | -cert data_files/server2.ku-ke.crt" \ |
| 2181 | "$P_CLI debug_level=1 auth_mode=optional \ |
| 2182 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 2183 | 0 \ |
| 2184 | -c "bad certificate (usage extensions)" \ |
| 2185 | -C "Processing of the Certificate handshake message failed" \ |
| 2186 | -c "Ciphersuite is TLS-" \ |
| 2187 | -c "! Usage does not match the keyUsage extension" |
| 2188 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2189 | run_test "keyUsage cli: DigitalSignature, DHE-RSA: OK" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2190 | "$O_SRV -key data_files/server2.key \ |
| 2191 | -cert data_files/server2.ku-ds.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2192 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2193 | force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA" \ |
| 2194 | 0 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2195 | -C "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2196 | -C "Processing of the Certificate handshake message failed" \ |
| 2197 | -c "Ciphersuite is TLS-" |
| 2198 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2199 | run_test "keyUsage cli: DigitalSignature, RSA: fail" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2200 | "$O_SRV -key data_files/server2.key \ |
| 2201 | -cert data_files/server2.ku-ds.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2202 | "$P_CLI debug_level=1 \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2203 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 2204 | 1 \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2205 | -c "bad certificate (usage extensions)" \ |
Manuel Pégourié-Gonnard | 7f2a07d | 2014-04-09 09:50:57 +0200 | [diff] [blame] | 2206 | -c "Processing of the Certificate handshake message failed" \ |
| 2207 | -C "Ciphersuite is TLS-" |
| 2208 | |
Manuel Pégourié-Gonnard | e6efa6f | 2015-04-20 11:01:48 +0100 | [diff] [blame] | 2209 | run_test "keyUsage cli: DigitalSignature, RSA: fail, soft" \ |
| 2210 | "$O_SRV -key data_files/server2.key \ |
| 2211 | -cert data_files/server2.ku-ds.crt" \ |
| 2212 | "$P_CLI debug_level=1 auth_mode=optional \ |
| 2213 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 2214 | 0 \ |
| 2215 | -c "bad certificate (usage extensions)" \ |
| 2216 | -C "Processing of the Certificate handshake message failed" \ |
| 2217 | -c "Ciphersuite is TLS-" \ |
| 2218 | -c "! Usage does not match the keyUsage extension" |
| 2219 | |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2220 | # Tests for keyUsage in leaf certificates, part 3: |
| 2221 | # server-side checking of client cert |
| 2222 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2223 | run_test "keyUsage cli-auth: RSA, DigitalSignature: OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2224 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2225 | "$O_CLI -key data_files/server2.key \ |
| 2226 | -cert data_files/server2.ku-ds.crt" \ |
| 2227 | 0 \ |
| 2228 | -S "bad certificate (usage extensions)" \ |
| 2229 | -S "Processing of the Certificate handshake message failed" |
| 2230 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2231 | run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2232 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2233 | "$O_CLI -key data_files/server2.key \ |
| 2234 | -cert data_files/server2.ku-ke.crt" \ |
| 2235 | 0 \ |
| 2236 | -s "bad certificate (usage extensions)" \ |
| 2237 | -S "Processing of the Certificate handshake message failed" |
| 2238 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2239 | run_test "keyUsage cli-auth: RSA, KeyEncipherment: fail (hard)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2240 | "$P_SRV debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2241 | "$O_CLI -key data_files/server2.key \ |
| 2242 | -cert data_files/server2.ku-ke.crt" \ |
| 2243 | 1 \ |
| 2244 | -s "bad certificate (usage extensions)" \ |
| 2245 | -s "Processing of the Certificate handshake message failed" |
| 2246 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2247 | run_test "keyUsage cli-auth: ECDSA, DigitalSignature: OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2248 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2249 | "$O_CLI -key data_files/server5.key \ |
| 2250 | -cert data_files/server5.ku-ds.crt" \ |
| 2251 | 0 \ |
| 2252 | -S "bad certificate (usage extensions)" \ |
| 2253 | -S "Processing of the Certificate handshake message failed" |
| 2254 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2255 | run_test "keyUsage cli-auth: ECDSA, KeyAgreement: fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2256 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | a9db85d | 2014-04-09 14:53:05 +0200 | [diff] [blame] | 2257 | "$O_CLI -key data_files/server5.key \ |
| 2258 | -cert data_files/server5.ku-ka.crt" \ |
| 2259 | 0 \ |
| 2260 | -s "bad certificate (usage extensions)" \ |
| 2261 | -S "Processing of the Certificate handshake message failed" |
| 2262 | |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2263 | # Tests for extendedKeyUsage, part 1: server-side certificate/suite selection |
| 2264 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2265 | run_test "extKeyUsage srv: serverAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2266 | "$P_SRV key_file=data_files/server5.key \ |
| 2267 | crt_file=data_files/server5.eku-srv.crt" \ |
| 2268 | "$P_CLI" \ |
| 2269 | 0 |
| 2270 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2271 | run_test "extKeyUsage srv: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2272 | "$P_SRV key_file=data_files/server5.key \ |
| 2273 | crt_file=data_files/server5.eku-srv.crt" \ |
| 2274 | "$P_CLI" \ |
| 2275 | 0 |
| 2276 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2277 | run_test "extKeyUsage srv: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2278 | "$P_SRV key_file=data_files/server5.key \ |
| 2279 | crt_file=data_files/server5.eku-cs_any.crt" \ |
| 2280 | "$P_CLI" \ |
| 2281 | 0 |
| 2282 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2283 | run_test "extKeyUsage srv: codeSign -> fail" \ |
Manuel Pégourié-Gonnard | 7eb58cb | 2015-07-07 11:54:14 +0200 | [diff] [blame] | 2284 | "$P_SRV key_file=data_files/server5.key \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2285 | crt_file=data_files/server5.eku-cli.crt" \ |
Manuel Pégourié-Gonnard | 7eb58cb | 2015-07-07 11:54:14 +0200 | [diff] [blame] | 2286 | "$P_CLI" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2287 | 1 |
| 2288 | |
| 2289 | # Tests for extendedKeyUsage, part 2: client-side checking of server cert |
| 2290 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2291 | run_test "extKeyUsage cli: serverAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2292 | "$O_SRV -key data_files/server5.key \ |
| 2293 | -cert data_files/server5.eku-srv.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2294 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2295 | 0 \ |
| 2296 | -C "bad certificate (usage extensions)" \ |
| 2297 | -C "Processing of the Certificate handshake message failed" \ |
| 2298 | -c "Ciphersuite is TLS-" |
| 2299 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2300 | run_test "extKeyUsage cli: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2301 | "$O_SRV -key data_files/server5.key \ |
| 2302 | -cert data_files/server5.eku-srv_cli.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2303 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2304 | 0 \ |
| 2305 | -C "bad certificate (usage extensions)" \ |
| 2306 | -C "Processing of the Certificate handshake message failed" \ |
| 2307 | -c "Ciphersuite is TLS-" |
| 2308 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2309 | run_test "extKeyUsage cli: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2310 | "$O_SRV -key data_files/server5.key \ |
| 2311 | -cert data_files/server5.eku-cs_any.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2312 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2313 | 0 \ |
| 2314 | -C "bad certificate (usage extensions)" \ |
| 2315 | -C "Processing of the Certificate handshake message failed" \ |
| 2316 | -c "Ciphersuite is TLS-" |
| 2317 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2318 | run_test "extKeyUsage cli: codeSign -> fail" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2319 | "$O_SRV -key data_files/server5.key \ |
| 2320 | -cert data_files/server5.eku-cs.crt" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2321 | "$P_CLI debug_level=1" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2322 | 1 \ |
| 2323 | -c "bad certificate (usage extensions)" \ |
| 2324 | -c "Processing of the Certificate handshake message failed" \ |
| 2325 | -C "Ciphersuite is TLS-" |
| 2326 | |
| 2327 | # Tests for extendedKeyUsage, part 3: server-side checking of client cert |
| 2328 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2329 | run_test "extKeyUsage cli-auth: clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2330 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2331 | "$O_CLI -key data_files/server5.key \ |
| 2332 | -cert data_files/server5.eku-cli.crt" \ |
| 2333 | 0 \ |
| 2334 | -S "bad certificate (usage extensions)" \ |
| 2335 | -S "Processing of the Certificate handshake message failed" |
| 2336 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2337 | run_test "extKeyUsage cli-auth: serverAuth,clientAuth -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2338 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2339 | "$O_CLI -key data_files/server5.key \ |
| 2340 | -cert data_files/server5.eku-srv_cli.crt" \ |
| 2341 | 0 \ |
| 2342 | -S "bad certificate (usage extensions)" \ |
| 2343 | -S "Processing of the Certificate handshake message failed" |
| 2344 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2345 | run_test "extKeyUsage cli-auth: codeSign,anyEKU -> OK" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2346 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2347 | "$O_CLI -key data_files/server5.key \ |
| 2348 | -cert data_files/server5.eku-cs_any.crt" \ |
| 2349 | 0 \ |
| 2350 | -S "bad certificate (usage extensions)" \ |
| 2351 | -S "Processing of the Certificate handshake message failed" |
| 2352 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2353 | run_test "extKeyUsage cli-auth: codeSign -> fail (soft)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2354 | "$P_SRV debug_level=1 auth_mode=optional" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2355 | "$O_CLI -key data_files/server5.key \ |
| 2356 | -cert data_files/server5.eku-cs.crt" \ |
| 2357 | 0 \ |
| 2358 | -s "bad certificate (usage extensions)" \ |
| 2359 | -S "Processing of the Certificate handshake message failed" |
| 2360 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2361 | run_test "extKeyUsage cli-auth: codeSign -> fail (hard)" \ |
Manuel Pégourié-Gonnard | 644e8f3 | 2014-08-30 21:59:31 +0200 | [diff] [blame] | 2362 | "$P_SRV debug_level=1 auth_mode=required" \ |
Manuel Pégourié-Gonnard | 0408fd1 | 2014-04-11 11:06:22 +0200 | [diff] [blame] | 2363 | "$O_CLI -key data_files/server5.key \ |
| 2364 | -cert data_files/server5.eku-cs.crt" \ |
| 2365 | 1 \ |
| 2366 | -s "bad certificate (usage extensions)" \ |
| 2367 | -s "Processing of the Certificate handshake message failed" |
| 2368 | |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 2369 | # Tests for DHM parameters loading |
| 2370 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2371 | run_test "DHM parameters: reference" \ |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 2372 | "$P_SRV" \ |
| 2373 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2374 | debug_level=3" \ |
| 2375 | 0 \ |
| 2376 | -c "value of 'DHM: P ' (2048 bits)" \ |
| 2377 | -c "value of 'DHM: G ' (2048 bits)" |
| 2378 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2379 | run_test "DHM parameters: other parameters" \ |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 2380 | "$P_SRV dhm_file=data_files/dhparams.pem" \ |
| 2381 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2382 | debug_level=3" \ |
| 2383 | 0 \ |
| 2384 | -c "value of 'DHM: P ' (1024 bits)" \ |
| 2385 | -c "value of 'DHM: G ' (2 bits)" |
| 2386 | |
Manuel Pégourié-Gonnard | 7a010aa | 2015-06-12 11:19:10 +0200 | [diff] [blame] | 2387 | # Tests for DHM client-side size checking |
| 2388 | |
| 2389 | run_test "DHM size: server default, client default, OK" \ |
| 2390 | "$P_SRV" \ |
| 2391 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2392 | debug_level=1" \ |
| 2393 | 0 \ |
| 2394 | -C "DHM prime too short:" |
| 2395 | |
| 2396 | run_test "DHM size: server default, client 2048, OK" \ |
| 2397 | "$P_SRV" \ |
| 2398 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2399 | debug_level=1 dhmlen=2048" \ |
| 2400 | 0 \ |
| 2401 | -C "DHM prime too short:" |
| 2402 | |
| 2403 | run_test "DHM size: server 1024, client default, OK" \ |
| 2404 | "$P_SRV dhm_file=data_files/dhparams.pem" \ |
| 2405 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2406 | debug_level=1" \ |
| 2407 | 0 \ |
| 2408 | -C "DHM prime too short:" |
| 2409 | |
| 2410 | run_test "DHM size: server 1000, client default, rejected" \ |
| 2411 | "$P_SRV dhm_file=data_files/dh.1000.pem" \ |
| 2412 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2413 | debug_level=1" \ |
| 2414 | 1 \ |
| 2415 | -c "DHM prime too short:" |
| 2416 | |
| 2417 | run_test "DHM size: server default, client 2049, rejected" \ |
| 2418 | "$P_SRV" \ |
| 2419 | "$P_CLI force_ciphersuite=TLS-DHE-RSA-WITH-AES-128-CBC-SHA \ |
| 2420 | debug_level=1 dhmlen=2049" \ |
| 2421 | 1 \ |
| 2422 | -c "DHM prime too short:" |
| 2423 | |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2424 | # Tests for PSK callback |
| 2425 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2426 | run_test "PSK callback: psk, no callback" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2427 | "$P_SRV psk=abc123 psk_identity=foo" \ |
| 2428 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2429 | psk_identity=foo psk=abc123" \ |
| 2430 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2431 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | 10c3c9f | 2014-06-10 15:28:52 +0200 | [diff] [blame] | 2432 | -S "SSL - Unknown identity received" \ |
| 2433 | -S "SSL - Verification of the message MAC failed" |
| 2434 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2435 | run_test "PSK callback: no psk, no callback" \ |
Manuel Pégourié-Gonnard | 10c3c9f | 2014-06-10 15:28:52 +0200 | [diff] [blame] | 2436 | "$P_SRV" \ |
| 2437 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2438 | psk_identity=foo psk=abc123" \ |
| 2439 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2440 | -s "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2441 | -S "SSL - Unknown identity received" \ |
| 2442 | -S "SSL - Verification of the message MAC failed" |
| 2443 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2444 | run_test "PSK callback: callback overrides other settings" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2445 | "$P_SRV psk=abc123 psk_identity=foo psk_list=abc,dead,def,beef" \ |
| 2446 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2447 | psk_identity=foo psk=abc123" \ |
| 2448 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2449 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2450 | -s "SSL - Unknown identity received" \ |
| 2451 | -S "SSL - Verification of the message MAC failed" |
| 2452 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2453 | run_test "PSK callback: first id matches" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2454 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 2455 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2456 | psk_identity=abc psk=dead" \ |
| 2457 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2458 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2459 | -S "SSL - Unknown identity received" \ |
| 2460 | -S "SSL - Verification of the message MAC failed" |
| 2461 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2462 | run_test "PSK callback: second id matches" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2463 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 2464 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2465 | psk_identity=def psk=beef" \ |
| 2466 | 0 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2467 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2468 | -S "SSL - Unknown identity received" \ |
| 2469 | -S "SSL - Verification of the message MAC failed" |
| 2470 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2471 | run_test "PSK callback: no match" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2472 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 2473 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2474 | psk_identity=ghi psk=beef" \ |
| 2475 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2476 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2477 | -s "SSL - Unknown identity received" \ |
| 2478 | -S "SSL - Verification of the message MAC failed" |
| 2479 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2480 | run_test "PSK callback: wrong key" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2481 | "$P_SRV psk_list=abc,dead,def,beef" \ |
| 2482 | "$P_CLI force_ciphersuite=TLS-PSK-WITH-AES-128-CBC-SHA \ |
| 2483 | psk_identity=abc psk=beef" \ |
| 2484 | 1 \ |
Manuel Pégourié-Gonnard | f01768c | 2015-01-08 17:06:16 +0100 | [diff] [blame] | 2485 | -S "SSL - None of the common ciphersuites is usable" \ |
Manuel Pégourié-Gonnard | a6781c9 | 2014-06-10 15:00:46 +0200 | [diff] [blame] | 2486 | -S "SSL - Unknown identity received" \ |
| 2487 | -s "SSL - Verification of the message MAC failed" |
Manuel Pégourié-Gonnard | 0cc7e31 | 2014-06-09 11:36:47 +0200 | [diff] [blame] | 2488 | |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 2489 | # Tests for ciphersuites per version |
| 2490 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2491 | run_test "Per-version suites: SSL3" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2492 | "$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] | 2493 | "$P_CLI force_version=ssl3" \ |
| 2494 | 0 \ |
| 2495 | -c "Ciphersuite is TLS-RSA-WITH-3DES-EDE-CBC-SHA" |
| 2496 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2497 | run_test "Per-version suites: TLS 1.0" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2498 | "$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] | 2499 | "$P_CLI force_version=tls1 arc4=1" \ |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 2500 | 0 \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2501 | -c "Ciphersuite is TLS-RSA-WITH-AES-256-CBC-SHA" |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 2502 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2503 | run_test "Per-version suites: TLS 1.1" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2504 | "$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] | 2505 | "$P_CLI force_version=tls1_1" \ |
| 2506 | 0 \ |
| 2507 | -c "Ciphersuite is TLS-RSA-WITH-AES-128-CBC-SHA" |
| 2508 | |
Manuel Pégourié-Gonnard | 8e03c71 | 2014-08-30 21:42:40 +0200 | [diff] [blame] | 2509 | run_test "Per-version suites: TLS 1.2" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2510 | "$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] | 2511 | "$P_CLI force_version=tls1_2" \ |
| 2512 | 0 \ |
| 2513 | -c "Ciphersuite is TLS-RSA-WITH-AES-128-GCM-SHA256" |
| 2514 | |
Manuel Pégourié-Gonnard | 4cc8c63 | 2015-07-23 12:24:03 +0200 | [diff] [blame] | 2515 | # Test for ClientHello without extensions |
| 2516 | |
Manuel Pégourié-Gonnard | d55bc20 | 2015-08-04 16:22:30 +0200 | [diff] [blame] | 2517 | requires_gnutls |
| 2518 | run_test "ClientHello without extensions" \ |
Manuel Pégourié-Gonnard | 4cc8c63 | 2015-07-23 12:24:03 +0200 | [diff] [blame] | 2519 | "$P_SRV debug_level=3" \ |
| 2520 | "$G_CLI --priority=NORMAL:%NO_EXTENSIONS:%DISABLE_SAFE_RENEGOTIATION" \ |
| 2521 | 0 \ |
| 2522 | -s "dumping 'client hello extensions' (0 bytes)" |
| 2523 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2524 | # Tests for mbedtls_ssl_get_bytes_avail() |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 2525 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2526 | run_test "mbedtls_ssl_get_bytes_avail: no extra data" \ |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 2527 | "$P_SRV" \ |
| 2528 | "$P_CLI request_size=100" \ |
| 2529 | 0 \ |
| 2530 | -s "Read from client: 100 bytes read$" |
| 2531 | |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2532 | run_test "mbedtls_ssl_get_bytes_avail: extra data" \ |
Manuel Pégourié-Gonnard | 95c0a63 | 2014-06-11 18:32:36 +0200 | [diff] [blame] | 2533 | "$P_SRV" \ |
| 2534 | "$P_CLI request_size=500" \ |
| 2535 | 0 \ |
| 2536 | -s "Read from client: 500 bytes read (.*+.*)" |
Manuel Pégourié-Gonnard | 90805a8 | 2014-06-11 14:06:01 +0200 | [diff] [blame] | 2537 | |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2538 | # Tests for small packets |
| 2539 | |
| 2540 | run_test "Small packet SSLv3 BlockCipher" \ |
Manuel Pégourié-Gonnard | 448ea50 | 2015-01-12 11:40:14 +0100 | [diff] [blame] | 2541 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2542 | "$P_CLI request_size=1 force_version=ssl3 \ |
| 2543 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2544 | 0 \ |
| 2545 | -s "Read from client: 1 bytes read" |
| 2546 | |
| 2547 | run_test "Small packet SSLv3 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2548 | "$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] | 2549 | "$P_CLI request_size=1 force_version=ssl3 \ |
| 2550 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2551 | 0 \ |
| 2552 | -s "Read from client: 1 bytes read" |
| 2553 | |
| 2554 | run_test "Small packet TLS 1.0 BlockCipher" \ |
| 2555 | "$P_SRV" \ |
| 2556 | "$P_CLI request_size=1 force_version=tls1 \ |
| 2557 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2558 | 0 \ |
| 2559 | -s "Read from client: 1 bytes read" |
| 2560 | |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 2561 | run_test "Small packet TLS 1.0 BlockCipher without EtM" \ |
| 2562 | "$P_SRV" \ |
| 2563 | "$P_CLI request_size=1 force_version=tls1 etm=0 \ |
| 2564 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2565 | 0 \ |
| 2566 | -s "Read from client: 1 bytes read" |
| 2567 | |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2568 | run_test "Small packet TLS 1.0 BlockCipher truncated MAC" \ |
| 2569 | "$P_SRV" \ |
| 2570 | "$P_CLI request_size=1 force_version=tls1 \ |
| 2571 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2572 | trunc_hmac=1" \ |
| 2573 | 0 \ |
| 2574 | -s "Read from client: 1 bytes read" |
| 2575 | |
| 2576 | run_test "Small packet TLS 1.0 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2577 | "$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] | 2578 | "$P_CLI request_size=1 force_version=tls1 \ |
| 2579 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2580 | trunc_hmac=1" \ |
| 2581 | 0 \ |
| 2582 | -s "Read from client: 1 bytes read" |
| 2583 | |
| 2584 | run_test "Small packet TLS 1.1 BlockCipher" \ |
| 2585 | "$P_SRV" \ |
| 2586 | "$P_CLI request_size=1 force_version=tls1_1 \ |
| 2587 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2588 | 0 \ |
| 2589 | -s "Read from client: 1 bytes read" |
| 2590 | |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 2591 | run_test "Small packet TLS 1.1 BlockCipher without EtM" \ |
| 2592 | "$P_SRV" \ |
| 2593 | "$P_CLI request_size=1 force_version=tls1_1 etm=0 \ |
| 2594 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2595 | 0 \ |
| 2596 | -s "Read from client: 1 bytes read" |
| 2597 | |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2598 | run_test "Small packet TLS 1.1 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2599 | "$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] | 2600 | "$P_CLI request_size=1 force_version=tls1_1 \ |
| 2601 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2602 | 0 \ |
| 2603 | -s "Read from client: 1 bytes read" |
| 2604 | |
| 2605 | run_test "Small packet TLS 1.1 BlockCipher truncated MAC" \ |
| 2606 | "$P_SRV" \ |
| 2607 | "$P_CLI request_size=1 force_version=tls1_1 \ |
| 2608 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2609 | trunc_hmac=1" \ |
| 2610 | 0 \ |
| 2611 | -s "Read from client: 1 bytes read" |
| 2612 | |
| 2613 | run_test "Small packet TLS 1.1 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2614 | "$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] | 2615 | "$P_CLI request_size=1 force_version=tls1_1 \ |
| 2616 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2617 | trunc_hmac=1" \ |
| 2618 | 0 \ |
| 2619 | -s "Read from client: 1 bytes read" |
| 2620 | |
| 2621 | run_test "Small packet TLS 1.2 BlockCipher" \ |
| 2622 | "$P_SRV" \ |
| 2623 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2624 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2625 | 0 \ |
| 2626 | -s "Read from client: 1 bytes read" |
| 2627 | |
Manuel Pégourié-Gonnard | 169dd6a | 2014-11-04 16:15:39 +0100 | [diff] [blame] | 2628 | run_test "Small packet TLS 1.2 BlockCipher without EtM" \ |
| 2629 | "$P_SRV" \ |
| 2630 | "$P_CLI request_size=1 force_version=tls1_2 etm=0 \ |
| 2631 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2632 | 0 \ |
| 2633 | -s "Read from client: 1 bytes read" |
| 2634 | |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2635 | run_test "Small packet TLS 1.2 BlockCipher larger MAC" \ |
| 2636 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 2637 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2638 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
Manuel Pégourié-Gonnard | ee41503 | 2014-06-18 15:08:56 +0200 | [diff] [blame] | 2639 | 0 \ |
| 2640 | -s "Read from client: 1 bytes read" |
| 2641 | |
| 2642 | run_test "Small packet TLS 1.2 BlockCipher truncated MAC" \ |
| 2643 | "$P_SRV" \ |
| 2644 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2645 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2646 | trunc_hmac=1" \ |
| 2647 | 0 \ |
| 2648 | -s "Read from client: 1 bytes read" |
| 2649 | |
| 2650 | run_test "Small packet TLS 1.2 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2651 | "$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] | 2652 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2653 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2654 | 0 \ |
| 2655 | -s "Read from client: 1 bytes read" |
| 2656 | |
| 2657 | run_test "Small packet TLS 1.2 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2658 | "$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] | 2659 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2660 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2661 | trunc_hmac=1" \ |
| 2662 | 0 \ |
| 2663 | -s "Read from client: 1 bytes read" |
| 2664 | |
| 2665 | run_test "Small packet TLS 1.2 AEAD" \ |
| 2666 | "$P_SRV" \ |
| 2667 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2668 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 2669 | 0 \ |
| 2670 | -s "Read from client: 1 bytes read" |
| 2671 | |
| 2672 | run_test "Small packet TLS 1.2 AEAD shorter tag" \ |
| 2673 | "$P_SRV" \ |
| 2674 | "$P_CLI request_size=1 force_version=tls1_2 \ |
| 2675 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 2676 | 0 \ |
| 2677 | -s "Read from client: 1 bytes read" |
| 2678 | |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 2679 | # Test for large packets |
| 2680 | |
| 2681 | run_test "Large packet SSLv3 BlockCipher" \ |
Manuel Pégourié-Gonnard | 448ea50 | 2015-01-12 11:40:14 +0100 | [diff] [blame] | 2682 | "$P_SRV min_version=ssl3" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 2683 | "$P_CLI request_size=16384 force_version=ssl3 recsplit=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 2684 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2685 | 0 \ |
| 2686 | -s "Read from client: 16384 bytes read" |
| 2687 | |
| 2688 | run_test "Large packet SSLv3 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2689 | "$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] | 2690 | "$P_CLI request_size=16384 force_version=ssl3 \ |
| 2691 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2692 | 0 \ |
| 2693 | -s "Read from client: 16384 bytes read" |
| 2694 | |
| 2695 | run_test "Large packet TLS 1.0 BlockCipher" \ |
| 2696 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 2697 | "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 2698 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2699 | 0 \ |
| 2700 | -s "Read from client: 16384 bytes read" |
| 2701 | |
| 2702 | run_test "Large packet TLS 1.0 BlockCipher truncated MAC" \ |
| 2703 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 2704 | "$P_CLI request_size=16384 force_version=tls1 recsplit=0 \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 2705 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2706 | trunc_hmac=1" \ |
| 2707 | 0 \ |
| 2708 | -s "Read from client: 16384 bytes read" |
| 2709 | |
| 2710 | run_test "Large packet TLS 1.0 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2711 | "$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] | 2712 | "$P_CLI request_size=16384 force_version=tls1 \ |
| 2713 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2714 | trunc_hmac=1" \ |
| 2715 | 0 \ |
| 2716 | -s "Read from client: 16384 bytes read" |
| 2717 | |
| 2718 | run_test "Large packet TLS 1.1 BlockCipher" \ |
| 2719 | "$P_SRV" \ |
| 2720 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 2721 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2722 | 0 \ |
| 2723 | -s "Read from client: 16384 bytes read" |
| 2724 | |
| 2725 | run_test "Large packet TLS 1.1 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2726 | "$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] | 2727 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 2728 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2729 | 0 \ |
| 2730 | -s "Read from client: 16384 bytes read" |
| 2731 | |
| 2732 | run_test "Large packet TLS 1.1 BlockCipher truncated MAC" \ |
| 2733 | "$P_SRV" \ |
| 2734 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 2735 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2736 | trunc_hmac=1" \ |
| 2737 | 0 \ |
| 2738 | -s "Read from client: 16384 bytes read" |
| 2739 | |
| 2740 | run_test "Large packet TLS 1.1 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2741 | "$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] | 2742 | "$P_CLI request_size=16384 force_version=tls1_1 \ |
| 2743 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2744 | trunc_hmac=1" \ |
| 2745 | 0 \ |
| 2746 | -s "Read from client: 16384 bytes read" |
| 2747 | |
| 2748 | run_test "Large packet TLS 1.2 BlockCipher" \ |
| 2749 | "$P_SRV" \ |
| 2750 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2751 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA" \ |
| 2752 | 0 \ |
| 2753 | -s "Read from client: 16384 bytes read" |
| 2754 | |
| 2755 | run_test "Large packet TLS 1.2 BlockCipher larger MAC" \ |
| 2756 | "$P_SRV" \ |
Manuel Pégourié-Gonnard | c82ee35 | 2015-01-07 16:35:25 +0100 | [diff] [blame] | 2757 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2758 | force_ciphersuite=TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384" \ |
Manuel Pégourié-Gonnard | 8920f69 | 2014-06-18 22:05:08 +0200 | [diff] [blame] | 2759 | 0 \ |
| 2760 | -s "Read from client: 16384 bytes read" |
| 2761 | |
| 2762 | run_test "Large packet TLS 1.2 BlockCipher truncated MAC" \ |
| 2763 | "$P_SRV" \ |
| 2764 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2765 | force_ciphersuite=TLS-RSA-WITH-AES-256-CBC-SHA \ |
| 2766 | trunc_hmac=1" \ |
| 2767 | 0 \ |
| 2768 | -s "Read from client: 16384 bytes read" |
| 2769 | |
| 2770 | run_test "Large packet TLS 1.2 StreamCipher" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2771 | "$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] | 2772 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2773 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA" \ |
| 2774 | 0 \ |
| 2775 | -s "Read from client: 16384 bytes read" |
| 2776 | |
| 2777 | run_test "Large packet TLS 1.2 StreamCipher truncated MAC" \ |
Manuel Pégourié-Gonnard | ea0920f | 2015-03-24 09:50:15 +0100 | [diff] [blame] | 2778 | "$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] | 2779 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2780 | force_ciphersuite=TLS-RSA-WITH-RC4-128-SHA \ |
| 2781 | trunc_hmac=1" \ |
| 2782 | 0 \ |
| 2783 | -s "Read from client: 16384 bytes read" |
| 2784 | |
| 2785 | run_test "Large packet TLS 1.2 AEAD" \ |
| 2786 | "$P_SRV" \ |
| 2787 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2788 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM" \ |
| 2789 | 0 \ |
| 2790 | -s "Read from client: 16384 bytes read" |
| 2791 | |
| 2792 | run_test "Large packet TLS 1.2 AEAD shorter tag" \ |
| 2793 | "$P_SRV" \ |
| 2794 | "$P_CLI request_size=16384 force_version=tls1_2 \ |
| 2795 | force_ciphersuite=TLS-RSA-WITH-AES-256-CCM-8" \ |
| 2796 | 0 \ |
| 2797 | -s "Read from client: 16384 bytes read" |
| 2798 | |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2799 | # Tests for DTLS HelloVerifyRequest |
| 2800 | |
| 2801 | run_test "DTLS cookie: enabled" \ |
| 2802 | "$P_SRV dtls=1 debug_level=2" \ |
| 2803 | "$P_CLI dtls=1 debug_level=2" \ |
| 2804 | 0 \ |
| 2805 | -s "cookie verification failed" \ |
| 2806 | -s "cookie verification passed" \ |
| 2807 | -S "cookie verification skipped" \ |
| 2808 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 2809 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2810 | -S "SSL - The requested feature is not available" |
| 2811 | |
| 2812 | run_test "DTLS cookie: disabled" \ |
| 2813 | "$P_SRV dtls=1 debug_level=2 cookies=0" \ |
| 2814 | "$P_CLI dtls=1 debug_level=2" \ |
| 2815 | 0 \ |
| 2816 | -S "cookie verification failed" \ |
| 2817 | -S "cookie verification passed" \ |
| 2818 | -s "cookie verification skipped" \ |
| 2819 | -C "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 2820 | -S "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2821 | -S "SSL - The requested feature is not available" |
| 2822 | |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 2823 | run_test "DTLS cookie: default (failing)" \ |
| 2824 | "$P_SRV dtls=1 debug_level=2 cookies=-1" \ |
| 2825 | "$P_CLI dtls=1 debug_level=2 hs_timeout=100-400" \ |
| 2826 | 1 \ |
| 2827 | -s "cookie verification failed" \ |
| 2828 | -S "cookie verification passed" \ |
| 2829 | -S "cookie verification skipped" \ |
| 2830 | -C "received hello verify request" \ |
| 2831 | -S "hello verification requested" \ |
| 2832 | -s "SSL - The requested feature is not available" |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2833 | |
| 2834 | requires_ipv6 |
| 2835 | run_test "DTLS cookie: enabled, IPv6" \ |
| 2836 | "$P_SRV dtls=1 debug_level=2 server_addr=::1" \ |
| 2837 | "$P_CLI dtls=1 debug_level=2 server_addr=::1" \ |
| 2838 | 0 \ |
| 2839 | -s "cookie verification failed" \ |
| 2840 | -s "cookie verification passed" \ |
| 2841 | -S "cookie verification skipped" \ |
| 2842 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 2843 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 0eb6cab | 2014-07-23 20:17:47 +0200 | [diff] [blame] | 2844 | -S "SSL - The requested feature is not available" |
| 2845 | |
Manuel Pégourié-Gonnard | 579950c | 2014-09-29 17:47:33 +0200 | [diff] [blame] | 2846 | run_test "DTLS cookie: enabled, nbio" \ |
| 2847 | "$P_SRV dtls=1 nbio=2 debug_level=2" \ |
| 2848 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 2849 | 0 \ |
| 2850 | -s "cookie verification failed" \ |
| 2851 | -s "cookie verification passed" \ |
| 2852 | -S "cookie verification skipped" \ |
| 2853 | -c "received hello verify request" \ |
Manuel Pégourié-Gonnard | caecdae | 2014-10-13 19:04:37 +0200 | [diff] [blame] | 2854 | -s "hello verification requested" \ |
Manuel Pégourié-Gonnard | 579950c | 2014-09-29 17:47:33 +0200 | [diff] [blame] | 2855 | -S "SSL - The requested feature is not available" |
| 2856 | |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 2857 | # Tests for various cases of client authentication with DTLS |
| 2858 | # (focused on handshake flows and message parsing) |
| 2859 | |
| 2860 | run_test "DTLS client auth: required" \ |
| 2861 | "$P_SRV dtls=1 auth_mode=required" \ |
| 2862 | "$P_CLI dtls=1" \ |
| 2863 | 0 \ |
| 2864 | -s "Verifying peer X.509 certificate... ok" |
| 2865 | |
| 2866 | run_test "DTLS client auth: optional, client has no cert" \ |
| 2867 | "$P_SRV dtls=1 auth_mode=optional" \ |
| 2868 | "$P_CLI dtls=1 crt_file=none key_file=none" \ |
| 2869 | 0 \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2870 | -s "! Certificate was missing" |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 2871 | |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2872 | run_test "DTLS client auth: none, client has no cert" \ |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 2873 | "$P_SRV dtls=1 auth_mode=none" \ |
| 2874 | "$P_CLI dtls=1 crt_file=none key_file=none debug_level=2" \ |
| 2875 | 0 \ |
| 2876 | -c "skip write certificate$" \ |
Manuel Pégourié-Gonnard | 89addc4 | 2015-04-20 10:56:18 +0100 | [diff] [blame] | 2877 | -s "! Certificate verification was skipped" |
Manuel Pégourié-Gonnard | 08a1d4b | 2014-09-26 10:35:50 +0200 | [diff] [blame] | 2878 | |
Manuel Pégourié-Gonnard | 0a88574 | 2015-08-04 12:08:35 +0200 | [diff] [blame] | 2879 | run_test "DTLS wrong PSK: badmac alert" \ |
| 2880 | "$P_SRV dtls=1 psk=abc123 force_ciphersuite=TLS-PSK-WITH-AES-128-GCM-SHA256" \ |
| 2881 | "$P_CLI dtls=1 psk=abc124" \ |
| 2882 | 1 \ |
| 2883 | -s "SSL - Verification of the message MAC failed" \ |
| 2884 | -c "SSL - A fatal alert message was received from our peer" |
| 2885 | |
Manuel Pégourié-Gonnard | 502bf30 | 2014-08-20 13:12:58 +0200 | [diff] [blame] | 2886 | # Tests for receiving fragmented handshake messages with DTLS |
| 2887 | |
| 2888 | requires_gnutls |
| 2889 | run_test "DTLS reassembly: no fragmentation (gnutls server)" \ |
| 2890 | "$G_SRV -u --mtu 2048 -a" \ |
| 2891 | "$P_CLI dtls=1 debug_level=2" \ |
| 2892 | 0 \ |
| 2893 | -C "found fragmented DTLS handshake message" \ |
| 2894 | -C "error" |
| 2895 | |
| 2896 | requires_gnutls |
| 2897 | run_test "DTLS reassembly: some fragmentation (gnutls server)" \ |
| 2898 | "$G_SRV -u --mtu 512" \ |
| 2899 | "$P_CLI dtls=1 debug_level=2" \ |
| 2900 | 0 \ |
| 2901 | -c "found fragmented DTLS handshake message" \ |
| 2902 | -C "error" |
| 2903 | |
| 2904 | requires_gnutls |
| 2905 | run_test "DTLS reassembly: more fragmentation (gnutls server)" \ |
| 2906 | "$G_SRV -u --mtu 128" \ |
| 2907 | "$P_CLI dtls=1 debug_level=2" \ |
| 2908 | 0 \ |
| 2909 | -c "found fragmented DTLS handshake message" \ |
| 2910 | -C "error" |
| 2911 | |
| 2912 | requires_gnutls |
| 2913 | run_test "DTLS reassembly: more fragmentation, nbio (gnutls server)" \ |
| 2914 | "$G_SRV -u --mtu 128" \ |
| 2915 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 2916 | 0 \ |
| 2917 | -c "found fragmented DTLS handshake message" \ |
| 2918 | -C "error" |
| 2919 | |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 2920 | requires_gnutls |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 2921 | run_test "DTLS reassembly: fragmentation, renego (gnutls server)" \ |
| 2922 | "$G_SRV -u --mtu 256" \ |
| 2923 | "$P_CLI debug_level=3 dtls=1 renegotiation=1 renegotiate=1" \ |
| 2924 | 0 \ |
| 2925 | -c "found fragmented DTLS handshake message" \ |
| 2926 | -c "client hello, adding renegotiation extension" \ |
| 2927 | -c "found renegotiation extension" \ |
| 2928 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2929 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 2930 | -C "error" \ |
| 2931 | -s "Extra-header:" |
| 2932 | |
| 2933 | requires_gnutls |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 2934 | run_test "DTLS reassembly: fragmentation, nbio, renego (gnutls server)" \ |
| 2935 | "$G_SRV -u --mtu 256" \ |
| 2936 | "$P_CLI debug_level=3 nbio=2 dtls=1 renegotiation=1 renegotiate=1" \ |
| 2937 | 0 \ |
| 2938 | -c "found fragmented DTLS handshake message" \ |
| 2939 | -c "client hello, adding renegotiation extension" \ |
| 2940 | -c "found renegotiation extension" \ |
| 2941 | -c "=> renegotiate" \ |
Manuel Pégourié-Gonnard | 2cf5a7c | 2015-04-08 12:49:31 +0200 | [diff] [blame] | 2942 | -C "mbedtls_ssl_handshake returned" \ |
Manuel Pégourié-Gonnard | 0c4cbc7 | 2014-09-02 14:47:31 +0200 | [diff] [blame] | 2943 | -C "error" \ |
| 2944 | -s "Extra-header:" |
| 2945 | |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 2946 | run_test "DTLS reassembly: no fragmentation (openssl server)" \ |
| 2947 | "$O_SRV -dtls1 -mtu 2048" \ |
| 2948 | "$P_CLI dtls=1 debug_level=2" \ |
| 2949 | 0 \ |
| 2950 | -C "found fragmented DTLS handshake message" \ |
| 2951 | -C "error" |
| 2952 | |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 2953 | run_test "DTLS reassembly: some fragmentation (openssl server)" \ |
| 2954 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 64dffc5 | 2014-09-02 13:39:16 +0200 | [diff] [blame] | 2955 | "$P_CLI dtls=1 debug_level=2" \ |
| 2956 | 0 \ |
| 2957 | -c "found fragmented DTLS handshake message" \ |
| 2958 | -C "error" |
| 2959 | |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 2960 | run_test "DTLS reassembly: more fragmentation (openssl server)" \ |
Manuel Pégourié-Gonnard | 64dffc5 | 2014-09-02 13:39:16 +0200 | [diff] [blame] | 2961 | "$O_SRV -dtls1 -mtu 256" \ |
| 2962 | "$P_CLI dtls=1 debug_level=2" \ |
| 2963 | 0 \ |
| 2964 | -c "found fragmented DTLS handshake message" \ |
| 2965 | -C "error" |
| 2966 | |
| 2967 | run_test "DTLS reassembly: fragmentation, nbio (openssl server)" \ |
| 2968 | "$O_SRV -dtls1 -mtu 256" \ |
| 2969 | "$P_CLI dtls=1 nbio=2 debug_level=2" \ |
| 2970 | 0 \ |
| 2971 | -c "found fragmented DTLS handshake message" \ |
| 2972 | -C "error" |
Manuel Pégourié-Gonnard | a775617 | 2014-08-31 18:37:01 +0200 | [diff] [blame] | 2973 | |
Manuel Pégourié-Gonnard | 7a66cbc | 2014-09-26 16:31:46 +0200 | [diff] [blame] | 2974 | # Tests for specific things with "unreliable" UDP connection |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 2975 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 2976 | not_with_valgrind # spurious resend due to timeout |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 2977 | run_test "DTLS proxy: reference" \ |
Manuel Pégourié-Gonnard | be9eb87 | 2014-09-05 17:45:19 +0200 | [diff] [blame] | 2978 | -p "$P_PXY" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 2979 | "$P_SRV dtls=1 debug_level=2" \ |
| 2980 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 2981 | 0 \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 2982 | -C "replayed record" \ |
| 2983 | -S "replayed record" \ |
| 2984 | -C "record from another epoch" \ |
| 2985 | -S "record from another epoch" \ |
| 2986 | -C "discarding invalid record" \ |
| 2987 | -S "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 2988 | -S "resend" \ |
Manuel Pégourié-Gonnard | 63eca93 | 2014-09-08 16:39:08 +0200 | [diff] [blame] | 2989 | -s "Extra-header:" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 2990 | -c "HTTP/1.0 200 OK" |
| 2991 | |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 2992 | not_with_valgrind # spurious resend due to timeout |
Manuel Pégourié-Gonnard | b47368a | 2014-09-24 13:29:58 +0200 | [diff] [blame] | 2993 | run_test "DTLS proxy: duplicate every packet" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 2994 | -p "$P_PXY duplicate=1" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 2995 | "$P_SRV dtls=1 debug_level=2" \ |
| 2996 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 990f9e4 | 2014-09-06 12:27:02 +0200 | [diff] [blame] | 2997 | 0 \ |
Manuel Pégourié-Gonnard | b47368a | 2014-09-24 13:29:58 +0200 | [diff] [blame] | 2998 | -c "replayed record" \ |
| 2999 | -s "replayed record" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 3000 | -c "discarding invalid record" \ |
| 3001 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 3002 | -S "resend" \ |
Manuel Pégourié-Gonnard | 63eca93 | 2014-09-08 16:39:08 +0200 | [diff] [blame] | 3003 | -s "Extra-header:" \ |
| 3004 | -c "HTTP/1.0 200 OK" |
| 3005 | |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 3006 | run_test "DTLS proxy: duplicate every packet, server anti-replay off" \ |
| 3007 | -p "$P_PXY duplicate=1" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 3008 | "$P_SRV dtls=1 debug_level=2 anti_replay=0" \ |
| 3009 | "$P_CLI dtls=1 debug_level=2" \ |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 3010 | 0 \ |
| 3011 | -c "replayed record" \ |
| 3012 | -S "replayed record" \ |
| 3013 | -c "discarding invalid record" \ |
| 3014 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 76fe9e4 | 2014-09-24 15:17:31 +0200 | [diff] [blame] | 3015 | -c "resend" \ |
| 3016 | -s "resend" \ |
Manuel Pégourié-Gonnard | 2739313 | 2014-09-24 14:41:11 +0200 | [diff] [blame] | 3017 | -s "Extra-header:" \ |
| 3018 | -c "HTTP/1.0 200 OK" |
| 3019 | |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3020 | 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] | 3021 | -p "$P_PXY bad_ad=1" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 3022 | "$P_SRV dtls=1 debug_level=1" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3023 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3024 | 0 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 3025 | -c "discarding invalid record (mac)" \ |
| 3026 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3027 | -s "Extra-header:" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3028 | -c "HTTP/1.0 200 OK" \ |
| 3029 | -S "too many records with bad MAC" \ |
| 3030 | -S "Verification of the message MAC failed" |
| 3031 | |
| 3032 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 1" \ |
| 3033 | -p "$P_PXY bad_ad=1" \ |
| 3034 | "$P_SRV dtls=1 debug_level=1 badmac_limit=1" \ |
| 3035 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
| 3036 | 1 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 3037 | -C "discarding invalid record (mac)" \ |
| 3038 | -S "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3039 | -S "Extra-header:" \ |
| 3040 | -C "HTTP/1.0 200 OK" \ |
| 3041 | -s "too many records with bad MAC" \ |
| 3042 | -s "Verification of the message MAC failed" |
| 3043 | |
| 3044 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 2" \ |
| 3045 | -p "$P_PXY bad_ad=1" \ |
| 3046 | "$P_SRV dtls=1 debug_level=1 badmac_limit=2" \ |
| 3047 | "$P_CLI dtls=1 debug_level=1 read_timeout=100" \ |
| 3048 | 0 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 3049 | -c "discarding invalid record (mac)" \ |
| 3050 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3051 | -s "Extra-header:" \ |
| 3052 | -c "HTTP/1.0 200 OK" \ |
| 3053 | -S "too many records with bad MAC" \ |
| 3054 | -S "Verification of the message MAC failed" |
| 3055 | |
| 3056 | run_test "DTLS proxy: inject invalid AD record, badmac_limit 2, exchanges 2"\ |
| 3057 | -p "$P_PXY bad_ad=1" \ |
| 3058 | "$P_SRV dtls=1 debug_level=1 badmac_limit=2 exchanges=2" \ |
| 3059 | "$P_CLI dtls=1 debug_level=1 read_timeout=100 exchanges=2" \ |
| 3060 | 1 \ |
Manuel Pégourié-Gonnard | 74a1378 | 2014-10-14 22:34:08 +0200 | [diff] [blame] | 3061 | -c "discarding invalid record (mac)" \ |
| 3062 | -s "discarding invalid record (mac)" \ |
Manuel Pégourié-Gonnard | e698f59 | 2014-10-14 19:36:36 +0200 | [diff] [blame] | 3063 | -s "Extra-header:" \ |
| 3064 | -c "HTTP/1.0 200 OK" \ |
| 3065 | -s "too many records with bad MAC" \ |
| 3066 | -s "Verification of the message MAC failed" |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3067 | |
| 3068 | run_test "DTLS proxy: delay ChangeCipherSpec" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 3069 | -p "$P_PXY delay_ccs=1" \ |
| 3070 | "$P_SRV dtls=1 debug_level=1" \ |
| 3071 | "$P_CLI dtls=1 debug_level=1" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3072 | 0 \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 3073 | -c "record from another epoch" \ |
| 3074 | -s "record from another epoch" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3075 | -c "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 246c13a | 2014-09-24 13:56:09 +0200 | [diff] [blame] | 3076 | -s "discarding invalid record" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3077 | -s "Extra-header:" \ |
| 3078 | -c "HTTP/1.0 200 OK" |
| 3079 | |
Manuel Pégourié-Gonnard | 7a66cbc | 2014-09-26 16:31:46 +0200 | [diff] [blame] | 3080 | # 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] | 3081 | |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3082 | needs_more_time 2 |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3083 | 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] | 3084 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3085 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 3086 | psk=abc123" \ |
| 3087 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3088 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3089 | 0 \ |
| 3090 | -s "Extra-header:" \ |
| 3091 | -c "HTTP/1.0 200 OK" |
| 3092 | |
| 3093 | needs_more_time 2 |
| 3094 | run_test "DTLS proxy: 3d, \"short\" RSA handshake" \ |
| 3095 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3096 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \ |
| 3097 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3098 | force_ciphersuite=TLS-RSA-WITH-AES-128-CBC-SHA" \ |
| 3099 | 0 \ |
| 3100 | -s "Extra-header:" \ |
| 3101 | -c "HTTP/1.0 200 OK" |
| 3102 | |
| 3103 | needs_more_time 2 |
| 3104 | run_test "DTLS proxy: 3d, \"short\" (no ticket, no cli_auth) FS handshake" \ |
| 3105 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3106 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none" \ |
| 3107 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3108 | 0 \ |
| 3109 | -s "Extra-header:" \ |
| 3110 | -c "HTTP/1.0 200 OK" |
| 3111 | |
| 3112 | needs_more_time 2 |
| 3113 | run_test "DTLS proxy: 3d, FS, client auth" \ |
| 3114 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3115 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=required" \ |
| 3116 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3117 | 0 \ |
| 3118 | -s "Extra-header:" \ |
| 3119 | -c "HTTP/1.0 200 OK" |
| 3120 | |
| 3121 | needs_more_time 2 |
| 3122 | run_test "DTLS proxy: 3d, FS, ticket" \ |
| 3123 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3124 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=none" \ |
| 3125 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \ |
Manuel Pégourié-Gonnard | 18e519a | 2014-09-24 19:09:17 +0200 | [diff] [blame] | 3126 | 0 \ |
| 3127 | -s "Extra-header:" \ |
| 3128 | -c "HTTP/1.0 200 OK" |
| 3129 | |
| 3130 | needs_more_time 2 |
| 3131 | run_test "DTLS proxy: 3d, max handshake (FS, ticket + client auth)" \ |
| 3132 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3133 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=1 auth_mode=required" \ |
| 3134 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=1" \ |
Manuel Pégourié-Gonnard | 825a49e | 2014-09-23 11:00:37 +0200 | [diff] [blame] | 3135 | 0 \ |
| 3136 | -s "Extra-header:" \ |
| 3137 | -c "HTTP/1.0 200 OK" |
| 3138 | |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3139 | needs_more_time 2 |
| 3140 | run_test "DTLS proxy: 3d, max handshake, nbio" \ |
| 3141 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3142 | "$P_SRV dtls=1 hs_timeout=250-10000 nbio=2 tickets=1 \ |
| 3143 | auth_mode=required" \ |
| 3144 | "$P_CLI dtls=1 hs_timeout=250-10000 nbio=2 tickets=1" \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3145 | 0 \ |
| 3146 | -s "Extra-header:" \ |
| 3147 | -c "HTTP/1.0 200 OK" |
| 3148 | |
Manuel Pégourié-Gonnard | 1b753f1 | 2014-09-25 16:09:36 +0200 | [diff] [blame] | 3149 | needs_more_time 4 |
Manuel Pégourié-Gonnard | 7a26d73 | 2014-10-02 14:50:46 +0200 | [diff] [blame] | 3150 | run_test "DTLS proxy: 3d, min handshake, resumption" \ |
| 3151 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 3152 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 3153 | psk=abc123 debug_level=3" \ |
| 3154 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 3155 | debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \ |
| 3156 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3157 | 0 \ |
| 3158 | -s "a session has been resumed" \ |
| 3159 | -c "a session has been resumed" \ |
| 3160 | -s "Extra-header:" \ |
| 3161 | -c "HTTP/1.0 200 OK" |
| 3162 | |
| 3163 | needs_more_time 4 |
Manuel Pégourié-Gonnard | 85beb30 | 2014-10-02 17:59:19 +0200 | [diff] [blame] | 3164 | run_test "DTLS proxy: 3d, min handshake, resumption, nbio" \ |
| 3165 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 3166 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 3167 | psk=abc123 debug_level=3 nbio=2" \ |
| 3168 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 3169 | debug_level=3 reconnect=1 read_timeout=1000 max_resend=10 \ |
| 3170 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8 nbio=2" \ |
| 3171 | 0 \ |
| 3172 | -s "a session has been resumed" \ |
| 3173 | -c "a session has been resumed" \ |
| 3174 | -s "Extra-header:" \ |
| 3175 | -c "HTTP/1.0 200 OK" |
| 3176 | |
| 3177 | needs_more_time 4 |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3178 | run_test "DTLS proxy: 3d, min handshake, client-initiated renego" \ |
Manuel Pégourié-Gonnard | 1b753f1 | 2014-09-25 16:09:36 +0200 | [diff] [blame] | 3179 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3180 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 3181 | psk=abc123 renegotiation=1 debug_level=2" \ |
| 3182 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 3183 | renegotiate=1 debug_level=2 \ |
Manuel Pégourié-Gonnard | 1b753f1 | 2014-09-25 16:09:36 +0200 | [diff] [blame] | 3184 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3185 | 0 \ |
| 3186 | -c "=> renegotiate" \ |
| 3187 | -s "=> renegotiate" \ |
| 3188 | -s "Extra-header:" \ |
| 3189 | -c "HTTP/1.0 200 OK" |
| 3190 | |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3191 | needs_more_time 4 |
| 3192 | run_test "DTLS proxy: 3d, min handshake, client-initiated renego, nbio" \ |
| 3193 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | 37a4de2 | 2014-10-01 16:38:03 +0200 | [diff] [blame] | 3194 | "$P_SRV dtls=1 hs_timeout=250-10000 tickets=0 auth_mode=none \ |
| 3195 | psk=abc123 renegotiation=1 debug_level=2" \ |
| 3196 | "$P_CLI dtls=1 hs_timeout=250-10000 tickets=0 psk=abc123 \ |
| 3197 | renegotiate=1 debug_level=2 \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3198 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3199 | 0 \ |
| 3200 | -c "=> renegotiate" \ |
| 3201 | -s "=> renegotiate" \ |
| 3202 | -s "Extra-header:" \ |
| 3203 | -c "HTTP/1.0 200 OK" |
| 3204 | |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3205 | needs_more_time 4 |
| 3206 | run_test "DTLS proxy: 3d, min handshake, server-initiated renego" \ |
Manuel Pégourié-Gonnard | a6ace04 | 2014-10-15 12:44:41 +0200 | [diff] [blame] | 3207 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3208 | "$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] | 3209 | psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3210 | debug_level=2" \ |
| 3211 | "$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] | 3212 | renegotiation=1 exchanges=4 debug_level=2 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3213 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3214 | 0 \ |
| 3215 | -c "=> renegotiate" \ |
| 3216 | -s "=> renegotiate" \ |
| 3217 | -s "Extra-header:" \ |
| 3218 | -c "HTTP/1.0 200 OK" |
| 3219 | |
| 3220 | needs_more_time 4 |
| 3221 | 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] | 3222 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3223 | "$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] | 3224 | psk=abc123 renegotiate=1 renegotiation=1 exchanges=4 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3225 | debug_level=2 nbio=2" \ |
| 3226 | "$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] | 3227 | renegotiation=1 exchanges=4 debug_level=2 nbio=2 \ |
Manuel Pégourié-Gonnard | ba958b8 | 2014-10-09 16:13:44 +0200 | [diff] [blame] | 3228 | force_ciphersuite=TLS-PSK-WITH-AES-128-CCM-8" \ |
| 3229 | 0 \ |
| 3230 | -c "=> renegotiate" \ |
| 3231 | -s "=> renegotiate" \ |
| 3232 | -s "Extra-header:" \ |
| 3233 | -c "HTTP/1.0 200 OK" |
| 3234 | |
Manuel Pégourié-Gonnard | 127ab88 | 2014-10-09 17:59:32 +0200 | [diff] [blame] | 3235 | needs_more_time 6 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3236 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3237 | run_test "DTLS proxy: 3d, openssl server" \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 3238 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 3239 | "$O_SRV -dtls1 -mtu 2048" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 3240 | "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 3241 | 0 \ |
Manuel Pégourié-Gonnard | d0fd1da | 2014-09-25 17:00:27 +0200 | [diff] [blame] | 3242 | -c "HTTP/1.0 200 OK" |
| 3243 | |
Manuel Pégourié-Gonnard | 2240486 | 2015-05-14 12:11:45 +0200 | [diff] [blame] | 3244 | needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3245 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3246 | run_test "DTLS proxy: 3d, openssl server, fragmentation" \ |
| 3247 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 3248 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 3249 | "$P_CLI dtls=1 hs_timeout=250-60000 tickets=0" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3250 | 0 \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3251 | -c "HTTP/1.0 200 OK" |
| 3252 | |
Manuel Pégourié-Gonnard | 2240486 | 2015-05-14 12:11:45 +0200 | [diff] [blame] | 3253 | needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3254 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3255 | run_test "DTLS proxy: 3d, openssl server, fragmentation, nbio" \ |
| 3256 | -p "$P_PXY drop=5 delay=5 duplicate=5 protect_hvr=1" \ |
| 3257 | "$O_SRV -dtls1 -mtu 768" \ |
Manuel Pégourié-Gonnard | 8fe411e | 2015-03-09 16:09:53 +0000 | [diff] [blame] | 3258 | "$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] | 3259 | 0 \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3260 | -c "HTTP/1.0 200 OK" |
| 3261 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 3262 | requires_gnutls |
Manuel Pégourié-Gonnard | 127ab88 | 2014-10-09 17:59:32 +0200 | [diff] [blame] | 3263 | needs_more_time 6 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3264 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3265 | run_test "DTLS proxy: 3d, gnutls server" \ |
| 3266 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 3267 | "$G_SRV -u --mtu 2048 -a" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 3268 | "$P_CLI dtls=1 hs_timeout=250-60000" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3269 | 0 \ |
| 3270 | -s "Extra-header:" \ |
| 3271 | -c "Extra-header:" |
| 3272 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 3273 | requires_gnutls |
Manuel Pégourié-Gonnard | 2240486 | 2015-05-14 12:11:45 +0200 | [diff] [blame] | 3274 | needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3275 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3276 | run_test "DTLS proxy: 3d, gnutls server, fragmentation" \ |
| 3277 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 3278 | "$G_SRV -u --mtu 512" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 3279 | "$P_CLI dtls=1 hs_timeout=250-60000" \ |
Manuel Pégourié-Gonnard | 9590e0a | 2014-09-26 16:27:59 +0200 | [diff] [blame] | 3280 | 0 \ |
| 3281 | -s "Extra-header:" \ |
| 3282 | -c "Extra-header:" |
| 3283 | |
Manuel Pégourié-Gonnard | 9699996 | 2015-02-17 16:02:37 +0000 | [diff] [blame] | 3284 | requires_gnutls |
Manuel Pégourié-Gonnard | 2240486 | 2015-05-14 12:11:45 +0200 | [diff] [blame] | 3285 | needs_more_time 8 |
Manuel Pégourié-Gonnard | d68434e | 2015-08-31 12:48:22 +0200 | [diff] [blame] | 3286 | not_with_valgrind # risk of non-mbedtls peer timing out |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3287 | run_test "DTLS proxy: 3d, gnutls server, fragmentation, nbio" \ |
| 3288 | -p "$P_PXY drop=5 delay=5 duplicate=5" \ |
| 3289 | "$G_SRV -u --mtu 512" \ |
Manuel Pégourié-Gonnard | f138447 | 2014-10-14 22:57:46 +0200 | [diff] [blame] | 3290 | "$P_CLI dtls=1 hs_timeout=250-60000 nbio=2" \ |
Manuel Pégourié-Gonnard | 6093d81 | 2014-09-29 17:52:57 +0200 | [diff] [blame] | 3291 | 0 \ |
| 3292 | -s "Extra-header:" \ |
| 3293 | -c "Extra-header:" |
| 3294 | |
Manuel Pégourié-Gonnard | 8520dac | 2014-02-21 12:12:23 +0100 | [diff] [blame] | 3295 | # Final report |
| 3296 | |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 3297 | echo "------------------------------------------------------------------------" |
| 3298 | |
| 3299 | if [ $FAILS = 0 ]; then |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 3300 | printf "PASSED" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 3301 | else |
Manuel Pégourié-Gonnard | f46f128 | 2014-12-11 11:51:28 +0100 | [diff] [blame] | 3302 | printf "FAILED" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 3303 | fi |
Manuel Pégourié-Gonnard | 72e51ee | 2014-08-31 10:22:11 +0200 | [diff] [blame] | 3304 | PASSES=$(( $TESTS - $FAILS )) |
Manuel Pégourié-Gonnard | 6f4fbbb | 2014-08-14 14:31:29 +0200 | [diff] [blame] | 3305 | echo " ($PASSES / $TESTS tests ($SKIPS skipped))" |
Manuel Pégourié-Gonnard | 33a752e | 2014-02-21 09:47:37 +0100 | [diff] [blame] | 3306 | |
| 3307 | exit $FAILS |