Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] |
| 56 | */ |
| 57 | /* ==================================================================== |
| 58 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. |
| 59 | * |
| 60 | * Redistribution and use in source and binary forms, with or without |
| 61 | * modification, are permitted provided that the following conditions |
| 62 | * are met: |
| 63 | * |
| 64 | * 1. Redistributions of source code must retain the above copyright |
| 65 | * notice, this list of conditions and the following disclaimer. |
| 66 | * |
| 67 | * 2. Redistributions in binary form must reproduce the above copyright |
| 68 | * notice, this list of conditions and the following disclaimer in |
| 69 | * the documentation and/or other materials provided with the |
| 70 | * distribution. |
| 71 | * |
| 72 | * 3. All advertising materials mentioning features or use of this |
| 73 | * software must display the following acknowledgment: |
| 74 | * "This product includes software developed by the OpenSSL Project |
| 75 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" |
| 76 | * |
| 77 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 78 | * endorse or promote products derived from this software without |
| 79 | * prior written permission. For written permission, please contact |
| 80 | * openssl-core@openssl.org. |
| 81 | * |
| 82 | * 5. Products derived from this software may not be called "OpenSSL" |
| 83 | * nor may "OpenSSL" appear in their names without prior written |
| 84 | * permission of the OpenSSL Project. |
| 85 | * |
| 86 | * 6. Redistributions of any form whatsoever must retain the following |
| 87 | * acknowledgment: |
| 88 | * "This product includes software developed by the OpenSSL Project |
| 89 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" |
| 90 | * |
| 91 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 92 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 93 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 94 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 95 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 96 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 97 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 98 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 99 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 100 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 101 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 102 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 103 | * ==================================================================== |
| 104 | * |
| 105 | * This product includes cryptographic software written by Eric Young |
| 106 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 107 | * Hudson (tjh@cryptsoft.com). |
| 108 | * |
| 109 | */ |
| 110 | /* ==================================================================== |
| 111 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 112 | * ECC cipher suite support in OpenSSL originally developed by |
| 113 | * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. |
| 114 | */ |
| 115 | /* ==================================================================== |
| 116 | * Copyright 2005 Nokia. All rights reserved. |
| 117 | * |
| 118 | * The portions of the attached software ("Contribution") is developed by |
| 119 | * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
| 120 | * license. |
| 121 | * |
| 122 | * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
| 123 | * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
| 124 | * support (see RFC 4279) to OpenSSL. |
| 125 | * |
| 126 | * No patent licenses or other rights except those expressly stated in |
| 127 | * the OpenSSL open source license shall be deemed granted or received |
| 128 | * expressly, by implication, estoppel, or otherwise. |
| 129 | * |
| 130 | * No assurances are provided by Nokia that the Contribution does not |
| 131 | * infringe the patent or other intellectual property rights of any third |
| 132 | * party or that the license provides you with all the necessary rights |
| 133 | * to make use of the Contribution. |
| 134 | * |
| 135 | * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
| 136 | * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
| 137 | * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
| 138 | * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
| 139 | * OTHERWISE. */ |
| 140 | |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 141 | #define BORINGSSL_INTERNAL_CXX_TYPES |
| 142 | |
David Benjamin | 9e4e01e | 2015-09-15 01:48:04 -0400 | [diff] [blame] | 143 | #include <openssl/ssl.h> |
| 144 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 145 | #include <assert.h> |
David Benjamin | 93d9743 | 2016-08-08 21:22:47 -0400 | [diff] [blame] | 146 | #include <stdlib.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 147 | #include <string.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 148 | |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 149 | #include <openssl/bytestring.h> |
David Benjamin | 7c6d09b | 2015-09-05 11:00:19 -0400 | [diff] [blame] | 150 | #include <openssl/crypto.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 151 | #include <openssl/err.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 152 | #include <openssl/lhash.h> |
| 153 | #include <openssl/mem.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 154 | #include <openssl/rand.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 155 | |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 156 | #include "internal.h" |
David Benjamin | 546f1a5 | 2015-04-15 16:46:09 -0400 | [diff] [blame] | 157 | #include "../crypto/internal.h" |
| 158 | |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 159 | #if defined(OPENSSL_WINDOWS) |
| 160 | #include <sys/timeb.h> |
| 161 | #else |
| 162 | #include <sys/socket.h> |
| 163 | #include <sys/time.h> |
| 164 | #endif |
| 165 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 166 | |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 167 | namespace bssl { |
| 168 | |
David Benjamin | 76c2efc | 2015-08-31 14:24:29 -0400 | [diff] [blame] | 169 | /* |SSL_R_UNKNOWN_PROTOCOL| is no longer emitted, but continue to define it |
David Benjamin | 97760d5 | 2015-07-24 23:02:49 -0400 | [diff] [blame] | 170 | * to avoid downstream churn. */ |
David Benjamin | 76c2efc | 2015-08-31 14:24:29 -0400 | [diff] [blame] | 171 | OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL) |
David Benjamin | 97760d5 | 2015-07-24 23:02:49 -0400 | [diff] [blame] | 172 | |
David Benjamin | 311c257 | 2016-08-17 15:54:36 -0400 | [diff] [blame] | 173 | /* The following errors are no longer emitted, but are used in nginx without |
| 174 | * #ifdefs. */ |
| 175 | OPENSSL_DECLARE_ERROR_REASON(SSL, BLOCK_CIPHER_PAD_IS_WRONG) |
| 176 | OPENSSL_DECLARE_ERROR_REASON(SSL, NO_CIPHERS_SPECIFIED) |
| 177 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 178 | /* Some error codes are special. Ensure the make_errors.go script never |
| 179 | * regresses this. */ |
David Benjamin | a3d76d0 | 2017-07-14 19:36:07 -0400 | [diff] [blame] | 180 | static_assert(SSL_R_TLSV1_ALERT_NO_RENEGOTIATION == |
| 181 | SSL_AD_NO_RENEGOTIATION + SSL_AD_REASON_OFFSET, |
| 182 | "alert reason code mismatch"); |
David Benjamin | e113608 | 2014-09-20 12:28:58 -0400 | [diff] [blame] | 183 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 184 | /* kMaxHandshakeSize is the maximum size, in bytes, of a handshake message. */ |
| 185 | static const size_t kMaxHandshakeSize = (1u << 24) - 1; |
| 186 | |
David Benjamin | aa58513 | 2015-06-29 23:36:17 -0400 | [diff] [blame] | 187 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl = |
| 188 | CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA; |
| 189 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl_ctx = |
| 190 | CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA; |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 191 | |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 192 | void ssl_reset_error_state(SSL *ssl) { |
| 193 | /* Functions which use |SSL_get_error| must reset I/O and error state on |
| 194 | * entry. */ |
| 195 | ssl->rwstate = SSL_NOTHING; |
| 196 | ERR_clear_error(); |
| 197 | ERR_clear_system_error(); |
| 198 | } |
| 199 | |
| 200 | int ssl_can_write(const SSL *ssl) { |
| 201 | return !SSL_in_init(ssl) || ssl->s3->hs->can_early_write; |
| 202 | } |
| 203 | |
| 204 | int ssl_can_read(const SSL *ssl) { |
| 205 | return !SSL_in_init(ssl) || ssl->s3->hs->can_early_read; |
| 206 | } |
| 207 | |
| 208 | void ssl_cipher_preference_list_free( |
| 209 | struct ssl_cipher_preference_list_st *cipher_list) { |
| 210 | if (cipher_list == NULL) { |
| 211 | return; |
| 212 | } |
| 213 | sk_SSL_CIPHER_free(cipher_list->ciphers); |
| 214 | OPENSSL_free(cipher_list->in_group_flags); |
| 215 | OPENSSL_free(cipher_list); |
| 216 | } |
| 217 | |
| 218 | void ssl_update_cache(SSL_HANDSHAKE *hs, int mode) { |
| 219 | SSL *const ssl = hs->ssl; |
| 220 | SSL_CTX *ctx = ssl->session_ctx; |
| 221 | /* Never cache sessions with empty session IDs. */ |
| 222 | if (ssl->s3->established_session->session_id_length == 0 || |
| 223 | (ctx->session_cache_mode & mode) != mode) { |
| 224 | return; |
| 225 | } |
| 226 | |
| 227 | /* Clients never use the internal session cache. */ |
| 228 | int use_internal_cache = ssl->server && !(ctx->session_cache_mode & |
| 229 | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 230 | |
| 231 | /* A client may see new sessions on abbreviated handshakes if the server |
| 232 | * decides to renew the ticket. Once the handshake is completed, it should be |
| 233 | * inserted into the cache. */ |
| 234 | if (ssl->s3->established_session != ssl->session || |
| 235 | (!ssl->server && hs->ticket_expected)) { |
| 236 | if (use_internal_cache) { |
| 237 | SSL_CTX_add_session(ctx, ssl->s3->established_session); |
| 238 | } |
| 239 | if (ctx->new_session_cb != NULL) { |
| 240 | SSL_SESSION_up_ref(ssl->s3->established_session); |
| 241 | if (!ctx->new_session_cb(ssl, ssl->s3->established_session)) { |
| 242 | /* |new_session_cb|'s return value signals whether it took ownership. */ |
| 243 | SSL_SESSION_free(ssl->s3->established_session); |
| 244 | } |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | if (use_internal_cache && |
| 249 | !(ctx->session_cache_mode & SSL_SESS_CACHE_NO_AUTO_CLEAR)) { |
| 250 | /* Automatically flush the internal session cache every 255 connections. */ |
| 251 | int flush_cache = 0; |
| 252 | CRYPTO_MUTEX_lock_write(&ctx->lock); |
| 253 | ctx->handshakes_since_cache_flush++; |
| 254 | if (ctx->handshakes_since_cache_flush >= 255) { |
| 255 | flush_cache = 1; |
| 256 | ctx->handshakes_since_cache_flush = 0; |
| 257 | } |
| 258 | CRYPTO_MUTEX_unlock_write(&ctx->lock); |
| 259 | |
| 260 | if (flush_cache) { |
| 261 | struct OPENSSL_timeval now; |
| 262 | ssl_get_current_time(ssl, &now); |
| 263 | SSL_CTX_flush_sessions(ctx, now.tv_sec); |
| 264 | } |
| 265 | } |
| 266 | } |
| 267 | |
| 268 | static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len) { |
| 269 | static const char hextable[] = "0123456789abcdef"; |
| 270 | uint8_t *out; |
| 271 | |
| 272 | if (!CBB_add_space(cbb, &out, in_len * 2)) { |
| 273 | return 0; |
| 274 | } |
| 275 | |
| 276 | for (size_t i = 0; i < in_len; i++) { |
| 277 | *(out++) = (uint8_t)hextable[in[i] >> 4]; |
| 278 | *(out++) = (uint8_t)hextable[in[i] & 0xf]; |
| 279 | } |
| 280 | |
| 281 | return 1; |
| 282 | } |
| 283 | |
| 284 | int ssl_log_secret(const SSL *ssl, const char *label, const uint8_t *secret, |
| 285 | size_t secret_len) { |
| 286 | if (ssl->ctx->keylog_callback == NULL) { |
| 287 | return 1; |
| 288 | } |
| 289 | |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame^] | 290 | ScopedCBB cbb; |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 291 | uint8_t *out; |
| 292 | size_t out_len; |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame^] | 293 | if (!CBB_init(cbb.get(), strlen(label) + 1 + SSL3_RANDOM_SIZE * 2 + 1 + |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 294 | secret_len * 2 + 1) || |
David Benjamin | 1386aad | 2017-07-19 23:57:40 -0400 | [diff] [blame^] | 295 | !CBB_add_bytes(cbb.get(), (const uint8_t *)label, strlen(label)) || |
| 296 | !CBB_add_bytes(cbb.get(), (const uint8_t *)" ", 1) || |
| 297 | !cbb_add_hex(cbb.get(), ssl->s3->client_random, SSL3_RANDOM_SIZE) || |
| 298 | !CBB_add_bytes(cbb.get(), (const uint8_t *)" ", 1) || |
| 299 | !cbb_add_hex(cbb.get(), secret, secret_len) || |
| 300 | !CBB_add_u8(cbb.get(), 0 /* NUL */) || |
| 301 | !CBB_finish(cbb.get(), &out, &out_len)) { |
David Benjamin | 86e95b8 | 2017-07-18 16:34:25 -0400 | [diff] [blame] | 302 | return 0; |
| 303 | } |
| 304 | |
| 305 | ssl->ctx->keylog_callback(ssl, (const char *)out); |
| 306 | OPENSSL_free(out); |
| 307 | return 1; |
| 308 | } |
| 309 | |
| 310 | int ssl3_can_false_start(const SSL *ssl) { |
| 311 | const SSL_CIPHER *const cipher = SSL_get_current_cipher(ssl); |
| 312 | |
| 313 | /* False Start only for TLS 1.2 with an ECDHE+AEAD cipher and ALPN or NPN. */ |
| 314 | return !SSL_is_dtls(ssl) && |
| 315 | SSL_version(ssl) == TLS1_2_VERSION && |
| 316 | (ssl->s3->alpn_selected != NULL || |
| 317 | ssl->s3->next_proto_negotiated != NULL) && |
| 318 | cipher != NULL && |
| 319 | cipher->algorithm_mkey == SSL_kECDHE && |
| 320 | cipher->algorithm_mac == SSL_AEAD; |
| 321 | } |
| 322 | |
| 323 | void ssl_do_info_callback(const SSL *ssl, int type, int value) { |
| 324 | void (*cb)(const SSL *ssl, int type, int value) = NULL; |
| 325 | if (ssl->info_callback != NULL) { |
| 326 | cb = ssl->info_callback; |
| 327 | } else if (ssl->ctx->info_callback != NULL) { |
| 328 | cb = ssl->ctx->info_callback; |
| 329 | } |
| 330 | |
| 331 | if (cb != NULL) { |
| 332 | cb(ssl, type, value); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | void ssl_do_msg_callback(SSL *ssl, int is_write, int content_type, |
| 337 | const void *buf, size_t len) { |
| 338 | if (ssl->msg_callback == NULL) { |
| 339 | return; |
| 340 | } |
| 341 | |
| 342 | /* |version| is zero when calling for |SSL3_RT_HEADER| and |SSL2_VERSION| for |
| 343 | * a V2ClientHello. */ |
| 344 | int version; |
| 345 | switch (content_type) { |
| 346 | case 0: |
| 347 | /* V2ClientHello */ |
| 348 | version = SSL2_VERSION; |
| 349 | break; |
| 350 | case SSL3_RT_HEADER: |
| 351 | version = 0; |
| 352 | break; |
| 353 | default: |
| 354 | version = SSL_version(ssl); |
| 355 | } |
| 356 | |
| 357 | ssl->msg_callback(is_write, version, content_type, buf, len, ssl, |
| 358 | ssl->msg_callback_arg); |
| 359 | } |
| 360 | |
| 361 | void ssl_get_current_time(const SSL *ssl, struct OPENSSL_timeval *out_clock) { |
| 362 | if (ssl->ctx->current_time_cb != NULL) { |
| 363 | /* TODO(davidben): Update current_time_cb to use OPENSSL_timeval. See |
| 364 | * https://crbug.com/boringssl/155. */ |
| 365 | struct timeval clock; |
| 366 | ssl->ctx->current_time_cb(ssl, &clock); |
| 367 | if (clock.tv_sec < 0) { |
| 368 | assert(0); |
| 369 | out_clock->tv_sec = 0; |
| 370 | out_clock->tv_usec = 0; |
| 371 | } else { |
| 372 | out_clock->tv_sec = (uint64_t)clock.tv_sec; |
| 373 | out_clock->tv_usec = (uint32_t)clock.tv_usec; |
| 374 | } |
| 375 | return; |
| 376 | } |
| 377 | |
| 378 | #if defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE) |
| 379 | out_clock->tv_sec = 1234; |
| 380 | out_clock->tv_usec = 1234; |
| 381 | #elif defined(OPENSSL_WINDOWS) |
| 382 | struct _timeb time; |
| 383 | _ftime(&time); |
| 384 | if (time.time < 0) { |
| 385 | assert(0); |
| 386 | out_clock->tv_sec = 0; |
| 387 | out_clock->tv_usec = 0; |
| 388 | } else { |
| 389 | out_clock->tv_sec = time.time; |
| 390 | out_clock->tv_usec = time.millitm * 1000; |
| 391 | } |
| 392 | #else |
| 393 | struct timeval clock; |
| 394 | gettimeofday(&clock, NULL); |
| 395 | if (clock.tv_sec < 0) { |
| 396 | assert(0); |
| 397 | out_clock->tv_sec = 0; |
| 398 | out_clock->tv_usec = 0; |
| 399 | } else { |
| 400 | out_clock->tv_sec = (uint64_t)clock.tv_sec; |
| 401 | out_clock->tv_usec = (uint32_t)clock.tv_usec; |
| 402 | } |
| 403 | #endif |
| 404 | } |
| 405 | |
| 406 | } // namespace bssl |
| 407 | |
| 408 | using namespace bssl; |
| 409 | |
David Benjamin | 7c6d09b | 2015-09-05 11:00:19 -0400 | [diff] [blame] | 410 | int SSL_library_init(void) { |
| 411 | CRYPTO_library_init(); |
| 412 | return 1; |
| 413 | } |
| 414 | |
Adam Langley | e976e43 | 2016-02-15 14:01:10 -0800 | [diff] [blame] | 415 | static uint32_t ssl_session_hash(const SSL_SESSION *sess) { |
| 416 | const uint8_t *session_id = sess->session_id; |
| 417 | |
| 418 | uint8_t tmp_storage[sizeof(uint32_t)]; |
| 419 | if (sess->session_id_length < sizeof(tmp_storage)) { |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 420 | OPENSSL_memset(tmp_storage, 0, sizeof(tmp_storage)); |
| 421 | OPENSSL_memcpy(tmp_storage, sess->session_id, sess->session_id_length); |
Adam Langley | e976e43 | 2016-02-15 14:01:10 -0800 | [diff] [blame] | 422 | session_id = tmp_storage; |
| 423 | } |
| 424 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 425 | uint32_t hash = |
Adam Langley | e976e43 | 2016-02-15 14:01:10 -0800 | [diff] [blame] | 426 | ((uint32_t)session_id[0]) | |
| 427 | ((uint32_t)session_id[1] << 8) | |
| 428 | ((uint32_t)session_id[2] << 16) | |
| 429 | ((uint32_t)session_id[3] << 24); |
David Benjamin | 7c6d09b | 2015-09-05 11:00:19 -0400 | [diff] [blame] | 430 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 431 | return hash; |
| 432 | } |
| 433 | |
| 434 | /* NB: If this function (or indeed the hash function which uses a sort of |
| 435 | * coarser function than this one) is changed, ensure |
| 436 | * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being |
| 437 | * able to construct an SSL_SESSION that will collide with any existing session |
| 438 | * with a matching session ID. */ |
| 439 | static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b) { |
| 440 | if (a->ssl_version != b->ssl_version) { |
| 441 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 442 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 443 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 444 | if (a->session_id_length != b->session_id_length) { |
| 445 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 446 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 447 | |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 448 | return OPENSSL_memcmp(a->session_id, b->session_id, a->session_id_length); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 449 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 450 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 451 | SSL_CTX *SSL_CTX_new(const SSL_METHOD *method) { |
| 452 | SSL_CTX *ret = NULL; |
| 453 | |
| 454 | if (method == NULL) { |
| 455 | OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED); |
| 456 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 457 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 458 | |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 459 | ret = (SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX)); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 460 | if (ret == NULL) { |
| 461 | goto err; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 462 | } |
| 463 | |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 464 | OPENSSL_memset(ret, 0, sizeof(SSL_CTX)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 465 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 466 | ret->method = method->method; |
Adam Langley | 3509dac | 2017-02-01 11:59:18 -0800 | [diff] [blame] | 467 | ret->x509_method = method->x509_method; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 468 | |
| 469 | CRYPTO_MUTEX_init(&ret->lock); |
| 470 | |
| 471 | ret->session_cache_mode = SSL_SESS_CACHE_SERVER; |
| 472 | ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT; |
| 473 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 474 | ret->session_timeout = SSL_DEFAULT_SESSION_TIMEOUT; |
David Benjamin | 17b3083 | 2017-01-28 14:00:32 -0500 | [diff] [blame] | 475 | ret->session_psk_dhe_timeout = SSL_DEFAULT_SESSION_PSK_DHE_TIMEOUT; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 476 | |
| 477 | ret->references = 1; |
| 478 | |
| 479 | ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT; |
| 480 | ret->verify_mode = SSL_VERIFY_NONE; |
Adam Langley | 3509dac | 2017-02-01 11:59:18 -0800 | [diff] [blame] | 481 | ret->cert = ssl_cert_new(method->x509_method); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 482 | if (ret->cert == NULL) { |
| 483 | goto err; |
| 484 | } |
| 485 | |
| 486 | ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp); |
| 487 | if (ret->sessions == NULL) { |
| 488 | goto err; |
| 489 | } |
Adam Langley | 2a3b343 | 2017-02-10 13:56:48 -0800 | [diff] [blame] | 490 | |
| 491 | if (!ret->x509_method->ssl_ctx_new(ret)) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 492 | goto err; |
| 493 | } |
| 494 | |
Matthew Braithwaite | 6ad20dc | 2017-02-21 16:41:33 -0800 | [diff] [blame] | 495 | if (!SSL_CTX_set_strict_cipher_list(ret, SSL_DEFAULT_CIPHER_LIST)) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 496 | goto err2; |
| 497 | } |
| 498 | |
Adam Langley | 34b4c82 | 2017-02-02 10:57:17 -0800 | [diff] [blame] | 499 | ret->client_CA = sk_CRYPTO_BUFFER_new_null(); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 500 | if (ret->client_CA == NULL) { |
| 501 | goto err; |
| 502 | } |
| 503 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 504 | CRYPTO_new_ex_data(&ret->ex_data); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 505 | |
| 506 | ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 507 | |
| 508 | /* Setup RFC4507 ticket keys */ |
| 509 | if (!RAND_bytes(ret->tlsext_tick_key_name, 16) || |
| 510 | !RAND_bytes(ret->tlsext_tick_hmac_key, 16) || |
| 511 | !RAND_bytes(ret->tlsext_tick_aes_key, 16)) { |
| 512 | ret->options |= SSL_OP_NO_TICKET; |
| 513 | } |
| 514 | |
David Benjamin | a983b4c | 2016-11-09 14:21:12 -0500 | [diff] [blame] | 515 | /* Disable the auto-chaining feature by default. Once this has stuck without |
| 516 | * problems, the feature will be removed entirely. */ |
| 517 | ret->mode = SSL_MODE_NO_AUTO_CHAIN; |
| 518 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 519 | /* Lock the SSL_CTX to the specified version, for compatibility with legacy |
David Benjamin | 3cfeb95 | 2017-03-01 16:48:38 -0500 | [diff] [blame] | 520 | * uses of SSL_METHOD, but we do not set the minimum version for |
| 521 | * |SSLv3_method|. */ |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 522 | if (!SSL_CTX_set_max_proto_version(ret, method->version) || |
David Benjamin | 3cfeb95 | 2017-03-01 16:48:38 -0500 | [diff] [blame] | 523 | !SSL_CTX_set_min_proto_version(ret, method->version == SSL3_VERSION |
| 524 | ? 0 /* default */ |
| 525 | : method->version)) { |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 526 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 527 | goto err2; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | return ret; |
| 531 | |
| 532 | err: |
| 533 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 534 | err2: |
| 535 | SSL_CTX_free(ret); |
| 536 | return NULL; |
| 537 | } |
| 538 | |
Adam Langley | 84cd159 | 2016-06-30 18:29:44 -0700 | [diff] [blame] | 539 | int SSL_CTX_up_ref(SSL_CTX *ctx) { |
| 540 | CRYPTO_refcount_inc(&ctx->references); |
| 541 | return 1; |
| 542 | } |
| 543 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 544 | void SSL_CTX_free(SSL_CTX *ctx) { |
| 545 | if (ctx == NULL || |
| 546 | !CRYPTO_refcount_dec_and_test_zero(&ctx->references)) { |
| 547 | return; |
| 548 | } |
| 549 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 550 | /* Free internal session cache. However: the remove_cb() may reference the |
| 551 | * ex_data of SSL_CTX, thus the ex_data store can only be removed after the |
| 552 | * sessions were flushed. As the ex_data handling routines might also touch |
| 553 | * the session cache, the most secure solution seems to be: empty (flush) the |
| 554 | * cache, then free ex_data, then finally free the cache. (See ticket |
| 555 | * [openssl.org #212].) */ |
| 556 | SSL_CTX_flush_sessions(ctx, 0); |
| 557 | |
| 558 | CRYPTO_free_ex_data(&g_ex_data_class_ssl_ctx, ctx, &ctx->ex_data); |
| 559 | |
| 560 | CRYPTO_MUTEX_cleanup(&ctx->lock); |
| 561 | lh_SSL_SESSION_free(ctx->sessions); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 562 | ssl_cipher_preference_list_free(ctx->cipher_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 563 | ssl_cert_free(ctx->cert); |
| 564 | sk_SSL_CUSTOM_EXTENSION_pop_free(ctx->client_custom_extensions, |
| 565 | SSL_CUSTOM_EXTENSION_free); |
| 566 | sk_SSL_CUSTOM_EXTENSION_pop_free(ctx->server_custom_extensions, |
| 567 | SSL_CUSTOM_EXTENSION_free); |
Adam Langley | 34b4c82 | 2017-02-02 10:57:17 -0800 | [diff] [blame] | 568 | sk_CRYPTO_BUFFER_pop_free(ctx->client_CA, CRYPTO_BUFFER_free); |
Adam Langley | 2a3b343 | 2017-02-10 13:56:48 -0800 | [diff] [blame] | 569 | ctx->x509_method->ssl_ctx_free(ctx); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 570 | sk_SRTP_PROTECTION_PROFILE_free(ctx->srtp_profiles); |
| 571 | OPENSSL_free(ctx->psk_identity_hint); |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 572 | OPENSSL_free(ctx->supported_group_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 573 | OPENSSL_free(ctx->alpn_client_proto_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 574 | EVP_PKEY_free(ctx->tlsext_channel_id_private); |
David Benjamin | 71c21b4 | 2017-04-14 17:05:40 -0400 | [diff] [blame] | 575 | OPENSSL_free(ctx->verify_sigalgs); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 576 | |
| 577 | OPENSSL_free(ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 578 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 579 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 580 | SSL *SSL_new(SSL_CTX *ctx) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 581 | if (ctx == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 582 | OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_CTX); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 583 | return NULL; |
| 584 | } |
| 585 | if (ctx->method == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 586 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 587 | return NULL; |
| 588 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 589 | |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 590 | SSL *ssl = (SSL *)OPENSSL_malloc(sizeof(SSL)); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 591 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 592 | goto err; |
| 593 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 594 | OPENSSL_memset(ssl, 0, sizeof(SSL)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 595 | |
David Benjamin | fc08dfc | 2017-06-20 14:39:32 -0400 | [diff] [blame] | 596 | ssl->conf_min_version = ctx->conf_min_version; |
| 597 | ssl->conf_max_version = ctx->conf_max_version; |
Steven Valdez | 52586f9 | 2017-07-11 15:08:32 -0400 | [diff] [blame] | 598 | ssl->tls13_variant = ctx->tls13_variant; |
David Benjamin | 1eb367c | 2014-12-12 18:17:51 -0500 | [diff] [blame] | 599 | |
Taylor Brandstetter | 376a0fe | 2016-05-10 19:30:28 -0700 | [diff] [blame] | 600 | /* RFC 6347 states that implementations SHOULD use an initial timer value of |
| 601 | * 1 second. */ |
| 602 | ssl->initial_timeout_duration_ms = 1000; |
| 603 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 604 | ssl->options = ctx->options; |
| 605 | ssl->mode = ctx->mode; |
| 606 | ssl->max_cert_list = ctx->max_cert_list; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 607 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 608 | ssl->cert = ssl_cert_dup(ctx->cert); |
| 609 | if (ssl->cert == NULL) { |
David Benjamin | a5a3eeb | 2015-03-18 20:26:30 -0400 | [diff] [blame] | 610 | goto err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 611 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 612 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 613 | ssl->msg_callback = ctx->msg_callback; |
| 614 | ssl->msg_callback_arg = ctx->msg_callback_arg; |
| 615 | ssl->verify_mode = ctx->verify_mode; |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 616 | ssl->verify_callback = ctx->default_verify_callback; |
David Benjamin | 3a1dd46 | 2017-07-11 16:13:10 -0400 | [diff] [blame] | 617 | ssl->custom_verify_callback = ctx->custom_verify_callback; |
David Benjamin | bbaf367 | 2016-11-17 10:53:09 +0900 | [diff] [blame] | 618 | ssl->retain_only_sha256_of_client_certs = |
| 619 | ctx->retain_only_sha256_of_client_certs; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 620 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 621 | ssl->quiet_shutdown = ctx->quiet_shutdown; |
| 622 | ssl->max_send_fragment = ctx->max_send_fragment; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 623 | |
David Benjamin | f650c71 | 2016-12-22 15:54:51 -0500 | [diff] [blame] | 624 | SSL_CTX_up_ref(ctx); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 625 | ssl->ctx = ctx; |
David Benjamin | f650c71 | 2016-12-22 15:54:51 -0500 | [diff] [blame] | 626 | SSL_CTX_up_ref(ctx); |
David Benjamin | be49706 | 2017-03-10 16:08:36 -0500 | [diff] [blame] | 627 | ssl->session_ctx = ctx; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 628 | |
Adam Langley | 2a3b343 | 2017-02-10 13:56:48 -0800 | [diff] [blame] | 629 | if (!ssl->ctx->x509_method->ssl_new(ssl)) { |
| 630 | goto err; |
| 631 | } |
| 632 | |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 633 | if (ctx->supported_group_list) { |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 634 | ssl->supported_group_list = (uint16_t *)BUF_memdup( |
| 635 | ctx->supported_group_list, ctx->supported_group_list_len * 2); |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 636 | if (!ssl->supported_group_list) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 637 | goto err; |
| 638 | } |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 639 | ssl->supported_group_list_len = ctx->supported_group_list_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 640 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 641 | |
David Benjamin | 17b3083 | 2017-01-28 14:00:32 -0500 | [diff] [blame] | 642 | if (ctx->alpn_client_proto_list) { |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 643 | ssl->alpn_client_proto_list = (uint8_t *)BUF_memdup( |
| 644 | ctx->alpn_client_proto_list, ctx->alpn_client_proto_list_len); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 645 | if (ssl->alpn_client_proto_list == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 646 | goto err; |
| 647 | } |
David Benjamin | 17b3083 | 2017-01-28 14:00:32 -0500 | [diff] [blame] | 648 | ssl->alpn_client_proto_list_len = ctx->alpn_client_proto_list_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 649 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 650 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 651 | ssl->method = ctx->method; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 652 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 653 | if (!ssl->method->ssl_new(ssl)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 654 | goto err; |
| 655 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 656 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 657 | ssl->rwstate = SSL_NOTHING; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 658 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 659 | CRYPTO_new_ex_data(&ssl->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 660 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 661 | ssl->psk_identity_hint = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 662 | if (ctx->psk_identity_hint) { |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 663 | ssl->psk_identity_hint = BUF_strdup(ctx->psk_identity_hint); |
| 664 | if (ssl->psk_identity_hint == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 665 | goto err; |
| 666 | } |
| 667 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 668 | ssl->psk_client_callback = ctx->psk_client_callback; |
| 669 | ssl->psk_server_callback = ctx->psk_server_callback; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 670 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 671 | ssl->tlsext_channel_id_enabled = ctx->tlsext_channel_id_enabled; |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 672 | if (ctx->tlsext_channel_id_private) { |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 673 | EVP_PKEY_up_ref(ctx->tlsext_channel_id_private); |
| 674 | ssl->tlsext_channel_id_private = ctx->tlsext_channel_id_private; |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 675 | } |
| 676 | |
David Benjamin | 17b3083 | 2017-01-28 14:00:32 -0500 | [diff] [blame] | 677 | ssl->signed_cert_timestamps_enabled = ctx->signed_cert_timestamps_enabled; |
| 678 | ssl->ocsp_stapling_enabled = ctx->ocsp_stapling_enabled; |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 679 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 680 | return ssl; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 681 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 682 | err: |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 683 | SSL_free(ssl); |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 684 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 685 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 686 | return NULL; |
| 687 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 688 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 689 | void SSL_free(SSL *ssl) { |
| 690 | if (ssl == NULL) { |
| 691 | return; |
| 692 | } |
| 693 | |
David Benjamin | 0391f16 | 2017-06-15 15:27:59 -0400 | [diff] [blame] | 694 | if (ssl->ctx != NULL) { |
| 695 | ssl->ctx->x509_method->ssl_free(ssl); |
| 696 | } |
| 697 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 698 | CRYPTO_free_ex_data(&g_ex_data_class_ssl, ssl, &ssl->ex_data); |
| 699 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 700 | BIO_free_all(ssl->rbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 701 | BIO_free_all(ssl->wbio); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 702 | |
| 703 | BUF_MEM_free(ssl->init_buf); |
| 704 | |
| 705 | /* add extra stuff */ |
| 706 | ssl_cipher_preference_list_free(ssl->cipher_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 707 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 708 | SSL_SESSION_free(ssl->session); |
| 709 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 710 | ssl_cert_free(ssl->cert); |
| 711 | |
| 712 | OPENSSL_free(ssl->tlsext_hostname); |
David Benjamin | be49706 | 2017-03-10 16:08:36 -0500 | [diff] [blame] | 713 | SSL_CTX_free(ssl->session_ctx); |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 714 | OPENSSL_free(ssl->supported_group_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 715 | OPENSSL_free(ssl->alpn_client_proto_list); |
| 716 | EVP_PKEY_free(ssl->tlsext_channel_id_private); |
| 717 | OPENSSL_free(ssl->psk_identity_hint); |
Adam Langley | 34b4c82 | 2017-02-02 10:57:17 -0800 | [diff] [blame] | 718 | sk_CRYPTO_BUFFER_pop_free(ssl->client_CA, CRYPTO_BUFFER_free); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 719 | sk_SRTP_PROTECTION_PROFILE_free(ssl->srtp_profiles); |
| 720 | |
| 721 | if (ssl->method != NULL) { |
| 722 | ssl->method->ssl_free(ssl); |
| 723 | } |
| 724 | SSL_CTX_free(ssl->ctx); |
| 725 | |
| 726 | OPENSSL_free(ssl); |
| 727 | } |
| 728 | |
| 729 | void SSL_set_connect_state(SSL *ssl) { |
| 730 | ssl->server = 0; |
David Benjamin | 9f1dc82 | 2016-06-07 17:03:46 -0400 | [diff] [blame] | 731 | ssl->handshake_func = ssl3_connect; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | void SSL_set_accept_state(SSL *ssl) { |
| 735 | ssl->server = 1; |
David Benjamin | 9f1dc82 | 2016-06-07 17:03:46 -0400 | [diff] [blame] | 736 | ssl->handshake_func = ssl3_accept; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 737 | } |
| 738 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 739 | void SSL_set0_rbio(SSL *ssl, BIO *rbio) { |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 740 | BIO_free_all(ssl->rbio); |
| 741 | ssl->rbio = rbio; |
| 742 | } |
| 743 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 744 | void SSL_set0_wbio(SSL *ssl, BIO *wbio) { |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 745 | BIO_free_all(ssl->wbio); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 746 | ssl->wbio = wbio; |
| 747 | } |
| 748 | |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 749 | void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { |
| 750 | /* For historical reasons, this function has many different cases in ownership |
| 751 | * handling. */ |
| 752 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 753 | /* If nothing has changed, do nothing */ |
| 754 | if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { |
| 755 | return; |
| 756 | } |
| 757 | |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 758 | /* If the two arguments are equal, one fewer reference is granted than |
| 759 | * taken. */ |
| 760 | if (rbio != NULL && rbio == wbio) { |
| 761 | BIO_up_ref(rbio); |
| 762 | } |
| 763 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 764 | /* If only the wbio is changed, adopt only one reference. */ |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 765 | if (rbio == SSL_get_rbio(ssl)) { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 766 | SSL_set0_wbio(ssl, wbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 767 | return; |
| 768 | } |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 769 | |
| 770 | /* There is an asymmetry here for historical reasons. If only the rbio is |
| 771 | * changed AND the rbio and wbio were originally different, then we only adopt |
| 772 | * one reference. */ |
| 773 | if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) { |
| 774 | SSL_set0_rbio(ssl, rbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 775 | return; |
| 776 | } |
| 777 | |
| 778 | /* Otherwise, adopt both references. */ |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 779 | SSL_set0_rbio(ssl, rbio); |
| 780 | SSL_set0_wbio(ssl, wbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 781 | } |
| 782 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 783 | BIO *SSL_get_rbio(const SSL *ssl) { return ssl->rbio; } |
| 784 | |
David Benjamin | daf207a | 2017-01-03 18:37:41 -0500 | [diff] [blame] | 785 | BIO *SSL_get_wbio(const SSL *ssl) { return ssl->wbio; } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 786 | |
David Benjamin | 2be4aa7 | 2017-01-02 07:56:51 -0500 | [diff] [blame] | 787 | int SSL_do_handshake(SSL *ssl) { |
| 788 | ssl_reset_error_state(ssl); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 789 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 790 | if (ssl->handshake_func == NULL) { |
| 791 | OPENSSL_PUT_ERROR(SSL, SSL_R_CONNECTION_TYPE_NOT_SET); |
| 792 | return -1; |
| 793 | } |
| 794 | |
| 795 | if (!SSL_in_init(ssl)) { |
| 796 | return 1; |
| 797 | } |
| 798 | |
David Benjamin | 2644a13 | 2016-12-11 13:41:17 -0500 | [diff] [blame] | 799 | if (ssl->s3->hs == NULL) { |
| 800 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 801 | return -1; |
David Benjamin | ce8c9d2 | 2016-11-14 10:45:16 +0900 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | /* Run the handshake. */ |
| 805 | assert(ssl->s3->hs != NULL); |
| 806 | int ret = ssl->handshake_func(ssl->s3->hs); |
| 807 | if (ret <= 0) { |
| 808 | return ret; |
| 809 | } |
| 810 | |
| 811 | /* Destroy the handshake object if the handshake has completely finished. */ |
| 812 | if (!SSL_in_init(ssl)) { |
| 813 | ssl_handshake_free(ssl->s3->hs); |
| 814 | ssl->s3->hs = NULL; |
| 815 | } |
| 816 | |
| 817 | return 1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | int SSL_connect(SSL *ssl) { |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 821 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 822 | /* Not properly initialized yet */ |
| 823 | SSL_set_connect_state(ssl); |
| 824 | } |
| 825 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 826 | return SSL_do_handshake(ssl); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | int SSL_accept(SSL *ssl) { |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 830 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 831 | /* Not properly initialized yet */ |
| 832 | SSL_set_accept_state(ssl); |
| 833 | } |
| 834 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 835 | return SSL_do_handshake(ssl); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 836 | } |
| 837 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 838 | static int ssl_do_renegotiate(SSL *ssl) { |
David Benjamin | 34941c0 | 2016-10-08 11:45:31 -0400 | [diff] [blame] | 839 | /* We do not accept renegotiations as a server or SSL 3.0. SSL 3.0 will be |
| 840 | * removed entirely in the future and requires retaining more data for |
| 841 | * renegotiation_info. */ |
| 842 | if (ssl->server || ssl->version == SSL3_VERSION) { |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 843 | goto no_renegotiation; |
| 844 | } |
| 845 | |
| 846 | if (ssl->s3->tmp.message_type != SSL3_MT_HELLO_REQUEST || |
| 847 | ssl->init_num != 0) { |
| 848 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 849 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HELLO_REQUEST); |
| 850 | return 0; |
| 851 | } |
| 852 | |
| 853 | switch (ssl->renegotiate_mode) { |
| 854 | case ssl_renegotiate_ignore: |
| 855 | /* Ignore the HelloRequest. */ |
| 856 | return 1; |
| 857 | |
| 858 | case ssl_renegotiate_once: |
| 859 | if (ssl->s3->total_renegotiations != 0) { |
| 860 | goto no_renegotiation; |
| 861 | } |
| 862 | break; |
| 863 | |
| 864 | case ssl_renegotiate_never: |
| 865 | goto no_renegotiation; |
| 866 | |
| 867 | case ssl_renegotiate_freely: |
| 868 | break; |
| 869 | } |
| 870 | |
| 871 | /* Renegotiation is only supported at quiescent points in the application |
| 872 | * protocol, namely in HTTPS, just before reading the HTTP response. Require |
| 873 | * the record-layer be idle and avoid complexities of sending a handshake |
| 874 | * record while an application_data record is being written. */ |
| 875 | if (ssl_write_buffer_is_pending(ssl)) { |
| 876 | goto no_renegotiation; |
| 877 | } |
| 878 | |
| 879 | /* Begin a new handshake. */ |
David Benjamin | 2644a13 | 2016-12-11 13:41:17 -0500 | [diff] [blame] | 880 | if (ssl->s3->hs != NULL) { |
| 881 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 882 | return 0; |
| 883 | } |
| 884 | ssl->s3->hs = ssl_handshake_new(ssl); |
| 885 | if (ssl->s3->hs == NULL) { |
| 886 | return 0; |
| 887 | } |
| 888 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 889 | ssl->s3->total_renegotiations++; |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 890 | return 1; |
| 891 | |
| 892 | no_renegotiation: |
| 893 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION); |
| 894 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION); |
| 895 | return 0; |
| 896 | } |
| 897 | |
| 898 | static int ssl_do_post_handshake(SSL *ssl) { |
| 899 | if (ssl3_protocol_version(ssl) < TLS1_3_VERSION) { |
| 900 | return ssl_do_renegotiate(ssl); |
| 901 | } |
| 902 | |
Steven Valdez | 8e1c7be | 2016-07-26 12:39:22 -0400 | [diff] [blame] | 903 | return tls13_post_handshake(ssl); |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 904 | } |
| 905 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 906 | static int ssl_read_impl(SSL *ssl, void *buf, int num, int peek) { |
David Benjamin | 2be4aa7 | 2017-01-02 07:56:51 -0500 | [diff] [blame] | 907 | ssl_reset_error_state(ssl); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 908 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 909 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 910 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 911 | return -1; |
| 912 | } |
| 913 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 914 | for (;;) { |
| 915 | /* Complete the current handshake, if any. False Start will cause |
| 916 | * |SSL_do_handshake| to return mid-handshake, so this may require multiple |
| 917 | * iterations. */ |
Steven Valdez | 681eb6a | 2016-12-19 13:19:29 -0500 | [diff] [blame] | 918 | while (!ssl_can_read(ssl)) { |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 919 | int ret = SSL_do_handshake(ssl); |
| 920 | if (ret < 0) { |
| 921 | return ret; |
| 922 | } |
| 923 | if (ret == 0) { |
| 924 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 925 | return -1; |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | int got_handshake; |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 930 | int ret = ssl->method->read_app_data(ssl, &got_handshake, (uint8_t *)buf, |
| 931 | num, peek); |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 932 | if (ret > 0 || !got_handshake) { |
Steven Valdez | 32635b8 | 2016-08-16 11:25:03 -0400 | [diff] [blame] | 933 | ssl->s3->key_update_count = 0; |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 934 | return ret; |
| 935 | } |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 936 | |
Steven Valdez | 681eb6a | 2016-12-19 13:19:29 -0500 | [diff] [blame] | 937 | /* If we received an interrupt in early read (the end_of_early_data alert), |
| 938 | * loop again for the handshake to process it. */ |
| 939 | if (SSL_in_init(ssl)) { |
| 940 | continue; |
| 941 | } |
| 942 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 943 | /* Handle the post-handshake message and try again. */ |
| 944 | if (!ssl_do_post_handshake(ssl)) { |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 945 | return -1; |
| 946 | } |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 947 | ssl->method->release_current_message(ssl, 1 /* free buffer */); |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 948 | } |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | int SSL_read(SSL *ssl, void *buf, int num) { |
| 952 | return ssl_read_impl(ssl, buf, num, 0 /* consume bytes */); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | int SSL_peek(SSL *ssl, void *buf, int num) { |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 956 | return ssl_read_impl(ssl, buf, num, 1 /* peek */); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 957 | } |
| 958 | |
| 959 | int SSL_write(SSL *ssl, const void *buf, int num) { |
David Benjamin | 2be4aa7 | 2017-01-02 07:56:51 -0500 | [diff] [blame] | 960 | ssl_reset_error_state(ssl); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 961 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 962 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 963 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 964 | return -1; |
| 965 | } |
| 966 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 967 | if (ssl->s3->send_shutdown != ssl_shutdown_none) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 968 | OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 969 | return -1; |
| 970 | } |
| 971 | |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 972 | int ret = 0, needs_handshake = 0; |
| 973 | do { |
| 974 | /* If necessary, complete the handshake implicitly. */ |
| 975 | if (!ssl_can_write(ssl)) { |
| 976 | ret = SSL_do_handshake(ssl); |
| 977 | if (ret < 0) { |
| 978 | return ret; |
| 979 | } |
| 980 | if (ret == 0) { |
| 981 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 982 | return -1; |
| 983 | } |
David Benjamin | d7ac143 | 2016-03-10 00:41:25 -0500 | [diff] [blame] | 984 | } |
David Benjamin | d7ac143 | 2016-03-10 00:41:25 -0500 | [diff] [blame] | 985 | |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 986 | ret = ssl->method->write_app_data(ssl, &needs_handshake, |
| 987 | (const uint8_t *)buf, num); |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 988 | } while (needs_handshake); |
| 989 | return ret; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | int SSL_shutdown(SSL *ssl) { |
David Benjamin | 2be4aa7 | 2017-01-02 07:56:51 -0500 | [diff] [blame] | 993 | ssl_reset_error_state(ssl); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 994 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 995 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 996 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 997 | return -1; |
| 998 | } |
| 999 | |
David Benjamin | 12709db | 2017-02-17 13:51:50 -0500 | [diff] [blame] | 1000 | /* If we are in the middle of a handshake, silently succeed. Consumers often |
| 1001 | * call this function before |SSL_free|, whether the handshake succeeded or |
| 1002 | * not. We assume the caller has already handled failed handshakes. */ |
Steven Valdez | a14934f | 2016-02-29 10:05:08 -0500 | [diff] [blame] | 1003 | if (SSL_in_init(ssl)) { |
David Benjamin | 12709db | 2017-02-17 13:51:50 -0500 | [diff] [blame] | 1004 | return 1; |
Steven Valdez | a14934f | 2016-02-29 10:05:08 -0500 | [diff] [blame] | 1005 | } |
| 1006 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1007 | if (ssl->quiet_shutdown) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1008 | /* Do nothing if configured not to send a close_notify. */ |
| 1009 | ssl->s3->send_shutdown = ssl_shutdown_close_notify; |
| 1010 | ssl->s3->recv_shutdown = ssl_shutdown_close_notify; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1011 | return 1; |
| 1012 | } |
| 1013 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1014 | /* This function completes in two stages. It sends a close_notify and then it |
| 1015 | * waits for a close_notify to come in. Perform exactly one action and return |
| 1016 | * whether or not it succeeds. */ |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1017 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1018 | if (ssl->s3->send_shutdown != ssl_shutdown_close_notify) { |
| 1019 | /* Send a close_notify. */ |
| 1020 | if (ssl3_send_alert(ssl, SSL3_AL_WARNING, SSL_AD_CLOSE_NOTIFY) <= 0) { |
| 1021 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1022 | } |
| 1023 | } else if (ssl->s3->alert_dispatch) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1024 | /* Finish sending the close_notify. */ |
David Benjamin | f0ee907 | 2016-06-15 17:44:37 -0400 | [diff] [blame] | 1025 | if (ssl->method->dispatch_alert(ssl) <= 0) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1026 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1027 | } |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1028 | } else if (ssl->s3->recv_shutdown != ssl_shutdown_close_notify) { |
| 1029 | /* Wait for the peer's close_notify. */ |
David Benjamin | f0ee907 | 2016-06-15 17:44:37 -0400 | [diff] [blame] | 1030 | ssl->method->read_close_notify(ssl); |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1031 | if (ssl->s3->recv_shutdown != ssl_shutdown_close_notify) { |
| 1032 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1033 | } |
| 1034 | } |
| 1035 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1036 | /* Return 0 for unidirectional shutdown and 1 for bidirectional shutdown. */ |
| 1037 | return ssl->s3->recv_shutdown == ssl_shutdown_close_notify; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1038 | } |
| 1039 | |
David Benjamin | 1d4f4c0 | 2016-07-26 18:03:08 -0400 | [diff] [blame] | 1040 | int SSL_send_fatal_alert(SSL *ssl, uint8_t alert) { |
| 1041 | if (ssl->s3->alert_dispatch) { |
| 1042 | if (ssl->s3->send_alert[0] != SSL3_AL_FATAL || |
| 1043 | ssl->s3->send_alert[1] != alert) { |
| 1044 | /* We are already attempting to write a different alert. */ |
| 1045 | OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 1046 | return -1; |
| 1047 | } |
| 1048 | return ssl->method->dispatch_alert(ssl); |
| 1049 | } |
| 1050 | |
| 1051 | return ssl3_send_alert(ssl, SSL3_AL_FATAL, alert); |
| 1052 | } |
| 1053 | |
Steven Valdez | 08b65f4 | 2016-12-07 15:29:45 -0500 | [diff] [blame] | 1054 | void SSL_CTX_set_early_data_enabled(SSL_CTX *ctx, int enabled) { |
Alessandro Ghedini | 67bb45f | 2017-03-30 16:33:24 -0500 | [diff] [blame] | 1055 | ctx->cert->enable_early_data = !!enabled; |
| 1056 | } |
| 1057 | |
Steven Valdez | 520e122 | 2017-06-13 12:45:25 -0400 | [diff] [blame] | 1058 | void SSL_CTX_set_tls13_variant(SSL_CTX *ctx, enum tls13_variant_t variant) { |
| 1059 | ctx->tls13_variant = variant; |
| 1060 | } |
| 1061 | |
Steven Valdez | 52586f9 | 2017-07-11 15:08:32 -0400 | [diff] [blame] | 1062 | void SSL_set_tls13_variant(SSL *ssl, enum tls13_variant_t variant) { |
| 1063 | ssl->tls13_variant = variant; |
| 1064 | } |
| 1065 | |
Alessandro Ghedini | 67bb45f | 2017-03-30 16:33:24 -0500 | [diff] [blame] | 1066 | void SSL_set_early_data_enabled(SSL *ssl, int enabled) { |
| 1067 | ssl->cert->enable_early_data = !!enabled; |
Steven Valdez | 08b65f4 | 2016-12-07 15:29:45 -0500 | [diff] [blame] | 1068 | } |
| 1069 | |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 1070 | int SSL_in_early_data(const SSL *ssl) { |
| 1071 | if (ssl->s3->hs == NULL) { |
| 1072 | return 0; |
| 1073 | } |
| 1074 | return ssl->s3->hs->in_early_data; |
| 1075 | } |
| 1076 | |
Steven Valdez | 2d85062 | 2017-01-11 11:34:52 -0500 | [diff] [blame] | 1077 | int SSL_early_data_accepted(const SSL *ssl) { |
| 1078 | return ssl->early_data_accepted; |
| 1079 | } |
| 1080 | |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 1081 | void SSL_reset_early_data_reject(SSL *ssl) { |
| 1082 | SSL_HANDSHAKE *hs = ssl->s3->hs; |
| 1083 | if (hs == NULL || |
| 1084 | hs->wait != ssl_hs_early_data_rejected) { |
| 1085 | abort(); |
| 1086 | } |
| 1087 | |
| 1088 | hs->wait = ssl_hs_ok; |
| 1089 | hs->in_early_data = 0; |
| 1090 | SSL_SESSION_free(hs->early_session); |
| 1091 | hs->early_session = NULL; |
| 1092 | |
| 1093 | /* Discard any unfinished writes from the perspective of |SSL_write|'s |
| 1094 | * retry. The handshake will transparently flush out the pending record |
| 1095 | * (discarded by the server) to keep the framing correct. */ |
| 1096 | ssl->s3->wpend_pending = 0; |
| 1097 | } |
| 1098 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1099 | static int bio_retry_reason_to_error(int reason) { |
| 1100 | switch (reason) { |
| 1101 | case BIO_RR_CONNECT: |
| 1102 | return SSL_ERROR_WANT_CONNECT; |
| 1103 | case BIO_RR_ACCEPT: |
| 1104 | return SSL_ERROR_WANT_ACCEPT; |
| 1105 | default: |
| 1106 | return SSL_ERROR_SYSCALL; |
| 1107 | } |
| 1108 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1109 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1110 | int SSL_get_error(const SSL *ssl, int ret_code) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1111 | if (ret_code > 0) { |
| 1112 | return SSL_ERROR_NONE; |
| 1113 | } |
| 1114 | |
| 1115 | /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc, |
| 1116 | * where we do encode the error */ |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1117 | uint32_t err = ERR_peek_error(); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1118 | if (err != 0) { |
| 1119 | if (ERR_GET_LIB(err) == ERR_LIB_SYS) { |
| 1120 | return SSL_ERROR_SYSCALL; |
| 1121 | } |
| 1122 | return SSL_ERROR_SSL; |
| 1123 | } |
| 1124 | |
| 1125 | if (ret_code == 0) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 1126 | if (ssl->s3->recv_shutdown == ssl_shutdown_close_notify) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1127 | return SSL_ERROR_ZERO_RETURN; |
| 1128 | } |
| 1129 | /* An EOF was observed which violates the protocol, and the underlying |
| 1130 | * transport does not participate in the error queue. Bubble up to the |
| 1131 | * caller. */ |
| 1132 | return SSL_ERROR_SYSCALL; |
| 1133 | } |
| 1134 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1135 | switch (ssl->rwstate) { |
| 1136 | case SSL_PENDING_SESSION: |
| 1137 | return SSL_ERROR_PENDING_SESSION; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1138 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1139 | case SSL_CERTIFICATE_SELECTION_PENDING: |
| 1140 | return SSL_ERROR_PENDING_CERTIFICATE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1141 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1142 | case SSL_READING: { |
| 1143 | BIO *bio = SSL_get_rbio(ssl); |
| 1144 | if (BIO_should_read(bio)) { |
| 1145 | return SSL_ERROR_WANT_READ; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1146 | } |
| 1147 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1148 | if (BIO_should_write(bio)) { |
| 1149 | /* TODO(davidben): OpenSSL historically checked for writes on the read |
| 1150 | * BIO. Can this be removed? */ |
| 1151 | return SSL_ERROR_WANT_WRITE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1152 | } |
| 1153 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1154 | if (BIO_should_io_special(bio)) { |
| 1155 | return bio_retry_reason_to_error(BIO_get_retry_reason(bio)); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1156 | } |
| 1157 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1158 | break; |
| 1159 | } |
| 1160 | |
| 1161 | case SSL_WRITING: { |
| 1162 | BIO *bio = SSL_get_wbio(ssl); |
| 1163 | if (BIO_should_write(bio)) { |
| 1164 | return SSL_ERROR_WANT_WRITE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1165 | } |
| 1166 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1167 | if (BIO_should_read(bio)) { |
| 1168 | /* TODO(davidben): OpenSSL historically checked for reads on the write |
| 1169 | * BIO. Can this be removed? */ |
| 1170 | return SSL_ERROR_WANT_READ; |
| 1171 | } |
| 1172 | |
| 1173 | if (BIO_should_io_special(bio)) { |
| 1174 | return bio_retry_reason_to_error(BIO_get_retry_reason(bio)); |
| 1175 | } |
| 1176 | |
| 1177 | break; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1178 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1179 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1180 | case SSL_X509_LOOKUP: |
| 1181 | return SSL_ERROR_WANT_X509_LOOKUP; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1182 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1183 | case SSL_CHANNEL_ID_LOOKUP: |
| 1184 | return SSL_ERROR_WANT_CHANNEL_ID_LOOKUP; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1185 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 1186 | case SSL_PRIVATE_KEY_OPERATION: |
| 1187 | return SSL_ERROR_WANT_PRIVATE_KEY_OPERATION; |
Adam Langley | 4c341d0 | 2017-03-08 19:33:21 -0800 | [diff] [blame] | 1188 | |
| 1189 | case SSL_PENDING_TICKET: |
| 1190 | return SSL_ERROR_PENDING_TICKET; |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 1191 | |
| 1192 | case SSL_EARLY_DATA_REJECTED: |
| 1193 | return SSL_ERROR_EARLY_DATA_REJECTED; |
David Benjamin | 3a1dd46 | 2017-07-11 16:13:10 -0400 | [diff] [blame] | 1194 | |
| 1195 | case SSL_CERTIFICATE_VERIFY: |
| 1196 | return SSL_ERROR_WANT_CERTIFICATE_VERIFY; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | return SSL_ERROR_SYSCALL; |
| 1200 | } |
| 1201 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1202 | uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options) { |
| 1203 | ctx->options |= options; |
| 1204 | return ctx->options; |
| 1205 | } |
| 1206 | |
| 1207 | uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options) { |
| 1208 | ctx->options &= ~options; |
| 1209 | return ctx->options; |
| 1210 | } |
| 1211 | |
| 1212 | uint32_t SSL_CTX_get_options(const SSL_CTX *ctx) { return ctx->options; } |
| 1213 | |
| 1214 | uint32_t SSL_set_options(SSL *ssl, uint32_t options) { |
| 1215 | ssl->options |= options; |
| 1216 | return ssl->options; |
| 1217 | } |
| 1218 | |
| 1219 | uint32_t SSL_clear_options(SSL *ssl, uint32_t options) { |
| 1220 | ssl->options &= ~options; |
| 1221 | return ssl->options; |
| 1222 | } |
| 1223 | |
| 1224 | uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; } |
| 1225 | |
| 1226 | uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1227 | ctx->mode |= mode; |
| 1228 | return ctx->mode; |
| 1229 | } |
| 1230 | |
| 1231 | uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1232 | ctx->mode &= ~mode; |
| 1233 | return ctx->mode; |
| 1234 | } |
| 1235 | |
| 1236 | uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx) { return ctx->mode; } |
| 1237 | |
| 1238 | uint32_t SSL_set_mode(SSL *ssl, uint32_t mode) { |
| 1239 | ssl->mode |= mode; |
| 1240 | return ssl->mode; |
| 1241 | } |
| 1242 | |
| 1243 | uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode) { |
| 1244 | ssl->mode &= ~mode; |
| 1245 | return ssl->mode; |
| 1246 | } |
| 1247 | |
| 1248 | uint32_t SSL_get_mode(const SSL *ssl) { return ssl->mode; } |
| 1249 | |
Adam Langley | d519bf6 | 2016-12-12 11:16:44 -0800 | [diff] [blame] | 1250 | void SSL_CTX_set0_buffer_pool(SSL_CTX *ctx, CRYPTO_BUFFER_POOL *pool) { |
| 1251 | ctx->pool = pool; |
| 1252 | } |
| 1253 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1254 | int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, size_t *out_len, |
| 1255 | size_t max_out) { |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1256 | *out_len = 0; |
| 1257 | OPENSSL_memset(out, 0, max_out); |
| 1258 | |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1259 | /* tls-unique is not defined for SSL 3.0 or TLS 1.3. */ |
| 1260 | if (!ssl->s3->initial_handshake_complete || |
| 1261 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1262 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1263 | return 0; |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1264 | } |
| 1265 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1266 | /* The tls-unique value is the first Finished message in the handshake, which |
| 1267 | * is the client's in a full handshake and the server's for a resumption. See |
| 1268 | * https://tools.ietf.org/html/rfc5929#section-3.1. */ |
| 1269 | const uint8_t *finished = ssl->s3->previous_client_finished; |
| 1270 | size_t finished_len = ssl->s3->previous_client_finished_len; |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1271 | if (ssl->session != NULL) { |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1272 | /* tls-unique is broken for resumed sessions unless EMS is used. */ |
| 1273 | if (!ssl->session->extended_master_secret) { |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1274 | return 0; |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1275 | } |
| 1276 | finished = ssl->s3->previous_server_finished; |
| 1277 | finished_len = ssl->s3->previous_server_finished_len; |
| 1278 | } |
| 1279 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1280 | *out_len = finished_len; |
| 1281 | if (finished_len > max_out) { |
| 1282 | *out_len = max_out; |
| 1283 | } |
| 1284 | |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 1285 | OPENSSL_memcpy(out, finished, *out_len); |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1286 | return 1; |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1287 | } |
| 1288 | |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1289 | static int set_session_id_context(CERT *cert, const uint8_t *sid_ctx, |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1290 | size_t sid_ctx_len) { |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1291 | if (sid_ctx_len > sizeof(cert->sid_ctx)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1292 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1293 | return 0; |
| 1294 | } |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1295 | |
David Benjamin | a3d76d0 | 2017-07-14 19:36:07 -0400 | [diff] [blame] | 1296 | static_assert(sizeof(cert->sid_ctx) < 256, "sid_ctx too large"); |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1297 | cert->sid_ctx_length = (uint8_t)sid_ctx_len; |
| 1298 | OPENSSL_memcpy(cert->sid_ctx, sid_ctx, sid_ctx_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1299 | return 1; |
| 1300 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1301 | |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1302 | int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const uint8_t *sid_ctx, |
| 1303 | size_t sid_ctx_len) { |
| 1304 | return set_session_id_context(ctx->cert, sid_ctx, sid_ctx_len); |
| 1305 | } |
| 1306 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1307 | int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx, |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1308 | size_t sid_ctx_len) { |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1309 | return set_session_id_context(ssl->cert, sid_ctx, sid_ctx_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1310 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1311 | |
David Benjamin | 07820b5 | 2016-12-07 21:13:41 -0500 | [diff] [blame] | 1312 | const uint8_t *SSL_get0_session_id_context(const SSL *ssl, size_t *out_len) { |
David Benjamin | 5960a90 | 2017-02-14 20:07:11 -0500 | [diff] [blame] | 1313 | *out_len = ssl->cert->sid_ctx_length; |
| 1314 | return ssl->cert->sid_ctx; |
David Benjamin | 07820b5 | 2016-12-07 21:13:41 -0500 | [diff] [blame] | 1315 | } |
| 1316 | |
David Benjamin | 7481d39 | 2015-07-05 19:38:46 -0400 | [diff] [blame] | 1317 | void SSL_certs_clear(SSL *ssl) { ssl_cert_clear_certs(ssl->cert); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1318 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1319 | int SSL_get_fd(const SSL *ssl) { return SSL_get_rfd(ssl); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1320 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1321 | int SSL_get_rfd(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1322 | int ret = -1; |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1323 | BIO *b = BIO_find_type(SSL_get_rbio(ssl), BIO_TYPE_DESCRIPTOR); |
| 1324 | if (b != NULL) { |
| 1325 | BIO_get_fd(b, &ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1326 | } |
| 1327 | return ret; |
| 1328 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1329 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1330 | int SSL_get_wfd(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1331 | int ret = -1; |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1332 | BIO *b = BIO_find_type(SSL_get_wbio(ssl), BIO_TYPE_DESCRIPTOR); |
| 1333 | if (b != NULL) { |
| 1334 | BIO_get_fd(b, &ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1335 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1336 | return ret; |
| 1337 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1338 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1339 | int SSL_set_fd(SSL *ssl, int fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1340 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1341 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1342 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1343 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1344 | } |
| 1345 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1346 | SSL_set_bio(ssl, bio, bio); |
| 1347 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1348 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1349 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1350 | int SSL_set_wfd(SSL *ssl, int fd) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 1351 | BIO *rbio = SSL_get_rbio(ssl); |
| 1352 | if (rbio == NULL || BIO_method_type(rbio) != BIO_TYPE_SOCKET || |
| 1353 | BIO_get_fd(rbio, NULL) != fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1354 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1355 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1356 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1357 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1358 | } |
| 1359 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1360 | SSL_set0_wbio(ssl, bio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1361 | } else { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1362 | /* Copy the rbio over to the wbio. */ |
| 1363 | BIO_up_ref(rbio); |
| 1364 | SSL_set0_wbio(ssl, rbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1365 | } |
| 1366 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1367 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1368 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1369 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1370 | int SSL_set_rfd(SSL *ssl, int fd) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 1371 | BIO *wbio = SSL_get_wbio(ssl); |
| 1372 | if (wbio == NULL || BIO_method_type(wbio) != BIO_TYPE_SOCKET || |
| 1373 | BIO_get_fd(wbio, NULL) != fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1374 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1375 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1376 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1377 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1378 | } |
| 1379 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1380 | SSL_set0_rbio(ssl, bio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1381 | } else { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1382 | /* Copy the wbio over to the rbio. */ |
| 1383 | BIO_up_ref(wbio); |
| 1384 | SSL_set0_rbio(ssl, wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1385 | } |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1386 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1387 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1388 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1389 | static size_t copy_finished(void *out, size_t out_len, const uint8_t *in, |
| 1390 | size_t in_len) { |
| 1391 | if (out_len > in_len) { |
| 1392 | out_len = in_len; |
| 1393 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 1394 | OPENSSL_memcpy(out, in, out_len); |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1395 | return in_len; |
| 1396 | } |
| 1397 | |
David Benjamin | 1a1b34d | 2015-10-17 12:51:52 -0400 | [diff] [blame] | 1398 | size_t SSL_get_finished(const SSL *ssl, void *buf, size_t count) { |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1399 | if (!ssl->s3->initial_handshake_complete || |
| 1400 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1401 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1402 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1403 | } |
| 1404 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1405 | if (ssl->server) { |
| 1406 | return copy_finished(buf, count, ssl->s3->previous_server_finished, |
| 1407 | ssl->s3->previous_server_finished_len); |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1408 | } |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1409 | |
| 1410 | return copy_finished(buf, count, ssl->s3->previous_client_finished, |
| 1411 | ssl->s3->previous_client_finished_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1412 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1413 | |
David Benjamin | 1a1b34d | 2015-10-17 12:51:52 -0400 | [diff] [blame] | 1414 | size_t SSL_get_peer_finished(const SSL *ssl, void *buf, size_t count) { |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1415 | if (!ssl->s3->initial_handshake_complete || |
| 1416 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1417 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1418 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1419 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1420 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1421 | if (ssl->server) { |
| 1422 | return copy_finished(buf, count, ssl->s3->previous_client_finished, |
| 1423 | ssl->s3->previous_client_finished_len); |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1424 | } |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1425 | |
| 1426 | return copy_finished(buf, count, ssl->s3->previous_server_finished, |
| 1427 | ssl->s3->previous_server_finished_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1428 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1429 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1430 | int SSL_get_verify_mode(const SSL *ssl) { return ssl->verify_mode; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1431 | |
David Benjamin | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 1432 | int SSL_get_extms_support(const SSL *ssl) { |
David Benjamin | fc02b59 | 2017-02-17 16:26:01 -0500 | [diff] [blame] | 1433 | /* TLS 1.3 does not require extended master secret and always reports as |
| 1434 | * supporting it. */ |
David Benjamin | a68c118 | 2016-07-24 00:14:33 -0400 | [diff] [blame] | 1435 | if (!ssl->s3->have_version) { |
| 1436 | return 0; |
| 1437 | } |
David Benjamin | fc02b59 | 2017-02-17 16:26:01 -0500 | [diff] [blame] | 1438 | if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1439 | return 1; |
| 1440 | } |
| 1441 | |
| 1442 | /* If the initial handshake completed, query the established session. */ |
| 1443 | if (ssl->s3->established_session != NULL) { |
| 1444 | return ssl->s3->established_session->extended_master_secret; |
| 1445 | } |
| 1446 | |
| 1447 | /* Otherwise, query the in-progress handshake. */ |
| 1448 | if (ssl->s3->hs != NULL) { |
| 1449 | return ssl->s3->hs->extended_master_secret; |
| 1450 | } |
| 1451 | assert(0); |
| 1452 | return 0; |
Matt Braithwaite | cd6f54b | 2015-09-17 12:54:42 -0700 | [diff] [blame] | 1453 | } |
| 1454 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 1455 | int SSL_CTX_get_read_ahead(const SSL_CTX *ctx) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1456 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 1457 | int SSL_get_read_ahead(const SSL *ssl) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1458 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 1459 | void SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 1460 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 1461 | void SSL_set_read_ahead(SSL *ssl, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 1462 | |
David Benjamin | 9f85949 | 2015-10-03 10:44:30 -0400 | [diff] [blame] | 1463 | int SSL_pending(const SSL *ssl) { |
| 1464 | if (ssl->s3->rrec.type != SSL3_RT_APPLICATION_DATA) { |
| 1465 | return 0; |
| 1466 | } |
| 1467 | return ssl->s3->rrec.length; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1468 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1469 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1470 | /* Fix this so it checks all the valid key/cert options */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1471 | int SSL_CTX_check_private_key(const SSL_CTX *ctx) { |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 1472 | return ssl_cert_check_private_key(ctx->cert, ctx->cert->privatekey); |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | /* Fix this function so that it takes an optional type parameter */ |
| 1476 | int SSL_check_private_key(const SSL *ssl) { |
Adam Langley | 3a2b47a | 2017-01-24 13:59:42 -0800 | [diff] [blame] | 1477 | return ssl_cert_check_private_key(ssl->cert, ssl->cert->privatekey); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1478 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1479 | |
David Benjamin | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 1480 | long SSL_get_default_timeout(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1481 | return SSL_DEFAULT_SESSION_TIMEOUT; |
| 1482 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1483 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1484 | int SSL_renegotiate(SSL *ssl) { |
| 1485 | /* Caller-initiated renegotiation is not supported. */ |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1486 | OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1487 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1488 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1489 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1490 | int SSL_renegotiate_pending(SSL *ssl) { |
| 1491 | return SSL_in_init(ssl) && ssl->s3->initial_handshake_complete; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1492 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1493 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1494 | int SSL_total_renegotiations(const SSL *ssl) { |
| 1495 | return ssl->s3->total_renegotiations; |
| 1496 | } |
| 1497 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1498 | size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx) { |
| 1499 | return ctx->max_cert_list; |
| 1500 | } |
| 1501 | |
| 1502 | void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, size_t max_cert_list) { |
| 1503 | if (max_cert_list > kMaxHandshakeSize) { |
| 1504 | max_cert_list = kMaxHandshakeSize; |
| 1505 | } |
| 1506 | ctx->max_cert_list = (uint32_t)max_cert_list; |
| 1507 | } |
| 1508 | |
| 1509 | size_t SSL_get_max_cert_list(const SSL *ssl) { |
| 1510 | return ssl->max_cert_list; |
| 1511 | } |
| 1512 | |
| 1513 | void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list) { |
| 1514 | if (max_cert_list > kMaxHandshakeSize) { |
| 1515 | max_cert_list = kMaxHandshakeSize; |
| 1516 | } |
| 1517 | ssl->max_cert_list = (uint32_t)max_cert_list; |
| 1518 | } |
| 1519 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1520 | int SSL_CTX_set_max_send_fragment(SSL_CTX *ctx, size_t max_send_fragment) { |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1521 | if (max_send_fragment < 512) { |
| 1522 | max_send_fragment = 512; |
| 1523 | } |
| 1524 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1525 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1526 | } |
| 1527 | ctx->max_send_fragment = (uint16_t)max_send_fragment; |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1528 | |
| 1529 | return 1; |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1530 | } |
| 1531 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1532 | int SSL_set_max_send_fragment(SSL *ssl, size_t max_send_fragment) { |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1533 | if (max_send_fragment < 512) { |
| 1534 | max_send_fragment = 512; |
| 1535 | } |
| 1536 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1537 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1538 | } |
| 1539 | ssl->max_send_fragment = (uint16_t)max_send_fragment; |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1540 | |
| 1541 | return 1; |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1542 | } |
| 1543 | |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1544 | int SSL_set_mtu(SSL *ssl, unsigned mtu) { |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 1545 | if (!SSL_is_dtls(ssl) || mtu < dtls1_min_mtu()) { |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1546 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1547 | } |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1548 | ssl->d1->mtu = mtu; |
| 1549 | return 1; |
| 1550 | } |
| 1551 | |
| 1552 | int SSL_get_secure_renegotiation_support(const SSL *ssl) { |
David Benjamin | d261004 | 2017-01-03 10:49:28 -0500 | [diff] [blame] | 1553 | if (!ssl->s3->have_version) { |
| 1554 | return 0; |
| 1555 | } |
| 1556 | return ssl3_protocol_version(ssl) >= TLS1_3_VERSION || |
| 1557 | ssl->s3->send_connection_binding; |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1558 | } |
| 1559 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1560 | LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx) { return ctx->sessions; } |
| 1561 | |
David Benjamin | 71f7d3d | 2015-05-05 09:46:38 -0400 | [diff] [blame] | 1562 | size_t SSL_CTX_sess_number(const SSL_CTX *ctx) { |
| 1563 | return lh_SSL_SESSION_num_items(ctx->sessions); |
| 1564 | } |
| 1565 | |
| 1566 | unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, unsigned long size) { |
| 1567 | unsigned long ret = ctx->session_cache_size; |
| 1568 | ctx->session_cache_size = size; |
| 1569 | return ret; |
| 1570 | } |
| 1571 | |
| 1572 | unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx) { |
| 1573 | return ctx->session_cache_size; |
| 1574 | } |
| 1575 | |
| 1576 | int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode) { |
| 1577 | int ret = ctx->session_cache_mode; |
| 1578 | ctx->session_cache_mode = mode; |
| 1579 | return ret; |
| 1580 | } |
| 1581 | |
| 1582 | int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx) { |
| 1583 | return ctx->session_cache_mode; |
| 1584 | } |
| 1585 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1586 | |
| 1587 | int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out, size_t len) { |
| 1588 | if (out == NULL) { |
| 1589 | return 48; |
| 1590 | } |
| 1591 | if (len != 48) { |
| 1592 | OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH); |
| 1593 | return 0; |
| 1594 | } |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1595 | uint8_t *out_bytes = reinterpret_cast<uint8_t *>(out); |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 1596 | OPENSSL_memcpy(out_bytes, ctx->tlsext_tick_key_name, 16); |
| 1597 | OPENSSL_memcpy(out_bytes + 16, ctx->tlsext_tick_hmac_key, 16); |
| 1598 | OPENSSL_memcpy(out_bytes + 32, ctx->tlsext_tick_aes_key, 16); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1599 | return 1; |
| 1600 | } |
| 1601 | |
| 1602 | int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in, size_t len) { |
| 1603 | if (in == NULL) { |
| 1604 | return 48; |
| 1605 | } |
| 1606 | if (len != 48) { |
| 1607 | OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH); |
| 1608 | return 0; |
| 1609 | } |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1610 | const uint8_t *in_bytes = reinterpret_cast<const uint8_t *>(in); |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 1611 | OPENSSL_memcpy(ctx->tlsext_tick_key_name, in_bytes, 16); |
| 1612 | OPENSSL_memcpy(ctx->tlsext_tick_hmac_key, in_bytes + 16, 16); |
| 1613 | OPENSSL_memcpy(ctx->tlsext_tick_aes_key, in_bytes + 32, 16); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1614 | return 1; |
| 1615 | } |
| 1616 | |
| 1617 | int SSL_CTX_set_tlsext_ticket_key_cb( |
| 1618 | SSL_CTX *ctx, int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv, |
| 1619 | EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx, |
| 1620 | int encrypt)) { |
| 1621 | ctx->tlsext_ticket_key_cb = callback; |
| 1622 | return 1; |
| 1623 | } |
| 1624 | |
| 1625 | int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) { |
| 1626 | return tls1_set_curves(&ctx->supported_group_list, |
| 1627 | &ctx->supported_group_list_len, curves, |
| 1628 | curves_len); |
| 1629 | } |
| 1630 | |
| 1631 | int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) { |
| 1632 | return tls1_set_curves(&ssl->supported_group_list, |
| 1633 | &ssl->supported_group_list_len, curves, |
| 1634 | curves_len); |
| 1635 | } |
| 1636 | |
Alessandro Ghedini | 5fd1807 | 2016-09-28 21:04:25 +0100 | [diff] [blame] | 1637 | int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves) { |
| 1638 | return tls1_set_curves_list(&ctx->supported_group_list, |
| 1639 | &ctx->supported_group_list_len, curves); |
| 1640 | } |
| 1641 | |
| 1642 | int SSL_set1_curves_list(SSL *ssl, const char *curves) { |
| 1643 | return tls1_set_curves_list(&ssl->supported_group_list, |
| 1644 | &ssl->supported_group_list_len, curves); |
| 1645 | } |
| 1646 | |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1647 | uint16_t SSL_get_curve_id(const SSL *ssl) { |
| 1648 | /* TODO(davidben): This checks the wrong session if there is a renegotiation in |
| 1649 | * progress. */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1650 | SSL_SESSION *session = SSL_get_session(ssl); |
David Benjamin | 4882a6c | 2016-12-11 02:48:12 -0500 | [diff] [blame] | 1651 | if (session == NULL) { |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1652 | return 0; |
| 1653 | } |
| 1654 | |
David Benjamin | 4882a6c | 2016-12-11 02:48:12 -0500 | [diff] [blame] | 1655 | return session->group_id; |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1656 | } |
| 1657 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1658 | int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh) { |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1659 | return 1; |
| 1660 | } |
| 1661 | |
| 1662 | int SSL_set_tmp_dh(SSL *ssl, const DH *dh) { |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1663 | return 1; |
| 1664 | } |
| 1665 | |
David Benjamin | 8ebeabf | 2017-03-02 22:04:07 -0500 | [diff] [blame] | 1666 | OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_CTX_get_ciphers(const SSL_CTX *ctx) { |
| 1667 | return ctx->cipher_list->ciphers; |
| 1668 | } |
| 1669 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1670 | STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl) { |
| 1671 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1672 | return NULL; |
| 1673 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1674 | |
David Benjamin | af3b3d3 | 2016-10-31 16:29:57 -0400 | [diff] [blame] | 1675 | const struct ssl_cipher_preference_list_st *prefs = |
| 1676 | ssl_get_cipher_preferences(ssl); |
| 1677 | if (prefs == NULL) { |
| 1678 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1679 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1680 | |
David Benjamin | af3b3d3 | 2016-10-31 16:29:57 -0400 | [diff] [blame] | 1681 | return prefs->ciphers; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1682 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1683 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1684 | const char *SSL_get_cipher_list(const SSL *ssl, int n) { |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1685 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1686 | return NULL; |
| 1687 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1688 | |
David Benjamin | 8ebeabf | 2017-03-02 22:04:07 -0500 | [diff] [blame] | 1689 | STACK_OF(SSL_CIPHER) *sk = SSL_get_ciphers(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1690 | if (sk == NULL || n < 0 || (size_t)n >= sk_SSL_CIPHER_num(sk)) { |
| 1691 | return NULL; |
| 1692 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1693 | |
David Benjamin | 8ebeabf | 2017-03-02 22:04:07 -0500 | [diff] [blame] | 1694 | const SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, n); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1695 | if (c == NULL) { |
| 1696 | return NULL; |
| 1697 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1698 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1699 | return c->name; |
| 1700 | } |
David Benjamin | 5491e3f | 2014-09-29 19:33:09 -0400 | [diff] [blame] | 1701 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1702 | int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) { |
Matthew Braithwaite | 6ad20dc | 2017-02-21 16:41:33 -0800 | [diff] [blame] | 1703 | return ssl_create_cipher_list(ctx->method, &ctx->cipher_list, str, |
| 1704 | 0 /* not strict */); |
Matthew Braithwaite | a57dcfb | 2017-02-17 22:08:23 -0800 | [diff] [blame] | 1705 | } |
| 1706 | |
| 1707 | int SSL_CTX_set_strict_cipher_list(SSL_CTX *ctx, const char *str) { |
Matthew Braithwaite | 6ad20dc | 2017-02-21 16:41:33 -0800 | [diff] [blame] | 1708 | return ssl_create_cipher_list(ctx->method, &ctx->cipher_list, str, |
| 1709 | 1 /* strict */); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1710 | } |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1711 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1712 | int SSL_set_cipher_list(SSL *ssl, const char *str) { |
Matthew Braithwaite | 6ad20dc | 2017-02-21 16:41:33 -0800 | [diff] [blame] | 1713 | return ssl_create_cipher_list(ssl->ctx->method, &ssl->cipher_list, str, |
| 1714 | 0 /* not strict */); |
Matthew Braithwaite | a57dcfb | 2017-02-17 22:08:23 -0800 | [diff] [blame] | 1715 | } |
| 1716 | |
| 1717 | int SSL_set_strict_cipher_list(SSL *ssl, const char *str) { |
Matthew Braithwaite | 6ad20dc | 2017-02-21 16:41:33 -0800 | [diff] [blame] | 1718 | return ssl_create_cipher_list(ssl->ctx->method, &ssl->cipher_list, str, |
| 1719 | 1 /* strict */); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1720 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1721 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1722 | const char *SSL_get_servername(const SSL *ssl, const int type) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1723 | if (type != TLSEXT_NAMETYPE_host_name) { |
| 1724 | return NULL; |
| 1725 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1726 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1727 | /* Historically, |SSL_get_servername| was also the configuration getter |
| 1728 | * corresponding to |SSL_set_tlsext_host_name|. */ |
| 1729 | if (ssl->tlsext_hostname != NULL) { |
| 1730 | return ssl->tlsext_hostname; |
| 1731 | } |
| 1732 | |
David Benjamin | 4eb95cc | 2016-11-16 17:08:23 +0900 | [diff] [blame] | 1733 | /* During the handshake, report the handshake value. */ |
| 1734 | if (ssl->s3->hs != NULL) { |
| 1735 | return ssl->s3->hs->hostname; |
| 1736 | } |
| 1737 | |
| 1738 | /* SSL_get_servername may also be called after the handshake to look up the |
| 1739 | * SNI value. |
| 1740 | * |
| 1741 | * TODO(davidben): This is almost unused. Can we remove it? */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1742 | SSL_SESSION *session = SSL_get_session(ssl); |
| 1743 | if (session == NULL) { |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1744 | return NULL; |
| 1745 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1746 | return session->tlsext_hostname; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1747 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1748 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1749 | int SSL_get_servername_type(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1750 | SSL_SESSION *session = SSL_get_session(ssl); |
| 1751 | if (session == NULL || session->tlsext_hostname == NULL) { |
| 1752 | return -1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1753 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1754 | return TLSEXT_NAMETYPE_host_name; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1755 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1756 | |
David Benjamin | 3a1dd46 | 2017-07-11 16:13:10 -0400 | [diff] [blame] | 1757 | void SSL_CTX_set_custom_verify( |
| 1758 | SSL_CTX *ctx, int mode, |
| 1759 | enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) { |
| 1760 | ctx->verify_mode = mode; |
| 1761 | ctx->custom_verify_callback = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1762 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1763 | |
David Benjamin | 3a1dd46 | 2017-07-11 16:13:10 -0400 | [diff] [blame] | 1764 | void SSL_set_custom_verify( |
| 1765 | SSL *ssl, int mode, |
| 1766 | enum ssl_verify_result_t (*callback)(SSL *ssl, uint8_t *out_alert)) { |
| 1767 | ssl->verify_mode = mode; |
| 1768 | ssl->custom_verify_callback = callback; |
| 1769 | } |
| 1770 | |
| 1771 | void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx) { |
| 1772 | ctx->signed_cert_timestamps_enabled = 1; |
Adam Langley | fe36672 | 2017-03-07 16:41:04 -0800 | [diff] [blame] | 1773 | } |
| 1774 | |
David Benjamin | 26e1ff3 | 2017-02-14 20:13:00 -0500 | [diff] [blame] | 1775 | void SSL_enable_signed_cert_timestamps(SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1776 | ssl->signed_cert_timestamps_enabled = 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1777 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1778 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1779 | void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx) { |
| 1780 | ctx->ocsp_stapling_enabled = 1; |
| 1781 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1782 | |
David Benjamin | 26e1ff3 | 2017-02-14 20:13:00 -0500 | [diff] [blame] | 1783 | void SSL_enable_ocsp_stapling(SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1784 | ssl->ocsp_stapling_enabled = 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1785 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1786 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1787 | void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, const uint8_t **out, |
| 1788 | size_t *out_len) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1789 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | 3cb50e0 | 2014-08-26 14:00:31 -0700 | [diff] [blame] | 1790 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1791 | *out_len = 0; |
| 1792 | *out = NULL; |
| 1793 | if (ssl->server || !session || !session->tlsext_signed_cert_timestamp_list) { |
| 1794 | return; |
| 1795 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1796 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1797 | *out = session->tlsext_signed_cert_timestamp_list; |
| 1798 | *out_len = session->tlsext_signed_cert_timestamp_list_length; |
| 1799 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1800 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1801 | void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out, |
| 1802 | size_t *out_len) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1803 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1804 | |
| 1805 | *out_len = 0; |
| 1806 | *out = NULL; |
| 1807 | if (ssl->server || !session || !session->ocsp_response) { |
| 1808 | return; |
| 1809 | } |
| 1810 | *out = session->ocsp_response; |
| 1811 | *out_len = session->ocsp_response_length; |
| 1812 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1813 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1814 | int SSL_set_tlsext_host_name(SSL *ssl, const char *name) { |
| 1815 | OPENSSL_free(ssl->tlsext_hostname); |
| 1816 | ssl->tlsext_hostname = NULL; |
| 1817 | |
| 1818 | if (name == NULL) { |
| 1819 | return 1; |
| 1820 | } |
| 1821 | |
| 1822 | size_t len = strlen(name); |
| 1823 | if (len == 0 || len > TLSEXT_MAXLEN_host_name) { |
| 1824 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL3_EXT_INVALID_SERVERNAME); |
| 1825 | return 0; |
| 1826 | } |
| 1827 | ssl->tlsext_hostname = BUF_strdup(name); |
| 1828 | if (ssl->tlsext_hostname == NULL) { |
| 1829 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 1830 | return 0; |
| 1831 | } |
| 1832 | return 1; |
| 1833 | } |
| 1834 | |
| 1835 | int SSL_CTX_set_tlsext_servername_callback( |
| 1836 | SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg)) { |
| 1837 | ctx->tlsext_servername_callback = callback; |
| 1838 | return 1; |
| 1839 | } |
| 1840 | |
| 1841 | int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg) { |
| 1842 | ctx->tlsext_servername_arg = arg; |
| 1843 | return 1; |
| 1844 | } |
| 1845 | |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1846 | int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, const uint8_t *peer, |
| 1847 | unsigned peer_len, const uint8_t *supported, |
| 1848 | unsigned supported_len) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1849 | const uint8_t *result; |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1850 | int status; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1851 | |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1852 | /* For each protocol in peer preference order, see if we support it. */ |
| 1853 | for (unsigned i = 0; i < peer_len;) { |
| 1854 | for (unsigned j = 0; j < supported_len;) { |
| 1855 | if (peer[i] == supported[j] && |
| 1856 | OPENSSL_memcmp(&peer[i + 1], &supported[j + 1], peer[i]) == 0) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1857 | /* We found a match */ |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1858 | result = &peer[i]; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1859 | status = OPENSSL_NPN_NEGOTIATED; |
| 1860 | goto found; |
| 1861 | } |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1862 | j += supported[j]; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1863 | j++; |
| 1864 | } |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1865 | i += peer[i]; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1866 | i++; |
| 1867 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1868 | |
David Benjamin | ca74358 | 2017-06-15 17:51:35 -0400 | [diff] [blame] | 1869 | /* There's no overlap between our protocols and the peer's list. */ |
| 1870 | result = supported; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1871 | status = OPENSSL_NPN_NO_OVERLAP; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1872 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1873 | found: |
| 1874 | *out = (uint8_t *)result + 1; |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1875 | *out_len = result[0]; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1876 | return status; |
| 1877 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1878 | |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1879 | void SSL_get0_next_proto_negotiated(const SSL *ssl, const uint8_t **out_data, |
| 1880 | unsigned *out_len) { |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 1881 | *out_data = ssl->s3->next_proto_negotiated; |
David Benjamin | 05d4c97 | 2017-06-21 16:35:10 -0400 | [diff] [blame] | 1882 | *out_len = ssl->s3->next_proto_negotiated_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1883 | } |
| 1884 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1885 | void SSL_CTX_set_next_protos_advertised_cb( |
| 1886 | SSL_CTX *ctx, |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1887 | int (*cb)(SSL *ssl, const uint8_t **out, unsigned *out_len, void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1888 | void *arg) { |
| 1889 | ctx->next_protos_advertised_cb = cb; |
| 1890 | ctx->next_protos_advertised_cb_arg = arg; |
| 1891 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1892 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1893 | void SSL_CTX_set_next_proto_select_cb( |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1894 | SSL_CTX *ctx, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len, |
| 1895 | const uint8_t *in, unsigned in_len, void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1896 | void *arg) { |
| 1897 | ctx->next_proto_select_cb = cb; |
| 1898 | ctx->next_proto_select_cb_arg = arg; |
| 1899 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1900 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1901 | int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos, |
| 1902 | unsigned protos_len) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1903 | OPENSSL_free(ctx->alpn_client_proto_list); |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1904 | ctx->alpn_client_proto_list = (uint8_t *)BUF_memdup(protos, protos_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1905 | if (!ctx->alpn_client_proto_list) { |
| 1906 | return 1; |
| 1907 | } |
| 1908 | ctx->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1909 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1910 | return 0; |
| 1911 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1912 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1913 | int SSL_set_alpn_protos(SSL *ssl, const uint8_t *protos, unsigned protos_len) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1914 | OPENSSL_free(ssl->alpn_client_proto_list); |
David Benjamin | f526081 | 2017-07-12 17:16:39 -0400 | [diff] [blame] | 1915 | ssl->alpn_client_proto_list = (uint8_t *)BUF_memdup(protos, protos_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1916 | if (!ssl->alpn_client_proto_list) { |
| 1917 | return 1; |
| 1918 | } |
| 1919 | ssl->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1920 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1921 | return 0; |
| 1922 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1923 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1924 | void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx, |
| 1925 | int (*cb)(SSL *ssl, const uint8_t **out, |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1926 | uint8_t *out_len, const uint8_t *in, |
| 1927 | unsigned in_len, void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1928 | void *arg) { |
| 1929 | ctx->alpn_select_cb = cb; |
| 1930 | ctx->alpn_select_cb_arg = arg; |
| 1931 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1932 | |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1933 | void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **out_data, |
| 1934 | unsigned *out_len) { |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 1935 | if (SSL_in_early_data(ssl) && !ssl->server) { |
| 1936 | *out_data = ssl->s3->hs->early_session->early_alpn; |
| 1937 | *out_len = ssl->s3->hs->early_session->early_alpn_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1938 | } else { |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 1939 | *out_data = ssl->s3->alpn_selected; |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1940 | *out_len = ssl->s3->alpn_selected_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1941 | } |
| 1942 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1943 | |
David Benjamin | c8ff30c | 2017-04-04 13:52:36 -0400 | [diff] [blame] | 1944 | void SSL_CTX_set_allow_unknown_alpn_protos(SSL_CTX *ctx, int enabled) { |
| 1945 | ctx->allow_unknown_alpn_protos = !!enabled; |
| 1946 | } |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1947 | |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1948 | void SSL_CTX_set_tls_channel_id_enabled(SSL_CTX *ctx, int enabled) { |
| 1949 | ctx->tlsext_channel_id_enabled = !!enabled; |
| 1950 | } |
| 1951 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1952 | int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx) { |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1953 | SSL_CTX_set_tls_channel_id_enabled(ctx, 1); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1954 | return 1; |
| 1955 | } |
| 1956 | |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1957 | void SSL_set_tls_channel_id_enabled(SSL *ssl, int enabled) { |
| 1958 | ssl->tlsext_channel_id_enabled = !!enabled; |
| 1959 | } |
| 1960 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1961 | int SSL_enable_tls_channel_id(SSL *ssl) { |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1962 | SSL_set_tls_channel_id_enabled(ssl, 1); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1963 | return 1; |
| 1964 | } |
| 1965 | |
| 1966 | static int is_p256_key(EVP_PKEY *private_key) { |
| 1967 | const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(private_key); |
| 1968 | return ec_key != NULL && |
| 1969 | EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)) == |
| 1970 | NID_X9_62_prime256v1; |
| 1971 | } |
| 1972 | |
| 1973 | int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx, EVP_PKEY *private_key) { |
| 1974 | if (!is_p256_key(private_key)) { |
| 1975 | OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256); |
| 1976 | return 0; |
| 1977 | } |
| 1978 | |
| 1979 | EVP_PKEY_free(ctx->tlsext_channel_id_private); |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 1980 | EVP_PKEY_up_ref(private_key); |
| 1981 | ctx->tlsext_channel_id_private = private_key; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1982 | ctx->tlsext_channel_id_enabled = 1; |
| 1983 | |
| 1984 | return 1; |
| 1985 | } |
| 1986 | |
| 1987 | int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key) { |
| 1988 | if (!is_p256_key(private_key)) { |
| 1989 | OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256); |
| 1990 | return 0; |
| 1991 | } |
| 1992 | |
| 1993 | EVP_PKEY_free(ssl->tlsext_channel_id_private); |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 1994 | EVP_PKEY_up_ref(private_key); |
| 1995 | ssl->tlsext_channel_id_private = private_key; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1996 | ssl->tlsext_channel_id_enabled = 1; |
| 1997 | |
| 1998 | return 1; |
| 1999 | } |
| 2000 | |
| 2001 | size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, size_t max_out) { |
| 2002 | if (!ssl->s3->tlsext_channel_id_valid) { |
| 2003 | return 0; |
| 2004 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 2005 | OPENSSL_memcpy(out, ssl->s3->tlsext_channel_id, |
| 2006 | (max_out < 64) ? max_out : 64); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2007 | return 64; |
| 2008 | } |
| 2009 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2010 | size_t SSL_get0_certificate_types(SSL *ssl, const uint8_t **out_types) { |
David Benjamin | a048678 | 2016-10-06 19:11:32 -0400 | [diff] [blame] | 2011 | if (ssl->server || ssl->s3->hs == NULL) { |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2012 | *out_types = NULL; |
| 2013 | return 0; |
| 2014 | } |
David Benjamin | a048678 | 2016-10-06 19:11:32 -0400 | [diff] [blame] | 2015 | *out_types = ssl->s3->hs->certificate_types; |
| 2016 | return ssl->s3->hs->num_certificate_types; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2017 | } |
| 2018 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2019 | EVP_PKEY *SSL_get_privatekey(const SSL *ssl) { |
| 2020 | if (ssl->cert != NULL) { |
| 2021 | return ssl->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2022 | } |
| 2023 | |
| 2024 | return NULL; |
| 2025 | } |
| 2026 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2027 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx) { |
| 2028 | if (ctx->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 2029 | return ctx->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2030 | } |
| 2031 | |
| 2032 | return NULL; |
| 2033 | } |
| 2034 | |
David Benjamin | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 2035 | const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl) { |
David Benjamin | cfc11c2 | 2017-07-18 22:45:18 -0400 | [diff] [blame] | 2036 | return ssl->s3->aead_write_ctx->cipher(); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2037 | } |
| 2038 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2039 | int SSL_session_reused(const SSL *ssl) { |
Steven Valdez | e831a81 | 2017-03-09 14:56:07 -0500 | [diff] [blame] | 2040 | return ssl->s3->session_reused || SSL_in_early_data(ssl); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2041 | } |
| 2042 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2043 | const COMP_METHOD *SSL_get_current_compression(SSL *ssl) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2044 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2045 | const COMP_METHOD *SSL_get_current_expansion(SSL *ssl) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2046 | |
Adam Langley | 29ec5d1 | 2016-03-01 16:12:28 -0800 | [diff] [blame] | 2047 | int *SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key) { return 0; } |
| 2048 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2049 | void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode) { |
Adam Langley | bb85f3d | 2015-10-28 18:44:11 -0700 | [diff] [blame] | 2050 | ctx->quiet_shutdown = (mode != 0); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2051 | } |
| 2052 | |
| 2053 | int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) { |
| 2054 | return ctx->quiet_shutdown; |
| 2055 | } |
| 2056 | |
Adam Langley | bb85f3d | 2015-10-28 18:44:11 -0700 | [diff] [blame] | 2057 | void SSL_set_quiet_shutdown(SSL *ssl, int mode) { |
| 2058 | ssl->quiet_shutdown = (mode != 0); |
| 2059 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2060 | |
David Benjamin | 9f85949 | 2015-10-03 10:44:30 -0400 | [diff] [blame] | 2061 | int SSL_get_quiet_shutdown(const SSL *ssl) { return ssl->quiet_shutdown; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2062 | |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2063 | void SSL_set_shutdown(SSL *ssl, int mode) { |
| 2064 | /* It is an error to clear any bits that have already been set. (We can't try |
| 2065 | * to get a second close_notify or send two.) */ |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2066 | assert((SSL_get_shutdown(ssl) & mode) == SSL_get_shutdown(ssl)); |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2067 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2068 | if (mode & SSL_RECEIVED_SHUTDOWN && |
| 2069 | ssl->s3->recv_shutdown == ssl_shutdown_none) { |
| 2070 | ssl->s3->recv_shutdown = ssl_shutdown_close_notify; |
| 2071 | } |
| 2072 | |
| 2073 | if (mode & SSL_SENT_SHUTDOWN && |
| 2074 | ssl->s3->send_shutdown == ssl_shutdown_none) { |
| 2075 | ssl->s3->send_shutdown = ssl_shutdown_close_notify; |
| 2076 | } |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2077 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2078 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2079 | int SSL_get_shutdown(const SSL *ssl) { |
| 2080 | int ret = 0; |
| 2081 | if (ssl->s3->recv_shutdown != ssl_shutdown_none) { |
| 2082 | /* Historically, OpenSSL set |SSL_RECEIVED_SHUTDOWN| on both close_notify |
| 2083 | * and fatal alert. */ |
| 2084 | ret |= SSL_RECEIVED_SHUTDOWN; |
| 2085 | } |
| 2086 | if (ssl->s3->send_shutdown == ssl_shutdown_close_notify) { |
| 2087 | /* Historically, OpenSSL set |SSL_SENT_SHUTDOWN| on only close_notify. */ |
| 2088 | ret |= SSL_SENT_SHUTDOWN; |
| 2089 | } |
| 2090 | return ret; |
| 2091 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2092 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2093 | SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) { return ssl->ctx; } |
| 2094 | |
| 2095 | SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx) { |
| 2096 | if (ssl->ctx == ctx) { |
| 2097 | return ssl->ctx; |
| 2098 | } |
| 2099 | |
Adam Langley | 3509dac | 2017-02-01 11:59:18 -0800 | [diff] [blame] | 2100 | /* One cannot change the X.509 callbacks during a connection. */ |
| 2101 | if (ssl->ctx->x509_method != ctx->x509_method) { |
| 2102 | assert(0); |
| 2103 | return NULL; |
| 2104 | } |
| 2105 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2106 | if (ctx == NULL) { |
David Benjamin | be49706 | 2017-03-10 16:08:36 -0500 | [diff] [blame] | 2107 | ctx = ssl->session_ctx; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2108 | } |
| 2109 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2110 | ssl_cert_free(ssl->cert); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2111 | ssl->cert = ssl_cert_dup(ctx->cert); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2112 | |
David Benjamin | f650c71 | 2016-12-22 15:54:51 -0500 | [diff] [blame] | 2113 | SSL_CTX_up_ref(ctx); |
| 2114 | SSL_CTX_free(ssl->ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2115 | ssl->ctx = ctx; |
| 2116 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2117 | return ssl->ctx; |
| 2118 | } |
| 2119 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2120 | void SSL_set_info_callback(SSL *ssl, |
David Benjamin | 8217024 | 2015-10-17 22:51:17 -0400 | [diff] [blame] | 2121 | void (*cb)(const SSL *ssl, int type, int value)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2122 | ssl->info_callback = cb; |
| 2123 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2124 | |
David Benjamin | 8217024 | 2015-10-17 22:51:17 -0400 | [diff] [blame] | 2125 | void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, int type, |
| 2126 | int value) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2127 | return ssl->info_callback; |
| 2128 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2129 | |
David Benjamin | cb0c29f | 2016-12-12 17:00:50 -0500 | [diff] [blame] | 2130 | int SSL_state(const SSL *ssl) { |
David Benjamin | 9e766d7 | 2017-02-10 23:14:17 -0500 | [diff] [blame] | 2131 | return SSL_in_init(ssl) ? SSL_ST_INIT : SSL_ST_OK; |
David Benjamin | cb0c29f | 2016-12-12 17:00:50 -0500 | [diff] [blame] | 2132 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2133 | |
David Benjamin | ece089c | 2015-05-15 23:52:42 -0400 | [diff] [blame] | 2134 | void SSL_set_state(SSL *ssl, int state) { } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2135 | |
Emily Stark | 95a79ee | 2016-02-25 21:12:28 -0800 | [diff] [blame] | 2136 | char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len) { |
| 2137 | if (len <= 0) { |
| 2138 | return NULL; |
| 2139 | } |
| 2140 | buf[0] = '\0'; |
| 2141 | return buf; |
| 2142 | } |
| 2143 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2144 | int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused, |
David Benjamin | d94682d | 2017-05-14 17:10:18 -0400 | [diff] [blame] | 2145 | CRYPTO_EX_dup *dup_unused, CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2146 | int index; |
| 2147 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl, &index, argl, argp, |
David Benjamin | d94682d | 2017-05-14 17:10:18 -0400 | [diff] [blame] | 2148 | free_func)) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2149 | return -1; |
| 2150 | } |
| 2151 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2152 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2153 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2154 | int SSL_set_ex_data(SSL *ssl, int idx, void *arg) { |
| 2155 | return CRYPTO_set_ex_data(&ssl->ex_data, idx, arg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2156 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2157 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2158 | void *SSL_get_ex_data(const SSL *ssl, int idx) { |
| 2159 | return CRYPTO_get_ex_data(&ssl->ex_data, idx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2160 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2161 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2162 | int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused, |
David Benjamin | d94682d | 2017-05-14 17:10:18 -0400 | [diff] [blame] | 2163 | CRYPTO_EX_dup *dup_unused, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2164 | CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2165 | int index; |
| 2166 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl_ctx, &index, argl, argp, |
David Benjamin | d94682d | 2017-05-14 17:10:18 -0400 | [diff] [blame] | 2167 | free_func)) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2168 | return -1; |
| 2169 | } |
| 2170 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2171 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2172 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2173 | int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *arg) { |
| 2174 | return CRYPTO_set_ex_data(&ctx->ex_data, idx, arg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2175 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2176 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2177 | void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) { |
| 2178 | return CRYPTO_get_ex_data(&ctx->ex_data, idx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2179 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2180 | |
David Benjamin | 93d1749 | 2015-10-17 12:43:36 -0400 | [diff] [blame] | 2181 | int SSL_want(const SSL *ssl) { return ssl->rwstate; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2182 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2183 | void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, |
| 2184 | RSA *(*cb)(SSL *ssl, int is_export, |
| 2185 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2186 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2187 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2188 | void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb)(SSL *ssl, int is_export, |
| 2189 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2190 | } |
| 2191 | |
| 2192 | void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2193 | DH *(*callback)(SSL *ssl, int is_export, |
| 2194 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2195 | } |
| 2196 | |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2197 | void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*callback)(SSL *ssl, int is_export, |
| 2198 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2199 | } |
| 2200 | |
David Benjamin | 0a9bf66 | 2017-06-21 16:34:15 -0400 | [diff] [blame] | 2201 | static int use_psk_identity_hint(char **out, const char *identity_hint) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2202 | if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 2203 | OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2204 | return 0; |
| 2205 | } |
| 2206 | |
| 2207 | /* Clear currently configured hint, if any. */ |
David Benjamin | 0a9bf66 | 2017-06-21 16:34:15 -0400 | [diff] [blame] | 2208 | OPENSSL_free(*out); |
| 2209 | *out = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2210 | |
David Benjamin | 7867934 | 2016-09-16 19:42:05 -0400 | [diff] [blame] | 2211 | /* Treat the empty hint as not supplying one. Plain PSK makes it possible to |
| 2212 | * send either no hint (omit ServerKeyExchange) or an empty hint, while |
| 2213 | * ECDHE_PSK can only spell empty hint. Having different capabilities is odd, |
| 2214 | * so we interpret empty and missing as identical. */ |
| 2215 | if (identity_hint != NULL && identity_hint[0] != '\0') { |
David Benjamin | 0a9bf66 | 2017-06-21 16:34:15 -0400 | [diff] [blame] | 2216 | *out = BUF_strdup(identity_hint); |
| 2217 | if (*out == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2218 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2219 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2220 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2221 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2222 | return 1; |
| 2223 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2224 | |
David Benjamin | 0a9bf66 | 2017-06-21 16:34:15 -0400 | [diff] [blame] | 2225 | int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { |
| 2226 | return use_psk_identity_hint(&ctx->psk_identity_hint, identity_hint); |
| 2227 | } |
| 2228 | |
| 2229 | int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { |
| 2230 | return use_psk_identity_hint(&ssl->psk_identity_hint, identity_hint); |
| 2231 | } |
| 2232 | |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2233 | const char *SSL_get_psk_identity_hint(const SSL *ssl) { |
| 2234 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2235 | return NULL; |
| 2236 | } |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2237 | return ssl->psk_identity_hint; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2238 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2239 | |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2240 | const char *SSL_get_psk_identity(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2241 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2242 | return NULL; |
| 2243 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2244 | SSL_SESSION *session = SSL_get_session(ssl); |
| 2245 | if (session == NULL) { |
| 2246 | return NULL; |
| 2247 | } |
| 2248 | return session->psk_identity; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2249 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2250 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2251 | void SSL_set_psk_client_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2252 | SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2253 | unsigned max_identity_len, uint8_t *psk, |
| 2254 | unsigned max_psk_len)) { |
| 2255 | ssl->psk_client_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2256 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2257 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2258 | void SSL_CTX_set_psk_client_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2259 | SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2260 | unsigned max_identity_len, uint8_t *psk, |
| 2261 | unsigned max_psk_len)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2262 | ctx->psk_client_callback = cb; |
| 2263 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2264 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2265 | void SSL_set_psk_server_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2266 | SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, |
| 2267 | unsigned max_psk_len)) { |
| 2268 | ssl->psk_server_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2269 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2270 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2271 | void SSL_CTX_set_psk_server_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2272 | SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity, |
| 2273 | uint8_t *psk, unsigned max_psk_len)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2274 | ctx->psk_server_callback = cb; |
| 2275 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2276 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2277 | void SSL_CTX_set_msg_callback(SSL_CTX *ctx, |
| 2278 | void (*cb)(int write_p, int version, |
| 2279 | int content_type, const void *buf, |
| 2280 | size_t len, SSL *ssl, void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2281 | ctx->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2282 | } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2283 | |
| 2284 | void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg) { |
| 2285 | ctx->msg_callback_arg = arg; |
| 2286 | } |
| 2287 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2288 | void SSL_set_msg_callback(SSL *ssl, |
| 2289 | void (*cb)(int write_p, int version, int content_type, |
| 2290 | const void *buf, size_t len, SSL *ssl, |
| 2291 | void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2292 | ssl->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2293 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2294 | |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2295 | void SSL_set_msg_callback_arg(SSL *ssl, void *arg) { |
| 2296 | ssl->msg_callback_arg = arg; |
| 2297 | } |
| 2298 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2299 | void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, |
| 2300 | void (*cb)(const SSL *ssl, const char *line)) { |
| 2301 | ctx->keylog_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2302 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2303 | |
David Benjamin | 6e3f5cc | 2016-09-14 14:43:14 -0400 | [diff] [blame] | 2304 | void (*SSL_CTX_get_keylog_callback(const SSL_CTX *ctx))(const SSL *ssl, |
| 2305 | const char *line) { |
| 2306 | return ctx->keylog_callback; |
| 2307 | } |
| 2308 | |
Taylor Brandstetter | 9edb2c6 | 2016-06-08 15:26:59 -0700 | [diff] [blame] | 2309 | void SSL_CTX_set_current_time_cb(SSL_CTX *ctx, |
| 2310 | void (*cb)(const SSL *ssl, |
| 2311 | struct timeval *out_clock)) { |
| 2312 | ctx->current_time_cb = cb; |
| 2313 | } |
| 2314 | |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2315 | int SSL_is_init_finished(const SSL *ssl) { |
David Benjamin | 9e766d7 | 2017-02-10 23:14:17 -0500 | [diff] [blame] | 2316 | return !SSL_in_init(ssl); |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2317 | } |
| 2318 | |
| 2319 | int SSL_in_init(const SSL *ssl) { |
David Benjamin | 9e766d7 | 2017-02-10 23:14:17 -0500 | [diff] [blame] | 2320 | SSL_HANDSHAKE *hs = ssl->s3->hs; |
| 2321 | return hs != NULL && hs->state != SSL_ST_OK; |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2322 | } |
| 2323 | |
| 2324 | int SSL_in_false_start(const SSL *ssl) { |
David Benjamin | a048678 | 2016-10-06 19:11:32 -0400 | [diff] [blame] | 2325 | if (ssl->s3->hs == NULL) { |
| 2326 | return 0; |
| 2327 | } |
| 2328 | return ssl->s3->hs->in_false_start; |
David Benjamin | ed7c475 | 2015-02-16 19:16:46 -0500 | [diff] [blame] | 2329 | } |
| 2330 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2331 | int SSL_cutthrough_complete(const SSL *ssl) { |
| 2332 | return SSL_in_false_start(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2333 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2334 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2335 | void SSL_get_structure_sizes(size_t *ssl_size, size_t *ssl_ctx_size, |
| 2336 | size_t *ssl_session_size) { |
| 2337 | *ssl_size = sizeof(SSL); |
| 2338 | *ssl_ctx_size = sizeof(SSL_CTX); |
| 2339 | *ssl_session_size = sizeof(SSL_SESSION); |
| 2340 | } |
Feng Lu | 41aa325 | 2014-11-21 22:47:56 -0800 | [diff] [blame] | 2341 | |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2342 | int SSL_is_server(const SSL *ssl) { return ssl->server; } |
| 2343 | |
| 2344 | int SSL_is_dtls(const SSL *ssl) { return ssl->method->is_dtls; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2345 | |
Alessandro Ghedini | 57e81e6 | 2017-03-14 23:36:00 +0000 | [diff] [blame] | 2346 | void SSL_CTX_set_select_certificate_cb( |
| 2347 | SSL_CTX *ctx, |
| 2348 | enum ssl_select_cert_result_t (*cb)(const SSL_CLIENT_HELLO *)) { |
David Benjamin | d4c2bce | 2015-10-17 12:28:18 -0400 | [diff] [blame] | 2349 | ctx->select_certificate_cb = cb; |
| 2350 | } |
| 2351 | |
David Benjamin | 731058e | 2016-12-03 23:15:13 -0500 | [diff] [blame] | 2352 | void SSL_CTX_set_dos_protection_cb(SSL_CTX *ctx, |
| 2353 | int (*cb)(const SSL_CLIENT_HELLO *)) { |
Adam Langley | 524e717 | 2015-02-20 16:04:00 -0800 | [diff] [blame] | 2354 | ctx->dos_protection_cb = cb; |
| 2355 | } |
| 2356 | |
David Benjamin | 1d5ef3b | 2015-10-12 19:54:18 -0400 | [diff] [blame] | 2357 | void SSL_set_renegotiate_mode(SSL *ssl, enum ssl_renegotiate_mode_t mode) { |
| 2358 | ssl->renegotiate_mode = mode; |
| 2359 | } |
| 2360 | |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2361 | int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv, |
| 2362 | const uint8_t **out_write_iv, size_t *out_iv_len) { |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2363 | size_t write_iv_len; |
David Benjamin | cfc11c2 | 2017-07-18 22:45:18 -0400 | [diff] [blame] | 2364 | if (!ssl->s3->aead_read_ctx->GetIV(out_read_iv, out_iv_len) || |
| 2365 | !ssl->s3->aead_write_ctx->GetIV(out_write_iv, &write_iv_len) || |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2366 | *out_iv_len != write_iv_len) { |
| 2367 | return 0; |
| 2368 | } |
| 2369 | |
| 2370 | return 1; |
David Benjamin | e348ff4 | 2015-11-06 17:55:30 -0500 | [diff] [blame] | 2371 | } |
David Benjamin | 6e80765 | 2015-11-02 12:02:20 -0500 | [diff] [blame] | 2372 | |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2373 | static uint64_t be_to_u64(const uint8_t in[8]) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2374 | return (((uint64_t)in[0]) << 56) | (((uint64_t)in[1]) << 48) | |
| 2375 | (((uint64_t)in[2]) << 40) | (((uint64_t)in[3]) << 32) | |
| 2376 | (((uint64_t)in[4]) << 24) | (((uint64_t)in[5]) << 16) | |
| 2377 | (((uint64_t)in[6]) << 8) | ((uint64_t)in[7]); |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2378 | } |
| 2379 | |
| 2380 | uint64_t SSL_get_read_sequence(const SSL *ssl) { |
| 2381 | /* TODO(davidben): Internally represent sequence numbers as uint64_t. */ |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2382 | if (SSL_is_dtls(ssl)) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2383 | /* max_seq_num already includes the epoch. */ |
| 2384 | assert(ssl->d1->r_epoch == (ssl->d1->bitmap.max_seq_num >> 48)); |
| 2385 | return ssl->d1->bitmap.max_seq_num; |
| 2386 | } |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2387 | return be_to_u64(ssl->s3->read_sequence); |
| 2388 | } |
| 2389 | |
| 2390 | uint64_t SSL_get_write_sequence(const SSL *ssl) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2391 | uint64_t ret = be_to_u64(ssl->s3->write_sequence); |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2392 | if (SSL_is_dtls(ssl)) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2393 | assert((ret >> 48) == 0); |
| 2394 | ret |= ((uint64_t)ssl->d1->w_epoch) << 48; |
| 2395 | } |
| 2396 | return ret; |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2397 | } |
| 2398 | |
Steven Valdez | 0256385 | 2016-06-23 13:33:05 -0400 | [diff] [blame] | 2399 | uint16_t SSL_get_peer_signature_algorithm(const SSL *ssl) { |
David Benjamin | f1050fd | 2016-12-13 20:05:36 -0500 | [diff] [blame] | 2400 | /* TODO(davidben): This checks the wrong session if there is a renegotiation |
| 2401 | * in progress. */ |
| 2402 | SSL_SESSION *session = SSL_get_session(ssl); |
| 2403 | if (session == NULL) { |
| 2404 | return 0; |
| 2405 | } |
| 2406 | |
| 2407 | return session->peer_signature_algorithm; |
Steven Valdez | 0256385 | 2016-06-23 13:33:05 -0400 | [diff] [blame] | 2408 | } |
| 2409 | |
David Benjamin | 96ba15f | 2015-12-25 14:10:17 -0500 | [diff] [blame] | 2410 | size_t SSL_get_client_random(const SSL *ssl, uint8_t *out, size_t max_out) { |
| 2411 | if (max_out == 0) { |
| 2412 | return sizeof(ssl->s3->client_random); |
| 2413 | } |
| 2414 | if (max_out > sizeof(ssl->s3->client_random)) { |
| 2415 | max_out = sizeof(ssl->s3->client_random); |
| 2416 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 2417 | OPENSSL_memcpy(out, ssl->s3->client_random, max_out); |
David Benjamin | 96ba15f | 2015-12-25 14:10:17 -0500 | [diff] [blame] | 2418 | return max_out; |
| 2419 | } |
| 2420 | |
| 2421 | size_t SSL_get_server_random(const SSL *ssl, uint8_t *out, size_t max_out) { |
| 2422 | if (max_out == 0) { |
| 2423 | return sizeof(ssl->s3->server_random); |
| 2424 | } |
| 2425 | if (max_out > sizeof(ssl->s3->server_random)) { |
| 2426 | max_out = sizeof(ssl->s3->server_random); |
| 2427 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 2428 | OPENSSL_memcpy(out, ssl->s3->server_random, max_out); |
David Benjamin | 96ba15f | 2015-12-25 14:10:17 -0500 | [diff] [blame] | 2429 | return max_out; |
| 2430 | } |
| 2431 | |
David Benjamin | f6494f4 | 2016-01-07 12:37:41 -0800 | [diff] [blame] | 2432 | const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl) { |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 2433 | SSL_HANDSHAKE *hs = ssl->s3->hs; |
| 2434 | if (hs == NULL) { |
David Benjamin | f6494f4 | 2016-01-07 12:37:41 -0800 | [diff] [blame] | 2435 | return NULL; |
| 2436 | } |
David Benjamin | 45738dd | 2017-02-09 20:01:26 -0500 | [diff] [blame] | 2437 | return hs->new_cipher; |
David Benjamin | f6494f4 | 2016-01-07 12:37:41 -0800 | [diff] [blame] | 2438 | } |
| 2439 | |
David Benjamin | bbaf367 | 2016-11-17 10:53:09 +0900 | [diff] [blame] | 2440 | void SSL_set_retain_only_sha256_of_client_certs(SSL *ssl, int enabled) { |
| 2441 | ssl->retain_only_sha256_of_client_certs = !!enabled; |
| 2442 | } |
| 2443 | |
David Benjamin | cdd0b7e | 2016-01-07 10:10:41 -0800 | [diff] [blame] | 2444 | void SSL_CTX_set_retain_only_sha256_of_client_certs(SSL_CTX *ctx, int enabled) { |
| 2445 | ctx->retain_only_sha256_of_client_certs = !!enabled; |
| 2446 | } |
| 2447 | |
David Benjamin | 65ac997 | 2016-09-02 21:35:25 -0400 | [diff] [blame] | 2448 | void SSL_CTX_set_grease_enabled(SSL_CTX *ctx, int enabled) { |
| 2449 | ctx->grease_enabled = !!enabled; |
| 2450 | } |
| 2451 | |
David Benjamin | 35ac5b7 | 2017-03-03 15:05:56 -0500 | [diff] [blame] | 2452 | int32_t SSL_get_ticket_age_skew(const SSL *ssl) { |
| 2453 | return ssl->s3->ticket_age_skew; |
| 2454 | } |
| 2455 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2456 | int SSL_clear(SSL *ssl) { |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2457 | /* In OpenSSL, reusing a client |SSL| with |SSL_clear| causes the previously |
| 2458 | * established session to be offered the next time around. wpa_supplicant |
| 2459 | * depends on this behavior, so emulate it. */ |
| 2460 | SSL_SESSION *session = NULL; |
| 2461 | if (!ssl->server && ssl->s3->established_session != NULL) { |
| 2462 | session = ssl->s3->established_session; |
| 2463 | SSL_SESSION_up_ref(session); |
| 2464 | } |
| 2465 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2466 | /* TODO(davidben): Some state on |ssl| is reset both in |SSL_new| and |
| 2467 | * |SSL_clear| because it is per-connection state rather than configuration |
| 2468 | * state. Per-connection state should be on |ssl->s3| and |ssl->d1| so it is |
| 2469 | * naturally reset at the right points between |SSL_new|, |SSL_clear|, and |
| 2470 | * |ssl3_new|. */ |
| 2471 | |
| 2472 | ssl->rwstate = SSL_NOTHING; |
| 2473 | |
| 2474 | BUF_MEM_free(ssl->init_buf); |
| 2475 | ssl->init_buf = NULL; |
David Benjamin | 4905454 | 2016-07-27 13:51:01 -0400 | [diff] [blame] | 2476 | ssl->init_msg = NULL; |
| 2477 | ssl->init_num = 0; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2478 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2479 | /* The ssl->d1->mtu is simultaneously configuration (preserved across |
| 2480 | * clear) and connection-specific state (gets reset). |
| 2481 | * |
| 2482 | * TODO(davidben): Avoid this. */ |
| 2483 | unsigned mtu = 0; |
| 2484 | if (ssl->d1 != NULL) { |
| 2485 | mtu = ssl->d1->mtu; |
| 2486 | } |
| 2487 | |
| 2488 | ssl->method->ssl_free(ssl); |
| 2489 | if (!ssl->method->ssl_new(ssl)) { |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2490 | SSL_SESSION_free(session); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2491 | return 0; |
| 2492 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2493 | |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2494 | if (SSL_is_dtls(ssl) && (SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2495 | ssl->d1->mtu = mtu; |
| 2496 | } |
| 2497 | |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2498 | if (session != NULL) { |
| 2499 | SSL_set_session(ssl, session); |
| 2500 | SSL_SESSION_free(session); |
| 2501 | } |
| 2502 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2503 | return 1; |
| 2504 | } |
| 2505 | |
David Benjamin | da881e9 | 2015-04-26 14:45:04 -0400 | [diff] [blame] | 2506 | int SSL_CTX_sess_connect(const SSL_CTX *ctx) { return 0; } |
| 2507 | int SSL_CTX_sess_connect_good(const SSL_CTX *ctx) { return 0; } |
| 2508 | int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2509 | int SSL_CTX_sess_accept(const SSL_CTX *ctx) { return 0; } |
| 2510 | int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2511 | int SSL_CTX_sess_accept_good(const SSL_CTX *ctx) { return 0; } |
| 2512 | int SSL_CTX_sess_hits(const SSL_CTX *ctx) { return 0; } |
| 2513 | int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx) { return 0; } |
| 2514 | int SSL_CTX_sess_misses(const SSL_CTX *ctx) { return 0; } |
| 2515 | int SSL_CTX_sess_timeouts(const SSL_CTX *ctx) { return 0; } |
| 2516 | int SSL_CTX_sess_cache_full(const SSL_CTX *ctx) { return 0; } |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2517 | |
| 2518 | int SSL_num_renegotiations(const SSL *ssl) { |
| 2519 | return SSL_total_renegotiations(ssl); |
| 2520 | } |
| 2521 | |
| 2522 | int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx) { return 0; } |
| 2523 | int SSL_need_tmp_RSA(const SSL *ssl) { return 0; } |
| 2524 | int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa) { return 1; } |
| 2525 | int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa) { return 1; } |
Matt Braithwaite | 4838d8a | 2015-08-20 13:20:03 -0700 | [diff] [blame] | 2526 | void ERR_load_SSL_strings(void) {} |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2527 | void SSL_load_error_strings(void) {} |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2528 | int SSL_cache_hit(SSL *ssl) { return SSL_session_reused(ssl); } |
| 2529 | |
| 2530 | int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key) { |
| 2531 | if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) { |
| 2532 | OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER); |
| 2533 | return 0; |
| 2534 | } |
| 2535 | int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)); |
| 2536 | return SSL_CTX_set1_curves(ctx, &nid, 1); |
| 2537 | } |
| 2538 | |
| 2539 | int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key) { |
| 2540 | if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) { |
| 2541 | OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER); |
| 2542 | return 0; |
| 2543 | } |
| 2544 | int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)); |
| 2545 | return SSL_set1_curves(ssl, &nid, 1); |
| 2546 | } |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 2547 | |
Adam Langley | 4c341d0 | 2017-03-08 19:33:21 -0800 | [diff] [blame] | 2548 | void SSL_CTX_set_ticket_aead_method(SSL_CTX *ctx, |
| 2549 | const SSL_TICKET_AEAD_METHOD *aead_method) { |
| 2550 | ctx->ticket_aead_method = aead_method; |
| 2551 | } |