Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 1 | /* Copyright (c) 2016, Google Inc. |
| 2 | * |
| 3 | * Permission to use, copy, modify, and/or distribute this software for any |
| 4 | * purpose with or without fee is hereby granted, provided that the above |
| 5 | * copyright notice and this permission notice appear in all copies. |
| 6 | * |
| 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION |
| 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ |
| 14 | |
| 15 | #include <openssl/ssl.h> |
| 16 | |
| 17 | #include <assert.h> |
| 18 | #include <string.h> |
| 19 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 20 | #include <utility> |
| 21 | |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 22 | #include <openssl/bytestring.h> |
| 23 | #include <openssl/err.h> |
| 24 | #include <openssl/hkdf.h> |
| 25 | #include <openssl/mem.h> |
| 26 | #include <openssl/stack.h> |
| 27 | #include <openssl/x509.h> |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 28 | |
David Benjamin | ffb1107 | 2016-11-13 10:32:10 +0900 | [diff] [blame] | 29 | #include "../crypto/internal.h" |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 30 | #include "internal.h" |
| 31 | |
| 32 | |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 33 | namespace bssl { |
| 34 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 35 | // kMaxKeyUpdates is the number of consecutive KeyUpdates that will be |
| 36 | // processed. Without this limit an attacker could force unbounded processing |
| 37 | // without being able to return application data. |
Steven Valdez | 32635b8 | 2016-08-16 11:25:03 -0400 | [diff] [blame] | 38 | static const uint8_t kMaxKeyUpdates = 32; |
| 39 | |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 40 | int tls13_get_cert_verify_signature_input( |
Steven Valdez | 908ac19 | 2017-01-12 13:17:07 -0500 | [diff] [blame] | 41 | SSL_HANDSHAKE *hs, uint8_t **out, size_t *out_len, |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 42 | enum ssl_cert_verify_context_t cert_verify_context) { |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 43 | ScopedCBB cbb; |
| 44 | if (!CBB_init(cbb.get(), 64 + 33 + 1 + 2 * EVP_MAX_MD_SIZE)) { |
| 45 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 46 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | for (size_t i = 0; i < 64; i++) { |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 50 | if (!CBB_add_u8(cbb.get(), 0x20)) { |
| 51 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 52 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 53 | } |
| 54 | } |
| 55 | |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 56 | const uint8_t *context; |
| 57 | size_t context_len; |
| 58 | if (cert_verify_context == ssl_cert_verify_server) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 59 | // Include the NUL byte. |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 60 | static const char kContext[] = "TLS 1.3, server CertificateVerify"; |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 61 | context = (const uint8_t *)kContext; |
| 62 | context_len = sizeof(kContext); |
| 63 | } else if (cert_verify_context == ssl_cert_verify_client) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 64 | static const char kContext[] = "TLS 1.3, client CertificateVerify"; |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 65 | context = (const uint8_t *)kContext; |
| 66 | context_len = sizeof(kContext); |
| 67 | } else if (cert_verify_context == ssl_cert_verify_channel_id) { |
| 68 | static const char kContext[] = "TLS 1.3, Channel ID"; |
| 69 | context = (const uint8_t *)kContext; |
| 70 | context_len = sizeof(kContext); |
| 71 | } else { |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 72 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 73 | return 0; |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 74 | } |
| 75 | |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 76 | if (!CBB_add_bytes(cbb.get(), context, context_len)) { |
| 77 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 78 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 79 | } |
| 80 | |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 81 | uint8_t context_hash[EVP_MAX_MD_SIZE]; |
| 82 | size_t context_hash_len; |
David Benjamin | 6dc8bf6 | 2017-07-19 16:38:21 -0400 | [diff] [blame] | 83 | if (!hs->transcript.GetHash(context_hash, &context_hash_len) || |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 84 | !CBB_add_bytes(cbb.get(), context_hash, context_hash_len) || |
| 85 | !CBB_finish(cbb.get(), out, out_len)) { |
| 86 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 87 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | return 1; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 91 | } |
| 92 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 93 | int tls13_process_certificate(SSL_HANDSHAKE *hs, const SSLMessage &msg, |
| 94 | int allow_anonymous) { |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 95 | SSL *const ssl = hs->ssl; |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 96 | CBS body = msg.body, context, certificate_list; |
| 97 | if (!CBS_get_u8_length_prefixed(&body, &context) || |
David Benjamin | e664a53 | 2017-07-20 20:19:36 -0400 | [diff] [blame] | 98 | CBS_len(&context) != 0 || |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 99 | !CBS_get_u24_length_prefixed(&body, &certificate_list) || |
| 100 | CBS_len(&body) != 0) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 101 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 102 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 103 | return 0; |
| 104 | } |
| 105 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 106 | UniquePtr<STACK_OF(CRYPTO_BUFFER)> certs(sk_CRYPTO_BUFFER_new_null()); |
| 107 | if (!certs) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 108 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 109 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 110 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 111 | } |
| 112 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 113 | const bool retain_sha256 = |
| 114 | ssl->server && ssl->retain_only_sha256_of_client_certs; |
| 115 | UniquePtr<EVP_PKEY> pkey; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 116 | while (CBS_len(&certificate_list) > 0) { |
| 117 | CBS certificate, extensions; |
| 118 | if (!CBS_get_u24_length_prefixed(&certificate_list, &certificate) || |
Adam Langley | 68e7124 | 2016-12-12 11:06:16 -0800 | [diff] [blame] | 119 | !CBS_get_u16_length_prefixed(&certificate_list, &extensions) || |
| 120 | CBS_len(&certificate) == 0) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 121 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 122 | OPENSSL_PUT_ERROR(SSL, SSL_R_CERT_LENGTH_MISMATCH); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 123 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 124 | } |
| 125 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 126 | if (sk_CRYPTO_BUFFER_num(certs.get()) == 0) { |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 127 | pkey = ssl_cert_parse_pubkey(&certificate); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 128 | if (!pkey) { |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 129 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 130 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 131 | return 0; |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 132 | } |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 133 | // TLS 1.3 always uses certificate keys for signing thus the correct |
| 134 | // keyUsage is enforced. |
Adam Langley | a4b9198 | 2016-12-12 12:05:53 -0800 | [diff] [blame] | 135 | if (!ssl_cert_check_digital_signature_key_usage(&certificate)) { |
| 136 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_ILLEGAL_PARAMETER); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 137 | return 0; |
Adam Langley | a4b9198 | 2016-12-12 12:05:53 -0800 | [diff] [blame] | 138 | } |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 139 | |
| 140 | if (retain_sha256) { |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 141 | // Retain the hash of the leaf certificate if requested. |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 142 | SHA256(CBS_data(&certificate), CBS_len(&certificate), |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 143 | hs->new_session->peer_sha256); |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 144 | } |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 145 | } |
| 146 | |
David Benjamin | 6e9321f | 2017-07-25 23:49:58 -0400 | [diff] [blame] | 147 | UniquePtr<CRYPTO_BUFFER> buf( |
| 148 | CRYPTO_BUFFER_new_from_CBS(&certificate, ssl->ctx->pool)); |
| 149 | if (!buf || |
| 150 | !PushToStack(certs.get(), std::move(buf))) { |
Adam Langley | e850909 | 2016-11-07 14:24:33 -0800 | [diff] [blame] | 151 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 152 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 153 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 154 | } |
| 155 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 156 | // Parse out the extensions. |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 157 | int have_status_request = 0, have_sct = 0; |
| 158 | CBS status_request, sct; |
David Benjamin | ffb1107 | 2016-11-13 10:32:10 +0900 | [diff] [blame] | 159 | const SSL_EXTENSION_TYPE ext_types[] = { |
| 160 | {TLSEXT_TYPE_status_request, &have_status_request, &status_request}, |
| 161 | {TLSEXT_TYPE_certificate_timestamp, &have_sct, &sct}, |
| 162 | }; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 163 | |
Adam Langley | c68e5b9 | 2017-02-08 13:33:15 -0800 | [diff] [blame] | 164 | uint8_t alert = SSL_AD_DECODE_ERROR; |
David Benjamin | ffb1107 | 2016-11-13 10:32:10 +0900 | [diff] [blame] | 165 | if (!ssl_parse_extensions(&extensions, &alert, ext_types, |
Steven Valdez | 08b65f4 | 2016-12-07 15:29:45 -0500 | [diff] [blame] | 166 | OPENSSL_ARRAY_SIZE(ext_types), |
| 167 | 0 /* reject unknown */)) { |
David Benjamin | ffb1107 | 2016-11-13 10:32:10 +0900 | [diff] [blame] | 168 | ssl3_send_alert(ssl, SSL3_AL_FATAL, alert); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 169 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 170 | } |
| 171 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 172 | // All Certificate extensions are parsed, but only the leaf extensions are |
| 173 | // stored. |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 174 | if (have_status_request) { |
| 175 | if (ssl->server || !ssl->ocsp_stapling_enabled) { |
| 176 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_EXTENSION); |
| 177 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_UNSUPPORTED_EXTENSION); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 178 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | uint8_t status_type; |
| 182 | CBS ocsp_response; |
| 183 | if (!CBS_get_u8(&status_request, &status_type) || |
| 184 | status_type != TLSEXT_STATUSTYPE_ocsp || |
| 185 | !CBS_get_u24_length_prefixed(&status_request, &ocsp_response) || |
| 186 | CBS_len(&ocsp_response) == 0 || |
| 187 | CBS_len(&status_request) != 0) { |
| 188 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 189 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 190 | } |
| 191 | |
David Benjamin | 8fc2dc0 | 2017-08-22 15:07:51 -0700 | [diff] [blame] | 192 | if (sk_CRYPTO_BUFFER_num(certs.get()) == 1) { |
| 193 | CRYPTO_BUFFER_free(hs->new_session->ocsp_response); |
| 194 | hs->new_session->ocsp_response = |
| 195 | CRYPTO_BUFFER_new_from_CBS(&ocsp_response, ssl->ctx->pool); |
| 196 | if (hs->new_session->ocsp_response == nullptr) { |
| 197 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 198 | return 0; |
| 199 | } |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 200 | } |
| 201 | } |
| 202 | |
| 203 | if (have_sct) { |
| 204 | if (ssl->server || !ssl->signed_cert_timestamps_enabled) { |
| 205 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_EXTENSION); |
| 206 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_UNSUPPORTED_EXTENSION); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 207 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 208 | } |
| 209 | |
Adam Langley | cfa08c3 | 2016-11-17 13:21:27 -0800 | [diff] [blame] | 210 | if (!ssl_is_sct_list_valid(&sct)) { |
| 211 | OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_PARSING_EXTENSION); |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 212 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 213 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 214 | } |
| 215 | |
David Benjamin | 8fc2dc0 | 2017-08-22 15:07:51 -0700 | [diff] [blame] | 216 | if (sk_CRYPTO_BUFFER_num(certs.get()) == 1) { |
| 217 | CRYPTO_BUFFER_free(hs->new_session->signed_cert_timestamp_list); |
| 218 | hs->new_session->signed_cert_timestamp_list = |
| 219 | CRYPTO_BUFFER_new_from_CBS(&sct, ssl->ctx->pool); |
| 220 | if (hs->new_session->signed_cert_timestamp_list == nullptr) { |
| 221 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 222 | return 0; |
| 223 | } |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 228 | // Store a null certificate list rather than an empty one if the peer didn't |
| 229 | // send certificates. |
David Benjamin | e664a53 | 2017-07-20 20:19:36 -0400 | [diff] [blame] | 230 | if (sk_CRYPTO_BUFFER_num(certs.get()) == 0) { |
| 231 | certs.reset(); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 232 | } |
| 233 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 234 | hs->peer_pubkey = std::move(pkey); |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 235 | |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 236 | sk_CRYPTO_BUFFER_pop_free(hs->new_session->certs, CRYPTO_BUFFER_free); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 237 | hs->new_session->certs = certs.release(); |
Adam Langley | 68e7124 | 2016-12-12 11:06:16 -0800 | [diff] [blame] | 238 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 239 | if (!ssl->ctx->x509_method->session_cache_objects(hs->new_session.get())) { |
Adam Langley | 68e7124 | 2016-12-12 11:06:16 -0800 | [diff] [blame] | 240 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 241 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 242 | return 0; |
Adam Langley | 68e7124 | 2016-12-12 11:06:16 -0800 | [diff] [blame] | 243 | } |
| 244 | |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 245 | if (sk_CRYPTO_BUFFER_num(hs->new_session->certs) == 0) { |
David Benjamin | 4087df9 | 2016-08-01 20:16:31 -0400 | [diff] [blame] | 246 | if (!allow_anonymous) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 247 | OPENSSL_PUT_ERROR(SSL, SSL_R_PEER_DID_NOT_RETURN_A_CERTIFICATE); |
David Benjamin | 1db9e1b | 2016-10-07 20:51:43 -0400 | [diff] [blame] | 248 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_CERTIFICATE_REQUIRED); |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 249 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 250 | } |
| 251 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 252 | // OpenSSL returns X509_V_OK when no certificates are requested. This is |
| 253 | // classed by them as a bug, but it's assumed by at least NGINX. |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 254 | hs->new_session->verify_result = X509_V_OK; |
Adam Langley | 3764683 | 2016-08-01 16:16:46 -0700 | [diff] [blame] | 255 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 256 | // No certificate, so nothing more to do. |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 257 | return 1; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 258 | } |
| 259 | |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 260 | hs->new_session->peer_sha256_valid = retain_sha256; |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 261 | return 1; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 262 | } |
| 263 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 264 | int tls13_process_certificate_verify(SSL_HANDSHAKE *hs, const SSLMessage &msg) { |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 265 | SSL *const ssl = hs->ssl; |
Adam Langley | 0c29425 | 2016-12-12 11:46:09 -0800 | [diff] [blame] | 266 | if (hs->peer_pubkey == NULL) { |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 267 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 268 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 269 | } |
| 270 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 271 | CBS body = msg.body, signature; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 272 | uint16_t signature_algorithm; |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 273 | if (!CBS_get_u16(&body, &signature_algorithm) || |
| 274 | !CBS_get_u16_length_prefixed(&body, &signature) || |
| 275 | CBS_len(&body) != 0) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 276 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 277 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 278 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 279 | } |
| 280 | |
David Benjamin | 8d606e3 | 2017-06-15 22:43:04 -0400 | [diff] [blame] | 281 | uint8_t alert = SSL_AD_DECODE_ERROR; |
| 282 | if (!tls12_check_peer_sigalg(ssl, &alert, signature_algorithm)) { |
| 283 | ssl3_send_alert(ssl, SSL3_AL_FATAL, alert); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 284 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 285 | } |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 286 | hs->new_session->peer_signature_algorithm = signature_algorithm; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 287 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 288 | uint8_t *input = NULL; |
| 289 | size_t input_len; |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 290 | if (!tls13_get_cert_verify_signature_input( |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 291 | hs, &input, &input_len, |
Nick Harper | 60a85cb | 2016-09-23 16:25:11 -0700 | [diff] [blame] | 292 | ssl->server ? ssl_cert_verify_client : ssl_cert_verify_server)) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 293 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 294 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 295 | } |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 296 | UniquePtr<uint8_t> free_input(input); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 297 | |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 298 | int sig_ok = ssl_public_key_verify(ssl, CBS_data(&signature), |
| 299 | CBS_len(&signature), signature_algorithm, |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 300 | hs->peer_pubkey.get(), input, input_len); |
David Benjamin | 04aa694 | 2016-08-19 14:51:10 -0400 | [diff] [blame] | 301 | #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) |
| 302 | sig_ok = 1; |
| 303 | ERR_clear_error(); |
| 304 | #endif |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 305 | if (!sig_ok) { |
| 306 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_SIGNATURE); |
| 307 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECRYPT_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 308 | return 0; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 309 | } |
| 310 | |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 311 | return 1; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 312 | } |
| 313 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 314 | int tls13_process_finished(SSL_HANDSHAKE *hs, const SSLMessage &msg, |
| 315 | int use_saved_value) { |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 316 | SSL *const ssl = hs->ssl; |
David Benjamin | 794cc59 | 2017-03-25 22:24:23 -0500 | [diff] [blame] | 317 | uint8_t verify_data_buf[EVP_MAX_MD_SIZE]; |
| 318 | const uint8_t *verify_data; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 319 | size_t verify_data_len; |
David Benjamin | 794cc59 | 2017-03-25 22:24:23 -0500 | [diff] [blame] | 320 | if (use_saved_value) { |
| 321 | assert(ssl->server); |
| 322 | verify_data = hs->expected_client_finished; |
| 323 | verify_data_len = hs->hash_len; |
| 324 | } else { |
| 325 | if (!tls13_finished_mac(hs, verify_data_buf, &verify_data_len, |
| 326 | !ssl->server)) { |
| 327 | return 0; |
| 328 | } |
| 329 | verify_data = verify_data_buf; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 330 | } |
| 331 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 332 | int finished_ok = CBS_mem_equal(&msg.body, verify_data, verify_data_len); |
David Benjamin | 04aa694 | 2016-08-19 14:51:10 -0400 | [diff] [blame] | 333 | #if defined(BORINGSSL_UNSAFE_FUZZER_MODE) |
| 334 | finished_ok = 1; |
| 335 | #endif |
| 336 | if (!finished_ok) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 337 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECRYPT_ERROR); |
| 338 | OPENSSL_PUT_ERROR(SSL, SSL_R_DIGEST_CHECK_FAILED); |
| 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | return 1; |
| 343 | } |
| 344 | |
David Benjamin | 0f24bed | 2017-01-12 19:46:50 -0500 | [diff] [blame] | 345 | int tls13_add_certificate(SSL_HANDSHAKE *hs) { |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 346 | SSL *const ssl = hs->ssl; |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 347 | ScopedCBB cbb; |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 348 | CBB body, certificate_list; |
| 349 | if (!ssl->method->init_message(ssl, cbb.get(), &body, SSL3_MT_CERTIFICATE) || |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 350 | // The request context is always empty in the handshake. |
David Benjamin | 8a8349b | 2016-08-18 02:32:23 -0400 | [diff] [blame] | 351 | !CBB_add_u8(&body, 0) || |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 352 | !CBB_add_u24_length_prefixed(&body, &certificate_list)) { |
| 353 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 354 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | if (!ssl_has_certificate(ssl)) { |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 358 | return ssl_add_message_cbb(ssl, cbb.get()); |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | CERT *cert = ssl->cert; |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 362 | CRYPTO_BUFFER *leaf_buf = sk_CRYPTO_BUFFER_value(cert->chain, 0); |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 363 | CBB leaf, extensions; |
| 364 | if (!CBB_add_u24_length_prefixed(&certificate_list, &leaf) || |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 365 | !CBB_add_bytes(&leaf, CRYPTO_BUFFER_data(leaf_buf), |
| 366 | CRYPTO_BUFFER_len(leaf_buf)) || |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 367 | !CBB_add_u16_length_prefixed(&certificate_list, &extensions)) { |
| 368 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 369 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 370 | } |
| 371 | |
David Benjamin | 83a3212 | 2017-02-14 18:34:54 -0500 | [diff] [blame] | 372 | if (hs->scts_requested && ssl->cert->signed_cert_timestamp_list != NULL) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 373 | CBB contents; |
| 374 | if (!CBB_add_u16(&extensions, TLSEXT_TYPE_certificate_timestamp) || |
| 375 | !CBB_add_u16_length_prefixed(&extensions, &contents) || |
David Benjamin | 83a3212 | 2017-02-14 18:34:54 -0500 | [diff] [blame] | 376 | !CBB_add_bytes( |
| 377 | &contents, |
| 378 | CRYPTO_BUFFER_data(ssl->cert->signed_cert_timestamp_list), |
| 379 | CRYPTO_BUFFER_len(ssl->cert->signed_cert_timestamp_list)) || |
Adam Langley | 6f5f49f | 2016-11-18 11:05:00 -0800 | [diff] [blame] | 380 | !CBB_flush(&extensions)) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 381 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 382 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 383 | } |
| 384 | } |
| 385 | |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 386 | if (hs->ocsp_stapling_requested && |
David Benjamin | 83a3212 | 2017-02-14 18:34:54 -0500 | [diff] [blame] | 387 | ssl->cert->ocsp_response != NULL) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 388 | CBB contents, ocsp_response; |
| 389 | if (!CBB_add_u16(&extensions, TLSEXT_TYPE_status_request) || |
| 390 | !CBB_add_u16_length_prefixed(&extensions, &contents) || |
| 391 | !CBB_add_u8(&contents, TLSEXT_STATUSTYPE_ocsp) || |
| 392 | !CBB_add_u24_length_prefixed(&contents, &ocsp_response) || |
David Benjamin | 83a3212 | 2017-02-14 18:34:54 -0500 | [diff] [blame] | 393 | !CBB_add_bytes(&ocsp_response, |
| 394 | CRYPTO_BUFFER_data(ssl->cert->ocsp_response), |
| 395 | CRYPTO_BUFFER_len(ssl->cert->ocsp_response)) || |
Adam Langley | 6f5f49f | 2016-11-18 11:05:00 -0800 | [diff] [blame] | 396 | !CBB_flush(&extensions)) { |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 397 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 398 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 399 | } |
| 400 | } |
| 401 | |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 402 | for (size_t i = 1; i < sk_CRYPTO_BUFFER_num(cert->chain); i++) { |
| 403 | CRYPTO_BUFFER *cert_buf = sk_CRYPTO_BUFFER_value(cert->chain, i); |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 404 | CBB child; |
| 405 | if (!CBB_add_u24_length_prefixed(&certificate_list, &child) || |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 406 | !CBB_add_bytes(&child, CRYPTO_BUFFER_data(cert_buf), |
| 407 | CRYPTO_BUFFER_len(cert_buf)) || |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 408 | !CBB_add_u16(&certificate_list, 0 /* no extensions */)) { |
| 409 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 410 | return 0; |
Steven Valdez | a833c35 | 2016-11-01 13:39:36 -0400 | [diff] [blame] | 411 | } |
| 412 | } |
| 413 | |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 414 | return ssl_add_message_cbb(ssl, cbb.get()); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 415 | } |
| 416 | |
David Benjamin | 4414874 | 2017-06-17 13:20:59 -0400 | [diff] [blame] | 417 | enum ssl_private_key_result_t tls13_add_certificate_verify(SSL_HANDSHAKE *hs) { |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 418 | SSL *const ssl = hs->ssl; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 419 | uint16_t signature_algorithm; |
David Benjamin | f3c8f8d | 2016-11-17 17:20:47 +0900 | [diff] [blame] | 420 | if (!tls1_choose_signature_algorithm(hs, &signature_algorithm)) { |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 421 | return ssl_private_key_failure; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 422 | } |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 423 | |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 424 | ScopedCBB cbb; |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 425 | CBB body; |
| 426 | if (!ssl->method->init_message(ssl, cbb.get(), &body, |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 427 | SSL3_MT_CERTIFICATE_VERIFY) || |
| 428 | !CBB_add_u16(&body, signature_algorithm)) { |
| 429 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 430 | return ssl_private_key_failure; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 431 | } |
| 432 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 433 | // Sign the digest. |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 434 | CBB child; |
David Benjamin | 31b0c9b | 2017-07-20 14:49:15 -0400 | [diff] [blame] | 435 | const size_t max_sig_len = EVP_PKEY_size(hs->local_pubkey.get()); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 436 | uint8_t *sig; |
| 437 | size_t sig_len; |
| 438 | if (!CBB_add_u16_length_prefixed(&body, &child) || |
| 439 | !CBB_reserve(&child, &sig, max_sig_len)) { |
| 440 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 441 | return ssl_private_key_failure; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 442 | } |
| 443 | |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 444 | uint8_t *msg = NULL; |
| 445 | size_t msg_len; |
David Benjamin | 4414874 | 2017-06-17 13:20:59 -0400 | [diff] [blame] | 446 | if (!tls13_get_cert_verify_signature_input( |
| 447 | hs, &msg, &msg_len, |
| 448 | ssl->server ? ssl_cert_verify_server : ssl_cert_verify_client)) { |
| 449 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 450 | return ssl_private_key_failure; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 451 | } |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 452 | UniquePtr<uint8_t> free_msg(msg); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 453 | |
David Benjamin | 4414874 | 2017-06-17 13:20:59 -0400 | [diff] [blame] | 454 | enum ssl_private_key_result_t sign_result = ssl_private_key_sign( |
| 455 | hs, sig, &sig_len, max_sig_len, signature_algorithm, msg, msg_len); |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 456 | if (sign_result != ssl_private_key_success) { |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 457 | return sign_result; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | if (!CBB_did_write(&child, sig_len) || |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 461 | !ssl_add_message_cbb(ssl, cbb.get())) { |
| 462 | return ssl_private_key_failure; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 463 | } |
| 464 | |
David Benjamin | 81678aa | 2017-07-12 22:43:42 -0400 | [diff] [blame] | 465 | return ssl_private_key_success; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 466 | } |
| 467 | |
David Benjamin | 0f24bed | 2017-01-12 19:46:50 -0500 | [diff] [blame] | 468 | int tls13_add_finished(SSL_HANDSHAKE *hs) { |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 469 | SSL *const ssl = hs->ssl; |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 470 | size_t verify_data_len; |
| 471 | uint8_t verify_data[EVP_MAX_MD_SIZE]; |
| 472 | |
David Benjamin | 6e4fc33 | 2016-11-17 16:43:08 +0900 | [diff] [blame] | 473 | if (!tls13_finished_mac(hs, verify_data, &verify_data_len, ssl->server)) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 474 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 475 | OPENSSL_PUT_ERROR(SSL, SSL_R_DIGEST_CHECK_FAILED); |
| 476 | return 0; |
| 477 | } |
| 478 | |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 479 | ScopedCBB cbb; |
| 480 | CBB body; |
| 481 | if (!ssl->method->init_message(ssl, cbb.get(), &body, SSL3_MT_FINISHED) || |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 482 | !CBB_add_bytes(&body, verify_data, verify_data_len) || |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 483 | !ssl_add_message_cbb(ssl, cbb.get())) { |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | return 1; |
| 488 | } |
Steven Valdez | 8e1c7be | 2016-07-26 12:39:22 -0400 | [diff] [blame] | 489 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 490 | static int tls13_receive_key_update(SSL *ssl, const SSLMessage &msg) { |
| 491 | CBS body = msg.body; |
Steven Valdez | c4aa727 | 2016-10-03 12:25:56 -0400 | [diff] [blame] | 492 | uint8_t key_update_request; |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 493 | if (!CBS_get_u8(&body, &key_update_request) || |
| 494 | CBS_len(&body) != 0 || |
Steven Valdez | c4aa727 | 2016-10-03 12:25:56 -0400 | [diff] [blame] | 495 | (key_update_request != SSL_KEY_UPDATE_NOT_REQUESTED && |
| 496 | key_update_request != SSL_KEY_UPDATE_REQUESTED)) { |
Steven Valdez | 1dc53d2 | 2016-07-26 12:27:38 -0400 | [diff] [blame] | 497 | OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR); |
| 498 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 499 | return 0; |
| 500 | } |
| 501 | |
David Benjamin | bbba939 | 2017-04-06 12:54:12 -0400 | [diff] [blame] | 502 | if (!tls13_rotate_traffic_key(ssl, evp_aead_open)) { |
| 503 | return 0; |
| 504 | } |
| 505 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 506 | // Acknowledge the KeyUpdate |
David Benjamin | bbba939 | 2017-04-06 12:54:12 -0400 | [diff] [blame] | 507 | if (key_update_request == SSL_KEY_UPDATE_REQUESTED && |
| 508 | !ssl->s3->key_update_pending) { |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 509 | ScopedCBB cbb; |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 510 | CBB body_cbb; |
| 511 | if (!ssl->method->init_message(ssl, cbb.get(), &body_cbb, |
| 512 | SSL3_MT_KEY_UPDATE) || |
| 513 | !CBB_add_u8(&body_cbb, SSL_KEY_UPDATE_NOT_REQUESTED) || |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame] | 514 | !ssl_add_message_cbb(ssl, cbb.get()) || |
David Benjamin | bbba939 | 2017-04-06 12:54:12 -0400 | [diff] [blame] | 515 | !tls13_rotate_traffic_key(ssl, evp_aead_seal)) { |
David Benjamin | bbba939 | 2017-04-06 12:54:12 -0400 | [diff] [blame] | 516 | return 0; |
| 517 | } |
| 518 | |
David Benjamin | c11ea942 | 2017-08-29 16:33:21 -0400 | [diff] [blame] | 519 | // Suppress KeyUpdate acknowledgments until this change is written to the |
| 520 | // wire. This prevents us from accumulating write obligations when read and |
| 521 | // write progress at different rates. See draft-ietf-tls-tls13-18, section |
| 522 | // 4.5.3. |
David Benjamin | 046bc1f | 2017-08-31 15:06:42 -0400 | [diff] [blame^] | 523 | ssl->s3->key_update_pending = true; |
David Benjamin | bbba939 | 2017-04-06 12:54:12 -0400 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | return 1; |
Steven Valdez | 1dc53d2 | 2016-07-26 12:27:38 -0400 | [diff] [blame] | 527 | } |
| 528 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 529 | int tls13_post_handshake(SSL *ssl, const SSLMessage &msg) { |
| 530 | if (msg.type == SSL3_MT_KEY_UPDATE) { |
Steven Valdez | 32635b8 | 2016-08-16 11:25:03 -0400 | [diff] [blame] | 531 | ssl->s3->key_update_count++; |
| 532 | if (ssl->s3->key_update_count > kMaxKeyUpdates) { |
| 533 | OPENSSL_PUT_ERROR(SSL, SSL_R_TOO_MANY_KEY_UPDATES); |
| 534 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE); |
| 535 | return 0; |
| 536 | } |
| 537 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 538 | return tls13_receive_key_update(ssl, msg); |
Steven Valdez | 1dc53d2 | 2016-07-26 12:27:38 -0400 | [diff] [blame] | 539 | } |
| 540 | |
Steven Valdez | 32635b8 | 2016-08-16 11:25:03 -0400 | [diff] [blame] | 541 | ssl->s3->key_update_count = 0; |
| 542 | |
David Benjamin | 7934f08 | 2017-08-01 16:32:25 -0400 | [diff] [blame] | 543 | if (msg.type == SSL3_MT_NEW_SESSION_TICKET && !ssl->server) { |
| 544 | return tls13_process_new_session_ticket(ssl, msg); |
Steven Valdez | 8e1c7be | 2016-07-26 12:39:22 -0400 | [diff] [blame] | 545 | } |
| 546 | |
Steven Valdez | 8e1c7be | 2016-07-26 12:39:22 -0400 | [diff] [blame] | 547 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_UNEXPECTED_MESSAGE); |
| 548 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_MESSAGE); |
| 549 | return 0; |
| 550 | } |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 551 | |
| 552 | } // namespace bssl |