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