2018-06-20 07:26:44 +02:00
# commit 28962c9
# BUG/MAJOR: ssl: OpenSSL context is stored in non-reserved memory slot
#
# We never saw unexplicated crash with SSL, so I suppose that we are
# luck, or the slot 0 is always reserved. Anyway the usage of the macro
# SSL_get_app_data() and SSL_set_app_data() seem wrong. This patch change
# the deprecated functions SSL_get_app_data() and SSL_set_app_data()
# by the new functions SSL_get_ex_data() and SSL_set_ex_data(), and
# it reserves the slot in the SSL memory space.
#
# For information, this is the two declaration which seems wrong or
# incomplete in the OpenSSL ssl.h file. We can see the usage of the
# slot 0 whoch is hardcoded, but never reserved.
#
# #define SSL_set_app_data(s,arg) (SSL_set_ex_data(s,0,(char *)arg))
# #define SSL_get_app_data(s) (SSL_get_ex_data(s,0))
2019-03-29 15:07:24 +01:00
#REGTEST_TYPE=bug
2018-06-20 07:26:44 +02:00
varnishtest "OpenSSL bug: Random crashes"
2019-04-17 12:19:56 +05:00
#REQUIRE_OPTIONS=OPENSSL
2018-06-20 07:26:44 +02:00
feature ignore_unknown_macro
haproxy h1 -conf {
global
tune.ssl.default-dh-param 2048
2021-07-13 19:04:24 +02:00
tune.ssl.capture-buffer-size 1
2018-06-20 07:26:44 +02:00
listen frt
mode http
bind "fd@${frt}" ssl crt ${testdir}/common.pem
http-request redirect location /
} -start
2018-07-12 10:48:06 +02:00
shell {
HOST=${h1_frt_addr}
if [ "${h1_frt_addr}" = "::1" ] ; then
2018-07-13 10:44:12 +02:00
HOST="\[::1\]"
2018-07-12 10:48:06 +02:00
fi
for i in 1 2 3 4 5; do
curl -i -k https://$HOST:${h1_frt_port} & pids="$pids $!"
done
wait $pids
}