From: Matt Caswell Date: Mon, 12 Feb 2018 16:24:59 +0000 (+0000) Subject: If s->ctx is NULL then this is an internal error X-Git-Tag: OpenSSL_1_1_1-pre2~141 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c471521243c729d344c2ab641feed7cfb7b8a36d;p=oweals%2Fopenssl.git If s->ctx is NULL then this is an internal error Coverity was complaining because we checked if s->ctx is NULL and then later on in the function deref s->ctx anyway. In reality if s->ctx is NULL then this is an internal error. Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/5334) --- diff --git a/ssl/statem/extensions.c b/ssl/statem/extensions.c index 7d456f353a..722943fa69 100644 --- a/ssl/statem/extensions.c +++ b/ssl/statem/extensions.c @@ -915,11 +915,16 @@ static int final_server_name(SSL *s, unsigned int context, int sent) int altmp = SSL_AD_UNRECOGNIZED_NAME; int was_ticket = (SSL_get_options(s) & SSL_OP_NO_TICKET) == 0; - if (s->ctx != NULL && s->ctx->ext.servername_cb != 0) + if (!ossl_assert(s->ctx != NULL) || !ossl_assert(s->session_ctx != NULL)) { + SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_SERVER_NAME, + ERR_R_INTERNAL_ERROR); + return 0; + } + + if (s->ctx->ext.servername_cb != NULL) ret = s->ctx->ext.servername_cb(s, &altmp, s->ctx->ext.servername_arg); - else if (s->session_ctx != NULL - && s->session_ctx->ext.servername_cb != 0) + else if (s->session_ctx->ext.servername_cb != NULL) ret = s->session_ctx->ext.servername_cb(s, &altmp, s->session_ctx->ext.servername_arg);