]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Don't complain and fail about unknown TLSv1.3 PSK identities in s_server
authorMatt Caswell <matt@openssl.org>
Thu, 18 Oct 2018 13:45:59 +0000 (14:45 +0100)
committerMatt Caswell <matt@openssl.org>
Fri, 19 Oct 2018 14:19:15 +0000 (15:19 +0100)
An unknown PSK identity could be because its actually a session resumption
attempt. Sessions resumptions and external PSKs are indistinguishable so
the callbacks need to fail gracefully if they don't recognise the identity.

Fixes #7433

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7434)

apps/s_server.c

index 6f2a2ae8e2313a8e9b835fc126d79631724ec2ad..ac7dca607ba471f7fc90c72b43acda28ecf265ed 100644 (file)
@@ -193,9 +193,8 @@ static int psk_find_session_cb(SSL *ssl, const unsigned char *identity,
 
     if (strlen(psk_identity) != identity_len
             || memcmp(psk_identity, identity, identity_len) != 0) {
-        BIO_printf(bio_s_out,
-                   "PSK warning: client identity not what we expected"
-                   " (got '%s' expected '%s')\n", identity, psk_identity);
+        *sess = NULL;
+        return 1;
     }
 
     if (psksess != NULL) {