hkdf: when HMAC key is all zeros, still set a valid key length
[openssl.git] / ssl / s3_msg.c
1 /*
2  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include "ssl_local.h"
11
12 int ssl3_do_change_cipher_spec(SSL_CONNECTION *s)
13 {
14     int i;
15     SSL *ssl = SSL_CONNECTION_GET_SSL(s);
16
17     if (s->server)
18         i = SSL3_CHANGE_CIPHER_SERVER_READ;
19     else
20         i = SSL3_CHANGE_CIPHER_CLIENT_READ;
21
22     if (s->s3.tmp.key_block == NULL) {
23         if (s->session == NULL || s->session->master_key_length == 0) {
24             /* might happen if dtls1_read_bytes() calls this */
25             ERR_raise(ERR_LIB_SSL, SSL_R_CCS_RECEIVED_EARLY);
26             return 0;
27         }
28
29         s->session->cipher = s->s3.tmp.new_cipher;
30         if (!ssl->method->ssl3_enc->setup_key_block(s)) {
31             /* SSLfatal() already called */
32             return 0;
33         }
34     }
35
36     if (!ssl->method->ssl3_enc->change_cipher_state(s, i)) {
37         /* SSLfatal() already called */
38         return 0;
39     }
40
41     return 1;
42 }
43
44 int ssl3_send_alert(SSL_CONNECTION *s, int level, int desc)
45 {
46     SSL *ssl = SSL_CONNECTION_GET_SSL(s);
47
48     /* Map tls/ssl alert value to correct one */
49     if (SSL_CONNECTION_TREAT_AS_TLS13(s))
50         desc = tls13_alert_code(desc);
51     else
52         desc = ssl->method->ssl3_enc->alert_value(desc);
53     if (s->version == SSL3_VERSION && desc == SSL_AD_PROTOCOL_VERSION)
54         desc = SSL_AD_HANDSHAKE_FAILURE; /* SSL 3.0 does not have
55                                           * protocol_version alerts */
56     if (desc < 0)
57         return -1;
58     if (s->shutdown & SSL_SENT_SHUTDOWN && desc != SSL_AD_CLOSE_NOTIFY)
59         return -1;
60     /* If a fatal one, remove from cache */
61     if ((level == SSL3_AL_FATAL) && (s->session != NULL))
62         SSL_CTX_remove_session(s->session_ctx, s->session);
63
64     s->s3.alert_dispatch = 1;
65     s->s3.send_alert[0] = level;
66     s->s3.send_alert[1] = desc;
67     if (!RECORD_LAYER_write_pending(&s->rlayer)) {
68         /* data still being written out? */
69         return ssl->method->ssl_dispatch_alert(ssl);
70     }
71     /*
72      * else data is still being written out, we will get written some time in
73      * the future
74      */
75     return -1;
76 }
77
78 int ssl3_dispatch_alert(SSL *s)
79 {
80     int i, j;
81     void (*cb) (const SSL *ssl, int type, int val) = NULL;
82     SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
83     OSSL_RECORD_TEMPLATE templ;
84
85     if (sc == NULL)
86         return -1;
87
88     sc->s3.alert_dispatch = 0;
89
90     if (sc->rlayer.wrlmethod == NULL) {
91         /* No write record layer so we can't sent and alert. We just ignore it */
92         return 1;
93     }
94
95     templ.type = SSL3_RT_ALERT;
96     templ.version = (sc->version == TLS1_3_VERSION) ? TLS1_2_VERSION
97                                                     : sc->version;
98     if (SSL_get_state(s) == TLS_ST_CW_CLNT_HELLO
99             && !sc->renegotiate
100             && TLS1_get_version(s) > TLS1_VERSION
101             && sc->hello_retry_request == SSL_HRR_NONE) {
102         templ.version = TLS1_VERSION;
103     }
104     templ.buf = &sc->s3.send_alert[0];
105     templ.buflen = 2;
106
107     /* TODO(RECLAYER): What happens if there is already a write pending? */
108     if (RECORD_LAYER_write_pending(&sc->rlayer))
109         return -1;
110
111     i = HANDLE_RLAYER_WRITE_RETURN(sc,
112             sc->rlayer.wrlmethod->write_records(sc->rlayer.wrl, &templ, 1));
113     if (i <= 0) {
114         sc->s3.alert_dispatch = 1;
115     } else {
116         /*
117          * Alert sent to BIO - now flush. If the message does not get sent due
118          * to non-blocking IO, we will not worry too much.
119          */
120         (void)BIO_flush(sc->wbio);
121
122         if (sc->msg_callback)
123             sc->msg_callback(1, sc->version, SSL3_RT_ALERT, sc->s3.send_alert,
124                              2, s, sc->msg_callback_arg);
125
126         if (sc->info_callback != NULL)
127             cb = sc->info_callback;
128         else if (s->ctx->info_callback != NULL)
129             cb = s->ctx->info_callback;
130
131         if (cb != NULL) {
132             j = (sc->s3.send_alert[0] << 8) | sc->s3.send_alert[1];
133             cb(s, SSL_CB_WRITE_ALERT, j);
134         }
135     }
136     return i;
137 }