]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Backport of r1909558 from trunk:
authorStefan Eissing <icing@apache.org>
Tue, 2 May 2023 09:21:07 +0000 (09:21 +0000)
committerStefan Eissing <icing@apache.org>
Tue, 2 May 2023 09:21:07 +0000 (09:21 +0000)
  *) mod_tls: updating to rustls-ffi version 0.9.2 or higher.
     Checking in configure for proper version installed. Code
     fixes for changed clienthello member name.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1909561 13f79535-47bb-0310-9956-ffa450edef68

changes-entries/tls-rustls-update.txt [new file with mode: 0644]
modules/tls/config2.m4
modules/tls/tls_core.c

diff --git a/changes-entries/tls-rustls-update.txt b/changes-entries/tls-rustls-update.txt
new file mode 100644 (file)
index 0000000..9008d9e
--- /dev/null
@@ -0,0 +1,4 @@
+  *) mod_tls: updating to rustls-ffi version 0.9.2 or higher.
+     Checking in configure for proper version installed. Code
+     fixes for changed clienthello member name.
+     [Stefan Eissing]
\ No newline at end of file
index af97178866be602bf1db358bb77f673ec5825143..8a32490cb602ee47253230b779bc2f960b9e7419 100644 (file)
@@ -109,9 +109,10 @@ AC_DEFUN([APACHE_CHECK_RUSTLS],[
       fi
     fi
 
-    AC_MSG_CHECKING([for rustls version >= 0.8.2])
+    AC_MSG_CHECKING([for rustls version >= 0.9.2])
     AC_TRY_COMPILE([#include <rustls.h>],[
 rustls_version();
+rustls_acceptor_new();
 ],
       [AC_MSG_RESULT(OK)
        ac_cv_rustls=yes],
index 38c8873009102c2483d3ed219e90095737e08fa1..25479392f1ae68e84de693748d70a074ca5e54a9 100644 (file)
@@ -507,8 +507,8 @@ static const rustls_certified_key *extract_client_hello_values(
     ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, c, "extract client hello values");
     if (!cc) goto cleanup;
     cc->client_hello_seen = 1;
-    if (hello->sni_name.len > 0) {
-        cc->sni_hostname = apr_pstrndup(c->pool, hello->sni_name.data, hello->sni_name.len);
+    if (hello->server_name.len > 0) {
+        cc->sni_hostname = apr_pstrndup(c->pool, hello->server_name.data, hello->server_name.len);
         ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, c, "sni detected: %s", cc->sni_hostname);
     }
     else {