From f03440bc28813880f28cd8e27561e6c5153ee5bd Mon Sep 17 00:00:00 2001 From: Dirk Date: Wed, 5 Mar 2025 17:22:01 +0100 Subject: [PATCH] Speed up startup checks for supported curves and more In order to avoid delays due to lookups of the hostname "invalid." we just avoid to use "invalid." whenever possible. :-) Therefore we just do a test before whether `$OPENSSL s_client 2>&1 &1 | grep -aiq "unknown option"; then + *) if $OPENSSL s_client $NXCONNECT "$1" &1 | grep -aiq "unknown option"; then return 7 fi ;; @@ -20394,9 +20395,8 @@ find_openssl_binary() { local s_client_has2=$TEMPDIR/s_client_has2.txt local s_client_starttls_has=$TEMPDIR/s_client_starttls_has.txt local s_client_starttls_has2=$TEMPDIR/s_client_starttls_has2 - local openssl_location cwd="" - local ossl_wo_dev_info - local curve + local openssl_location="" cwd="" + local curve="" local ossl_line1="" yr="" local -a curves_ossl=("sect163k1" "sect163r1" "sect163r2" "sect193r1" "sect193r2" "sect233k1" "sect233r1" "sect239k1" "sect283k1" "sect283r1" "sect409k1" "sect409r1" "sect571k1" "sect571r1" "secp160k1" "secp160r1" "secp160r2" "secp192k1" "prime192v1" "secp224k1" "secp224r1" "secp256k1" "prime256v1" "secp384r1" "secp521r1" "brainpoolP256r1" "brainpoolP384r1" "brainpoolP512r1" "X25519" "X448" "brainpoolP256r1tls13" "brainpoolP384r1tls13" "brainpoolP512r1tls13" "ffdhe2048" "ffdhe3072" "ffdhe4096" "ffdhe6144" "ffdhe8192") @@ -20410,7 +20410,7 @@ find_openssl_binary() { # 2. otherwise, only if on Bash on Windows, use system binaries only. SYSTEM2="WSL" # Workaround for delayed responses of Windows DNS when using "invalid.", see #1738, #1812. - [[ $NXCONNECT == invalid. ]] && NXCONNECT=127.0.0.1:0 + [[ $NXDNS == invalid. ]] && NXDNS=127.0.0.1:0 elif test_openssl_suffix "$TESTSSL_INSTALL_DIR"; then : # 3. otherwise try openssl in path of testssl.sh elif test_openssl_suffix "$TESTSSL_INSTALL_DIR/bin"; then @@ -20559,10 +20559,21 @@ find_openssl_binary() { $OPENSSL pkey -help 2>&1 | grep -q Error || HAS_PKEY=true $OPENSSL pkeyutl 2>&1 | grep -q Error || HAS_PKUTIL=true - # Below and at other occurrences we do a little trick using "$NXCONNECT" to avoid plain and + if [[ SYSTEM2 == "WSL" ]]; then + NXCONNECT=-connect $NXDNS + else + # Do we need -connect invalid. or the like? If this connects and bails out with an error message, we do not + if $OPENSSL s_client 2>&1 &1 | grep -aiq "unknown option" || HAS_SIGALGS=true + $OPENSSL s_client -tls1_3 -sigalgs PSS+SHA256:PSS+SHA384 $NXCONNECT &1 | grep -aiq "unknown option" || HAS_SIGALGS=true fi $OPENSSL s_client -noservername &1 | grep -aiq "unknown option" || HAS_NOSERVERNAME=true @@ -20574,21 +20585,24 @@ find_openssl_binary() { $OPENSSL s_client -no_comp &1 | grep -aiq "unknown option" || HAS_NO_COMP=true OPENSSL_NR_CIPHERS=$(count_ciphers "$(actually_supported_osslciphers 'ALL:COMPLEMENTOFALL' 'ALL')") - # The following statement works with OpenSSL 1.0.2, 1.1.1 and 3.0 and LibreSSL 3.4 if $OPENSSL s_client -curves &1 | grep -aiq "unknown option"; then - # LibreSSL (tested with version 3.4.1 and 3.0.2) need -groups instead of -curve - # WSL users connect to "127.0.0.1:0", others to "invalid." or "invalid.:0" - # The $OPENSSL connect call deliberately fails: when the curve isn't available with the described error messages - for curve in "${curves_ossl[@]}"; do - $OPENSSL s_client -groups $curve -connect ${NXCONNECT%:*}:0 &1 | grep -Eiaq "Error with command|unknown option|Failed to set groups" - [[ $? -ne 0 ]] && OSSL_SUPPORTED_CURVES+=" $curve " - done + if $OPENSSL s_client -groups &1 | grep -aiq "unknown option"; then + # this is for openssl versions like 0.9.8, they do not have -groups or -curves -- just to be safe + : + else + # LibreSSL (tested with version 3.4.1 and 3.0.2) need -groups instead of -curve + # WSL users connect to "127.0.0.1:0", others to "invalid." or "invalid.:0" + # The $OPENSSL connect call deliberately fails: when the curve isn't available with the described error messages + for curve in "${curves_ossl[@]}"; do + $OPENSSL s_client -groups $curve $NXCONNECT &1 | grep -Eiaq "Error with command|unknown option|Failed to set groups" + [[ $? -ne 0 ]] && OSSL_SUPPORTED_CURVES+=" $curve " + done + fi else HAS_CURVES=true for curve in "${curves_ossl[@]}"; do # Same as above, we just don't need a port for invalid. - #FIXME: openssl 3 sometimes seems to hang when using '-connect invalid.' for up to 10 seconds - $OPENSSL s_client -curves $curve -connect $NXCONNECT &1 | grep -Eiaq "Error with command|unknown option|Call to SSL_CONF_cmd(.*) failed|cannot be set" + $OPENSSL s_client -curves $curve $NXCONNECT &1 | grep -Eiaq "Error with command|unknown option|Call to SSL_CONF_cmd(.*) failed|cannot be set" [[ $? -ne 0 ]] && OSSL_SUPPORTED_CURVES+=" $curve " done fi