Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3 | * |
Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 4 | * Licensed under the OpenSSL license (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 |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 8 | */ |
Rich Salz | 846e33c | 2016-05-17 14:18:30 -0400 | [diff] [blame] | 9 | |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 10 | /* ==================================================================== |
| 11 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 12 | * |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 13 | * Portions of the attached software ("Contribution") are developed by |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 14 | * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. |
| 15 | * |
| 16 | * The Contribution is licensed pursuant to the OpenSSL open source |
| 17 | * license provided above. |
| 18 | * |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 19 | * ECC cipher suite support in OpenSSL originally written by |
| 20 | * Vipul Gupta and Sumit Gupta of Sun Microsystems Laboratories. |
| 21 | * |
| 22 | */ |
Nils Larsch | ddac197 | 2006-03-10 23:06:27 +0000 | [diff] [blame] | 23 | /* ==================================================================== |
| 24 | * Copyright 2005 Nokia. All rights reserved. |
| 25 | * |
| 26 | * The portions of the attached software ("Contribution") is developed by |
| 27 | * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
| 28 | * license. |
| 29 | * |
| 30 | * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
| 31 | * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
| 32 | * support (see RFC 4279) to OpenSSL. |
| 33 | * |
| 34 | * No patent licenses or other rights except those expressly stated in |
| 35 | * the OpenSSL open source license shall be deemed granted or received |
| 36 | * expressly, by implication, estoppel, or otherwise. |
| 37 | * |
| 38 | * No assurances are provided by Nokia that the Contribution does not |
| 39 | * infringe the patent or other intellectual property rights of any third |
| 40 | * party or that the license provides you with all the necessary rights |
| 41 | * to make use of the Contribution. |
| 42 | * |
| 43 | * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
| 44 | * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
| 45 | * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
| 46 | * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
| 47 | * OTHERWISE. |
| 48 | */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 49 | |
| 50 | #include <stdio.h> |
Matt Caswell | fc24f0b | 2017-01-17 10:43:37 +0000 | [diff] [blame] | 51 | #include <time.h> |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 52 | #include "../ssl_locl.h" |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 53 | #include "statem_locl.h" |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 54 | #include <openssl/buffer.h> |
| 55 | #include <openssl/rand.h> |
| 56 | #include <openssl/objects.h> |
| 57 | #include <openssl/evp.h> |
Ben Laurie | dbad169 | 2001-07-30 23:57:25 +0000 | [diff] [blame] | 58 | #include <openssl/md5.h> |
Rich Salz | 3c27208 | 2016-03-18 14:30:20 -0400 | [diff] [blame] | 59 | #include <openssl/dh.h> |
Geoff Thorpe | d095b68 | 2004-05-17 18:53:47 +0000 | [diff] [blame] | 60 | #include <openssl/bn.h> |
Rich Salz | 3c27208 | 2016-03-18 14:30:20 -0400 | [diff] [blame] | 61 | #include <openssl/engine.h> |
Richard Levitte | f9b3bff | 2000-11-30 22:53:34 +0000 | [diff] [blame] | 62 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 63 | static MSG_PROCESS_RETURN tls_process_hello_retry_request(SSL *s, PACKET *pkt); |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 64 | static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt); |
| 65 | |
Matt Caswell | 7ab0963 | 2015-12-23 09:45:02 +0000 | [diff] [blame] | 66 | static ossl_inline int cert_req_allowed(SSL *s); |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 67 | static int key_exchange_expected(SSL *s); |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 68 | static int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, |
Matt Caswell | ae2f7b3 | 2016-09-05 17:34:04 +0100 | [diff] [blame] | 69 | WPACKET *pkt); |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 70 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 71 | /* |
| 72 | * Is a CertificateRequest message allowed at the moment or not? |
| 73 | * |
| 74 | * Return values are: |
| 75 | * 1: Yes |
| 76 | * 0: No |
| 77 | */ |
Matt Caswell | 7ab0963 | 2015-12-23 09:45:02 +0000 | [diff] [blame] | 78 | static ossl_inline int cert_req_allowed(SSL *s) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 79 | { |
| 80 | /* TLS does not like anon-DH with client cert */ |
Matt Caswell | b7fa1f9 | 2015-10-26 23:11:44 +0000 | [diff] [blame] | 81 | if ((s->version > SSL3_VERSION |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 82 | && (s->s3->tmp.new_cipher->algorithm_auth & SSL_aNULL)) |
| 83 | || (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aSRP | SSL_aPSK))) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 84 | return 0; |
| 85 | |
| 86 | return 1; |
| 87 | } |
| 88 | |
| 89 | /* |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 90 | * Should we expect the ServerKeyExchange message or not? |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 91 | * |
| 92 | * Return values are: |
| 93 | * 1: Yes |
| 94 | * 0: No |
| 95 | */ |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 96 | static int key_exchange_expected(SSL *s) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 97 | { |
| 98 | long alg_k = s->s3->tmp.new_cipher->algorithm_mkey; |
| 99 | |
| 100 | /* |
| 101 | * Can't skip server key exchange if this is an ephemeral |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 102 | * ciphersuite or for SRP |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 103 | */ |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 104 | if (alg_k & (SSL_kDHE | SSL_kECDHE | SSL_kDHEPSK | SSL_kECDHEPSK |
| 105 | | SSL_kSRP)) { |
| 106 | return 1; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 109 | return 0; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | /* |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 113 | * ossl_statem_client_read_transition() encapsulates the logic for the allowed |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 114 | * handshake state transitions when a TLS1.3 client is reading messages from the |
| 115 | * server. The message type that the server has sent is provided in |mt|. The |
| 116 | * current state is in |s->statem.hand_state|. |
| 117 | * |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 118 | * Return values are 1 for success (transition allowed) and 0 on error |
| 119 | * (transition not allowed) |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 120 | */ |
| 121 | static int ossl_statem_client13_read_transition(SSL *s, int mt) |
| 122 | { |
| 123 | OSSL_STATEM *st = &s->statem; |
| 124 | |
| 125 | /* |
| 126 | * Note: There is no case for TLS_ST_CW_CLNT_HELLO, because we haven't |
| 127 | * yet negotiated TLSv1.3 at that point so that is handled by |
| 128 | * ossl_statem_client_read_transition() |
| 129 | */ |
| 130 | |
| 131 | switch (st->hand_state) { |
| 132 | default: |
| 133 | break; |
| 134 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 135 | case TLS_ST_CW_CLNT_HELLO: |
| 136 | /* |
| 137 | * This must a ClientHello following a HelloRetryRequest, so the only |
| 138 | * thing we can get now is a ServerHello. |
| 139 | */ |
| 140 | if (mt == SSL3_MT_SERVER_HELLO) { |
| 141 | st->hand_state = TLS_ST_CR_SRVR_HELLO; |
| 142 | return 1; |
| 143 | } |
| 144 | break; |
| 145 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 146 | case TLS_ST_CR_SRVR_HELLO: |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 147 | if (mt == SSL3_MT_ENCRYPTED_EXTENSIONS) { |
| 148 | st->hand_state = TLS_ST_CR_ENCRYPTED_EXTENSIONS; |
| 149 | return 1; |
| 150 | } |
| 151 | break; |
| 152 | |
| 153 | case TLS_ST_CR_ENCRYPTED_EXTENSIONS: |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 154 | if (s->hit) { |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 155 | if (mt == SSL3_MT_FINISHED) { |
| 156 | st->hand_state = TLS_ST_CR_FINISHED; |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 157 | return 1; |
| 158 | } |
| 159 | } else { |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 160 | if (mt == SSL3_MT_CERTIFICATE_REQUEST) { |
| 161 | st->hand_state = TLS_ST_CR_CERT_REQ; |
| 162 | return 1; |
Matt Caswell | f5ca0b0 | 2016-11-21 12:10:35 +0000 | [diff] [blame] | 163 | } |
| 164 | if (mt == SSL3_MT_CERTIFICATE) { |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 165 | st->hand_state = TLS_ST_CR_CERT; |
| 166 | return 1; |
| 167 | } |
| 168 | } |
| 169 | break; |
| 170 | |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 171 | case TLS_ST_CR_CERT_REQ: |
| 172 | if (mt == SSL3_MT_CERTIFICATE) { |
| 173 | st->hand_state = TLS_ST_CR_CERT; |
| 174 | return 1; |
| 175 | } |
| 176 | break; |
| 177 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 178 | case TLS_ST_CR_CERT: |
Matt Caswell | 2c5dfdc | 2016-12-05 17:04:51 +0000 | [diff] [blame] | 179 | if (mt == SSL3_MT_CERTIFICATE_VERIFY) { |
| 180 | st->hand_state = TLS_ST_CR_CERT_VRFY; |
| 181 | return 1; |
| 182 | } |
| 183 | break; |
| 184 | |
| 185 | case TLS_ST_CR_CERT_VRFY: |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 186 | if (mt == SSL3_MT_FINISHED) { |
| 187 | st->hand_state = TLS_ST_CR_FINISHED; |
| 188 | return 1; |
| 189 | } |
| 190 | break; |
Matt Caswell | cc2455b | 2017-01-11 17:18:19 +0000 | [diff] [blame] | 191 | |
| 192 | case TLS_ST_OK: |
| 193 | if (mt == SSL3_MT_NEWSESSION_TICKET) { |
| 194 | st->hand_state = TLS_ST_CR_SESSION_TICKET; |
| 195 | return 1; |
| 196 | } |
Matt Caswell | e1c3de4 | 2017-02-09 12:07:31 +0000 | [diff] [blame] | 197 | if (mt == SSL3_MT_KEY_UPDATE) { |
| 198 | st->hand_state = TLS_ST_CR_KEY_UPDATE; |
| 199 | return 1; |
| 200 | } |
Matt Caswell | cc2455b | 2017-01-11 17:18:19 +0000 | [diff] [blame] | 201 | break; |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 204 | /* No valid transition found */ |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 205 | return 0; |
| 206 | } |
| 207 | |
| 208 | /* |
| 209 | * ossl_statem_client_read_transition() encapsulates the logic for the allowed |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 210 | * handshake state transitions when the client is reading messages from the |
| 211 | * server. The message type that the server has sent is provided in |mt|. The |
| 212 | * current state is in |s->statem.hand_state|. |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 213 | * |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 214 | * Return values are 1 for success (transition allowed) and 0 on error |
| 215 | * (transition not allowed) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 216 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 217 | int ossl_statem_client_read_transition(SSL *s, int mt) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 218 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 219 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 220 | int ske_expected; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 221 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 222 | /* |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 223 | * Note that after writing the first ClientHello we don't know what version |
| 224 | * we are going to negotiate yet, so we don't take this branch until later. |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 225 | */ |
Matt Caswell | f5ca0b0 | 2016-11-21 12:10:35 +0000 | [diff] [blame] | 226 | if (SSL_IS_TLS13(s)) { |
Matt Caswell | 5abeaf3 | 2016-11-15 10:30:34 +0000 | [diff] [blame] | 227 | if (!ossl_statem_client13_read_transition(s, mt)) |
| 228 | goto err; |
| 229 | return 1; |
| 230 | } |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 231 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 232 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 233 | default: |
| 234 | break; |
| 235 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 236 | case TLS_ST_CW_CLNT_HELLO: |
| 237 | if (mt == SSL3_MT_SERVER_HELLO) { |
| 238 | st->hand_state = TLS_ST_CR_SRVR_HELLO; |
| 239 | return 1; |
| 240 | } |
| 241 | |
| 242 | if (SSL_IS_DTLS(s)) { |
| 243 | if (mt == DTLS1_MT_HELLO_VERIFY_REQUEST) { |
| 244 | st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST; |
| 245 | return 1; |
| 246 | } |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 247 | } else { |
| 248 | if (mt == SSL3_MT_HELLO_RETRY_REQUEST) { |
| 249 | st->hand_state = TLS_ST_CR_HELLO_RETRY_REQUEST; |
| 250 | return 1; |
| 251 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 252 | } |
| 253 | break; |
| 254 | |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 255 | case TLS_ST_EARLY_DATA: |
Matt Caswell | 4004ce5 | 2017-02-25 00:06:49 +0000 | [diff] [blame] | 256 | /* |
| 257 | * We've not actually selected TLSv1.3 yet, but we have sent early |
| 258 | * data. The only thing allowed now is a ServerHello or a |
| 259 | * HelloRetryRequest. |
| 260 | */ |
| 261 | if (mt == SSL3_MT_SERVER_HELLO) { |
| 262 | st->hand_state = TLS_ST_CR_SRVR_HELLO; |
| 263 | return 1; |
| 264 | } |
| 265 | if (mt == SSL3_MT_HELLO_RETRY_REQUEST) { |
| 266 | st->hand_state = TLS_ST_CR_HELLO_RETRY_REQUEST; |
| 267 | return 1; |
| 268 | } |
| 269 | break; |
| 270 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 271 | case TLS_ST_CR_SRVR_HELLO: |
| 272 | if (s->hit) { |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 273 | if (s->ext.ticket_expected) { |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 274 | if (mt == SSL3_MT_NEWSESSION_TICKET) { |
| 275 | st->hand_state = TLS_ST_CR_SESSION_TICKET; |
| 276 | return 1; |
| 277 | } |
| 278 | } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) { |
| 279 | st->hand_state = TLS_ST_CR_CHANGE; |
| 280 | return 1; |
| 281 | } |
| 282 | } else { |
| 283 | if (SSL_IS_DTLS(s) && mt == DTLS1_MT_HELLO_VERIFY_REQUEST) { |
| 284 | st->hand_state = DTLS_ST_CR_HELLO_VERIFY_REQUEST; |
| 285 | return 1; |
Matt Caswell | ad3819c | 2015-12-04 10:18:01 +0000 | [diff] [blame] | 286 | } else if (s->version >= TLS1_VERSION |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 287 | && s->ext.session_secret_cb != NULL |
| 288 | && s->session->ext.tick != NULL |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 289 | && mt == SSL3_MT_CHANGE_CIPHER_SPEC) { |
Matt Caswell | ad3819c | 2015-12-04 10:18:01 +0000 | [diff] [blame] | 290 | /* |
| 291 | * Normally, we can tell if the server is resuming the session |
| 292 | * from the session ID. EAP-FAST (RFC 4851), however, relies on |
| 293 | * the next server message after the ServerHello to determine if |
| 294 | * the server is resuming. |
| 295 | */ |
| 296 | s->hit = 1; |
| 297 | st->hand_state = TLS_ST_CR_CHANGE; |
| 298 | return 1; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 299 | } else if (!(s->s3->tmp.new_cipher->algorithm_auth |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 300 | & (SSL_aNULL | SSL_aSRP | SSL_aPSK))) { |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 301 | if (mt == SSL3_MT_CERTIFICATE) { |
| 302 | st->hand_state = TLS_ST_CR_CERT; |
| 303 | return 1; |
| 304 | } |
| 305 | } else { |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 306 | ske_expected = key_exchange_expected(s); |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 307 | /* SKE is optional for some PSK ciphersuites */ |
| 308 | if (ske_expected |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 309 | || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK) |
| 310 | && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) { |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 311 | if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) { |
| 312 | st->hand_state = TLS_ST_CR_KEY_EXCH; |
| 313 | return 1; |
| 314 | } |
| 315 | } else if (mt == SSL3_MT_CERTIFICATE_REQUEST |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 316 | && cert_req_allowed(s)) { |
| 317 | st->hand_state = TLS_ST_CR_CERT_REQ; |
| 318 | return 1; |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 319 | } else if (mt == SSL3_MT_SERVER_DONE) { |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 320 | st->hand_state = TLS_ST_CR_SRVR_DONE; |
| 321 | return 1; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 322 | } |
| 323 | } |
| 324 | } |
| 325 | break; |
| 326 | |
| 327 | case TLS_ST_CR_CERT: |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 328 | /* |
| 329 | * The CertificateStatus message is optional even if |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 330 | * |ext.status_expected| is set |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 331 | */ |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 332 | if (s->ext.status_expected && mt == SSL3_MT_CERTIFICATE_STATUS) { |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 333 | st->hand_state = TLS_ST_CR_CERT_STATUS; |
| 334 | return 1; |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 335 | } |
| 336 | /* Fall through */ |
| 337 | |
| 338 | case TLS_ST_CR_CERT_STATUS: |
| 339 | ske_expected = key_exchange_expected(s); |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 340 | /* SKE is optional for some PSK ciphersuites */ |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 341 | if (ske_expected || ((s->s3->tmp.new_cipher->algorithm_mkey & SSL_PSK) |
| 342 | && mt == SSL3_MT_SERVER_KEY_EXCHANGE)) { |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 343 | if (mt == SSL3_MT_SERVER_KEY_EXCHANGE) { |
| 344 | st->hand_state = TLS_ST_CR_KEY_EXCH; |
| 345 | return 1; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 346 | } |
Matt Caswell | 672f333 | 2016-06-22 19:43:46 +0100 | [diff] [blame] | 347 | goto err; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 348 | } |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 349 | /* Fall through */ |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 350 | |
| 351 | case TLS_ST_CR_KEY_EXCH: |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 352 | if (mt == SSL3_MT_CERTIFICATE_REQUEST) { |
| 353 | if (cert_req_allowed(s)) { |
| 354 | st->hand_state = TLS_ST_CR_CERT_REQ; |
| 355 | return 1; |
| 356 | } |
Matt Caswell | 672f333 | 2016-06-22 19:43:46 +0100 | [diff] [blame] | 357 | goto err; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 358 | } |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 359 | /* Fall through */ |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 360 | |
| 361 | case TLS_ST_CR_CERT_REQ: |
| 362 | if (mt == SSL3_MT_SERVER_DONE) { |
| 363 | st->hand_state = TLS_ST_CR_SRVR_DONE; |
| 364 | return 1; |
| 365 | } |
| 366 | break; |
| 367 | |
| 368 | case TLS_ST_CW_FINISHED: |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 369 | if (s->ext.ticket_expected) { |
David Benjamin | c45d6b2 | 2016-03-05 19:35:52 -0500 | [diff] [blame] | 370 | if (mt == SSL3_MT_NEWSESSION_TICKET) { |
| 371 | st->hand_state = TLS_ST_CR_SESSION_TICKET; |
| 372 | return 1; |
| 373 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 374 | } else if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) { |
| 375 | st->hand_state = TLS_ST_CR_CHANGE; |
| 376 | return 1; |
| 377 | } |
| 378 | break; |
| 379 | |
| 380 | case TLS_ST_CR_SESSION_TICKET: |
| 381 | if (mt == SSL3_MT_CHANGE_CIPHER_SPEC) { |
| 382 | st->hand_state = TLS_ST_CR_CHANGE; |
| 383 | return 1; |
| 384 | } |
| 385 | break; |
| 386 | |
| 387 | case TLS_ST_CR_CHANGE: |
| 388 | if (mt == SSL3_MT_FINISHED) { |
| 389 | st->hand_state = TLS_ST_CR_FINISHED; |
| 390 | return 1; |
| 391 | } |
| 392 | break; |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 393 | |
| 394 | case TLS_ST_OK: |
Matt Caswell | 4004ce5 | 2017-02-25 00:06:49 +0000 | [diff] [blame] | 395 | if (mt == SSL3_MT_HELLO_REQUEST) { |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 396 | st->hand_state = TLS_ST_CR_HELLO_REQ; |
| 397 | return 1; |
| 398 | } |
| 399 | break; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 400 | } |
| 401 | |
Matt Caswell | 672f333 | 2016-06-22 19:43:46 +0100 | [diff] [blame] | 402 | err: |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 403 | /* No valid transition found */ |
Matt Caswell | 672f333 | 2016-06-22 19:43:46 +0100 | [diff] [blame] | 404 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_UNEXPECTED_MESSAGE); |
Richard Levitte | 340a282 | 2016-07-19 11:50:31 +0200 | [diff] [blame] | 405 | SSLerr(SSL_F_OSSL_STATEM_CLIENT_READ_TRANSITION, SSL_R_UNEXPECTED_MESSAGE); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | /* |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 410 | * ossl_statem_client13_write_transition() works out what handshake state to |
| 411 | * move to next when the TLSv1.3 client is writing messages to be sent to the |
| 412 | * server. |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 413 | */ |
| 414 | static WRITE_TRAN ossl_statem_client13_write_transition(SSL *s) |
| 415 | { |
| 416 | OSSL_STATEM *st = &s->statem; |
| 417 | |
| 418 | /* |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 419 | * Note: There are no cases for TLS_ST_BEFORE because we haven't negotiated |
| 420 | * TLSv1.3 yet at that point. They are handled by |
| 421 | * ossl_statem_client_write_transition(). |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 422 | */ |
| 423 | switch (st->hand_state) { |
| 424 | default: |
| 425 | /* Shouldn't happen */ |
| 426 | return WRITE_TRAN_ERROR; |
| 427 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 428 | case TLS_ST_CW_CLNT_HELLO: |
| 429 | /* We only hit this in the case of HelloRetryRequest */ |
| 430 | return WRITE_TRAN_FINISHED; |
| 431 | |
| 432 | case TLS_ST_CR_HELLO_RETRY_REQUEST: |
| 433 | st->hand_state = TLS_ST_CW_CLNT_HELLO; |
| 434 | return WRITE_TRAN_CONTINUE; |
| 435 | |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 436 | case TLS_ST_CR_FINISHED: |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 437 | if (s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY |
| 438 | || s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING) |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 439 | st->hand_state = TLS_ST_PENDING_EARLY_DATA_END; |
Matt Caswell | 564547e | 2017-02-25 15:34:07 +0000 | [diff] [blame] | 440 | else |
| 441 | st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT |
| 442 | : TLS_ST_CW_FINISHED; |
| 443 | return WRITE_TRAN_CONTINUE; |
| 444 | |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 445 | case TLS_ST_PENDING_EARLY_DATA_END: |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 446 | if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) { |
| 447 | st->hand_state = TLS_ST_CW_END_OF_EARLY_DATA; |
| 448 | return WRITE_TRAN_CONTINUE; |
| 449 | } |
| 450 | /* Fall through */ |
| 451 | |
| 452 | case TLS_ST_CW_END_OF_EARLY_DATA: |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 453 | st->hand_state = (s->s3->tmp.cert_req != 0) ? TLS_ST_CW_CERT |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 454 | : TLS_ST_CW_FINISHED; |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 455 | return WRITE_TRAN_CONTINUE; |
| 456 | |
| 457 | case TLS_ST_CW_CERT: |
| 458 | /* If a non-empty Certificate we also send CertificateVerify */ |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 459 | st->hand_state = (s->s3->tmp.cert_req == 1) ? TLS_ST_CW_CERT_VRFY |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 460 | : TLS_ST_CW_FINISHED; |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 461 | return WRITE_TRAN_CONTINUE; |
| 462 | |
| 463 | case TLS_ST_CW_CERT_VRFY: |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 464 | st->hand_state = TLS_ST_CW_FINISHED; |
| 465 | return WRITE_TRAN_CONTINUE; |
| 466 | |
Matt Caswell | e1c3de4 | 2017-02-09 12:07:31 +0000 | [diff] [blame] | 467 | case TLS_ST_CR_KEY_UPDATE: |
Matt Caswell | 5bf4793 | 2017-02-09 16:00:12 +0000 | [diff] [blame] | 468 | if (s->key_update != SSL_KEY_UPDATE_NONE) { |
| 469 | st->hand_state = TLS_ST_CW_KEY_UPDATE; |
| 470 | return WRITE_TRAN_CONTINUE; |
| 471 | } |
| 472 | /* Fall through */ |
| 473 | |
Matt Caswell | 9412b3a | 2017-02-09 13:12:00 +0000 | [diff] [blame] | 474 | case TLS_ST_CW_KEY_UPDATE: |
Matt Caswell | cc2455b | 2017-01-11 17:18:19 +0000 | [diff] [blame] | 475 | case TLS_ST_CR_SESSION_TICKET: |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 476 | case TLS_ST_CW_FINISHED: |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 477 | st->hand_state = TLS_ST_OK; |
Matt Caswell | 94ed2c6 | 2016-11-14 14:53:31 +0000 | [diff] [blame] | 478 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | cc2455b | 2017-01-11 17:18:19 +0000 | [diff] [blame] | 479 | |
| 480 | case TLS_ST_OK: |
Matt Caswell | 9412b3a | 2017-02-09 13:12:00 +0000 | [diff] [blame] | 481 | if (s->key_update != SSL_KEY_UPDATE_NONE) { |
| 482 | st->hand_state = TLS_ST_CW_KEY_UPDATE; |
| 483 | return WRITE_TRAN_CONTINUE; |
| 484 | } |
| 485 | |
| 486 | /* Try to read from the server instead */ |
Matt Caswell | cc2455b | 2017-01-11 17:18:19 +0000 | [diff] [blame] | 487 | return WRITE_TRAN_FINISHED; |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 488 | } |
| 489 | } |
| 490 | |
| 491 | /* |
| 492 | * ossl_statem_client_write_transition() works out what handshake state to |
| 493 | * move to next when the client is writing messages to be sent to the server. |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 494 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 495 | WRITE_TRAN ossl_statem_client_write_transition(SSL *s) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 496 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 497 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 498 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 499 | /* |
| 500 | * Note that immediately before/after a ClientHello we don't know what |
| 501 | * version we are going to negotiate yet, so we don't take this branch until |
| 502 | * later |
| 503 | */ |
Matt Caswell | f5ca0b0 | 2016-11-21 12:10:35 +0000 | [diff] [blame] | 504 | if (SSL_IS_TLS13(s)) |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 505 | return ossl_statem_client13_write_transition(s); |
| 506 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 507 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 508 | default: |
| 509 | /* Shouldn't happen */ |
| 510 | return WRITE_TRAN_ERROR; |
| 511 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 512 | case TLS_ST_OK: |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 513 | if (!s->renegotiate) { |
| 514 | /* |
| 515 | * We haven't requested a renegotiation ourselves so we must have |
| 516 | * received a message from the server. Better read it. |
| 517 | */ |
| 518 | return WRITE_TRAN_FINISHED; |
| 519 | } |
Bernd Edlinger | 018fcbe | 2017-05-11 16:21:37 +0200 | [diff] [blame^] | 520 | /* Renegotiation */ |
| 521 | /* fall thru */ |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 522 | case TLS_ST_BEFORE: |
| 523 | st->hand_state = TLS_ST_CW_CLNT_HELLO; |
| 524 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 525 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 526 | case TLS_ST_CW_CLNT_HELLO: |
Matt Caswell | 49e7fe1 | 2017-02-21 09:22:22 +0000 | [diff] [blame] | 527 | if (s->early_data_state == SSL_EARLY_DATA_CONNECTING) { |
| 528 | /* |
| 529 | * We are assuming this is a TLSv1.3 connection, although we haven't |
| 530 | * actually selected a version yet. |
| 531 | */ |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 532 | st->hand_state = TLS_ST_EARLY_DATA; |
Matt Caswell | 49e7fe1 | 2017-02-21 09:22:22 +0000 | [diff] [blame] | 533 | return WRITE_TRAN_CONTINUE; |
| 534 | } |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 535 | /* |
| 536 | * No transition at the end of writing because we don't know what |
| 537 | * we will be sent |
| 538 | */ |
| 539 | return WRITE_TRAN_FINISHED; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 540 | |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 541 | case TLS_ST_EARLY_DATA: |
Matt Caswell | 4004ce5 | 2017-02-25 00:06:49 +0000 | [diff] [blame] | 542 | return WRITE_TRAN_FINISHED; |
| 543 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 544 | case DTLS_ST_CR_HELLO_VERIFY_REQUEST: |
| 545 | st->hand_state = TLS_ST_CW_CLNT_HELLO; |
| 546 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 547 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 548 | case TLS_ST_CR_SRVR_DONE: |
| 549 | if (s->s3->tmp.cert_req) |
| 550 | st->hand_state = TLS_ST_CW_CERT; |
| 551 | else |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 552 | st->hand_state = TLS_ST_CW_KEY_EXCH; |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 553 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 554 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 555 | case TLS_ST_CW_CERT: |
| 556 | st->hand_state = TLS_ST_CW_KEY_EXCH; |
| 557 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 558 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 559 | case TLS_ST_CW_KEY_EXCH: |
| 560 | /* |
| 561 | * For TLS, cert_req is set to 2, so a cert chain of nothing is |
| 562 | * sent, but no verify packet is sent |
| 563 | */ |
| 564 | /* |
| 565 | * XXX: For now, we do not support client authentication in ECDH |
| 566 | * cipher suites with ECDH (rather than ECDSA) certificates. We |
| 567 | * need to skip the certificate verify message when client's |
| 568 | * ECDH public key is sent inside the client certificate. |
| 569 | */ |
| 570 | if (s->s3->tmp.cert_req == 1) { |
| 571 | st->hand_state = TLS_ST_CW_CERT_VRFY; |
| 572 | } else { |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 573 | st->hand_state = TLS_ST_CW_CHANGE; |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 574 | } |
| 575 | if (s->s3->flags & TLS1_FLAGS_SKIP_CERT_VERIFY) { |
| 576 | st->hand_state = TLS_ST_CW_CHANGE; |
| 577 | } |
| 578 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 579 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 580 | case TLS_ST_CW_CERT_VRFY: |
| 581 | st->hand_state = TLS_ST_CW_CHANGE; |
| 582 | return WRITE_TRAN_CONTINUE; |
| 583 | |
| 584 | case TLS_ST_CW_CHANGE: |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 585 | #if defined(OPENSSL_NO_NEXTPROTONEG) |
Matt Caswell | 4004ce5 | 2017-02-25 00:06:49 +0000 | [diff] [blame] | 586 | st-> |
| 587 | hand_state = TLS_ST_CW_FINISHED; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 588 | #else |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 589 | if (!SSL_IS_DTLS(s) && s->s3->npn_seen) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 590 | st->hand_state = TLS_ST_CW_NEXT_PROTO; |
| 591 | else |
| 592 | st->hand_state = TLS_ST_CW_FINISHED; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 593 | #endif |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 594 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 595 | |
| 596 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 597 | case TLS_ST_CW_NEXT_PROTO: |
| 598 | st->hand_state = TLS_ST_CW_FINISHED; |
| 599 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 600 | #endif |
| 601 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 602 | case TLS_ST_CW_FINISHED: |
| 603 | if (s->hit) { |
| 604 | st->hand_state = TLS_ST_OK; |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 605 | return WRITE_TRAN_CONTINUE; |
| 606 | } else { |
| 607 | return WRITE_TRAN_FINISHED; |
| 608 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 609 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 610 | case TLS_ST_CR_FINISHED: |
| 611 | if (s->hit) { |
| 612 | st->hand_state = TLS_ST_CW_CHANGE; |
| 613 | return WRITE_TRAN_CONTINUE; |
| 614 | } else { |
| 615 | st->hand_state = TLS_ST_OK; |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 616 | return WRITE_TRAN_CONTINUE; |
| 617 | } |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 618 | |
| 619 | case TLS_ST_CR_HELLO_REQ: |
| 620 | /* |
| 621 | * If we can renegotiate now then do so, otherwise wait for a more |
| 622 | * convenient time. |
| 623 | */ |
| 624 | if (ssl3_renegotiate_check(s, 1)) { |
| 625 | if (!tls_setup_handshake(s)) { |
| 626 | ossl_statem_set_error(s); |
| 627 | return WRITE_TRAN_ERROR; |
| 628 | } |
| 629 | st->hand_state = TLS_ST_CW_CLNT_HELLO; |
| 630 | return WRITE_TRAN_CONTINUE; |
| 631 | } |
| 632 | st->hand_state = TLS_ST_OK; |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 633 | return WRITE_TRAN_CONTINUE; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 634 | } |
| 635 | } |
| 636 | |
| 637 | /* |
| 638 | * Perform any pre work that needs to be done prior to sending a message from |
| 639 | * the client to the server. |
| 640 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 641 | WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 642 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 643 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 644 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 645 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 646 | default: |
| 647 | /* No pre work to be done */ |
| 648 | break; |
| 649 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 650 | case TLS_ST_CW_CLNT_HELLO: |
| 651 | s->shutdown = 0; |
| 652 | if (SSL_IS_DTLS(s)) { |
| 653 | /* every DTLS ClientHello resets Finished MAC */ |
Matt Caswell | 2c4a056 | 2016-06-03 11:59:19 +0100 | [diff] [blame] | 654 | if (!ssl3_init_finished_mac(s)) { |
| 655 | ossl_statem_set_error(s); |
| 656 | return WORK_ERROR; |
| 657 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 658 | } |
| 659 | break; |
| 660 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 661 | case TLS_ST_CW_CHANGE: |
| 662 | if (SSL_IS_DTLS(s)) { |
| 663 | if (s->hit) { |
| 664 | /* |
| 665 | * We're into the last flight so we don't retransmit these |
| 666 | * messages unless we need to. |
| 667 | */ |
| 668 | st->use_timer = 0; |
| 669 | } |
| 670 | #ifndef OPENSSL_NO_SCTP |
| 671 | if (BIO_dgram_is_sctp(SSL_get_wbio(s))) |
| 672 | return dtls_wait_for_dry(s); |
| 673 | #endif |
| 674 | } |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 675 | break; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 676 | |
Matt Caswell | d7f8783 | 2017-02-25 15:59:44 +0000 | [diff] [blame] | 677 | case TLS_ST_PENDING_EARLY_DATA_END: |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 678 | /* |
| 679 | * If we've been called by SSL_do_handshake()/SSL_write(), or we did not |
| 680 | * attempt to write early data before calling SSL_read() then we press |
| 681 | * on with the handshake. Otherwise we pause here. |
| 682 | */ |
| 683 | if (s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING |
| 684 | || s->early_data_state == SSL_EARLY_DATA_NONE) |
| 685 | return WORK_FINISHED_CONTINUE; |
| 686 | /* Fall through */ |
| 687 | |
| 688 | case TLS_ST_EARLY_DATA: |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 689 | case TLS_ST_OK: |
Matt Caswell | 30f05b1 | 2017-01-13 09:19:10 +0000 | [diff] [blame] | 690 | return tls_finish_handshake(s, wst, 1); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | return WORK_FINISHED_CONTINUE; |
| 694 | } |
| 695 | |
| 696 | /* |
| 697 | * Perform any work that needs to be done after sending a message from the |
| 698 | * client to the server. |
| 699 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 700 | WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 701 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 702 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 703 | |
| 704 | s->init_num = 0; |
| 705 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 706 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 707 | default: |
| 708 | /* No post work to be done */ |
| 709 | break; |
| 710 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 711 | case TLS_ST_CW_CLNT_HELLO: |
Matt Caswell | 4641756 | 2016-05-17 12:28:14 +0100 | [diff] [blame] | 712 | if (wst == WORK_MORE_A && statem_flush(s) != 1) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 713 | return WORK_MORE_A; |
Matt Caswell | 4641756 | 2016-05-17 12:28:14 +0100 | [diff] [blame] | 714 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 715 | if (SSL_IS_DTLS(s)) { |
| 716 | /* Treat the next message as the first packet */ |
| 717 | s->first_packet = 1; |
| 718 | } |
Matt Caswell | 6cb4226 | 2017-02-21 16:40:16 +0000 | [diff] [blame] | 719 | |
| 720 | if (s->early_data_state == SSL_EARLY_DATA_CONNECTING |
| 721 | && s->max_early_data > 0) { |
| 722 | /* |
| 723 | * We haven't selected TLSv1.3 yet so we don't call the change |
| 724 | * cipher state function associated with the SSL_METHOD. Instead |
| 725 | * we call tls13_change_cipher_state() directly. |
| 726 | */ |
| 727 | if (!tls13_change_cipher_state(s, |
| 728 | SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) |
Matt Caswell | 1ea4d09 | 2017-02-22 13:01:48 +0000 | [diff] [blame] | 729 | return WORK_ERROR; |
Matt Caswell | 6cb4226 | 2017-02-21 16:40:16 +0000 | [diff] [blame] | 730 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 731 | break; |
| 732 | |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 733 | case TLS_ST_CW_END_OF_EARLY_DATA: |
| 734 | /* |
| 735 | * We set the enc_write_ctx back to NULL because we may end up writing |
| 736 | * in cleartext again if we get a HelloRetryRequest from the server. |
| 737 | */ |
| 738 | EVP_CIPHER_CTX_free(s->enc_write_ctx); |
| 739 | s->enc_write_ctx = NULL; |
| 740 | break; |
| 741 | |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 742 | case TLS_ST_CW_KEY_EXCH: |
| 743 | if (tls_client_key_exchange_post_work(s) == 0) |
| 744 | return WORK_ERROR; |
| 745 | break; |
| 746 | |
| 747 | case TLS_ST_CW_CHANGE: |
| 748 | s->session->cipher = s->s3->tmp.new_cipher; |
| 749 | #ifdef OPENSSL_NO_COMP |
| 750 | s->session->compress_meth = 0; |
| 751 | #else |
| 752 | if (s->s3->tmp.new_compression == NULL) |
| 753 | s->session->compress_meth = 0; |
| 754 | else |
| 755 | s->session->compress_meth = s->s3->tmp.new_compression->id; |
| 756 | #endif |
| 757 | if (!s->method->ssl3_enc->setup_key_block(s)) |
| 758 | return WORK_ERROR; |
| 759 | |
| 760 | if (!s->method->ssl3_enc->change_cipher_state(s, |
| 761 | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) |
| 762 | return WORK_ERROR; |
| 763 | |
| 764 | if (SSL_IS_DTLS(s)) { |
| 765 | #ifndef OPENSSL_NO_SCTP |
| 766 | if (s->hit) { |
| 767 | /* |
| 768 | * Change to new shared key of SCTP-Auth, will be ignored if |
| 769 | * no SCTP used. |
| 770 | */ |
| 771 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, |
| 772 | 0, NULL); |
| 773 | } |
| 774 | #endif |
| 775 | |
| 776 | dtls1_reset_seq_numbers(s, SSL3_CC_WRITE); |
| 777 | } |
| 778 | break; |
| 779 | |
| 780 | case TLS_ST_CW_FINISHED: |
| 781 | #ifndef OPENSSL_NO_SCTP |
| 782 | if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) { |
| 783 | /* |
| 784 | * Change to new shared key of SCTP-Auth, will be ignored if |
| 785 | * no SCTP used. |
| 786 | */ |
| 787 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY, |
| 788 | 0, NULL); |
| 789 | } |
| 790 | #endif |
| 791 | if (statem_flush(s) != 1) |
| 792 | return WORK_MORE_B; |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 793 | |
| 794 | if (SSL_IS_TLS13(s)) { |
| 795 | if (!s->method->ssl3_enc->change_cipher_state(s, |
| 796 | SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_WRITE)) |
| 797 | return WORK_ERROR; |
| 798 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 799 | break; |
Matt Caswell | 9412b3a | 2017-02-09 13:12:00 +0000 | [diff] [blame] | 800 | |
| 801 | case TLS_ST_CW_KEY_UPDATE: |
| 802 | if (statem_flush(s) != 1) |
| 803 | return WORK_MORE_A; |
Matt Caswell | 57389a3 | 2017-02-10 17:43:09 +0000 | [diff] [blame] | 804 | if (!tls13_update_key(s, 1)) |
| 805 | return WORK_ERROR; |
Matt Caswell | 9412b3a | 2017-02-09 13:12:00 +0000 | [diff] [blame] | 806 | break; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | return WORK_FINISHED_CONTINUE; |
| 810 | } |
| 811 | |
| 812 | /* |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 813 | * Get the message construction function and message type for sending from the |
| 814 | * client |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 815 | * |
| 816 | * Valid return values are: |
| 817 | * 1: Success |
| 818 | * 0: Error |
| 819 | */ |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 820 | int ossl_statem_client_construct_message(SSL *s, WPACKET *pkt, |
Matt Caswell | a15c953 | 2016-10-03 15:35:17 +0100 | [diff] [blame] | 821 | confunc_f *confunc, int *mt) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 822 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 823 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 824 | |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 825 | switch (st->hand_state) { |
| 826 | default: |
| 827 | /* Shouldn't happen */ |
| 828 | return 0; |
| 829 | |
| 830 | case TLS_ST_CW_CHANGE: |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 831 | if (SSL_IS_DTLS(s)) |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 832 | *confunc = dtls_construct_change_cipher_spec; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 833 | else |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 834 | *confunc = tls_construct_change_cipher_spec; |
| 835 | *mt = SSL3_MT_CHANGE_CIPHER_SPEC; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 836 | break; |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 837 | |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 838 | case TLS_ST_CW_CLNT_HELLO: |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 839 | *confunc = tls_construct_client_hello; |
| 840 | *mt = SSL3_MT_CLIENT_HELLO; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 841 | break; |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 842 | |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 843 | case TLS_ST_CW_END_OF_EARLY_DATA: |
| 844 | *confunc = tls_construct_end_of_early_data; |
| 845 | *mt = SSL3_MT_END_OF_EARLY_DATA; |
| 846 | break; |
| 847 | |
| 848 | case TLS_ST_PENDING_EARLY_DATA_END: |
| 849 | *confunc = NULL; |
| 850 | *mt = SSL3_MT_DUMMY; |
| 851 | break; |
| 852 | |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 853 | case TLS_ST_CW_CERT: |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 854 | *confunc = tls_construct_client_certificate; |
| 855 | *mt = SSL3_MT_CERTIFICATE; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 856 | break; |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 857 | |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 858 | case TLS_ST_CW_KEY_EXCH: |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 859 | *confunc = tls_construct_client_key_exchange; |
| 860 | *mt = SSL3_MT_CLIENT_KEY_EXCHANGE; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 861 | break; |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 862 | |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 863 | case TLS_ST_CW_CERT_VRFY: |
Matt Caswell | d8bc139 | 2016-12-05 14:59:25 +0000 | [diff] [blame] | 864 | *confunc = tls_construct_cert_verify; |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 865 | *mt = SSL3_MT_CERTIFICATE_VERIFY; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 866 | break; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 867 | |
| 868 | #if !defined(OPENSSL_NO_NEXTPROTONEG) |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 869 | case TLS_ST_CW_NEXT_PROTO: |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 870 | *confunc = tls_construct_next_proto; |
| 871 | *mt = SSL3_MT_NEXT_PROTO; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 872 | break; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 873 | #endif |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 874 | case TLS_ST_CW_FINISHED: |
Matt Caswell | 6392fb8 | 2016-09-30 11:17:57 +0100 | [diff] [blame] | 875 | *confunc = tls_construct_finished; |
| 876 | *mt = SSL3_MT_FINISHED; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 877 | break; |
Matt Caswell | 9412b3a | 2017-02-09 13:12:00 +0000 | [diff] [blame] | 878 | |
| 879 | case TLS_ST_CW_KEY_UPDATE: |
| 880 | *confunc = tls_construct_key_update; |
| 881 | *mt = SSL3_MT_KEY_UPDATE; |
| 882 | break; |
Matt Caswell | 4a01c59 | 2016-09-30 10:38:32 +0100 | [diff] [blame] | 883 | } |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 884 | |
Matt Caswell | 5923ad4 | 2016-09-30 00:27:40 +0100 | [diff] [blame] | 885 | return 1; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | /* |
| 889 | * Returns the maximum allowed length for the current message that we are |
| 890 | * reading. Excludes the message header. |
| 891 | */ |
Matt Caswell | eda7575 | 2016-09-06 12:05:25 +0100 | [diff] [blame] | 892 | size_t ossl_statem_client_max_message_size(SSL *s) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 893 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 894 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 895 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 896 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 897 | default: |
| 898 | /* Shouldn't happen */ |
| 899 | return 0; |
| 900 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 901 | case TLS_ST_CR_SRVR_HELLO: |
| 902 | return SERVER_HELLO_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 903 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 904 | case DTLS_ST_CR_HELLO_VERIFY_REQUEST: |
| 905 | return HELLO_VERIFY_REQUEST_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 906 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 907 | case TLS_ST_CR_HELLO_RETRY_REQUEST: |
| 908 | return HELLO_RETRY_REQUEST_MAX_LENGTH; |
| 909 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 910 | case TLS_ST_CR_CERT: |
| 911 | return s->max_cert_list; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 912 | |
Matt Caswell | 2c5dfdc | 2016-12-05 17:04:51 +0000 | [diff] [blame] | 913 | case TLS_ST_CR_CERT_VRFY: |
| 914 | return SSL3_RT_MAX_PLAIN_LENGTH; |
| 915 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 916 | case TLS_ST_CR_CERT_STATUS: |
| 917 | return SSL3_RT_MAX_PLAIN_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 918 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 919 | case TLS_ST_CR_KEY_EXCH: |
| 920 | return SERVER_KEY_EXCH_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 921 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 922 | case TLS_ST_CR_CERT_REQ: |
| 923 | /* |
| 924 | * Set to s->max_cert_list for compatibility with previous releases. In |
| 925 | * practice these messages can get quite long if servers are configured |
| 926 | * to provide a long list of acceptable CAs |
| 927 | */ |
| 928 | return s->max_cert_list; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 929 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 930 | case TLS_ST_CR_SRVR_DONE: |
| 931 | return SERVER_HELLO_DONE_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 932 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 933 | case TLS_ST_CR_CHANGE: |
| 934 | if (s->version == DTLS1_BAD_VER) |
| 935 | return 3; |
| 936 | return CCS_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 937 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 938 | case TLS_ST_CR_SESSION_TICKET: |
| 939 | return SSL3_RT_MAX_PLAIN_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 940 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 941 | case TLS_ST_CR_FINISHED: |
| 942 | return FINISHED_MAX_LENGTH; |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 943 | |
| 944 | case TLS_ST_CR_ENCRYPTED_EXTENSIONS: |
| 945 | return ENCRYPTED_EXTENSIONS_MAX_LENGTH; |
Matt Caswell | e1c3de4 | 2017-02-09 12:07:31 +0000 | [diff] [blame] | 946 | |
| 947 | case TLS_ST_CR_KEY_UPDATE: |
| 948 | return KEY_UPDATE_MAX_LENGTH; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 949 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | /* |
| 953 | * Process a message that the client has been received from the server. |
| 954 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 955 | MSG_PROCESS_RETURN ossl_statem_client_process_message(SSL *s, PACKET *pkt) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 956 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 957 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 958 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 959 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 960 | default: |
| 961 | /* Shouldn't happen */ |
| 962 | return MSG_PROCESS_ERROR; |
| 963 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 964 | case TLS_ST_CR_SRVR_HELLO: |
| 965 | return tls_process_server_hello(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 966 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 967 | case DTLS_ST_CR_HELLO_VERIFY_REQUEST: |
| 968 | return dtls_process_hello_verify(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 969 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 970 | case TLS_ST_CR_HELLO_RETRY_REQUEST: |
| 971 | return tls_process_hello_retry_request(s, pkt); |
| 972 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 973 | case TLS_ST_CR_CERT: |
| 974 | return tls_process_server_certificate(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 975 | |
Matt Caswell | 2c5dfdc | 2016-12-05 17:04:51 +0000 | [diff] [blame] | 976 | case TLS_ST_CR_CERT_VRFY: |
| 977 | return tls_process_cert_verify(s, pkt); |
| 978 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 979 | case TLS_ST_CR_CERT_STATUS: |
| 980 | return tls_process_cert_status(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 981 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 982 | case TLS_ST_CR_KEY_EXCH: |
| 983 | return tls_process_key_exchange(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 984 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 985 | case TLS_ST_CR_CERT_REQ: |
| 986 | return tls_process_certificate_request(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 987 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 988 | case TLS_ST_CR_SRVR_DONE: |
| 989 | return tls_process_server_done(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 990 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 991 | case TLS_ST_CR_CHANGE: |
| 992 | return tls_process_change_cipher_spec(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 993 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 994 | case TLS_ST_CR_SESSION_TICKET: |
| 995 | return tls_process_new_session_ticket(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 996 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 997 | case TLS_ST_CR_FINISHED: |
| 998 | return tls_process_finished(s, pkt); |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 999 | |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 1000 | case TLS_ST_CR_HELLO_REQ: |
| 1001 | return tls_process_hello_req(s, pkt); |
| 1002 | |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 1003 | case TLS_ST_CR_ENCRYPTED_EXTENSIONS: |
| 1004 | return tls_process_encrypted_extensions(s, pkt); |
Matt Caswell | e1c3de4 | 2017-02-09 12:07:31 +0000 | [diff] [blame] | 1005 | |
| 1006 | case TLS_ST_CR_KEY_UPDATE: |
| 1007 | return tls_process_key_update(s, pkt); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1008 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | /* |
| 1012 | * Perform any further processing required following the receipt of a message |
| 1013 | * from the server |
| 1014 | */ |
Matt Caswell | 8481f58 | 2015-10-26 11:54:17 +0000 | [diff] [blame] | 1015 | WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst) |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1016 | { |
Matt Caswell | d6f1a6e | 2015-10-05 10:58:52 +0100 | [diff] [blame] | 1017 | OSSL_STATEM *st = &s->statem; |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1018 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1019 | switch (st->hand_state) { |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 1020 | default: |
| 1021 | /* Shouldn't happen */ |
| 1022 | return WORK_ERROR; |
| 1023 | |
Matt Caswell | 05c4f1d | 2016-06-22 14:31:32 +0100 | [diff] [blame] | 1024 | case TLS_ST_CR_CERT_REQ: |
| 1025 | return tls_prepare_client_certificate(s, wst); |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1026 | } |
Matt Caswell | 61ae935 | 2015-09-11 11:23:20 +0100 | [diff] [blame] | 1027 | } |
| 1028 | |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1029 | int tls_construct_client_hello(SSL *s, WPACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1030 | { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1031 | unsigned char *p; |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 1032 | size_t sess_id_len; |
| 1033 | int i, protverr; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1034 | int al = SSL_AD_HANDSHAKE_FAILURE; |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 1035 | #ifndef OPENSSL_NO_COMP |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1036 | SSL_COMP *comp; |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 1037 | #endif |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1038 | SSL_SESSION *sess = s->session; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1039 | |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1040 | if (!WPACKET_set_max_size(pkt, SSL3_RT_MAX_PLAIN_LENGTH)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1041 | /* Should not happen */ |
| 1042 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1043 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1044 | } |
Matt Caswell | 13c9bb3 | 2015-03-31 00:18:31 +0100 | [diff] [blame] | 1045 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1046 | /* Work out what SSL/TLS/DTLS version to use */ |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1047 | protverr = ssl_set_client_hello_version(s); |
| 1048 | if (protverr != 0) { |
| 1049 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, protverr); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1050 | return 0; |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1051 | } |
Matt Caswell | 13c9bb3 | 2015-03-31 00:18:31 +0100 | [diff] [blame] | 1052 | |
Matt Caswell | e586eac | 2017-03-21 13:50:31 +0000 | [diff] [blame] | 1053 | if (sess == NULL |
| 1054 | || !ssl_version_supported(s, sess->ssl_version) |
| 1055 | || !SSL_SESSION_is_resumable(sess)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1056 | if (!ssl_get_new_session(s, 0)) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1057 | return 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1058 | } |
| 1059 | /* else use the pre-loaded session */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1060 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1061 | p = s->s3->client_random; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1062 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1063 | /* |
| 1064 | * for DTLS if client_random is initialized, reuse it, we are |
| 1065 | * required to use same upon reply to HelloVerify |
| 1066 | */ |
| 1067 | if (SSL_IS_DTLS(s)) { |
| 1068 | size_t idx; |
| 1069 | i = 1; |
| 1070 | for (idx = 0; idx < sizeof(s->s3->client_random); idx++) { |
| 1071 | if (p[idx]) { |
| 1072 | i = 0; |
| 1073 | break; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1074 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1075 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1076 | } else |
| 1077 | i = 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1078 | |
Matt Caswell | f7f2a01 | 2017-03-22 08:52:54 +0000 | [diff] [blame] | 1079 | if (i && ssl_fill_hello_random(s, 0, p, sizeof(s->s3->client_random), |
| 1080 | DOWNGRADE_NONE) <= 0) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1081 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1082 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1083 | /*- |
| 1084 | * version indicates the negotiated version: for example from |
| 1085 | * an SSLv2/v3 compatible client hello). The client_version |
| 1086 | * field is the maximum version we permit and it is also |
| 1087 | * used in RSA encrypted premaster secrets. Some servers can |
| 1088 | * choke if we initially report a higher version then |
| 1089 | * renegotiate to a lower one in the premaster secret. This |
| 1090 | * didn't happen with TLS 1.0 as most servers supported it |
| 1091 | * but it can with TLS 1.1 or later if the server only supports |
| 1092 | * 1.0. |
| 1093 | * |
| 1094 | * Possible scenario with previous logic: |
| 1095 | * 1. Client hello indicates TLS 1.2 |
| 1096 | * 2. Server hello says TLS 1.0 |
| 1097 | * 3. RSA encrypted premaster secret uses 1.2. |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 1098 | * 4. Handshake proceeds using TLS 1.0. |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1099 | * 5. Server sends hello request to renegotiate. |
| 1100 | * 6. Client hello indicates TLS v1.0 as we now |
| 1101 | * know that is maximum server supports. |
| 1102 | * 7. Server chokes on RSA encrypted premaster secret |
| 1103 | * containing version 1.0. |
| 1104 | * |
| 1105 | * For interoperability it should be OK to always use the |
| 1106 | * maximum version we support in client hello and then rely |
| 1107 | * on the checking of version to ensure the servers isn't |
| 1108 | * being inconsistent: for example initially negotiating with |
| 1109 | * TLS 1.0 and renegotiating with TLS 1.2. We do this by using |
| 1110 | * client_version in client hello and not resetting it to |
| 1111 | * the negotiated version. |
Matt Caswell | cd99883 | 2016-10-23 00:41:11 +0100 | [diff] [blame] | 1112 | * |
| 1113 | * For TLS 1.3 we always set the ClientHello version to 1.2 and rely on the |
Matt Caswell | 16bce0e | 2016-10-31 17:05:20 +0000 | [diff] [blame] | 1114 | * supported_versions extension for the real supported versions. |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1115 | */ |
Matt Caswell | 7acb8b6 | 2016-11-23 13:56:15 +0000 | [diff] [blame] | 1116 | if (!WPACKET_put_bytes_u16(pkt, s->client_version) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1117 | || !WPACKET_memcpy(pkt, s->s3->client_random, SSL3_RANDOM_SIZE)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1118 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1119 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1120 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1121 | |
| 1122 | /* Session ID */ |
Matt Caswell | f05bcf0 | 2017-01-13 13:49:44 +0000 | [diff] [blame] | 1123 | if (s->new_session || s->session->ssl_version == TLS1_3_VERSION) |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 1124 | sess_id_len = 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1125 | else |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 1126 | sess_id_len = s->session->session_id_length; |
| 1127 | if (sess_id_len > sizeof(s->session->session_id) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1128 | || !WPACKET_start_sub_packet_u8(pkt) |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 1129 | || (sess_id_len != 0 && !WPACKET_memcpy(pkt, s->session->session_id, |
| 1130 | sess_id_len)) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1131 | || !WPACKET_close(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1132 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1133 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1134 | } |
| 1135 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1136 | /* cookie stuff for DTLS */ |
| 1137 | if (SSL_IS_DTLS(s)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1138 | if (s->d1->cookie_len > sizeof(s->d1->cookie) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1139 | || !WPACKET_sub_memcpy_u8(pkt, s->d1->cookie, |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 1140 | s->d1->cookie_len)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1141 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1142 | return 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1143 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1144 | } |
| 1145 | |
| 1146 | /* Ciphers supported */ |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1147 | if (!WPACKET_start_sub_packet_u16(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1148 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1149 | return 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1150 | } |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1151 | /* ssl_cipher_list_to_bytes() raises SSLerr if appropriate */ |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1152 | if (!ssl_cipher_list_to_bytes(s, SSL_get_ciphers(s), pkt)) |
| 1153 | return 0; |
| 1154 | if (!WPACKET_close(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1155 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1156 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1157 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1158 | |
| 1159 | /* COMPRESSION */ |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1160 | if (!WPACKET_start_sub_packet_u8(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1161 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1162 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1163 | } |
| 1164 | #ifndef OPENSSL_NO_COMP |
Matt Caswell | c19602b | 2017-03-01 10:36:38 +0000 | [diff] [blame] | 1165 | if (ssl_allow_compression(s) |
| 1166 | && s->ctx->comp_methods |
| 1167 | && (SSL_IS_DTLS(s) || s->s3->tmp.max_ver < TLS1_3_VERSION)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1168 | int compnum = sk_SSL_COMP_num(s->ctx->comp_methods); |
| 1169 | for (i = 0; i < compnum; i++) { |
| 1170 | comp = sk_SSL_COMP_value(s->ctx->comp_methods, i); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1171 | if (!WPACKET_put_bytes_u8(pkt, comp->id)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1172 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1173 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1174 | } |
| 1175 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1176 | } |
| 1177 | #endif |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1178 | /* Add the NULL method */ |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1179 | if (!WPACKET_put_bytes_u8(pkt, 0) || !WPACKET_close(pkt)) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1180 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1181 | return 0; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 1182 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1183 | |
| 1184 | /* TLS extensions */ |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1185 | if (!tls_construct_extensions(s, pkt, SSL_EXT_CLIENT_HELLO, NULL, 0, &al)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1186 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 1187 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_HELLO, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 1188 | return 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1189 | } |
| 1190 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1191 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1192 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1193 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 1194 | MSG_PROCESS_RETURN dtls_process_hello_verify(SSL *s, PACKET *pkt) |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1195 | { |
| 1196 | int al; |
Matt Caswell | cb150cb | 2016-10-04 21:04:03 +0100 | [diff] [blame] | 1197 | size_t cookie_len; |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1198 | PACKET cookiepkt; |
| 1199 | |
| 1200 | if (!PACKET_forward(pkt, 2) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1201 | || !PACKET_get_length_prefixed_1(pkt, &cookiepkt)) { |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1202 | al = SSL_AD_DECODE_ERROR; |
| 1203 | SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH); |
| 1204 | goto f_err; |
| 1205 | } |
| 1206 | |
| 1207 | cookie_len = PACKET_remaining(&cookiepkt); |
| 1208 | if (cookie_len > sizeof(s->d1->cookie)) { |
| 1209 | al = SSL_AD_ILLEGAL_PARAMETER; |
| 1210 | SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_TOO_LONG); |
| 1211 | goto f_err; |
| 1212 | } |
| 1213 | |
| 1214 | if (!PACKET_copy_bytes(&cookiepkt, s->d1->cookie, cookie_len)) { |
| 1215 | al = SSL_AD_DECODE_ERROR; |
| 1216 | SSLerr(SSL_F_DTLS_PROCESS_HELLO_VERIFY, SSL_R_LENGTH_MISMATCH); |
| 1217 | goto f_err; |
| 1218 | } |
| 1219 | s->d1->cookie_len = cookie_len; |
| 1220 | |
| 1221 | return MSG_PROCESS_FINISHED_READING; |
| 1222 | f_err: |
| 1223 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 1224 | ossl_statem_set_error(s); |
Matt Caswell | 8ba708e | 2015-09-11 10:48:59 +0100 | [diff] [blame] | 1225 | return MSG_PROCESS_ERROR; |
| 1226 | } |
| 1227 | |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1228 | static int set_client_ciphersuite(SSL *s, const unsigned char *cipherchars) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1229 | { |
| 1230 | STACK_OF(SSL_CIPHER) *sk; |
| 1231 | const SSL_CIPHER *c; |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1232 | int i; |
| 1233 | |
| 1234 | c = ssl_get_cipher_by_char(s, cipherchars, 0); |
| 1235 | if (c == NULL) { |
| 1236 | /* unknown cipher */ |
| 1237 | SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_UNKNOWN_CIPHER_RETURNED); |
| 1238 | return 0; |
| 1239 | } |
| 1240 | /* |
| 1241 | * If it is a disabled cipher we either didn't send it in client hello, |
| 1242 | * or it's not allowed for the selected protocol. So we return an error. |
| 1243 | */ |
Matt Caswell | 8af91fd | 2017-04-12 17:02:42 +0100 | [diff] [blame] | 1244 | if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_CHECK, 1)) { |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1245 | SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED); |
| 1246 | return 0; |
| 1247 | } |
| 1248 | |
| 1249 | sk = ssl_get_ciphers_by_id(s); |
| 1250 | i = sk_SSL_CIPHER_find(sk, c); |
| 1251 | if (i < 0) { |
| 1252 | /* we did not say we would use this cipher */ |
| 1253 | SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED); |
| 1254 | return 0; |
| 1255 | } |
| 1256 | |
| 1257 | if (SSL_IS_TLS13(s) && s->s3->tmp.new_cipher != NULL |
| 1258 | && s->s3->tmp.new_cipher->id != c->id) { |
| 1259 | /* ServerHello selected a different ciphersuite to that in the HRR */ |
| 1260 | SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, SSL_R_WRONG_CIPHER_RETURNED); |
| 1261 | return 0; |
| 1262 | } |
| 1263 | |
| 1264 | /* |
| 1265 | * Depending on the session caching (internal/external), the cipher |
| 1266 | * and/or cipher_id values may not be set. Make sure that cipher_id is |
| 1267 | * set and use it for comparison. |
| 1268 | */ |
| 1269 | if (s->session->cipher != NULL) |
| 1270 | s->session->cipher_id = s->session->cipher->id; |
| 1271 | if (s->hit && (s->session->cipher_id != c->id)) { |
| 1272 | SSLerr(SSL_F_SET_CLIENT_CIPHERSUITE, |
| 1273 | SSL_R_OLD_SESSION_CIPHER_NOT_RETURNED); |
| 1274 | return 0; |
| 1275 | } |
| 1276 | s->s3->tmp.new_cipher = c; |
| 1277 | |
| 1278 | return 1; |
| 1279 | } |
| 1280 | |
| 1281 | MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt) |
| 1282 | { |
Matt Caswell | 332eb39 | 2016-11-28 16:15:51 +0000 | [diff] [blame] | 1283 | PACKET session_id, extpkt; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1284 | size_t session_id_len; |
Emilia Kasper | b698174 | 2016-02-01 15:26:18 +0100 | [diff] [blame] | 1285 | const unsigned char *cipherchars; |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1286 | int al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1287 | unsigned int compression; |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1288 | unsigned int sversion; |
Matt Caswell | 3434f40 | 2016-11-28 16:45:52 +0000 | [diff] [blame] | 1289 | unsigned int context; |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1290 | int protverr; |
Matt Caswell | 332eb39 | 2016-11-28 16:15:51 +0000 | [diff] [blame] | 1291 | RAW_EXTENSION *extensions = NULL; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1292 | #ifndef OPENSSL_NO_COMP |
| 1293 | SSL_COMP *comp; |
| 1294 | #endif |
| 1295 | |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1296 | if (!PACKET_get_net_2(pkt, &sversion)) { |
| 1297 | al = SSL_AD_DECODE_ERROR; |
| 1298 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH); |
| 1299 | goto f_err; |
| 1300 | } |
Kurt Roeckx | 7946ab3 | 2015-12-06 17:56:41 +0100 | [diff] [blame] | 1301 | |
Matt Caswell | c3043dc | 2017-03-22 11:50:32 +0000 | [diff] [blame] | 1302 | /* load the server random */ |
| 1303 | if (!PACKET_copy_bytes(pkt, s->s3->server_random, SSL3_RANDOM_SIZE)) { |
| 1304 | al = SSL_AD_DECODE_ERROR; |
| 1305 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH); |
| 1306 | goto f_err; |
| 1307 | } |
| 1308 | |
| 1309 | /* |
| 1310 | * We do this immediately so we know what format the ServerHello is in. |
| 1311 | * Must be done after reading the random data so we can check for the |
| 1312 | * TLSv1.3 downgrade sentinels |
| 1313 | */ |
| 1314 | protverr = ssl_choose_client_version(s, sversion, 1, &al); |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1315 | if (protverr != 0) { |
Viktor Dukhovni | 4fa5214 | 2015-12-29 03:24:17 -0500 | [diff] [blame] | 1316 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, protverr); |
| 1317 | goto f_err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1318 | } |
Emilia Kasper | 7b3ba508 | 2014-11-19 15:56:27 +0100 | [diff] [blame] | 1319 | |
Matt Caswell | 524420d | 2017-03-07 10:21:58 +0000 | [diff] [blame] | 1320 | /* |
| 1321 | * In TLSv1.3 a ServerHello message signals a key change so the end of the |
| 1322 | * message must be on a record boundary. |
| 1323 | */ |
| 1324 | if (SSL_IS_TLS13(s) && RECORD_LAYER_processed_read_pending(&s->rlayer)) { |
| 1325 | al = SSL_AD_UNEXPECTED_MESSAGE; |
| 1326 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_NOT_ON_RECORD_BOUNDARY); |
| 1327 | goto f_err; |
| 1328 | } |
| 1329 | |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1330 | /* Get the session-id. */ |
Matt Caswell | 71728dd | 2016-11-07 13:50:43 +0000 | [diff] [blame] | 1331 | if (!SSL_IS_TLS13(s)) { |
| 1332 | if (!PACKET_get_length_prefixed_1(pkt, &session_id)) { |
| 1333 | al = SSL_AD_DECODE_ERROR; |
| 1334 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH); |
| 1335 | goto f_err; |
| 1336 | } |
| 1337 | session_id_len = PACKET_remaining(&session_id); |
| 1338 | if (session_id_len > sizeof s->session->session_id |
| 1339 | || session_id_len > SSL3_SESSION_ID_SIZE) { |
| 1340 | al = SSL_AD_ILLEGAL_PARAMETER; |
| 1341 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
| 1342 | SSL_R_SSL3_SESSION_ID_TOO_LONG); |
| 1343 | goto f_err; |
| 1344 | } |
| 1345 | } else { |
Matt Caswell | 625b0d5 | 2016-12-08 09:48:29 +0000 | [diff] [blame] | 1346 | PACKET_null_init(&session_id); |
Matt Caswell | 71728dd | 2016-11-07 13:50:43 +0000 | [diff] [blame] | 1347 | session_id_len = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1348 | } |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 1349 | |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 1350 | if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) { |
Matt Caswell | f0659bd | 2015-10-22 14:02:46 +0100 | [diff] [blame] | 1351 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH); |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1352 | al = SSL_AD_DECODE_ERROR; |
| 1353 | goto f_err; |
| 1354 | } |
| 1355 | |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1356 | if (!SSL_IS_TLS13(s)) { |
| 1357 | if (!PACKET_get_1(pkt, &compression)) { |
| 1358 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_LENGTH_MISMATCH); |
| 1359 | al = SSL_AD_DECODE_ERROR; |
Emilia Kasper | 6e3d015 | 2015-04-21 18:12:58 +0200 | [diff] [blame] | 1360 | goto f_err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1361 | } |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1362 | } else { |
| 1363 | compression = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1364 | } |
Dr. Stephen Henson | 12bf56c | 2008-11-15 17:18:12 +0000 | [diff] [blame] | 1365 | |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1366 | /* TLS extensions */ |
| 1367 | if (PACKET_remaining(pkt) == 0) { |
| 1368 | PACKET_null_init(&extpkt); |
Matt Caswell | 26b9172 | 2017-05-11 11:31:57 +0100 | [diff] [blame] | 1369 | } else if (!PACKET_as_length_prefixed_2(pkt, &extpkt) |
| 1370 | || PACKET_remaining(pkt) != 0) { |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1371 | al = SSL_AD_DECODE_ERROR; |
| 1372 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_BAD_LENGTH); |
| 1373 | goto f_err; |
| 1374 | } |
| 1375 | |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1376 | context = SSL_IS_TLS13(s) ? SSL_EXT_TLS1_3_SERVER_HELLO |
| 1377 | : SSL_EXT_TLS1_2_SERVER_HELLO; |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 1378 | if (!tls_collect_extensions(s, &extpkt, context, &extensions, &al, NULL, 1)) |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1379 | goto f_err; |
| 1380 | |
| 1381 | s->hit = 0; |
| 1382 | |
| 1383 | if (SSL_IS_TLS13(s)) { |
| 1384 | /* This will set s->hit if we are resuming */ |
| 1385 | if (!tls_parse_extension(s, TLSEXT_IDX_psk, |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1386 | SSL_EXT_TLS1_3_SERVER_HELLO, |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1387 | extensions, NULL, 0, &al)) |
| 1388 | goto f_err; |
| 1389 | } else { |
| 1390 | /* |
| 1391 | * Check if we can resume the session based on external pre-shared |
| 1392 | * secret. EAP-FAST (RFC 4851) supports two types of session resumption. |
| 1393 | * Resumption based on server-side state works with session IDs. |
| 1394 | * Resumption based on pre-shared Protected Access Credentials (PACs) |
| 1395 | * works by overriding the SessionTicket extension at the application |
| 1396 | * layer, and does not send a session ID. (We do not know whether |
| 1397 | * EAP-FAST servers would honour the session ID.) Therefore, the session |
| 1398 | * ID alone is not a reliable indicator of session resumption, so we |
| 1399 | * first check if we can resume, and later peek at the next handshake |
| 1400 | * message to see if the server wants to resume. |
| 1401 | */ |
| 1402 | if (s->version >= TLS1_VERSION |
| 1403 | && s->ext.session_secret_cb != NULL && s->session->ext.tick) { |
| 1404 | const SSL_CIPHER *pref_cipher = NULL; |
| 1405 | /* |
| 1406 | * s->session->master_key_length is a size_t, but this is an int for |
| 1407 | * backwards compat reasons |
| 1408 | */ |
| 1409 | int master_key_length; |
| 1410 | master_key_length = sizeof(s->session->master_key); |
| 1411 | if (s->ext.session_secret_cb(s, s->session->master_key, |
| 1412 | &master_key_length, |
| 1413 | NULL, &pref_cipher, |
| 1414 | s->ext.session_secret_cb_arg) |
| 1415 | && master_key_length > 0) { |
| 1416 | s->session->master_key_length = master_key_length; |
| 1417 | s->session->cipher = pref_cipher ? |
Benjamin Kaduk | 60d685d | 2017-02-06 11:30:16 -0600 | [diff] [blame] | 1418 | pref_cipher : ssl_get_cipher_by_char(s, cipherchars, 0); |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1419 | } else { |
| 1420 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, ERR_R_INTERNAL_ERROR); |
| 1421 | al = SSL_AD_INTERNAL_ERROR; |
| 1422 | goto f_err; |
| 1423 | } |
| 1424 | } |
| 1425 | |
| 1426 | if (session_id_len != 0 |
| 1427 | && session_id_len == s->session->session_id_length |
| 1428 | && memcmp(PACKET_data(&session_id), s->session->session_id, |
| 1429 | session_id_len) == 0) |
| 1430 | s->hit = 1; |
| 1431 | } |
| 1432 | |
| 1433 | if (s->hit) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1434 | if (s->sid_ctx_length != s->session->sid_ctx_length |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1435 | || memcmp(s->session->sid_ctx, s->sid_ctx, s->sid_ctx_length)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1436 | /* actually a client application bug */ |
| 1437 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1438 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1439 | SSL_R_ATTEMPT_TO_REUSE_SESSION_IN_DIFFERENT_CONTEXT); |
| 1440 | goto f_err; |
| 1441 | } |
Emilia Kasper | 6e3d015 | 2015-04-21 18:12:58 +0200 | [diff] [blame] | 1442 | } else { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1443 | /* |
Emilia Kasper | 6e3d015 | 2015-04-21 18:12:58 +0200 | [diff] [blame] | 1444 | * If we were trying for session-id reuse but the server |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1445 | * didn't resume, make a new SSL_SESSION. |
Emilia Kasper | 6e3d015 | 2015-04-21 18:12:58 +0200 | [diff] [blame] | 1446 | * In the case of EAP-FAST and PAC, we do not send a session ID, |
| 1447 | * so the PAC-based session secret is always preserved. It'll be |
| 1448 | * overwritten if the server refuses resumption. |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1449 | */ |
Matt Caswell | 4ff65f7 | 2017-01-18 09:38:53 +0000 | [diff] [blame] | 1450 | if (s->session->session_id_length > 0 |
| 1451 | || (SSL_IS_TLS13(s) |
| 1452 | && s->session->ext.tick_identity |
| 1453 | != TLSEXT_PSK_BAD_IDENTITY)) { |
Laszlo Kovacs | 4f6eaa5 | 2015-02-20 14:35:57 -0500 | [diff] [blame] | 1454 | s->ctx->stats.sess_miss++; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1455 | if (!ssl_get_new_session(s, 0)) { |
| 1456 | goto f_err; |
| 1457 | } |
| 1458 | } |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1459 | |
Fedor Indutny | ccae4a1 | 2016-03-11 17:44:01 +0300 | [diff] [blame] | 1460 | s->session->ssl_version = s->version; |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1461 | s->session->session_id_length = session_id_len; |
| 1462 | /* session_id_len could be 0 */ |
Kurt Roeckx | a19fc66 | 2016-12-08 19:20:55 +0100 | [diff] [blame] | 1463 | if (session_id_len > 0) |
| 1464 | memcpy(s->session->session_id, PACKET_data(&session_id), |
| 1465 | session_id_len); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1466 | } |
Matt Caswell | 50932c4 | 2015-08-04 17:36:02 +0100 | [diff] [blame] | 1467 | |
Fedor Indutny | ccae4a1 | 2016-03-11 17:44:01 +0300 | [diff] [blame] | 1468 | /* Session version and negotiated protocol version should match */ |
| 1469 | if (s->version != s->session->ssl_version) { |
| 1470 | al = SSL_AD_PROTOCOL_VERSION; |
| 1471 | |
| 1472 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
| 1473 | SSL_R_SSL_SESSION_VERSION_MISMATCH); |
| 1474 | goto f_err; |
| 1475 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1476 | /* |
Kurt Roeckx | 3eb2aff | 2016-02-07 20:17:07 +0100 | [diff] [blame] | 1477 | * Now that we know the version, update the check to see if it's an allowed |
| 1478 | * version. |
| 1479 | */ |
| 1480 | s->s3->tmp.min_ver = s->version; |
| 1481 | s->s3->tmp.max_ver = s->version; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1482 | |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1483 | if (!set_client_ciphersuite(s, cipherchars)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1484 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1485 | goto f_err; |
| 1486 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1487 | |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 1488 | #ifdef OPENSSL_NO_COMP |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1489 | if (compression != 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1490 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1491 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1492 | SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM); |
| 1493 | goto f_err; |
| 1494 | } |
| 1495 | /* |
| 1496 | * If compression is disabled we'd better not try to resume a session |
| 1497 | * using compression. |
| 1498 | */ |
| 1499 | if (s->session->compress_meth != 0) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1500 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_INCONSISTENT_COMPRESSION); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1501 | goto f_err; |
| 1502 | } |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 1503 | #else |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1504 | if (s->hit && compression != s->session->compress_meth) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1505 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1506 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1507 | SSL_R_OLD_SESSION_COMPRESSION_ALGORITHM_NOT_RETURNED); |
| 1508 | goto f_err; |
| 1509 | } |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1510 | if (compression == 0) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1511 | comp = NULL; |
| 1512 | else if (!ssl_allow_compression(s)) { |
| 1513 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1514 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_COMPRESSION_DISABLED); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1515 | goto f_err; |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1516 | } else { |
| 1517 | comp = ssl3_comp_find(s->ctx->comp_methods, compression); |
| 1518 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1519 | |
Emilia Kasper | fc5ce51 | 2015-09-18 14:09:37 +0200 | [diff] [blame] | 1520 | if (compression != 0 && comp == NULL) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1521 | al = SSL_AD_ILLEGAL_PARAMETER; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1522 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1523 | SSL_R_UNSUPPORTED_COMPRESSION_ALGORITHM); |
| 1524 | goto f_err; |
| 1525 | } else { |
| 1526 | s->s3->tmp.new_compression = comp; |
| 1527 | } |
Dr. Stephen Henson | 09b6c2e | 2005-09-30 23:35:33 +0000 | [diff] [blame] | 1528 | #endif |
Bodo Möller | 761772d | 2007-09-21 06:54:24 +0000 | [diff] [blame] | 1529 | |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 1530 | if (!tls_parse_all_extensions(s, context, extensions, NULL, 0, &al, 1)) |
Matt Caswell | 332eb39 | 2016-11-28 16:15:51 +0000 | [diff] [blame] | 1531 | goto f_err; |
| 1532 | |
Matt Caswell | 8723588 | 2015-09-07 16:36:53 +0100 | [diff] [blame] | 1533 | #ifndef OPENSSL_NO_SCTP |
| 1534 | if (SSL_IS_DTLS(s) && s->hit) { |
| 1535 | unsigned char sctpauthkey[64]; |
| 1536 | char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)]; |
| 1537 | |
| 1538 | /* |
| 1539 | * Add new shared key for SCTP-Auth, will be ignored if |
| 1540 | * no SCTP used. |
| 1541 | */ |
Matt Caswell | 141eb8c | 2015-10-26 12:00:00 +0000 | [diff] [blame] | 1542 | memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL, |
| 1543 | sizeof(DTLS1_SCTP_AUTH_LABEL)); |
Matt Caswell | 8723588 | 2015-09-07 16:36:53 +0100 | [diff] [blame] | 1544 | |
| 1545 | if (SSL_export_keying_material(s, sctpauthkey, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1546 | sizeof(sctpauthkey), |
| 1547 | labelbuffer, |
| 1548 | sizeof(labelbuffer), NULL, 0, 0) <= 0) |
Richard Levitte | c0aa6b8 | 2016-12-19 14:07:52 +0100 | [diff] [blame] | 1549 | goto f_err; |
Matt Caswell | 8723588 | 2015-09-07 16:36:53 +0100 | [diff] [blame] | 1550 | |
| 1551 | BIO_ctrl(SSL_get_wbio(s), |
| 1552 | BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, |
| 1553 | sizeof(sctpauthkey), sctpauthkey); |
| 1554 | } |
| 1555 | #endif |
| 1556 | |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 1557 | /* |
| 1558 | * In TLSv1.3 we have some post-processing to change cipher state, otherwise |
| 1559 | * we're done with this message |
| 1560 | */ |
| 1561 | if (SSL_IS_TLS13(s) |
| 1562 | && (!s->method->ssl3_enc->setup_key_block(s) |
| 1563 | || !s->method->ssl3_enc->change_cipher_state(s, |
Matt Caswell | 92760c2 | 2016-11-09 14:06:12 +0000 | [diff] [blame] | 1564 | SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_READ))) { |
| 1565 | al = SSL_AD_INTERNAL_ERROR; |
| 1566 | SSLerr(SSL_F_TLS_PROCESS_SERVER_HELLO, SSL_R_CANNOT_CHANGE_CIPHER); |
| 1567 | goto f_err; |
| 1568 | } |
| 1569 | |
Matt Caswell | 1b0286a | 2016-12-05 17:31:37 +0000 | [diff] [blame] | 1570 | OPENSSL_free(extensions); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1571 | return MSG_PROCESS_CONTINUE_READING; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1572 | f_err: |
| 1573 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 1574 | ossl_statem_set_error(s); |
Matt Caswell | 1b0286a | 2016-12-05 17:31:37 +0000 | [diff] [blame] | 1575 | OPENSSL_free(extensions); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1576 | return MSG_PROCESS_ERROR; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1577 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1578 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1579 | static MSG_PROCESS_RETURN tls_process_hello_retry_request(SSL *s, PACKET *pkt) |
| 1580 | { |
| 1581 | unsigned int sversion; |
Matt Caswell | 2248dbe | 2017-02-06 16:47:29 +0000 | [diff] [blame] | 1582 | int errorcode; |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1583 | const unsigned char *cipherchars; |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1584 | RAW_EXTENSION *extensions = NULL; |
| 1585 | int al; |
| 1586 | PACKET extpkt; |
| 1587 | |
| 1588 | if (!PACKET_get_net_2(pkt, &sversion)) { |
| 1589 | al = SSL_AD_DECODE_ERROR; |
| 1590 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_LENGTH_MISMATCH); |
| 1591 | goto f_err; |
| 1592 | } |
| 1593 | |
| 1594 | s->hello_retry_request = 1; |
| 1595 | |
| 1596 | /* This will fail if it doesn't choose TLSv1.3+ */ |
Matt Caswell | c3043dc | 2017-03-22 11:50:32 +0000 | [diff] [blame] | 1597 | errorcode = ssl_choose_client_version(s, sversion, 0, &al); |
Matt Caswell | 2248dbe | 2017-02-06 16:47:29 +0000 | [diff] [blame] | 1598 | if (errorcode != 0) { |
Matt Caswell | 2248dbe | 2017-02-06 16:47:29 +0000 | [diff] [blame] | 1599 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, errorcode); |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1600 | goto f_err; |
| 1601 | } |
| 1602 | |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1603 | if (!PACKET_get_bytes(pkt, &cipherchars, TLS_CIPHER_LEN)) { |
| 1604 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_LENGTH_MISMATCH); |
| 1605 | al = SSL_AD_DECODE_ERROR; |
| 1606 | goto f_err; |
| 1607 | } |
| 1608 | |
| 1609 | if (!set_client_ciphersuite(s, cipherchars)) { |
| 1610 | al = SSL_AD_ILLEGAL_PARAMETER; |
| 1611 | goto f_err; |
| 1612 | } |
| 1613 | |
Matt Caswell | 66d4bf6 | 2017-05-08 16:05:16 +0100 | [diff] [blame] | 1614 | if (!PACKET_as_length_prefixed_2(pkt, &extpkt) |
| 1615 | /* Must have a non-empty extensions block */ |
| 1616 | || PACKET_remaining(&extpkt) == 0 |
| 1617 | /* Must be no trailing data after extensions */ |
| 1618 | || PACKET_remaining(pkt) != 0) { |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1619 | al = SSL_AD_DECODE_ERROR; |
| 1620 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, SSL_R_BAD_LENGTH); |
| 1621 | goto f_err; |
| 1622 | } |
| 1623 | |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1624 | if (!tls_collect_extensions(s, &extpkt, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 1625 | &extensions, &al, NULL, 1) |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1626 | || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 1627 | extensions, NULL, 0, &al, 1)) |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1628 | goto f_err; |
| 1629 | |
| 1630 | OPENSSL_free(extensions); |
Matt Caswell | 66d4bf6 | 2017-05-08 16:05:16 +0100 | [diff] [blame] | 1631 | extensions = NULL; |
| 1632 | |
| 1633 | if (s->ext.tls13_cookie_len == 0 && s->s3->tmp.pkey != NULL) { |
| 1634 | /* |
| 1635 | * We didn't receive a cookie or a new key_share so the next |
| 1636 | * ClientHello will not change |
| 1637 | */ |
| 1638 | al = SSL_AD_ILLEGAL_PARAMETER; |
| 1639 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, |
| 1640 | SSL_R_NO_CHANGE_FOLLOWING_HRR); |
| 1641 | goto f_err; |
| 1642 | } |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1643 | |
Matt Caswell | 11c67ee | 2017-03-13 15:21:15 +0000 | [diff] [blame] | 1644 | /* |
| 1645 | * Re-initialise the Transcript Hash. We're going to prepopulate it with |
| 1646 | * a synthetic message_hash in place of ClientHello1. |
| 1647 | */ |
| 1648 | if (!create_synthetic_message_hash(s)) { |
| 1649 | al = SSL_AD_INTERNAL_ERROR; |
| 1650 | goto f_err; |
| 1651 | } |
| 1652 | |
| 1653 | /* |
| 1654 | * Add this message to the Transcript Hash. Normally this is done |
| 1655 | * automatically prior to the message processing stage. However due to the |
| 1656 | * need to create the synthetic message hash, we defer that step until now |
| 1657 | * for HRR messages. |
| 1658 | */ |
| 1659 | if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data, |
| 1660 | s->init_num + SSL3_HM_HEADER_LENGTH)) { |
| 1661 | al = SSL_AD_INTERNAL_ERROR; |
| 1662 | SSLerr(SSL_F_TLS_PROCESS_HELLO_RETRY_REQUEST, ERR_R_INTERNAL_ERROR); |
| 1663 | goto f_err; |
| 1664 | } |
| 1665 | |
Matt Caswell | 3847d42 | 2017-02-01 13:31:27 +0000 | [diff] [blame] | 1666 | return MSG_PROCESS_FINISHED_READING; |
| 1667 | f_err: |
| 1668 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 1669 | ossl_statem_set_error(s); |
| 1670 | OPENSSL_free(extensions); |
| 1671 | return MSG_PROCESS_ERROR; |
| 1672 | } |
| 1673 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 1674 | MSG_PROCESS_RETURN tls_process_server_certificate(SSL *s, PACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1675 | { |
| 1676 | int al, i, ret = MSG_PROCESS_ERROR, exp_idx; |
| 1677 | unsigned long cert_list_len, cert_len; |
| 1678 | X509 *x = NULL; |
Emilia Kasper | b698174 | 2016-02-01 15:26:18 +0100 | [diff] [blame] | 1679 | const unsigned char *certstart, *certbytes; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1680 | STACK_OF(X509) *sk = NULL; |
| 1681 | EVP_PKEY *pkey = NULL; |
Matt Caswell | d805a57 | 2017-01-06 11:01:14 +0000 | [diff] [blame] | 1682 | size_t chainidx; |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 1683 | unsigned int context = 0; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1684 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1685 | if ((sk = sk_X509_new_null()) == NULL) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1686 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE); |
Matt Caswell | cc273a9 | 2015-04-30 11:32:35 +0100 | [diff] [blame] | 1687 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1688 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1689 | |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 1690 | if ((SSL_IS_TLS13(s) && !PACKET_get_1(pkt, &context)) |
| 1691 | || context != 0 |
| 1692 | || !PACKET_get_net_3(pkt, &cert_list_len) |
Matt Caswell | 1a281aa | 2017-05-11 08:38:21 +0100 | [diff] [blame] | 1693 | || PACKET_remaining(pkt) != cert_list_len |
| 1694 | || PACKET_remaining(pkt) == 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1695 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1696 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1697 | goto f_err; |
| 1698 | } |
Matt Caswell | d805a57 | 2017-01-06 11:01:14 +0000 | [diff] [blame] | 1699 | for (chainidx = 0; PACKET_remaining(pkt); chainidx++) { |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 1700 | if (!PACKET_get_net_3(pkt, &cert_len) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1701 | || !PACKET_get_bytes(pkt, &certbytes, cert_len)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1702 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1703 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1704 | SSL_R_CERT_LENGTH_MISMATCH); |
| 1705 | goto f_err; |
| 1706 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1707 | |
Matt Caswell | df758a8 | 2015-08-04 20:10:06 +0100 | [diff] [blame] | 1708 | certstart = certbytes; |
| 1709 | x = d2i_X509(NULL, (const unsigned char **)&certbytes, cert_len); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1710 | if (x == NULL) { |
| 1711 | al = SSL_AD_BAD_CERTIFICATE; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1712 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_ASN1_LIB); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1713 | goto f_err; |
| 1714 | } |
Matt Caswell | df758a8 | 2015-08-04 20:10:06 +0100 | [diff] [blame] | 1715 | if (certbytes != (certstart + cert_len)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1716 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1717 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1718 | SSL_R_CERT_LENGTH_MISMATCH); |
| 1719 | goto f_err; |
| 1720 | } |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 1721 | |
| 1722 | if (SSL_IS_TLS13(s)) { |
| 1723 | RAW_EXTENSION *rawexts = NULL; |
| 1724 | PACKET extensions; |
| 1725 | |
| 1726 | if (!PACKET_get_length_prefixed_2(pkt, &extensions)) { |
| 1727 | al = SSL_AD_DECODE_ERROR; |
| 1728 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, SSL_R_BAD_LENGTH); |
| 1729 | goto f_err; |
| 1730 | } |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 1731 | if (!tls_collect_extensions(s, &extensions, |
| 1732 | SSL_EXT_TLS1_3_CERTIFICATE, &rawexts, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 1733 | &al, NULL, chainidx == 0) |
Tatsuhiro Tsujikawa | 8e1634e | 2017-04-21 22:10:32 +0900 | [diff] [blame] | 1734 | || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE, |
| 1735 | rawexts, x, chainidx, &al, |
| 1736 | PACKET_remaining(pkt) == 0)) { |
Matt Caswell | 5ee289e | 2017-01-25 14:45:12 +0000 | [diff] [blame] | 1737 | OPENSSL_free(rawexts); |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 1738 | goto f_err; |
Matt Caswell | 5ee289e | 2017-01-25 14:45:12 +0000 | [diff] [blame] | 1739 | } |
| 1740 | OPENSSL_free(rawexts); |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 1741 | } |
| 1742 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1743 | if (!sk_X509_push(sk, x)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1744 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_MALLOC_FAILURE); |
Matt Caswell | cc273a9 | 2015-04-30 11:32:35 +0100 | [diff] [blame] | 1745 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1746 | } |
| 1747 | x = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1748 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1749 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1750 | i = ssl_verify_cert_chain(s, sk); |
Matt Caswell | c8e2f98 | 2016-10-27 10:46:25 +0100 | [diff] [blame] | 1751 | /* |
| 1752 | * The documented interface is that SSL_VERIFY_PEER should be set in order |
| 1753 | * for client side verification of the server certificate to take place. |
| 1754 | * However, historically the code has only checked that *any* flag is set |
| 1755 | * to cause server verification to take place. Use of the other flags makes |
| 1756 | * no sense in client mode. An attempt to clean up the semantics was |
| 1757 | * reverted because at least one application *only* set |
| 1758 | * SSL_VERIFY_FAIL_IF_NO_PEER_CERT. Prior to the clean up this still caused |
| 1759 | * server verification to take place, after the clean up it silently did |
| 1760 | * nothing. SSL_CTX_set_verify()/SSL_set_verify() cannot validate the flags |
| 1761 | * sent to them because they are void functions. Therefore, we now use the |
| 1762 | * (less clean) historic behaviour of performing validation if any flag is |
| 1763 | * set. The *documented* interface remains the same. |
| 1764 | */ |
| 1765 | if (s->verify_mode != SSL_VERIFY_NONE && i <= 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1766 | al = ssl_verify_alarm_type(s->verify_result); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1767 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1768 | SSL_R_CERTIFICATE_VERIFY_FAILED); |
| 1769 | goto f_err; |
| 1770 | } |
| 1771 | ERR_clear_error(); /* but we keep s->verify_result */ |
| 1772 | if (i > 1) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1773 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, i); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1774 | al = SSL_AD_HANDSHAKE_FAILURE; |
| 1775 | goto f_err; |
| 1776 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1777 | |
Dr. Stephen Henson | c34b0f9 | 2015-06-21 19:34:33 +0100 | [diff] [blame] | 1778 | s->session->peer_chain = sk; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1779 | /* |
| 1780 | * Inconsistency alert: cert_chain does include the peer's certificate, |
Matt Caswell | d4d7894 | 2016-05-17 11:51:00 +0100 | [diff] [blame] | 1781 | * which we don't include in statem_srvr.c |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1782 | */ |
| 1783 | x = sk_X509_value(sk, 0); |
| 1784 | sk = NULL; |
| 1785 | /* |
| 1786 | * VRS 19990621: possible memory leak; sk=null ==> !sk_pop_free() @end |
| 1787 | */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1788 | |
Dr. Stephen Henson | 8382fd3 | 2015-12-20 00:32:36 +0000 | [diff] [blame] | 1789 | pkey = X509_get0_pubkey(x); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1790 | |
Matt Caswell | 55a9a16 | 2015-05-12 10:27:53 +0100 | [diff] [blame] | 1791 | if (pkey == NULL || EVP_PKEY_missing_parameters(pkey)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1792 | x = NULL; |
Matt Caswell | f69fe73 | 2017-05-10 16:47:24 +0100 | [diff] [blame] | 1793 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1794 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1795 | SSL_R_UNABLE_TO_FIND_PUBLIC_KEY_PARAMETERS); |
| 1796 | goto f_err; |
| 1797 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1798 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1799 | i = ssl_cert_type(x, pkey); |
Matt Caswell | 55a9a16 | 2015-05-12 10:27:53 +0100 | [diff] [blame] | 1800 | if (i < 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1801 | x = NULL; |
| 1802 | al = SSL3_AL_FATAL; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1803 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1804 | SSL_R_UNKNOWN_CERTIFICATE_TYPE); |
| 1805 | goto f_err; |
| 1806 | } |
Dr. Stephen Henson | 05b8486 | 2017-01-30 15:34:25 +0000 | [diff] [blame] | 1807 | /* |
| 1808 | * Check certificate type is consistent with ciphersuite. For TLS 1.3 |
| 1809 | * skip check since TLS 1.3 ciphersuites can be used with any certificate |
| 1810 | * type. |
| 1811 | */ |
| 1812 | if (!SSL_IS_TLS13(s)) { |
| 1813 | exp_idx = ssl_cipher_get_cert_index(s->s3->tmp.new_cipher); |
| 1814 | if (exp_idx >= 0 && i != exp_idx |
| 1815 | && (exp_idx != SSL_PKEY_GOST_EC || |
| 1816 | (i != SSL_PKEY_GOST12_512 && i != SSL_PKEY_GOST12_256 |
| 1817 | && i != SSL_PKEY_GOST01))) { |
| 1818 | x = NULL; |
| 1819 | al = SSL_AD_ILLEGAL_PARAMETER; |
| 1820 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, |
| 1821 | SSL_R_WRONG_CERTIFICATE_TYPE); |
| 1822 | goto f_err; |
| 1823 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1824 | } |
Dr. Stephen Henson | a273c6e | 2015-06-21 19:08:57 +0100 | [diff] [blame] | 1825 | s->session->peer_type = i; |
Matt Caswell | 55a9a16 | 2015-05-12 10:27:53 +0100 | [diff] [blame] | 1826 | |
| 1827 | X509_free(s->session->peer); |
Dr. Stephen Henson | 05f0fb9 | 2015-08-31 20:29:57 +0100 | [diff] [blame] | 1828 | X509_up_ref(x); |
Matt Caswell | 55a9a16 | 2015-05-12 10:27:53 +0100 | [diff] [blame] | 1829 | s->session->peer = x; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1830 | s->session->verify_result = s->verify_result; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1831 | x = NULL; |
Matt Caswell | 2c5dfdc | 2016-12-05 17:04:51 +0000 | [diff] [blame] | 1832 | |
| 1833 | /* Save the current hash state for when we receive the CertificateVerify */ |
| 1834 | if (SSL_IS_TLS13(s) |
| 1835 | && !ssl_handshake_hash(s, s->cert_verify_hash, |
| 1836 | sizeof(s->cert_verify_hash), |
| 1837 | &s->cert_verify_hash_len)) { |
| 1838 | al = SSL_AD_INTERNAL_ERROR; |
| 1839 | SSLerr(SSL_F_TLS_PROCESS_SERVER_CERTIFICATE, ERR_R_INTERNAL_ERROR); |
| 1840 | goto f_err; |
| 1841 | } |
| 1842 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1843 | ret = MSG_PROCESS_CONTINUE_READING; |
Rich Salz | 6669647 | 2015-05-01 14:29:48 -0400 | [diff] [blame] | 1844 | goto done; |
| 1845 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1846 | f_err: |
Rich Salz | 6669647 | 2015-05-01 14:29:48 -0400 | [diff] [blame] | 1847 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | cc273a9 | 2015-04-30 11:32:35 +0100 | [diff] [blame] | 1848 | err: |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 1849 | ossl_statem_set_error(s); |
Rich Salz | 6669647 | 2015-05-01 14:29:48 -0400 | [diff] [blame] | 1850 | done: |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1851 | X509_free(x); |
| 1852 | sk_X509_pop_free(sk, X509_free); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 1853 | return ret; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1854 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1855 | |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1856 | static int tls_process_ske_psk_preamble(SSL *s, PACKET *pkt, int *al) |
Matt Caswell | 02a7459 | 2016-07-08 12:20:42 +0100 | [diff] [blame] | 1857 | { |
| 1858 | #ifndef OPENSSL_NO_PSK |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1859 | PACKET psk_identity_hint; |
Matt Caswell | 02a7459 | 2016-07-08 12:20:42 +0100 | [diff] [blame] | 1860 | |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1861 | /* PSK ciphersuites are preceded by an identity hint */ |
| 1862 | |
| 1863 | if (!PACKET_get_length_prefixed_2(pkt, &psk_identity_hint)) { |
| 1864 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1865 | SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1866 | return 0; |
| 1867 | } |
| 1868 | |
| 1869 | /* |
| 1870 | * Store PSK identity hint for later use, hint is used in |
| 1871 | * tls_construct_client_key_exchange. Assume that the maximum length of |
| 1872 | * a PSK identity hint can be as long as the maximum length of a PSK |
| 1873 | * identity. |
| 1874 | */ |
| 1875 | if (PACKET_remaining(&psk_identity_hint) > PSK_MAX_IDENTITY_LEN) { |
| 1876 | *al = SSL_AD_HANDSHAKE_FAILURE; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1877 | SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, SSL_R_DATA_LENGTH_TOO_LONG); |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1878 | return 0; |
| 1879 | } |
| 1880 | |
| 1881 | if (PACKET_remaining(&psk_identity_hint) == 0) { |
| 1882 | OPENSSL_free(s->session->psk_identity_hint); |
| 1883 | s->session->psk_identity_hint = NULL; |
| 1884 | } else if (!PACKET_strndup(&psk_identity_hint, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1885 | &s->session->psk_identity_hint)) { |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1886 | *al = SSL_AD_INTERNAL_ERROR; |
| 1887 | return 0; |
| 1888 | } |
| 1889 | |
| 1890 | return 1; |
Matt Caswell | 02a7459 | 2016-07-08 12:20:42 +0100 | [diff] [blame] | 1891 | #else |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1892 | SSLerr(SSL_F_TLS_PROCESS_SKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 1893 | *al = SSL_AD_INTERNAL_ERROR; |
| 1894 | return 0; |
Matt Caswell | 02a7459 | 2016-07-08 12:20:42 +0100 | [diff] [blame] | 1895 | #endif |
| 1896 | } |
| 1897 | |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1898 | static int tls_process_ske_srp(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al) |
| 1899 | { |
| 1900 | #ifndef OPENSSL_NO_SRP |
| 1901 | PACKET prime, generator, salt, server_pub; |
| 1902 | |
| 1903 | if (!PACKET_get_length_prefixed_2(pkt, &prime) |
| 1904 | || !PACKET_get_length_prefixed_2(pkt, &generator) |
| 1905 | || !PACKET_get_length_prefixed_1(pkt, &salt) |
| 1906 | || !PACKET_get_length_prefixed_2(pkt, &server_pub)) { |
| 1907 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1908 | SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1909 | return 0; |
| 1910 | } |
| 1911 | |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1912 | /* TODO(size_t): Convert BN_bin2bn() calls */ |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1913 | if ((s->srp_ctx.N = |
| 1914 | BN_bin2bn(PACKET_data(&prime), |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1915 | (int)PACKET_remaining(&prime), NULL)) == NULL |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1916 | || (s->srp_ctx.g = |
| 1917 | BN_bin2bn(PACKET_data(&generator), |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1918 | (int)PACKET_remaining(&generator), NULL)) == NULL |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1919 | || (s->srp_ctx.s = |
| 1920 | BN_bin2bn(PACKET_data(&salt), |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1921 | (int)PACKET_remaining(&salt), NULL)) == NULL |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1922 | || (s->srp_ctx.B = |
| 1923 | BN_bin2bn(PACKET_data(&server_pub), |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1924 | (int)PACKET_remaining(&server_pub), NULL)) == NULL) { |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1925 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1926 | SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_BN_LIB); |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1927 | return 0; |
| 1928 | } |
| 1929 | |
| 1930 | if (!srp_verify_server_param(s, al)) { |
| 1931 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1932 | SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, SSL_R_BAD_SRP_PARAMETERS); |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1933 | return 0; |
| 1934 | } |
| 1935 | |
| 1936 | /* We must check if there is a certificate */ |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 1937 | if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS)) |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1938 | *pkey = X509_get0_pubkey(s->session->peer); |
| 1939 | |
| 1940 | return 1; |
| 1941 | #else |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1942 | SSLerr(SSL_F_TLS_PROCESS_SKE_SRP, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 1943 | *al = SSL_AD_INTERNAL_ERROR; |
| 1944 | return 0; |
| 1945 | #endif |
| 1946 | } |
| 1947 | |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1948 | static int tls_process_ske_dhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al) |
| 1949 | { |
| 1950 | #ifndef OPENSSL_NO_DH |
| 1951 | PACKET prime, generator, pub_key; |
| 1952 | EVP_PKEY *peer_tmp = NULL; |
| 1953 | |
| 1954 | DH *dh = NULL; |
| 1955 | BIGNUM *p = NULL, *g = NULL, *bnpub_key = NULL; |
| 1956 | |
Richard Levitte | 2650515 | 2016-12-30 21:57:28 +0100 | [diff] [blame] | 1957 | int check_bits = 0; |
| 1958 | |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1959 | if (!PACKET_get_length_prefixed_2(pkt, &prime) |
| 1960 | || !PACKET_get_length_prefixed_2(pkt, &generator) |
| 1961 | || !PACKET_get_length_prefixed_2(pkt, &pub_key)) { |
| 1962 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1963 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1964 | return 0; |
| 1965 | } |
| 1966 | |
| 1967 | peer_tmp = EVP_PKEY_new(); |
| 1968 | dh = DH_new(); |
| 1969 | |
| 1970 | if (peer_tmp == NULL || dh == NULL) { |
| 1971 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1972 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_MALLOC_FAILURE); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1973 | goto err; |
| 1974 | } |
| 1975 | |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 1976 | /* TODO(size_t): Convert these calls */ |
| 1977 | p = BN_bin2bn(PACKET_data(&prime), (int)PACKET_remaining(&prime), NULL); |
| 1978 | g = BN_bin2bn(PACKET_data(&generator), (int)PACKET_remaining(&generator), |
| 1979 | NULL); |
| 1980 | bnpub_key = BN_bin2bn(PACKET_data(&pub_key), |
| 1981 | (int)PACKET_remaining(&pub_key), NULL); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1982 | if (p == NULL || g == NULL || bnpub_key == NULL) { |
| 1983 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1984 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1985 | goto err; |
| 1986 | } |
| 1987 | |
FdaSilvaYY | 69687aa | 2017-03-28 23:57:28 +0200 | [diff] [blame] | 1988 | /* test non-zero pubkey */ |
Richard Levitte | 2650515 | 2016-12-30 21:57:28 +0100 | [diff] [blame] | 1989 | if (BN_is_zero(bnpub_key)) { |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1990 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1991 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1992 | goto err; |
| 1993 | } |
| 1994 | |
| 1995 | if (!DH_set0_pqg(dh, p, NULL, g)) { |
| 1996 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 1997 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 1998 | goto err; |
| 1999 | } |
| 2000 | p = g = NULL; |
| 2001 | |
Richard Levitte | 2650515 | 2016-12-30 21:57:28 +0100 | [diff] [blame] | 2002 | if (DH_check_params(dh, &check_bits) == 0 || check_bits != 0) { |
| 2003 | *al = SSL_AD_DECODE_ERROR; |
| 2004 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_BAD_DH_VALUE); |
| 2005 | goto err; |
| 2006 | } |
| 2007 | |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2008 | if (!DH_set0_key(dh, bnpub_key, NULL)) { |
| 2009 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2010 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_BN_LIB); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2011 | goto err; |
| 2012 | } |
| 2013 | bnpub_key = NULL; |
| 2014 | |
| 2015 | if (!ssl_security(s, SSL_SECOP_TMP_DH, DH_security_bits(dh), 0, dh)) { |
| 2016 | *al = SSL_AD_HANDSHAKE_FAILURE; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2017 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, SSL_R_DH_KEY_TOO_SMALL); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2018 | goto err; |
| 2019 | } |
| 2020 | |
| 2021 | if (EVP_PKEY_assign_DH(peer_tmp, dh) == 0) { |
| 2022 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2023 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_EVP_LIB); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2024 | goto err; |
| 2025 | } |
| 2026 | |
| 2027 | s->s3->peer_tmp = peer_tmp; |
| 2028 | |
| 2029 | /* |
| 2030 | * FIXME: This makes assumptions about which ciphersuites come with |
| 2031 | * public keys. We should have a less ad-hoc way of doing this |
| 2032 | */ |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2033 | if (s->s3->tmp.new_cipher->algorithm_auth & (SSL_aRSA | SSL_aDSS)) |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2034 | *pkey = X509_get0_pubkey(s->session->peer); |
| 2035 | /* else anonymous DH, so no certificate or pkey. */ |
| 2036 | |
| 2037 | return 1; |
| 2038 | |
| 2039 | err: |
| 2040 | BN_free(p); |
| 2041 | BN_free(g); |
| 2042 | BN_free(bnpub_key); |
| 2043 | DH_free(dh); |
| 2044 | EVP_PKEY_free(peer_tmp); |
| 2045 | |
| 2046 | return 0; |
| 2047 | #else |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2048 | SSLerr(SSL_F_TLS_PROCESS_SKE_DHE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2049 | *al = SSL_AD_INTERNAL_ERROR; |
| 2050 | return 0; |
| 2051 | #endif |
| 2052 | } |
| 2053 | |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2054 | static int tls_process_ske_ecdhe(SSL *s, PACKET *pkt, EVP_PKEY **pkey, int *al) |
| 2055 | { |
| 2056 | #ifndef OPENSSL_NO_EC |
| 2057 | PACKET encoded_pt; |
| 2058 | const unsigned char *ecparams; |
| 2059 | int curve_nid; |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2060 | unsigned int curve_flags; |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2061 | EVP_PKEY_CTX *pctx = NULL; |
| 2062 | |
| 2063 | /* |
| 2064 | * Extract elliptic curve parameters and the server's ephemeral ECDH |
| 2065 | * public key. For now we only support named (not generic) curves and |
| 2066 | * ECParameters in this case is just three bytes. |
| 2067 | */ |
| 2068 | if (!PACKET_get_bytes(pkt, &ecparams, 3)) { |
| 2069 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2070 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_TOO_SHORT); |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2071 | return 0; |
| 2072 | } |
| 2073 | /* |
| 2074 | * Check curve is one of our preferences, if not server has sent an |
| 2075 | * invalid curve. ECParameters is 3 bytes. |
| 2076 | */ |
| 2077 | if (!tls1_check_curve(s, ecparams, 3)) { |
| 2078 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2079 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_WRONG_CURVE); |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2080 | return 0; |
| 2081 | } |
| 2082 | |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2083 | curve_nid = tls1_ec_curve_id2nid(*(ecparams + 2), &curve_flags); |
| 2084 | |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2085 | if (curve_nid == 0) { |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2086 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2087 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2088 | SSL_R_UNABLE_TO_FIND_ECDH_PARAMETERS); |
| 2089 | return 0; |
| 2090 | } |
| 2091 | |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2092 | if ((curve_flags & TLS_CURVE_TYPE) == TLS_CURVE_CUSTOM) { |
| 2093 | EVP_PKEY *key = EVP_PKEY_new(); |
| 2094 | |
| 2095 | if (key == NULL || !EVP_PKEY_set_type(key, curve_nid)) { |
| 2096 | *al = SSL_AD_INTERNAL_ERROR; |
| 2097 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB); |
| 2098 | EVP_PKEY_free(key); |
| 2099 | return 0; |
| 2100 | } |
| 2101 | s->s3->peer_tmp = key; |
| 2102 | } else { |
| 2103 | /* Set up EVP_PKEY with named curve as parameters */ |
| 2104 | pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL); |
| 2105 | if (pctx == NULL |
| 2106 | || EVP_PKEY_paramgen_init(pctx) <= 0 |
| 2107 | || EVP_PKEY_CTX_set_ec_paramgen_curve_nid(pctx, curve_nid) <= 0 |
| 2108 | || EVP_PKEY_paramgen(pctx, &s->s3->peer_tmp) <= 0) { |
| 2109 | *al = SSL_AD_INTERNAL_ERROR; |
| 2110 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_EVP_LIB); |
| 2111 | EVP_PKEY_CTX_free(pctx); |
| 2112 | return 0; |
| 2113 | } |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2114 | EVP_PKEY_CTX_free(pctx); |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2115 | pctx = NULL; |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2116 | } |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2117 | |
| 2118 | if (!PACKET_get_length_prefixed_1(pkt, &encoded_pt)) { |
| 2119 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2120 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2121 | return 0; |
| 2122 | } |
| 2123 | |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2124 | if (!EVP_PKEY_set1_tls_encodedpoint(s->s3->peer_tmp, |
| 2125 | PACKET_data(&encoded_pt), |
| 2126 | PACKET_remaining(&encoded_pt))) { |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2127 | *al = SSL_AD_DECODE_ERROR; |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2128 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, SSL_R_BAD_ECPOINT); |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2129 | return 0; |
| 2130 | } |
| 2131 | |
| 2132 | /* |
| 2133 | * The ECC/TLS specification does not mention the use of DSA to sign |
| 2134 | * ECParameters in the server key exchange message. We do support RSA |
| 2135 | * and ECDSA. |
| 2136 | */ |
| 2137 | if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aECDSA) |
| 2138 | *pkey = X509_get0_pubkey(s->session->peer); |
| 2139 | else if (s->s3->tmp.new_cipher->algorithm_auth & SSL_aRSA) |
| 2140 | *pkey = X509_get0_pubkey(s->session->peer); |
| 2141 | /* else anonymous ECDH, so no certificate or pkey. */ |
| 2142 | |
| 2143 | return 1; |
| 2144 | #else |
Matt Caswell | 4fa8886 | 2016-07-08 15:48:26 +0100 | [diff] [blame] | 2145 | SSLerr(SSL_F_TLS_PROCESS_SKE_ECDHE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2146 | *al = SSL_AD_INTERNAL_ERROR; |
| 2147 | return 0; |
| 2148 | #endif |
| 2149 | } |
| 2150 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 2151 | MSG_PROCESS_RETURN tls_process_key_exchange(SSL *s, PACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2152 | { |
Dr. Stephen Henson | 5554fac | 2017-01-25 16:46:02 +0000 | [diff] [blame] | 2153 | int al = -1; |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2154 | long alg_k; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2155 | EVP_PKEY *pkey = NULL; |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2156 | EVP_MD_CTX *md_ctx = NULL; |
| 2157 | EVP_PKEY_CTX *pctx = NULL; |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2158 | PACKET save_param_start, signature; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2159 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2160 | alg_k = s->s3->tmp.new_cipher->algorithm_mkey; |
Dr. Stephen Henson | b15f876 | 2014-10-24 12:30:33 +0100 | [diff] [blame] | 2161 | |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2162 | save_param_start = *pkt; |
Dr. Stephen Henson | 8d92c1f | 2015-06-21 16:26:08 +0100 | [diff] [blame] | 2163 | |
Ben Laurie | 3260adf | 2016-07-31 15:48:24 +0100 | [diff] [blame] | 2164 | #if !defined(OPENSSL_NO_EC) || !defined(OPENSSL_NO_DH) |
Dr. Stephen Henson | 61dd9f7 | 2015-12-14 00:33:33 +0000 | [diff] [blame] | 2165 | EVP_PKEY_free(s->s3->peer_tmp); |
| 2166 | s->s3->peer_tmp = NULL; |
Ben Laurie | 3260adf | 2016-07-31 15:48:24 +0100 | [diff] [blame] | 2167 | #endif |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2168 | |
Dr. Stephen Henson | 7689082 | 2015-06-28 17:15:10 +0100 | [diff] [blame] | 2169 | if (alg_k & SSL_PSK) { |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 2170 | if (!tls_process_ske_psk_preamble(s, pkt, &al)) |
| 2171 | goto err; |
Dr. Stephen Henson | 7689082 | 2015-06-28 17:15:10 +0100 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | /* Nothing else to do for plain PSK or RSAPSK */ |
| 2175 | if (alg_k & (SSL_kPSK | SSL_kRSAPSK)) { |
Matt Caswell | 25c6c10 | 2016-07-08 14:55:56 +0100 | [diff] [blame] | 2176 | } else if (alg_k & SSL_kSRP) { |
| 2177 | if (!tls_process_ske_srp(s, pkt, &pkey, &al)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2178 | goto err; |
Matt Caswell | e01a610 | 2016-07-08 15:08:50 +0100 | [diff] [blame] | 2179 | } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) { |
| 2180 | if (!tls_process_ske_dhe(s, pkt, &pkey, &al)) |
| 2181 | goto err; |
Matt Caswell | ff74aeb | 2016-07-08 15:26:13 +0100 | [diff] [blame] | 2182 | } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) { |
| 2183 | if (!tls_process_ske_ecdhe(s, pkt, &pkey, &al)) |
| 2184 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2185 | } else if (alg_k) { |
| 2186 | al = SSL_AD_UNEXPECTED_MESSAGE; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2187 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_UNEXPECTED_MESSAGE); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2188 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2189 | } |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 2190 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2191 | /* if it was signed, check the signature */ |
| 2192 | if (pkey != NULL) { |
Emilia Kasper | 3294287 | 2015-10-02 14:40:30 +0200 | [diff] [blame] | 2193 | PACKET params; |
Matt Caswell | be8dba2 | 2016-07-08 12:18:18 +0100 | [diff] [blame] | 2194 | int maxsig; |
| 2195 | const EVP_MD *md = NULL; |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2196 | |
Emilia Kasper | 3294287 | 2015-10-02 14:40:30 +0200 | [diff] [blame] | 2197 | /* |
| 2198 | * |pkt| now points to the beginning of the signature, so the difference |
| 2199 | * equals the length of the parameters. |
| 2200 | */ |
| 2201 | if (!PACKET_get_sub_packet(&save_param_start, ¶ms, |
| 2202 | PACKET_remaining(&save_param_start) - |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2203 | PACKET_remaining(pkt))) { |
Emilia Kasper | 3294287 | 2015-10-02 14:40:30 +0200 | [diff] [blame] | 2204 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | f0659bd | 2015-10-22 14:02:46 +0100 | [diff] [blame] | 2205 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2206 | goto err; |
Emilia Kasper | 3294287 | 2015-10-02 14:40:30 +0200 | [diff] [blame] | 2207 | } |
| 2208 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2209 | if (SSL_USE_SIGALGS(s)) { |
Matt Caswell | 703bcee | 2016-12-14 14:31:21 +0000 | [diff] [blame] | 2210 | unsigned int sigalg; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2211 | int rv; |
Matt Caswell | 703bcee | 2016-12-14 14:31:21 +0000 | [diff] [blame] | 2212 | |
| 2213 | if (!PACKET_get_net_2(pkt, &sigalg)) { |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2214 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | f0659bd | 2015-10-22 14:02:46 +0100 | [diff] [blame] | 2215 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_TOO_SHORT); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2216 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2217 | } |
Dr. Stephen Henson | 5554fac | 2017-01-25 16:46:02 +0000 | [diff] [blame] | 2218 | rv = tls12_check_peer_sigalg(s, sigalg, pkey); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2219 | if (rv == -1) { |
| 2220 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2221 | goto err; |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2222 | } else if (rv == 0) { |
| 2223 | al = SSL_AD_DECODE_ERROR; |
| 2224 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2225 | } |
Dr. Stephen Henson | a2f9200 | 2011-05-09 15:44:01 +0000 | [diff] [blame] | 2226 | #ifdef SSL_DEBUG |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2227 | fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md)); |
Dr. Stephen Henson | a2f9200 | 2011-05-09 15:44:01 +0000 | [diff] [blame] | 2228 | #endif |
Dr. Stephen Henson | f365a3e | 2017-02-13 16:32:06 +0000 | [diff] [blame] | 2229 | } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) { |
| 2230 | al = SSL_AD_INTERNAL_ERROR; |
| 2231 | goto err; |
Emilia Kasper | 3294287 | 2015-10-02 14:40:30 +0200 | [diff] [blame] | 2232 | } |
Matt Caswell | f2be92b | 2014-07-26 23:47:40 +0100 | [diff] [blame] | 2233 | |
Dr. Stephen Henson | f365a3e | 2017-02-13 16:32:06 +0000 | [diff] [blame] | 2234 | md = ssl_md(s->s3->tmp.peer_sigalg->hash_idx); |
| 2235 | |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2236 | if (!PACKET_get_length_prefixed_2(pkt, &signature) |
| 2237 | || PACKET_remaining(pkt) != 0) { |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2238 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | f0659bd | 2015-10-22 14:02:46 +0100 | [diff] [blame] | 2239 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2240 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2241 | } |
Matt Caswell | be8dba2 | 2016-07-08 12:18:18 +0100 | [diff] [blame] | 2242 | maxsig = EVP_PKEY_size(pkey); |
| 2243 | if (maxsig < 0) { |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2244 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2245 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2246 | goto err; |
Matt Caswell | 8098fc5 | 2015-08-04 21:22:31 +0100 | [diff] [blame] | 2247 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2248 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2249 | /* |
Matt Caswell | 8098fc5 | 2015-08-04 21:22:31 +0100 | [diff] [blame] | 2250 | * Check signature length |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2251 | */ |
Matt Caswell | be8dba2 | 2016-07-08 12:18:18 +0100 | [diff] [blame] | 2252 | if (PACKET_remaining(&signature) > (size_t)maxsig) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2253 | /* wrong packet length */ |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2254 | al = SSL_AD_DECODE_ERROR; |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2255 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, |
| 2256 | SSL_R_WRONG_SIGNATURE_LENGTH); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2257 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2258 | } |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2259 | |
| 2260 | md_ctx = EVP_MD_CTX_new(); |
| 2261 | if (md_ctx == NULL) { |
| 2262 | al = SSL_AD_INTERNAL_ERROR; |
| 2263 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_MALLOC_FAILURE); |
| 2264 | goto err; |
| 2265 | } |
| 2266 | |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2267 | if (EVP_DigestVerifyInit(md_ctx, &pctx, md, NULL, pkey) <= 0) { |
Dr. Stephen Henson | 192e4bb | 2015-11-21 03:56:52 +0000 | [diff] [blame] | 2268 | al = SSL_AD_INTERNAL_ERROR; |
| 2269 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2270 | goto err; |
Dr. Stephen Henson | 192e4bb | 2015-11-21 03:56:52 +0000 | [diff] [blame] | 2271 | } |
Dr. Stephen Henson | 5554fac | 2017-01-25 16:46:02 +0000 | [diff] [blame] | 2272 | if (SSL_USE_PSS(s)) { |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2273 | if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0 |
Dr. Stephen Henson | 91410d4 | 2017-01-29 13:38:55 +0000 | [diff] [blame] | 2274 | || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx, |
Dr. Stephen Henson | 968ae5b | 2017-01-25 14:02:00 +0000 | [diff] [blame] | 2275 | RSA_PSS_SALTLEN_DIGEST) <= 0) { |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2276 | al = SSL_AD_INTERNAL_ERROR; |
| 2277 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB); |
| 2278 | goto err; |
| 2279 | } |
| 2280 | } |
| 2281 | if (EVP_DigestVerifyUpdate(md_ctx, &(s->s3->client_random[0]), |
| 2282 | SSL3_RANDOM_SIZE) <= 0 |
| 2283 | || EVP_DigestVerifyUpdate(md_ctx, &(s->s3->server_random[0]), |
| 2284 | SSL3_RANDOM_SIZE) <= 0 |
| 2285 | || EVP_DigestVerifyUpdate(md_ctx, PACKET_data(¶ms), |
| 2286 | PACKET_remaining(¶ms)) <= 0) { |
| 2287 | al = SSL_AD_INTERNAL_ERROR; |
| 2288 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_EVP_LIB); |
| 2289 | goto err; |
| 2290 | } |
| 2291 | if (EVP_DigestVerifyFinal(md_ctx, PACKET_data(&signature), |
| 2292 | PACKET_remaining(&signature)) <= 0) { |
Dr. Stephen Henson | 192e4bb | 2015-11-21 03:56:52 +0000 | [diff] [blame] | 2293 | /* bad signature */ |
| 2294 | al = SSL_AD_DECRYPT_ERROR; |
| 2295 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_BAD_SIGNATURE); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2296 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2297 | } |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2298 | EVP_MD_CTX_free(md_ctx); |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2299 | md_ctx = NULL; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2300 | } else { |
Dr. Stephen Henson | 7689082 | 2015-06-28 17:15:10 +0100 | [diff] [blame] | 2301 | /* aNULL, aSRP or PSK do not need public keys */ |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2302 | if (!(s->s3->tmp.new_cipher->algorithm_auth & (SSL_aNULL | SSL_aSRP)) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2303 | && !(alg_k & SSL_PSK)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2304 | /* Might be wrong key type, check it */ |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2305 | if (ssl3_check_cert_and_algorithm(s)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2306 | /* Otherwise this shouldn't happen */ |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2307 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2308 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2309 | } else { |
| 2310 | al = SSL_AD_DECODE_ERROR; |
| 2311 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2312 | goto err; |
| 2313 | } |
| 2314 | /* still data left over */ |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2315 | if (PACKET_remaining(pkt) != 0) { |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2316 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2317 | SSLerr(SSL_F_TLS_PROCESS_KEY_EXCHANGE, SSL_R_EXTRA_DATA_IN_MESSAGE); |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2318 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2319 | } |
| 2320 | } |
Matt Caswell | e1e588a | 2016-07-08 15:41:36 +0100 | [diff] [blame] | 2321 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2322 | return MSG_PROCESS_CONTINUE_READING; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2323 | err: |
Matt Caswell | 7dc1c64 | 2016-07-08 12:44:53 +0100 | [diff] [blame] | 2324 | if (al != -1) |
| 2325 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 2326 | ossl_statem_set_error(s); |
Matt Caswell | fe3066e | 2017-01-03 10:01:39 +0000 | [diff] [blame] | 2327 | EVP_MD_CTX_free(md_ctx); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2328 | return MSG_PROCESS_ERROR; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2329 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2330 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 2331 | MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2332 | { |
| 2333 | int ret = MSG_PROCESS_ERROR; |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2334 | int al = SSL_AD_DECODE_ERROR; |
| 2335 | size_t i; |
| 2336 | |
| 2337 | /* Clear certificate validity flags */ |
| 2338 | for (i = 0; i < SSL_PKEY_NUM; i++) |
| 2339 | s->s3->tmp.valid_flags[i] = 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2340 | |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2341 | if (SSL_IS_TLS13(s)) { |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2342 | PACKET reqctx, extensions; |
| 2343 | RAW_EXTENSION *rawexts = NULL; |
Dr. Stephen Henson | 75c13e7 | 2017-02-23 22:12:28 +0000 | [diff] [blame] | 2344 | |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2345 | /* Free and zero certificate types: it is not present in TLS 1.3 */ |
| 2346 | OPENSSL_free(s->s3->tmp.ctype); |
| 2347 | s->s3->tmp.ctype = NULL; |
| 2348 | s->s3->tmp.ctype_len = 0; |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2349 | |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2350 | /* TODO(TLS1.3) need to process request context, for now ignore */ |
| 2351 | if (!PACKET_get_length_prefixed_1(pkt, &reqctx)) { |
| 2352 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, |
| 2353 | SSL_R_LENGTH_MISMATCH); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2354 | goto err; |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2355 | } |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2356 | |
| 2357 | if (!PACKET_get_length_prefixed_2(pkt, &extensions)) { |
Dr. Stephen Henson | 45615c5 | 2017-03-10 16:31:20 +0000 | [diff] [blame] | 2358 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, SSL_R_BAD_LENGTH); |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2359 | goto err; |
| 2360 | } |
| 2361 | if (!tls_collect_extensions(s, &extensions, |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 2362 | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 2363 | &rawexts, &al, NULL, 1) |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 2364 | || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_CERTIFICATE_REQUEST, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 2365 | rawexts, NULL, 0, &al, 1)) { |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2366 | OPENSSL_free(rawexts); |
| 2367 | goto err; |
| 2368 | } |
| 2369 | OPENSSL_free(rawexts); |
| 2370 | if (!tls1_process_sigalgs(s)) { |
| 2371 | al = SSL_AD_INTERNAL_ERROR; |
| 2372 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_MALLOC_FAILURE); |
| 2373 | goto err; |
| 2374 | } |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2375 | } else { |
| 2376 | PACKET ctypes; |
| 2377 | |
| 2378 | /* get the certificate types */ |
| 2379 | if (!PACKET_get_length_prefixed_1(pkt, &ctypes)) { |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2380 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, |
| 2381 | SSL_R_LENGTH_MISMATCH); |
| 2382 | goto err; |
| 2383 | } |
| 2384 | |
| 2385 | if (!PACKET_memdup(&ctypes, &s->s3->tmp.ctype, &s->s3->tmp.ctype_len)) { |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2386 | al = SSL_AD_INTERNAL_ERROR; |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2387 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, ERR_R_INTERNAL_ERROR); |
| 2388 | goto err; |
| 2389 | } |
Matt Caswell | ac11233 | 2015-08-04 22:12:53 +0100 | [diff] [blame] | 2390 | |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2391 | if (SSL_USE_SIGALGS(s)) { |
| 2392 | PACKET sigalgs; |
Matt Caswell | 703bcee | 2016-12-14 14:31:21 +0000 | [diff] [blame] | 2393 | |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2394 | if (!PACKET_get_length_prefixed_2(pkt, &sigalgs)) { |
| 2395 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, |
| 2396 | SSL_R_LENGTH_MISMATCH); |
| 2397 | goto err; |
| 2398 | } |
| 2399 | |
| 2400 | if (!tls1_save_sigalgs(s, &sigalgs)) { |
| 2401 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, |
| 2402 | SSL_R_SIGNATURE_ALGORITHMS_ERROR); |
| 2403 | goto err; |
| 2404 | } |
| 2405 | if (!tls1_process_sigalgs(s)) { |
| 2406 | al = SSL_AD_INTERNAL_ERROR; |
| 2407 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, |
| 2408 | ERR_R_MALLOC_FAILURE); |
| 2409 | goto err; |
| 2410 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2411 | } |
Matt Caswell | ac11233 | 2015-08-04 22:12:53 +0100 | [diff] [blame] | 2412 | |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2413 | /* get the CA RDNs */ |
| 2414 | if (!parse_ca_names(s, pkt, &al)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2415 | goto err; |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2416 | } |
| 2417 | |
| 2418 | if (PACKET_remaining(pkt) != 0) { |
Dr. Stephen Henson | 03f44b9 | 2017-02-22 17:26:44 +0000 | [diff] [blame] | 2419 | SSLerr(SSL_F_TLS_PROCESS_CERTIFICATE_REQUEST, SSL_R_LENGTH_MISMATCH); |
| 2420 | goto err; |
| 2421 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2422 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2423 | /* we should setup a certificate to return.... */ |
| 2424 | s->s3->tmp.cert_req = 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2425 | |
Matt Caswell | 05c4f1d | 2016-06-22 14:31:32 +0100 | [diff] [blame] | 2426 | ret = MSG_PROCESS_CONTINUE_PROCESSING; |
Matt Caswell | cc273a9 | 2015-04-30 11:32:35 +0100 | [diff] [blame] | 2427 | goto done; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2428 | err: |
Dr. Stephen Henson | 32f6610 | 2017-03-13 13:29:34 +0000 | [diff] [blame] | 2429 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 2430 | ossl_statem_set_error(s); |
Matt Caswell | cc273a9 | 2015-04-30 11:32:35 +0100 | [diff] [blame] | 2431 | done: |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2432 | return ret; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2433 | } |
| 2434 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 2435 | MSG_PROCESS_RETURN tls_process_new_session_ticket(SSL *s, PACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2436 | { |
Matt Caswell | 6df55ca | 2017-01-20 13:53:38 +0000 | [diff] [blame] | 2437 | int al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2438 | unsigned int ticklen; |
Matt Caswell | 9ac6244 | 2017-01-20 13:50:47 +0000 | [diff] [blame] | 2439 | unsigned long ticket_lifetime_hint, age_add = 0; |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 2440 | unsigned int sess_len; |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2441 | RAW_EXTENSION *exts = NULL; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2442 | |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2443 | if (!PACKET_get_net_4(pkt, &ticket_lifetime_hint) |
Matt Caswell | fc24f0b | 2017-01-17 10:43:37 +0000 | [diff] [blame] | 2444 | || (SSL_IS_TLS13(s) && !PACKET_get_net_4(pkt, &age_add)) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2445 | || !PACKET_get_net_2(pkt, &ticklen) |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2446 | || (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) != ticklen) |
Matt Caswell | 1f5b44e | 2017-01-20 16:02:07 +0000 | [diff] [blame] | 2447 | || (SSL_IS_TLS13(s) |
| 2448 | && (ticklen == 0 || PACKET_remaining(pkt) < ticklen))) { |
Matt Caswell | f0659bd | 2015-10-22 14:02:46 +0100 | [diff] [blame] | 2449 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH); |
Emilia Kasper | e711da7 | 2015-09-10 16:32:51 +0200 | [diff] [blame] | 2450 | goto f_err; |
| 2451 | } |
| 2452 | |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2453 | /* |
| 2454 | * Server is allowed to change its mind (in <=TLSv1.2) and send an empty |
| 2455 | * ticket. We already checked this TLSv1.3 case above, so it should never |
| 2456 | * be 0 here in that instance |
| 2457 | */ |
Emilia Kasper | e711da7 | 2015-09-10 16:32:51 +0200 | [diff] [blame] | 2458 | if (ticklen == 0) |
Matt Caswell | c9de4a2 | 2015-10-22 15:02:14 +0100 | [diff] [blame] | 2459 | return MSG_PROCESS_CONTINUE_READING; |
Emilia Kasper | e711da7 | 2015-09-10 16:32:51 +0200 | [diff] [blame] | 2460 | |
Matt Caswell | 150840b | 2017-03-23 11:22:26 +0000 | [diff] [blame] | 2461 | /* |
| 2462 | * Sessions must be immutable once they go into the session cache. Otherwise |
| 2463 | * we can get multi-thread problems. Therefore we don't "update" sessions, |
| 2464 | * we replace them with a duplicate. In TLSv1.3 we need to do this every |
| 2465 | * time a NewSessionTicket arrives because those messages arrive |
| 2466 | * post-handshake and the session may have already gone into the session |
| 2467 | * cache. |
| 2468 | */ |
| 2469 | if (SSL_IS_TLS13(s) || s->session->session_id_length > 0) { |
Matt Caswell | 98ece4e | 2015-05-18 16:27:48 +0100 | [diff] [blame] | 2470 | int i = s->session_ctx->session_cache_mode; |
| 2471 | SSL_SESSION *new_sess; |
| 2472 | /* |
| 2473 | * We reused an existing session, so we need to replace it with a new |
| 2474 | * one |
| 2475 | */ |
| 2476 | if (i & SSL_SESS_CACHE_CLIENT) { |
| 2477 | /* |
Matt Caswell | e4612d0 | 2016-06-13 11:24:15 +0100 | [diff] [blame] | 2478 | * Remove the old session from the cache. We carry on if this fails |
Matt Caswell | 98ece4e | 2015-05-18 16:27:48 +0100 | [diff] [blame] | 2479 | */ |
Matt Caswell | e4612d0 | 2016-06-13 11:24:15 +0100 | [diff] [blame] | 2480 | SSL_CTX_remove_session(s->session_ctx, s->session); |
Matt Caswell | 98ece4e | 2015-05-18 16:27:48 +0100 | [diff] [blame] | 2481 | } |
| 2482 | |
| 2483 | if ((new_sess = ssl_session_dup(s->session, 0)) == 0) { |
| 2484 | al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2485 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 98ece4e | 2015-05-18 16:27:48 +0100 | [diff] [blame] | 2486 | goto f_err; |
| 2487 | } |
| 2488 | |
| 2489 | SSL_SESSION_free(s->session); |
| 2490 | s->session = new_sess; |
| 2491 | } |
| 2492 | |
Matt Caswell | fc24f0b | 2017-01-17 10:43:37 +0000 | [diff] [blame] | 2493 | /* |
| 2494 | * Technically the cast to long here is not guaranteed by the C standard - |
| 2495 | * but we use it elsewhere, so this should be ok. |
| 2496 | */ |
| 2497 | s->session->time = (long)time(NULL); |
| 2498 | |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2499 | OPENSSL_free(s->session->ext.tick); |
| 2500 | s->session->ext.tick = NULL; |
| 2501 | s->session->ext.ticklen = 0; |
Emilia Kasper | e711da7 | 2015-09-10 16:32:51 +0200 | [diff] [blame] | 2502 | |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2503 | s->session->ext.tick = OPENSSL_malloc(ticklen); |
| 2504 | if (s->session->ext.tick == NULL) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2505 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2506 | goto err; |
| 2507 | } |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2508 | if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) { |
Matt Caswell | 561e12b | 2015-08-05 14:50:24 +0100 | [diff] [blame] | 2509 | al = SSL_AD_DECODE_ERROR; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2510 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_LENGTH_MISMATCH); |
Matt Caswell | 561e12b | 2015-08-05 14:50:24 +0100 | [diff] [blame] | 2511 | goto f_err; |
| 2512 | } |
Emilia Kasper | e711da7 | 2015-09-10 16:32:51 +0200 | [diff] [blame] | 2513 | |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2514 | s->session->ext.tick_lifetime_hint = ticket_lifetime_hint; |
Matt Caswell | fc24f0b | 2017-01-17 10:43:37 +0000 | [diff] [blame] | 2515 | s->session->ext.tick_age_add = age_add; |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2516 | s->session->ext.ticklen = ticklen; |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2517 | |
| 2518 | if (SSL_IS_TLS13(s)) { |
| 2519 | PACKET extpkt; |
| 2520 | |
| 2521 | if (!PACKET_as_length_prefixed_2(pkt, &extpkt) |
Matt Caswell | 26b9172 | 2017-05-11 11:31:57 +0100 | [diff] [blame] | 2522 | || PACKET_remaining(pkt) != 0 |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2523 | || !tls_collect_extensions(s, &extpkt, |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 2524 | SSL_EXT_TLS1_3_NEW_SESSION_TICKET, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 2525 | &exts, &al, NULL, 1) |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 2526 | || !tls_parse_all_extensions(s, |
| 2527 | SSL_EXT_TLS1_3_NEW_SESSION_TICKET, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 2528 | exts, NULL, 0, &al, 1)) { |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2529 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, SSL_R_BAD_EXTENSION); |
| 2530 | goto f_err; |
| 2531 | } |
| 2532 | } |
| 2533 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2534 | /* |
| 2535 | * There are two ways to detect a resumed ticket session. One is to set |
| 2536 | * an appropriate session ID and then the server must return a match in |
| 2537 | * ServerHello. This allows the normal client session ID matching to work |
| 2538 | * and we know much earlier that the ticket has been accepted. The |
| 2539 | * other way is to set zero length session ID when the ticket is |
| 2540 | * presented and rely on the handshake to determine session resumption. |
| 2541 | * We choose the former approach because this fits in with assumptions |
| 2542 | * elsewhere in OpenSSL. The session ID is set to the SHA256 (or SHA1 is |
| 2543 | * SHA256 is disabled) hash of the ticket. |
| 2544 | */ |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 2545 | /* |
| 2546 | * TODO(size_t): we use sess_len here because EVP_Digest expects an int |
| 2547 | * but s->session->session_id_length is a size_t |
| 2548 | */ |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2549 | if (!EVP_Digest(s->session->ext.tick, ticklen, |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 2550 | s->session->session_id, &sess_len, |
Dr. Stephen Henson | d166ed8 | 2016-06-18 15:46:13 +0100 | [diff] [blame] | 2551 | EVP_sha256(), NULL)) { |
| 2552 | SSLerr(SSL_F_TLS_PROCESS_NEW_SESSION_TICKET, ERR_R_EVP_LIB); |
| 2553 | goto err; |
| 2554 | } |
Matt Caswell | ec60ccc | 2016-10-04 20:31:19 +0100 | [diff] [blame] | 2555 | s->session->session_id_length = sess_len; |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2556 | |
| 2557 | /* This is a standalone message in TLSv1.3, so there is no more to read */ |
| 2558 | if (SSL_IS_TLS13(s)) { |
Matt Caswell | 33d9341 | 2017-01-30 19:37:17 +0000 | [diff] [blame] | 2559 | OPENSSL_free(exts); |
Matt Caswell | de1df7e | 2017-01-13 13:32:11 +0000 | [diff] [blame] | 2560 | ssl_update_cache(s, SSL_SESS_CACHE_CLIENT); |
| 2561 | return MSG_PROCESS_FINISHED_READING; |
| 2562 | } |
| 2563 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2564 | return MSG_PROCESS_CONTINUE_READING; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2565 | f_err: |
| 2566 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 2567 | err: |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 2568 | ossl_statem_set_error(s); |
Matt Caswell | 33d9341 | 2017-01-30 19:37:17 +0000 | [diff] [blame] | 2569 | OPENSSL_free(exts); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2570 | return MSG_PROCESS_ERROR; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2571 | } |
| 2572 | |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2573 | /* |
| 2574 | * In TLSv1.3 this is called from the extensions code, otherwise it is used to |
| 2575 | * parse a separate message. Returns 1 on success or 0 on failure. On failure |
| 2576 | * |*al| is populated with a suitable alert code. |
| 2577 | */ |
| 2578 | int tls_process_cert_status_body(SSL *s, PACKET *pkt, int *al) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2579 | { |
Matt Caswell | 8b0e934 | 2016-10-06 19:17:54 +0100 | [diff] [blame] | 2580 | size_t resplen; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2581 | unsigned int type; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2582 | |
Matt Caswell | 73999b6 | 2015-09-10 10:22:30 +0100 | [diff] [blame] | 2583 | if (!PACKET_get_1(pkt, &type) |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 2584 | || type != TLSEXT_STATUSTYPE_ocsp) { |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2585 | *al = SSL_AD_DECODE_ERROR; |
| 2586 | SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, |
| 2587 | SSL_R_UNSUPPORTED_STATUS_TYPE); |
| 2588 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2589 | } |
Matt Caswell | 56a26ce | 2016-10-19 16:28:12 +0100 | [diff] [blame] | 2590 | if (!PACKET_get_net_3_len(pkt, &resplen) |
| 2591 | || PACKET_remaining(pkt) != resplen) { |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2592 | *al = SSL_AD_DECODE_ERROR; |
| 2593 | SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, SSL_R_LENGTH_MISMATCH); |
| 2594 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2595 | } |
Rich Salz | 8cbfcc7 | 2016-12-11 15:01:28 -0500 | [diff] [blame] | 2596 | s->ext.ocsp.resp = OPENSSL_malloc(resplen); |
| 2597 | if (s->ext.ocsp.resp == NULL) { |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2598 | *al = SSL_AD_INTERNAL_ERROR; |
| 2599 | SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, ERR_R_MALLOC_FAILURE); |
| 2600 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2601 | } |
Rich Salz | 8cbfcc7 | 2016-12-11 15:01:28 -0500 | [diff] [blame] | 2602 | if (!PACKET_copy_bytes(pkt, s->ext.ocsp.resp, resplen)) { |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2603 | *al = SSL_AD_DECODE_ERROR; |
| 2604 | SSLerr(SSL_F_TLS_PROCESS_CERT_STATUS_BODY, SSL_R_LENGTH_MISMATCH); |
| 2605 | return 0; |
Matt Caswell | ac63710 | 2015-08-05 15:52:26 +0100 | [diff] [blame] | 2606 | } |
Rich Salz | 8cbfcc7 | 2016-12-11 15:01:28 -0500 | [diff] [blame] | 2607 | s->ext.ocsp.resp_len = resplen; |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2608 | |
| 2609 | return 1; |
| 2610 | } |
Cory Benfield | 2faa1b4 | 2017-01-20 16:22:30 +0000 | [diff] [blame] | 2611 | |
Matt Caswell | f63e428 | 2016-12-02 14:46:54 +0000 | [diff] [blame] | 2612 | |
| 2613 | MSG_PROCESS_RETURN tls_process_cert_status(SSL *s, PACKET *pkt) |
| 2614 | { |
| 2615 | int al; |
| 2616 | |
| 2617 | if (!tls_process_cert_status_body(s, pkt, &al)) { |
| 2618 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 2619 | ossl_statem_set_error(s); |
| 2620 | return MSG_PROCESS_ERROR; |
| 2621 | } |
| 2622 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2623 | return MSG_PROCESS_CONTINUE_READING; |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 2624 | } |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 2625 | |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2626 | /* |
| 2627 | * Perform miscellaneous checks and processing after we have received the |
| 2628 | * server's initial flight. In TLS1.3 this is after the Server Finished message. |
Matt Caswell | 6530c49 | 2016-11-23 15:38:32 +0000 | [diff] [blame] | 2629 | * In <=TLS1.2 this is after the ServerDone message. Returns 1 on success or 0 |
| 2630 | * on failure. |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2631 | */ |
| 2632 | int tls_process_initial_server_flight(SSL *s, int *al) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 2633 | { |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 2634 | /* |
| 2635 | * at this point we check that we have the required stuff from |
| 2636 | * the server |
| 2637 | */ |
| 2638 | if (!ssl3_check_cert_and_algorithm(s)) { |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2639 | *al = SSL_AD_HANDSHAKE_FAILURE; |
| 2640 | return 0; |
Matt Caswell | a455d0f | 2015-09-14 15:06:37 +0100 | [diff] [blame] | 2641 | } |
| 2642 | |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2643 | /* |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2644 | * Call the ocsp status callback if needed. The |ext.ocsp.resp| and |
| 2645 | * |ext.ocsp.resp_len| values will be set if we actually received a status |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2646 | * message, or NULL and -1 otherwise |
| 2647 | */ |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 2648 | if (s->ext.status_type != TLSEXT_STATUSTYPE_nothing |
| 2649 | && s->ctx->ext.status_cb != NULL) { |
| 2650 | int ret = s->ctx->ext.status_cb(s, s->ctx->ext.status_arg); |
| 2651 | |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2652 | if (ret == 0) { |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2653 | *al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE; |
| 2654 | SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT, |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2655 | SSL_R_INVALID_STATUS_RESPONSE); |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2656 | return 0; |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2657 | } |
| 2658 | if (ret < 0) { |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2659 | *al = SSL_AD_INTERNAL_ERROR; |
| 2660 | SSLerr(SSL_F_TLS_PROCESS_INITIAL_SERVER_FLIGHT, |
| 2661 | ERR_R_MALLOC_FAILURE); |
| 2662 | return 0; |
Matt Caswell | bb1aaab | 2015-11-05 14:31:11 +0000 | [diff] [blame] | 2663 | } |
| 2664 | } |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 2665 | #ifndef OPENSSL_NO_CT |
| 2666 | if (s->ct_validation_callback != NULL) { |
Viktor Dukhovni | 4334143 | 2016-04-07 14:17:37 -0400 | [diff] [blame] | 2667 | /* Note we validate the SCTs whether or not we abort on error */ |
| 2668 | if (!ssl_validate_ct(s) && (s->verify_mode & SSL_VERIFY_PEER)) { |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2669 | *al = SSL_AD_HANDSHAKE_FAILURE; |
| 2670 | return 0; |
Rob Percival | ed29e82 | 2016-03-03 16:19:23 +0000 | [diff] [blame] | 2671 | } |
| 2672 | } |
| 2673 | #endif |
| 2674 | |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2675 | return 1; |
| 2676 | } |
| 2677 | |
| 2678 | MSG_PROCESS_RETURN tls_process_server_done(SSL *s, PACKET *pkt) |
| 2679 | { |
| 2680 | int al = SSL_AD_INTERNAL_ERROR; |
| 2681 | |
| 2682 | if (PACKET_remaining(pkt) > 0) { |
| 2683 | /* should contain no data */ |
| 2684 | al = SSL_AD_DECODE_ERROR; |
| 2685 | SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_LENGTH_MISMATCH); |
| 2686 | goto err; |
| 2687 | } |
| 2688 | #ifndef OPENSSL_NO_SRP |
| 2689 | if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) { |
| 2690 | if (SRP_Calc_A_param(s) <= 0) { |
| 2691 | SSLerr(SSL_F_TLS_PROCESS_SERVER_DONE, SSL_R_SRP_A_CALC); |
| 2692 | goto err; |
| 2693 | } |
| 2694 | } |
| 2695 | #endif |
| 2696 | |
| 2697 | /* |
| 2698 | * Error queue messages are generated directly by this function |
| 2699 | */ |
| 2700 | if (!tls_process_initial_server_flight(s, &al)) |
| 2701 | goto err; |
| 2702 | |
Matt Caswell | bd79bcb | 2017-04-20 15:13:28 +0100 | [diff] [blame] | 2703 | return MSG_PROCESS_FINISHED_READING; |
Matt Caswell | 7776a36 | 2016-11-15 10:13:09 +0000 | [diff] [blame] | 2704 | |
| 2705 | err: |
| 2706 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 2707 | ossl_statem_set_error(s); |
| 2708 | return MSG_PROCESS_ERROR; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 2709 | } |
Bodo Möller | 176f31d | 2003-02-28 15:37:10 +0000 | [diff] [blame] | 2710 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2711 | static int tls_construct_cke_psk_preamble(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2712 | { |
| 2713 | #ifndef OPENSSL_NO_PSK |
| 2714 | int ret = 0; |
| 2715 | /* |
| 2716 | * The callback needs PSK_MAX_IDENTITY_LEN + 1 bytes to return a |
| 2717 | * \0-terminated identity. The last byte is for us for simulating |
| 2718 | * strnlen. |
| 2719 | */ |
| 2720 | char identity[PSK_MAX_IDENTITY_LEN + 1]; |
| 2721 | size_t identitylen = 0; |
| 2722 | unsigned char psk[PSK_MAX_PSK_LEN]; |
| 2723 | unsigned char *tmppsk = NULL; |
| 2724 | char *tmpidentity = NULL; |
| 2725 | size_t psklen = 0; |
| 2726 | |
| 2727 | if (s->psk_client_callback == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2728 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, SSL_R_PSK_NO_CLIENT_CB); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2729 | *al = SSL_AD_INTERNAL_ERROR; |
| 2730 | goto err; |
| 2731 | } |
| 2732 | |
| 2733 | memset(identity, 0, sizeof(identity)); |
| 2734 | |
| 2735 | psklen = s->psk_client_callback(s, s->session->psk_identity_hint, |
| 2736 | identity, sizeof(identity) - 1, |
| 2737 | psk, sizeof(psk)); |
| 2738 | |
| 2739 | if (psklen > PSK_MAX_PSK_LEN) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2740 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2741 | *al = SSL_AD_HANDSHAKE_FAILURE; |
| 2742 | goto err; |
| 2743 | } else if (psklen == 0) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2744 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2745 | SSL_R_PSK_IDENTITY_NOT_FOUND); |
| 2746 | *al = SSL_AD_HANDSHAKE_FAILURE; |
| 2747 | goto err; |
| 2748 | } |
| 2749 | |
| 2750 | identitylen = strlen(identity); |
| 2751 | if (identitylen > PSK_MAX_IDENTITY_LEN) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2752 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2753 | *al = SSL_AD_HANDSHAKE_FAILURE; |
| 2754 | goto err; |
| 2755 | } |
| 2756 | |
| 2757 | tmppsk = OPENSSL_memdup(psk, psklen); |
| 2758 | tmpidentity = OPENSSL_strdup(identity); |
| 2759 | if (tmppsk == NULL || tmpidentity == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2760 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2761 | *al = SSL_AD_INTERNAL_ERROR; |
| 2762 | goto err; |
| 2763 | } |
| 2764 | |
| 2765 | OPENSSL_free(s->s3->tmp.psk); |
| 2766 | s->s3->tmp.psk = tmppsk; |
| 2767 | s->s3->tmp.psklen = psklen; |
| 2768 | tmppsk = NULL; |
| 2769 | OPENSSL_free(s->session->psk_identity); |
| 2770 | s->session->psk_identity = tmpidentity; |
| 2771 | tmpidentity = NULL; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2772 | |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 2773 | if (!WPACKET_sub_memcpy_u16(pkt, identity, identitylen)) { |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2774 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR); |
| 2775 | *al = SSL_AD_INTERNAL_ERROR; |
| 2776 | goto err; |
| 2777 | } |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2778 | |
| 2779 | ret = 1; |
| 2780 | |
| 2781 | err: |
| 2782 | OPENSSL_cleanse(psk, psklen); |
| 2783 | OPENSSL_cleanse(identity, sizeof(identity)); |
| 2784 | OPENSSL_clear_free(tmppsk, psklen); |
| 2785 | OPENSSL_clear_free(tmpidentity, identitylen); |
| 2786 | |
| 2787 | return ret; |
| 2788 | #else |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2789 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_PSK_PREAMBLE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2790 | *al = SSL_AD_INTERNAL_ERROR; |
| 2791 | return 0; |
| 2792 | #endif |
| 2793 | } |
| 2794 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2795 | static int tls_construct_cke_rsa(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2796 | { |
| 2797 | #ifndef OPENSSL_NO_RSA |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2798 | unsigned char *encdata = NULL; |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2799 | EVP_PKEY *pkey = NULL; |
| 2800 | EVP_PKEY_CTX *pctx = NULL; |
| 2801 | size_t enclen; |
| 2802 | unsigned char *pms = NULL; |
| 2803 | size_t pmslen = 0; |
| 2804 | |
| 2805 | if (s->session->peer == NULL) { |
| 2806 | /* |
| 2807 | * We should always have a server certificate with SSL_kRSA. |
| 2808 | */ |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2809 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2810 | return 0; |
| 2811 | } |
| 2812 | |
| 2813 | pkey = X509_get0_pubkey(s->session->peer); |
| 2814 | if (EVP_PKEY_get0_RSA(pkey) == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2815 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2816 | return 0; |
| 2817 | } |
| 2818 | |
| 2819 | pmslen = SSL_MAX_MASTER_KEY_LENGTH; |
| 2820 | pms = OPENSSL_malloc(pmslen); |
| 2821 | if (pms == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2822 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2823 | *al = SSL_AD_INTERNAL_ERROR; |
| 2824 | return 0; |
| 2825 | } |
| 2826 | |
| 2827 | pms[0] = s->client_version >> 8; |
| 2828 | pms[1] = s->client_version & 0xff; |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 2829 | /* TODO(size_t): Convert this function */ |
| 2830 | if (RAND_bytes(pms + 2, (int)(pmslen - 2)) <= 0) { |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2831 | goto err; |
| 2832 | } |
| 2833 | |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2834 | /* Fix buf for TLS and beyond */ |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2835 | if (s->version > SSL3_VERSION && !WPACKET_start_sub_packet_u16(pkt)) { |
| 2836 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR); |
| 2837 | goto err; |
| 2838 | } |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2839 | pctx = EVP_PKEY_CTX_new(pkey, NULL); |
| 2840 | if (pctx == NULL || EVP_PKEY_encrypt_init(pctx) <= 0 |
| 2841 | || EVP_PKEY_encrypt(pctx, NULL, &enclen, pms, pmslen) <= 0) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2842 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_EVP_LIB); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2843 | goto err; |
| 2844 | } |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2845 | if (!WPACKET_allocate_bytes(pkt, enclen, &encdata) |
| 2846 | || EVP_PKEY_encrypt(pctx, encdata, &enclen, pms, pmslen) <= 0) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2847 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, SSL_R_BAD_RSA_ENCRYPT); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2848 | goto err; |
| 2849 | } |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2850 | EVP_PKEY_CTX_free(pctx); |
| 2851 | pctx = NULL; |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2852 | |
| 2853 | /* Fix buf for TLS and beyond */ |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2854 | if (s->version > SSL3_VERSION && !WPACKET_close(pkt)) { |
| 2855 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR); |
| 2856 | goto err; |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2857 | } |
| 2858 | |
Cory Benfield | 2faa1b4 | 2017-01-20 16:22:30 +0000 | [diff] [blame] | 2859 | /* Log the premaster secret, if logging is enabled. */ |
| 2860 | if (!ssl_log_rsa_client_key_exchange(s, encdata, enclen, pms, pmslen)) |
| 2861 | goto err; |
| 2862 | |
Rich Salz | 26fb4b0 | 2017-04-24 09:41:51 -0400 | [diff] [blame] | 2863 | s->s3->tmp.pms = pms; |
| 2864 | s->s3->tmp.pmslen = pmslen; |
| 2865 | |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2866 | return 1; |
| 2867 | err: |
| 2868 | OPENSSL_clear_free(pms, pmslen); |
| 2869 | EVP_PKEY_CTX_free(pctx); |
| 2870 | |
| 2871 | return 0; |
| 2872 | #else |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2873 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_RSA, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 2874 | *al = SSL_AD_INTERNAL_ERROR; |
| 2875 | return 0; |
| 2876 | #endif |
| 2877 | } |
| 2878 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2879 | static int tls_construct_cke_dhe(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2880 | { |
| 2881 | #ifndef OPENSSL_NO_DH |
| 2882 | DH *dh_clnt = NULL; |
| 2883 | const BIGNUM *pub_key; |
| 2884 | EVP_PKEY *ckey = NULL, *skey = NULL; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2885 | unsigned char *keybytes = NULL; |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2886 | |
| 2887 | skey = s->s3->peer_tmp; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2888 | if (skey == NULL) |
| 2889 | goto err; |
| 2890 | |
Dr. Stephen Henson | 0a699a0 | 2016-08-15 14:07:33 +0100 | [diff] [blame] | 2891 | ckey = ssl_generate_pkey(skey); |
Matt Caswell | b599ce3 | 2016-11-23 22:12:40 +0000 | [diff] [blame] | 2892 | if (ckey == NULL) |
| 2893 | goto err; |
| 2894 | |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2895 | dh_clnt = EVP_PKEY_get0_DH(ckey); |
| 2896 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 2897 | if (dh_clnt == NULL || ssl_derive(s, ckey, skey, 0) == 0) |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2898 | goto err; |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2899 | |
| 2900 | /* send off the data */ |
| 2901 | DH_get0_key(dh_clnt, &pub_key, NULL); |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 2902 | if (!WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(pub_key), &keybytes)) |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2903 | goto err; |
| 2904 | |
| 2905 | BN_bn2bin(pub_key, keybytes); |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2906 | EVP_PKEY_free(ckey); |
| 2907 | |
| 2908 | return 1; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2909 | err: |
| 2910 | EVP_PKEY_free(ckey); |
| 2911 | #endif |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2912 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_DHE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2913 | *al = SSL_AD_INTERNAL_ERROR; |
| 2914 | return 0; |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 2915 | } |
| 2916 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2917 | static int tls_construct_cke_ecdhe(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2918 | { |
| 2919 | #ifndef OPENSSL_NO_EC |
| 2920 | unsigned char *encodedPoint = NULL; |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 2921 | size_t encoded_pt_len = 0; |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2922 | EVP_PKEY *ckey = NULL, *skey = NULL; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2923 | int ret = 0; |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2924 | |
| 2925 | skey = s->s3->peer_tmp; |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2926 | if (skey == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2927 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2928 | return 0; |
| 2929 | } |
| 2930 | |
Dr. Stephen Henson | 0a699a0 | 2016-08-15 14:07:33 +0100 | [diff] [blame] | 2931 | ckey = ssl_generate_pkey(skey); |
Matt Caswell | b599ce3 | 2016-11-23 22:12:40 +0000 | [diff] [blame] | 2932 | if (ckey == NULL) { |
| 2933 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_MALLOC_FAILURE); |
| 2934 | goto err; |
| 2935 | } |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2936 | |
Matt Caswell | 0f1e51e | 2016-11-02 15:03:56 +0000 | [diff] [blame] | 2937 | if (ssl_derive(s, ckey, skey, 0) == 0) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2938 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EVP_LIB); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2939 | goto err; |
| 2940 | } |
| 2941 | |
| 2942 | /* Generate encoding of client key */ |
Dr. Stephen Henson | ec24630 | 2016-08-11 15:41:49 +0100 | [diff] [blame] | 2943 | encoded_pt_len = EVP_PKEY_get1_tls_encodedpoint(ckey, &encodedPoint); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2944 | |
| 2945 | if (encoded_pt_len == 0) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2946 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_EC_LIB); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2947 | goto err; |
| 2948 | } |
| 2949 | |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 2950 | if (!WPACKET_sub_memcpy_u8(pkt, encodedPoint, encoded_pt_len)) { |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2951 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR); |
| 2952 | goto err; |
| 2953 | } |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2954 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2955 | ret = 1; |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2956 | err: |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2957 | OPENSSL_free(encodedPoint); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2958 | EVP_PKEY_free(ckey); |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2959 | return ret; |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2960 | #else |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2961 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_ECDHE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 2962 | *al = SSL_AD_INTERNAL_ERROR; |
| 2963 | return 0; |
| 2964 | #endif |
| 2965 | } |
| 2966 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 2967 | static int tls_construct_cke_gost(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 2968 | { |
| 2969 | #ifndef OPENSSL_NO_GOST |
| 2970 | /* GOST key exchange message creation */ |
| 2971 | EVP_PKEY_CTX *pkey_ctx = NULL; |
| 2972 | X509 *peer_cert; |
| 2973 | size_t msglen; |
| 2974 | unsigned int md_len; |
| 2975 | unsigned char shared_ukm[32], tmp[256]; |
| 2976 | EVP_MD_CTX *ukm_hash = NULL; |
| 2977 | int dgst_nid = NID_id_GostR3411_94; |
| 2978 | unsigned char *pms = NULL; |
| 2979 | size_t pmslen = 0; |
| 2980 | |
| 2981 | if ((s->s3->tmp.new_cipher->algorithm_auth & SSL_aGOST12) != 0) |
| 2982 | dgst_nid = NID_id_GostR3411_2012_256; |
| 2983 | |
| 2984 | /* |
FdaSilvaYY | 1ee4b98 | 2017-02-17 23:13:26 +0100 | [diff] [blame] | 2985 | * Get server certificate PKEY and create ctx from it |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 2986 | */ |
| 2987 | peer_cert = s->session->peer; |
| 2988 | if (!peer_cert) { |
| 2989 | *al = SSL_AD_HANDSHAKE_FAILURE; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2990 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 2991 | SSL_R_NO_GOST_CERTIFICATE_SENT_BY_PEER); |
| 2992 | return 0; |
| 2993 | } |
| 2994 | |
| 2995 | pkey_ctx = EVP_PKEY_CTX_new(X509_get0_pubkey(peer_cert), NULL); |
| 2996 | if (pkey_ctx == NULL) { |
| 2997 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 2998 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 2999 | return 0; |
| 3000 | } |
| 3001 | /* |
| 3002 | * If we have send a certificate, and certificate key |
| 3003 | * parameters match those of server certificate, use |
| 3004 | * certificate key for key exchange |
| 3005 | */ |
| 3006 | |
| 3007 | /* Otherwise, generate ephemeral key pair */ |
| 3008 | pmslen = 32; |
| 3009 | pms = OPENSSL_malloc(pmslen); |
| 3010 | if (pms == NULL) { |
| 3011 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3012 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 2f3930b | 2016-08-22 22:17:20 +0100 | [diff] [blame] | 3013 | goto err; |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3014 | } |
| 3015 | |
| 3016 | if (EVP_PKEY_encrypt_init(pkey_ctx) <= 0 |
Matt Caswell | 348240c | 2016-10-19 15:11:24 +0100 | [diff] [blame] | 3017 | /* Generate session key |
| 3018 | * TODO(size_t): Convert this function |
| 3019 | */ |
| 3020 | || RAND_bytes(pms, (int)pmslen) <= 0) { |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3021 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3022 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3023 | goto err; |
| 3024 | }; |
| 3025 | /* |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3026 | * Compute shared IV and store it in algorithm-specific context |
| 3027 | * data |
| 3028 | */ |
| 3029 | ukm_hash = EVP_MD_CTX_new(); |
| 3030 | if (ukm_hash == NULL |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 3031 | || EVP_DigestInit(ukm_hash, EVP_get_digestbynid(dgst_nid)) <= 0 |
| 3032 | || EVP_DigestUpdate(ukm_hash, s->s3->client_random, |
| 3033 | SSL3_RANDOM_SIZE) <= 0 |
| 3034 | || EVP_DigestUpdate(ukm_hash, s->s3->server_random, |
| 3035 | SSL3_RANDOM_SIZE) <= 0 |
| 3036 | || EVP_DigestFinal_ex(ukm_hash, shared_ukm, &md_len) <= 0) { |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3037 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3038 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3039 | goto err; |
| 3040 | } |
| 3041 | EVP_MD_CTX_free(ukm_hash); |
| 3042 | ukm_hash = NULL; |
| 3043 | if (EVP_PKEY_CTX_ctrl(pkey_ctx, -1, EVP_PKEY_OP_ENCRYPT, |
| 3044 | EVP_PKEY_CTRL_SET_IV, 8, shared_ukm) < 0) { |
| 3045 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3046 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3047 | goto err; |
| 3048 | } |
| 3049 | /* Make GOST keytransport blob message */ |
| 3050 | /* |
| 3051 | * Encapsulate it into sequence |
| 3052 | */ |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3053 | msglen = 255; |
| 3054 | if (EVP_PKEY_encrypt(pkey_ctx, tmp, &msglen, pms, pmslen) <= 0) { |
| 3055 | *al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3056 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, SSL_R_LIBRARY_BUG); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3057 | goto err; |
| 3058 | } |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3059 | |
Matt Caswell | 08029df | 2016-09-20 14:47:44 +0100 | [diff] [blame] | 3060 | if (!WPACKET_put_bytes_u8(pkt, V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED) |
| 3061 | || (msglen >= 0x80 && !WPACKET_put_bytes_u8(pkt, 0x81)) |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 3062 | || !WPACKET_sub_memcpy_u8(pkt, tmp, msglen)) { |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3063 | *al = SSL_AD_INTERNAL_ERROR; |
| 3064 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR); |
| 3065 | goto err; |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3066 | } |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3067 | |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3068 | EVP_PKEY_CTX_free(pkey_ctx); |
| 3069 | s->s3->tmp.pms = pms; |
| 3070 | s->s3->tmp.pmslen = pmslen; |
| 3071 | |
| 3072 | return 1; |
| 3073 | err: |
| 3074 | EVP_PKEY_CTX_free(pkey_ctx); |
| 3075 | OPENSSL_clear_free(pms, pmslen); |
| 3076 | EVP_MD_CTX_free(ukm_hash); |
| 3077 | return 0; |
| 3078 | #else |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3079 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_GOST, ERR_R_INTERNAL_ERROR); |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3080 | *al = SSL_AD_INTERNAL_ERROR; |
| 3081 | return 0; |
| 3082 | #endif |
| 3083 | } |
| 3084 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3085 | static int tls_construct_cke_srp(SSL *s, WPACKET *pkt, int *al) |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3086 | { |
Richard Levitte | 8b9546c | 2016-07-22 21:48:05 +0200 | [diff] [blame] | 3087 | #ifndef OPENSSL_NO_SRP |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3088 | unsigned char *abytes = NULL; |
| 3089 | |
| 3090 | if (s->srp_ctx.A == NULL |
Matt Caswell | b2b3024 | 2016-09-13 11:32:52 +0100 | [diff] [blame] | 3091 | || !WPACKET_sub_allocate_bytes_u16(pkt, BN_num_bytes(s->srp_ctx.A), |
| 3092 | &abytes)) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3093 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3094 | return 0; |
| 3095 | } |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3096 | BN_bn2bin(s->srp_ctx.A, abytes); |
| 3097 | |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3098 | OPENSSL_free(s->session->srp_username); |
| 3099 | s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login); |
| 3100 | if (s->session->srp_username == NULL) { |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3101 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_MALLOC_FAILURE); |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3102 | return 0; |
| 3103 | } |
| 3104 | |
| 3105 | return 1; |
| 3106 | #else |
Matt Caswell | 05ec6a2 | 2016-07-08 12:27:30 +0100 | [diff] [blame] | 3107 | SSLerr(SSL_F_TLS_CONSTRUCT_CKE_SRP, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3108 | *al = SSL_AD_INTERNAL_ERROR; |
| 3109 | return 0; |
| 3110 | #endif |
| 3111 | } |
| 3112 | |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3113 | int tls_construct_client_key_exchange(SSL *s, WPACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3114 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3115 | unsigned long alg_k; |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 3116 | int al = -1; |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3117 | |
Dr. Stephen Henson | 7689082 | 2015-06-28 17:15:10 +0100 | [diff] [blame] | 3118 | alg_k = s->s3->tmp.new_cipher->algorithm_mkey; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3119 | |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 3120 | if ((alg_k & SSL_PSK) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3121 | && !tls_construct_cke_psk_preamble(s, pkt, &al)) |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 3122 | goto err; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3123 | |
Matt Caswell | f1ec23c | 2016-09-13 11:01:04 +0100 | [diff] [blame] | 3124 | if (alg_k & (SSL_kRSA | SSL_kRSAPSK)) { |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3125 | if (!tls_construct_cke_rsa(s, pkt, &al)) |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 3126 | goto err; |
Matt Caswell | a8c1c70 | 2016-07-08 09:42:07 +0100 | [diff] [blame] | 3127 | } else if (alg_k & (SSL_kDHE | SSL_kDHEPSK)) { |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3128 | if (!tls_construct_cke_dhe(s, pkt, &al)) |
Dr. Stephen Henson | bc71f91 | 2015-12-15 23:57:18 +0000 | [diff] [blame] | 3129 | goto err; |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 3130 | } else if (alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) { |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3131 | if (!tls_construct_cke_ecdhe(s, pkt, &al)) |
Matt Caswell | 67ad5aa | 2016-07-08 09:51:02 +0100 | [diff] [blame] | 3132 | goto err; |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3133 | } else if (alg_k & SSL_kGOST) { |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3134 | if (!tls_construct_cke_gost(s, pkt, &al)) |
Matt Caswell | e00e0b3 | 2016-07-08 10:07:55 +0100 | [diff] [blame] | 3135 | goto err; |
Matt Caswell | 840a2bf | 2016-07-08 10:43:59 +0100 | [diff] [blame] | 3136 | } else if (alg_k & SSL_kSRP) { |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3137 | if (!tls_construct_cke_srp(s, pkt, &al)) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3138 | goto err; |
Matt Caswell | 4a42454 | 2016-09-29 12:04:08 +0100 | [diff] [blame] | 3139 | } else if (!(alg_k & SSL_kPSK)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3140 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE); |
| 3141 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_KEY_EXCHANGE, ERR_R_INTERNAL_ERROR); |
| 3142 | goto err; |
| 3143 | } |
| 3144 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3145 | return 1; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3146 | err: |
Matt Caswell | 13c0ec4 | 2016-07-07 14:42:27 +0100 | [diff] [blame] | 3147 | if (al != -1) |
| 3148 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | 0bce0b0 | 2016-07-07 12:47:07 +0100 | [diff] [blame] | 3149 | OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen); |
Dr. Stephen Henson | 76106e6 | 2015-05-12 17:17:37 +0100 | [diff] [blame] | 3150 | s->s3->tmp.pms = NULL; |
Dr. Stephen Henson | 7689082 | 2015-06-28 17:15:10 +0100 | [diff] [blame] | 3151 | #ifndef OPENSSL_NO_PSK |
| 3152 | OPENSSL_clear_free(s->s3->tmp.psk, s->s3->tmp.psklen); |
| 3153 | s->s3->tmp.psk = NULL; |
| 3154 | #endif |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3155 | return 0; |
| 3156 | } |
| 3157 | |
| 3158 | int tls_client_key_exchange_post_work(SSL *s) |
| 3159 | { |
| 3160 | unsigned char *pms = NULL; |
| 3161 | size_t pmslen = 0; |
| 3162 | |
Matt Caswell | 6f13737 | 2016-04-28 15:12:37 +0100 | [diff] [blame] | 3163 | pms = s->s3->tmp.pms; |
| 3164 | pmslen = s->s3->tmp.pmslen; |
| 3165 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3166 | #ifndef OPENSSL_NO_SRP |
| 3167 | /* Check for SRP */ |
| 3168 | if (s->s3->tmp.new_cipher->algorithm_mkey & SSL_kSRP) { |
| 3169 | if (!srp_generate_client_master_secret(s)) { |
| 3170 | SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, |
| 3171 | ERR_R_INTERNAL_ERROR); |
| 3172 | goto err; |
| 3173 | } |
| 3174 | return 1; |
| 3175 | } |
| 3176 | #endif |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3177 | |
| 3178 | if (pms == NULL && !(s->s3->tmp.new_cipher->algorithm_mkey & SSL_kPSK)) { |
| 3179 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 3180 | SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_MALLOC_FAILURE); |
| 3181 | goto err; |
| 3182 | } |
| 3183 | if (!ssl_generate_master_secret(s, pms, pmslen, 1)) { |
| 3184 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 3185 | SSLerr(SSL_F_TLS_CLIENT_KEY_EXCHANGE_POST_WORK, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 6f13737 | 2016-04-28 15:12:37 +0100 | [diff] [blame] | 3186 | /* ssl_generate_master_secret frees the pms even on error */ |
| 3187 | pms = NULL; |
| 3188 | pmslen = 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3189 | goto err; |
| 3190 | } |
Matt Caswell | 6f13737 | 2016-04-28 15:12:37 +0100 | [diff] [blame] | 3191 | pms = NULL; |
| 3192 | pmslen = 0; |
Matt Caswell | 473483d | 2015-09-07 22:00:36 +0100 | [diff] [blame] | 3193 | |
| 3194 | #ifndef OPENSSL_NO_SCTP |
| 3195 | if (SSL_IS_DTLS(s)) { |
| 3196 | unsigned char sctpauthkey[64]; |
| 3197 | char labelbuffer[sizeof(DTLS1_SCTP_AUTH_LABEL)]; |
| 3198 | |
| 3199 | /* |
| 3200 | * Add new shared key for SCTP-Auth, will be ignored if no SCTP |
| 3201 | * used. |
| 3202 | */ |
Matt Caswell | 141eb8c | 2015-10-26 12:00:00 +0000 | [diff] [blame] | 3203 | memcpy(labelbuffer, DTLS1_SCTP_AUTH_LABEL, |
| 3204 | sizeof(DTLS1_SCTP_AUTH_LABEL)); |
Matt Caswell | 473483d | 2015-09-07 22:00:36 +0100 | [diff] [blame] | 3205 | |
| 3206 | if (SSL_export_keying_material(s, sctpauthkey, |
Emilia Kasper | a230b26 | 2016-08-05 19:03:17 +0200 | [diff] [blame] | 3207 | sizeof(sctpauthkey), labelbuffer, |
| 3208 | sizeof(labelbuffer), NULL, 0, 0) <= 0) |
Matt Caswell | 473483d | 2015-09-07 22:00:36 +0100 | [diff] [blame] | 3209 | goto err; |
| 3210 | |
| 3211 | BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, |
| 3212 | sizeof(sctpauthkey), sctpauthkey); |
| 3213 | } |
| 3214 | #endif |
| 3215 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3216 | return 1; |
| 3217 | err: |
| 3218 | OPENSSL_clear_free(pms, pmslen); |
| 3219 | s->s3->tmp.pms = NULL; |
| 3220 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3221 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3222 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3223 | /* |
| 3224 | * Check a certificate can be used for client authentication. Currently check |
| 3225 | * cert exists, if we have a suitable digest for TLS 1.2 if static DH client |
| 3226 | * certificates can be used and optionally checks suitability for Suite B. |
Dr. Stephen Henson | 0d60939 | 2012-01-25 14:51:49 +0000 | [diff] [blame] | 3227 | */ |
| 3228 | static int ssl3_check_client_certificate(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3229 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3230 | /* If no suitable signature algorithm can't use certificate */ |
Dr. Stephen Henson | ad4dd36 | 2017-02-15 16:23:49 +0000 | [diff] [blame] | 3231 | if (!tls_choose_sigalg(s, NULL) || s->s3->tmp.sigalg == NULL) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3232 | return 0; |
| 3233 | /* |
| 3234 | * If strict mode check suitability of chain before using it. This also |
| 3235 | * adjusts suite B digest if necessary. |
| 3236 | */ |
| 3237 | if (s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT && |
| 3238 | !tls1_check_chain(s, NULL, NULL, NULL, -2)) |
| 3239 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3240 | return 1; |
| 3241 | } |
Dr. Stephen Henson | 0d60939 | 2012-01-25 14:51:49 +0000 | [diff] [blame] | 3242 | |
Matt Caswell | be3583f | 2015-10-26 11:46:33 +0000 | [diff] [blame] | 3243 | WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3244 | { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3245 | X509 *x509 = NULL; |
| 3246 | EVP_PKEY *pkey = NULL; |
| 3247 | int i; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3248 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3249 | if (wst == WORK_MORE_A) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3250 | /* Let cert callback update client certificates if required */ |
| 3251 | if (s->cert->cert_cb) { |
| 3252 | i = s->cert->cert_cb(s, s->cert->cert_cb_arg); |
| 3253 | if (i < 0) { |
| 3254 | s->rwstate = SSL_X509_LOOKUP; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3255 | return WORK_MORE_A; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3256 | } |
| 3257 | if (i == 0) { |
| 3258 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 3259 | ossl_statem_set_error(s); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3260 | return 0; |
| 3261 | } |
| 3262 | s->rwstate = SSL_NOTHING; |
| 3263 | } |
| 3264 | if (ssl3_check_client_certificate(s)) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3265 | return WORK_FINISHED_CONTINUE; |
| 3266 | |
| 3267 | /* Fall through to WORK_MORE_B */ |
| 3268 | wst = WORK_MORE_B; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3269 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3270 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3271 | /* We need to get a client cert */ |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3272 | if (wst == WORK_MORE_B) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3273 | /* |
| 3274 | * If we get an error, we need to ssl->rwstate=SSL_X509_LOOKUP; |
| 3275 | * return(-1); We then get retied later |
| 3276 | */ |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3277 | i = ssl_do_client_cert_cb(s, &x509, &pkey); |
| 3278 | if (i < 0) { |
| 3279 | s->rwstate = SSL_X509_LOOKUP; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3280 | return WORK_MORE_B; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3281 | } |
| 3282 | s->rwstate = SSL_NOTHING; |
| 3283 | if ((i == 1) && (pkey != NULL) && (x509 != NULL)) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3284 | if (!SSL_use_certificate(s, x509) || !SSL_use_PrivateKey(s, pkey)) |
| 3285 | i = 0; |
| 3286 | } else if (i == 1) { |
| 3287 | i = 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3288 | SSLerr(SSL_F_TLS_PREPARE_CLIENT_CERTIFICATE, |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3289 | SSL_R_BAD_DATA_RETURNED_BY_CALLBACK); |
| 3290 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3291 | |
Rich Salz | 222561f | 2015-04-30 17:33:59 -0400 | [diff] [blame] | 3292 | X509_free(x509); |
Rich Salz | 25aaa98 | 2015-05-01 14:37:16 -0400 | [diff] [blame] | 3293 | EVP_PKEY_free(pkey); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3294 | if (i && !ssl3_check_client_certificate(s)) |
| 3295 | i = 0; |
| 3296 | if (i == 0) { |
| 3297 | if (s->version == SSL3_VERSION) { |
| 3298 | s->s3->tmp.cert_req = 0; |
| 3299 | ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_NO_CERTIFICATE); |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3300 | return WORK_FINISHED_CONTINUE; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3301 | } else { |
| 3302 | s->s3->tmp.cert_req = 2; |
Dr. Stephen Henson | 124037f | 2015-06-16 14:44:29 +0100 | [diff] [blame] | 3303 | if (!ssl3_digest_cached_records(s, 0)) { |
Dr. Stephen Henson | dab18ab | 2015-05-07 00:04:48 +0100 | [diff] [blame] | 3304 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
Matt Caswell | fe3a329 | 2015-10-05 10:39:54 +0100 | [diff] [blame] | 3305 | ossl_statem_set_error(s); |
Dr. Stephen Henson | dab18ab | 2015-05-07 00:04:48 +0100 | [diff] [blame] | 3306 | return 0; |
| 3307 | } |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3308 | } |
| 3309 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3310 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3311 | return WORK_FINISHED_CONTINUE; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3312 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3313 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3314 | /* Shouldn't ever get here */ |
| 3315 | return WORK_ERROR; |
| 3316 | } |
| 3317 | |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3318 | int tls_construct_client_certificate(SSL *s, WPACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3319 | { |
Matt Caswell | 0baed5e | 2017-01-02 11:16:37 +0000 | [diff] [blame] | 3320 | int al = SSL_AD_INTERNAL_ERROR; |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 3321 | |
| 3322 | /* |
| 3323 | * TODO(TLS1.3): For now we must put an empty context. Needs to be filled in |
| 3324 | * later |
| 3325 | */ |
| 3326 | if ((SSL_IS_TLS13(s) && !WPACKET_put_bytes_u8(pkt, 0)) |
| 3327 | || !ssl3_output_cert_chain(s, pkt, |
Matt Caswell | b90506e | 2016-10-03 15:37:47 +0100 | [diff] [blame] | 3328 | (s->s3->tmp.cert_req == 2) ? NULL |
Matt Caswell | e96e0f8 | 2016-12-02 09:14:15 +0000 | [diff] [blame] | 3329 | : s->cert->key, |
| 3330 | &al)) { |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3331 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, ERR_R_INTERNAL_ERROR); |
Matt Caswell | f7e393b | 2017-02-27 11:19:57 +0000 | [diff] [blame] | 3332 | goto err; |
| 3333 | } |
| 3334 | |
| 3335 | if (SSL_IS_TLS13(s) |
| 3336 | && SSL_IS_FIRST_HANDSHAKE(s) |
| 3337 | && (!s->method->ssl3_enc->change_cipher_state(s, |
| 3338 | SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) { |
| 3339 | SSLerr(SSL_F_TLS_CONSTRUCT_CLIENT_CERTIFICATE, |
| 3340 | SSL_R_CANNOT_CHANGE_CIPHER); |
| 3341 | goto err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3342 | } |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3343 | |
| 3344 | return 1; |
Matt Caswell | f7e393b | 2017-02-27 11:19:57 +0000 | [diff] [blame] | 3345 | err: |
| 3346 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 3347 | return 0; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3348 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3349 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3350 | #define has_bits(i,m) (((i)&(m)) == (m)) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3351 | |
Ben Laurie | 36d16f8 | 2005-04-26 16:02:40 +0000 | [diff] [blame] | 3352 | int ssl3_check_cert_and_algorithm(SSL *s) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3353 | { |
Richard Levitte | 60f43e9 | 2015-12-09 23:59:04 +0100 | [diff] [blame] | 3354 | int i; |
| 3355 | #ifndef OPENSSL_NO_EC |
| 3356 | int idx; |
| 3357 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3358 | long alg_k, alg_a; |
| 3359 | EVP_PKEY *pkey = NULL; |
Kurt Roeckx | 26c79d5 | 2015-04-18 12:23:12 +0200 | [diff] [blame] | 3360 | int al = SSL_AD_HANDSHAKE_FAILURE; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3361 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3362 | alg_k = s->s3->tmp.new_cipher->algorithm_mkey; |
| 3363 | alg_a = s->s3->tmp.new_cipher->algorithm_auth; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3364 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3365 | /* we don't have a certificate */ |
Matt Caswell | 55a9a16 | 2015-05-12 10:27:53 +0100 | [diff] [blame] | 3366 | if ((alg_a & SSL_aNULL) || (alg_k & SSL_kPSK)) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3367 | return (1); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3368 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3369 | /* This is the passed certificate */ |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3370 | |
Rich Salz | 10bf4fc | 2015-03-10 19:09:27 -0400 | [diff] [blame] | 3371 | #ifndef OPENSSL_NO_EC |
Richard Levitte | 60f43e9 | 2015-12-09 23:59:04 +0100 | [diff] [blame] | 3372 | idx = s->session->peer_type; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3373 | if (idx == SSL_PKEY_ECC) { |
Dr. Stephen Henson | a273c6e | 2015-06-21 19:08:57 +0100 | [diff] [blame] | 3374 | if (ssl_check_srvr_ecc_cert_and_alg(s->session->peer, s) == 0) { |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3375 | /* check failed */ |
| 3376 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, SSL_R_BAD_ECC_CERT); |
| 3377 | goto f_err; |
| 3378 | } else { |
| 3379 | return 1; |
| 3380 | } |
| 3381 | } else if (alg_a & SSL_aECDSA) { |
| 3382 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, |
| 3383 | SSL_R_MISSING_ECDSA_SIGNING_CERT); |
| 3384 | goto f_err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3385 | } |
Bodo Möller | ea26226 | 2002-08-09 08:56:08 +0000 | [diff] [blame] | 3386 | #endif |
Dr. Stephen Henson | 8382fd3 | 2015-12-20 00:32:36 +0000 | [diff] [blame] | 3387 | pkey = X509_get0_pubkey(s->session->peer); |
Dr. Stephen Henson | a273c6e | 2015-06-21 19:08:57 +0100 | [diff] [blame] | 3388 | i = X509_certificate_type(s->session->peer, pkey); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3389 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3390 | /* Check that we have a certificate if we require one */ |
| 3391 | if ((alg_a & SSL_aRSA) && !has_bits(i, EVP_PK_RSA | EVP_PKT_SIGN)) { |
| 3392 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, |
| 3393 | SSL_R_MISSING_RSA_SIGNING_CERT); |
| 3394 | goto f_err; |
| 3395 | } |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 3396 | #ifndef OPENSSL_NO_DSA |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3397 | else if ((alg_a & SSL_aDSS) && !has_bits(i, EVP_PK_DSA | EVP_PKT_SIGN)) { |
| 3398 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, |
| 3399 | SSL_R_MISSING_DSA_SIGNING_CERT); |
| 3400 | goto f_err; |
| 3401 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3402 | #endif |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 3403 | #ifndef OPENSSL_NO_RSA |
Kurt Roeckx | 361a119 | 2015-12-05 02:04:41 +0100 | [diff] [blame] | 3404 | if (alg_k & (SSL_kRSA | SSL_kRSAPSK) && |
| 3405 | !has_bits(i, EVP_PK_RSA | EVP_PKT_ENC)) { |
| 3406 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, |
| 3407 | SSL_R_MISSING_RSA_ENCRYPTING_CERT); |
| 3408 | goto f_err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3409 | } |
Ulf Möller | 79df9d6 | 1999-04-27 03:19:12 +0000 | [diff] [blame] | 3410 | #endif |
Richard Levitte | bc36ee6 | 2001-02-20 08:13:47 +0000 | [diff] [blame] | 3411 | #ifndef OPENSSL_NO_DH |
Dr. Stephen Henson | fb79abe | 2015-12-17 01:07:46 +0000 | [diff] [blame] | 3412 | if ((alg_k & SSL_kDHE) && (s->s3->peer_tmp == NULL)) { |
Kurt Roeckx | 26c79d5 | 2015-04-18 12:23:12 +0200 | [diff] [blame] | 3413 | al = SSL_AD_INTERNAL_ERROR; |
| 3414 | SSLerr(SSL_F_SSL3_CHECK_CERT_AND_ALGORITHM, ERR_R_INTERNAL_ERROR); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3415 | goto f_err; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3416 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 3417 | #endif |
| 3418 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3419 | return (1); |
| 3420 | f_err: |
Kurt Roeckx | 26c79d5 | 2015-04-18 12:23:12 +0200 | [diff] [blame] | 3421 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3422 | return (0); |
| 3423 | } |
Dr. Stephen Henson | 6434abb | 2007-08-11 23:18:29 +0000 | [diff] [blame] | 3424 | |
Matt Caswell | e481f9b | 2015-05-15 10:49:56 +0100 | [diff] [blame] | 3425 | #ifndef OPENSSL_NO_NEXTPROTONEG |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3426 | int tls_construct_next_proto(SSL *s, WPACKET *pkt) |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3427 | { |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3428 | size_t len, padding_len; |
| 3429 | unsigned char *padding = NULL; |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3430 | |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 3431 | len = s->ext.npn_len; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3432 | padding_len = 32 - ((len + 2) % 32); |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3433 | |
Rich Salz | aff8c12 | 2016-12-08 14:18:40 -0500 | [diff] [blame] | 3434 | if (!WPACKET_sub_memcpy_u8(pkt, s->ext.npn, len) |
Matt Caswell | 7cea05d | 2016-09-29 23:28:29 +0100 | [diff] [blame] | 3435 | || !WPACKET_sub_allocate_bytes_u8(pkt, padding_len, &padding)) { |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3436 | SSLerr(SSL_F_TLS_CONSTRUCT_NEXT_PROTO, ERR_R_INTERNAL_ERROR); |
| 3437 | goto err; |
| 3438 | } |
| 3439 | |
| 3440 | memset(padding, 0, padding_len); |
| 3441 | |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3442 | return 1; |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3443 | err: |
Matt Caswell | 15e6be6 | 2016-09-14 12:10:33 +0100 | [diff] [blame] | 3444 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR); |
| 3445 | return 0; |
Matt Caswell | b9908bf | 2015-07-29 14:08:49 +0100 | [diff] [blame] | 3446 | } |
Dr. Stephen Henson | 6434abb | 2007-08-11 23:18:29 +0000 | [diff] [blame] | 3447 | #endif |
Dr. Stephen Henson | 368888b | 2008-06-01 22:33:24 +0000 | [diff] [blame] | 3448 | |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 3449 | MSG_PROCESS_RETURN tls_process_hello_req(SSL *s, PACKET *pkt) |
| 3450 | { |
| 3451 | if (PACKET_remaining(pkt) > 0) { |
| 3452 | /* should contain no data */ |
| 3453 | SSLerr(SSL_F_TLS_PROCESS_HELLO_REQ, SSL_R_LENGTH_MISMATCH); |
| 3454 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 3455 | ossl_statem_set_error(s); |
| 3456 | return MSG_PROCESS_ERROR; |
| 3457 | } |
| 3458 | |
| 3459 | /* |
Matt Caswell | 1f04f23 | 2017-01-27 15:23:25 +0000 | [diff] [blame] | 3460 | * This is a historical discrepancy (not in the RFC) maintained for |
| 3461 | * compatibility reasons. If a TLS client receives a HelloRequest it will |
| 3462 | * attempt an abbreviated handshake. However if a DTLS client receives a |
| 3463 | * HelloRequest it will do a full handshake. Either behaviour is reasonable |
| 3464 | * but doing one for TLS and another for DTLS is odd. |
Matt Caswell | c7f4778 | 2017-01-10 23:02:28 +0000 | [diff] [blame] | 3465 | */ |
| 3466 | if (SSL_IS_DTLS(s)) |
| 3467 | SSL_renegotiate(s); |
| 3468 | else |
| 3469 | SSL_renegotiate_abbreviated(s); |
| 3470 | |
| 3471 | return MSG_PROCESS_FINISHED_READING; |
| 3472 | } |
| 3473 | |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 3474 | static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt) |
| 3475 | { |
| 3476 | int al = SSL_AD_INTERNAL_ERROR; |
| 3477 | PACKET extensions; |
Matt Caswell | 3434f40 | 2016-11-28 16:45:52 +0000 | [diff] [blame] | 3478 | RAW_EXTENSION *rawexts = NULL; |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 3479 | |
Matt Caswell | 26b9172 | 2017-05-11 11:31:57 +0100 | [diff] [blame] | 3480 | if (!PACKET_as_length_prefixed_2(pkt, &extensions) |
| 3481 | || PACKET_remaining(pkt) != 0) { |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 3482 | al = SSL_AD_DECODE_ERROR; |
| 3483 | SSLerr(SSL_F_TLS_PROCESS_ENCRYPTED_EXTENSIONS, SSL_R_LENGTH_MISMATCH); |
| 3484 | goto err; |
| 3485 | } |
| 3486 | |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 3487 | if (!tls_collect_extensions(s, &extensions, |
| 3488 | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS, &rawexts, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 3489 | &al, NULL, 1) |
Matt Caswell | fe874d2 | 2017-04-04 11:40:02 +0100 | [diff] [blame] | 3490 | || !tls_parse_all_extensions(s, SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS, |
Tatsuhiro Tsujikawa | 735d5b5 | 2017-04-18 23:59:39 +0900 | [diff] [blame] | 3491 | rawexts, NULL, 0, &al, 1)) |
Matt Caswell | 3434f40 | 2016-11-28 16:45:52 +0000 | [diff] [blame] | 3492 | goto err; |
| 3493 | |
Matt Caswell | 1b0286a | 2016-12-05 17:31:37 +0000 | [diff] [blame] | 3494 | OPENSSL_free(rawexts); |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 3495 | return MSG_PROCESS_CONTINUE_READING; |
| 3496 | |
| 3497 | err: |
| 3498 | ssl3_send_alert(s, SSL3_AL_FATAL, al); |
| 3499 | ossl_statem_set_error(s); |
Matt Caswell | 1b0286a | 2016-12-05 17:31:37 +0000 | [diff] [blame] | 3500 | OPENSSL_free(rawexts); |
Matt Caswell | e46f233 | 2016-11-23 15:20:22 +0000 | [diff] [blame] | 3501 | return MSG_PROCESS_ERROR; |
| 3502 | } |
| 3503 | |
Dr. Stephen Henson | 368888b | 2008-06-01 22:33:24 +0000 | [diff] [blame] | 3504 | int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3505 | { |
| 3506 | int i = 0; |
Dr. Stephen Henson | 368888b | 2008-06-01 22:33:24 +0000 | [diff] [blame] | 3507 | #ifndef OPENSSL_NO_ENGINE |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3508 | if (s->ctx->client_cert_engine) { |
| 3509 | i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s, |
| 3510 | SSL_get_client_CA_list(s), |
| 3511 | px509, ppkey, NULL, NULL, NULL); |
| 3512 | if (i != 0) |
| 3513 | return i; |
| 3514 | } |
Dr. Stephen Henson | 368888b | 2008-06-01 22:33:24 +0000 | [diff] [blame] | 3515 | #endif |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 3516 | if (s->ctx->client_cert_cb) |
| 3517 | i = s->ctx->client_cert_cb(s, px509, ppkey); |
| 3518 | return i; |
| 3519 | } |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3520 | |
Matt Caswell | ae2f7b3 | 2016-09-05 17:34:04 +0100 | [diff] [blame] | 3521 | int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, WPACKET *pkt) |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3522 | { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3523 | int i; |
Matt Caswell | aafec89 | 2017-04-26 10:38:32 +0100 | [diff] [blame] | 3524 | size_t totlen = 0, len, maxlen, maxverok = 0; |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3525 | int empty_reneg_info_scsv = !s->renegotiate; |
| 3526 | /* Set disabled masks for this session */ |
| 3527 | ssl_set_client_disabled(s); |
| 3528 | |
| 3529 | if (sk == NULL) |
| 3530 | return (0); |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3531 | |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3532 | #ifdef OPENSSL_MAX_TLS1_2_CIPHER_LENGTH |
| 3533 | # if OPENSSL_MAX_TLS1_2_CIPHER_LENGTH < 6 |
| 3534 | # error Max cipher length too short |
| 3535 | # endif |
| 3536 | /* |
| 3537 | * Some servers hang if client hello > 256 bytes as hack workaround |
| 3538 | * chop number of supported ciphers to keep it well below this if we |
| 3539 | * use TLS v1.2 |
| 3540 | */ |
| 3541 | if (TLS1_get_version(s) >= TLS1_2_VERSION) |
| 3542 | maxlen = OPENSSL_MAX_TLS1_2_CIPHER_LENGTH & ~1; |
| 3543 | else |
| 3544 | #endif |
| 3545 | /* Maximum length that can be stored in 2 bytes. Length must be even */ |
| 3546 | maxlen = 0xfffe; |
| 3547 | |
| 3548 | if (empty_reneg_info_scsv) |
| 3549 | maxlen -= 2; |
| 3550 | if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) |
| 3551 | maxlen -= 2; |
| 3552 | |
| 3553 | for (i = 0; i < sk_SSL_CIPHER_num(sk) && totlen < maxlen; i++) { |
| 3554 | const SSL_CIPHER *c; |
| 3555 | |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3556 | c = sk_SSL_CIPHER_value(sk, i); |
| 3557 | /* Skip disabled ciphers */ |
Matt Caswell | 8af91fd | 2017-04-12 17:02:42 +0100 | [diff] [blame] | 3558 | if (ssl_cipher_disabled(s, c, SSL_SECOP_CIPHER_SUPPORTED, 0)) |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3559 | continue; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3560 | |
| 3561 | if (!s->method->put_cipher_by_char(c, pkt, &len)) { |
| 3562 | SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR); |
| 3563 | return 0; |
| 3564 | } |
| 3565 | |
Matt Caswell | aafec89 | 2017-04-26 10:38:32 +0100 | [diff] [blame] | 3566 | /* Sanity check that the maximum version we offer has ciphers enabled */ |
| 3567 | if (!maxverok) { |
| 3568 | if (SSL_IS_DTLS(s)) { |
| 3569 | if (DTLS_VERSION_GE(c->max_dtls, s->s3->tmp.max_ver) |
| 3570 | && DTLS_VERSION_LE(c->min_dtls, s->s3->tmp.max_ver)) |
| 3571 | maxverok = 1; |
| 3572 | } else { |
| 3573 | if (c->max_tls >= s->s3->tmp.max_ver |
| 3574 | && c->min_tls <= s->s3->tmp.max_ver) |
| 3575 | maxverok = 1; |
| 3576 | } |
| 3577 | } |
| 3578 | |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3579 | totlen += len; |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3580 | } |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3581 | |
Matt Caswell | aafec89 | 2017-04-26 10:38:32 +0100 | [diff] [blame] | 3582 | if (totlen == 0 || !maxverok) { |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3583 | SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, SSL_R_NO_CIPHERS_AVAILABLE); |
Matt Caswell | aafec89 | 2017-04-26 10:38:32 +0100 | [diff] [blame] | 3584 | |
| 3585 | if (!maxverok) |
| 3586 | ERR_add_error_data(1, "No ciphers enabled for max supported " |
| 3587 | "SSL/TLS version"); |
| 3588 | |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3589 | return 0; |
| 3590 | } |
| 3591 | |
| 3592 | if (totlen != 0) { |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3593 | if (empty_reneg_info_scsv) { |
| 3594 | static SSL_CIPHER scsv = { |
| 3595 | 0, NULL, SSL3_CK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
| 3596 | }; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3597 | if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) { |
| 3598 | SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR); |
| 3599 | return 0; |
| 3600 | } |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3601 | } |
| 3602 | if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) { |
| 3603 | static SSL_CIPHER scsv = { |
| 3604 | 0, NULL, SSL3_CK_FALLBACK_SCSV, 0, 0, 0, 0, 0, 0, 0, 0, 0 |
| 3605 | }; |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3606 | if (!s->method->put_cipher_by_char(&scsv, pkt, &len)) { |
| 3607 | SSLerr(SSL_F_SSL_CIPHER_LIST_TO_BYTES, ERR_R_INTERNAL_ERROR); |
| 3608 | return 0; |
| 3609 | } |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3610 | } |
| 3611 | } |
| 3612 | |
Matt Caswell | 2c7b4db | 2016-08-03 20:57:52 +0100 | [diff] [blame] | 3613 | return 1; |
Matt Caswell | d45ba43 | 2015-04-24 15:05:27 +0100 | [diff] [blame] | 3614 | } |
Matt Caswell | ef6c191 | 2017-03-09 15:03:07 +0000 | [diff] [blame] | 3615 | |
| 3616 | int tls_construct_end_of_early_data(SSL *s, WPACKET *pkt) |
| 3617 | { |
| 3618 | if (s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY |
| 3619 | && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) { |
| 3620 | SSLerr(SSL_F_TLS_CONSTRUCT_END_OF_EARLY_DATA, |
| 3621 | ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
| 3622 | return 0; |
| 3623 | } |
| 3624 | |
| 3625 | s->early_data_state = SSL_EARLY_DATA_FINISHED_WRITING; |
| 3626 | return 1; |
| 3627 | } |