xref: /openssl/ssl/s3_msg.c (revision 38b051a1)
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 
ssl3_do_change_cipher_spec(SSL_CONNECTION * s)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 
ssl3_send_alert(SSL_CONNECTION * s,int level,int desc)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 
ssl3_dispatch_alert(SSL * s)78 int ssl3_dispatch_alert(SSL *s)
79 {
80     int i, j;
81     size_t alertlen;
82     void (*cb) (const SSL *ssl, int type, int val) = NULL;
83     size_t written;
84     SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL(s);
85 
86     if (sc == NULL)
87         return -1;
88 
89     sc->s3.alert_dispatch = 0;
90     alertlen = 2;
91     i = do_ssl3_write(sc, SSL3_RT_ALERT, &sc->s3.send_alert[0], &alertlen, 1, 0,
92                       &written);
93     if (i <= 0) {
94         sc->s3.alert_dispatch = 1;
95     } else {
96         /*
97          * Alert sent to BIO - now flush. If the message does not get sent due
98          * to non-blocking IO, we will not worry too much.
99          */
100         (void)BIO_flush(sc->wbio);
101 
102         if (sc->msg_callback)
103             sc->msg_callback(1, sc->version, SSL3_RT_ALERT, sc->s3.send_alert,
104                              2, s, sc->msg_callback_arg);
105 
106         if (sc->info_callback != NULL)
107             cb = sc->info_callback;
108         else if (s->ctx->info_callback != NULL)
109             cb = s->ctx->info_callback;
110 
111         if (cb != NULL) {
112             j = (sc->s3.send_alert[0] << 8) | sc->s3.send_alert[1];
113             cb(s, SSL_CB_WRITE_ALERT, j);
114         }
115     }
116     return i;
117 }
118