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