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> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 149 | #include <openssl/dh.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 150 | #include <openssl/err.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 151 | #include <openssl/lhash.h> |
| 152 | #include <openssl/mem.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 153 | #include <openssl/rand.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 154 | |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 155 | #include "internal.h" |
David Benjamin | 546f1a5 | 2015-04-15 16:46:09 -0400 | [diff] [blame] | 156 | #include "../crypto/internal.h" |
| 157 | |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 158 | #if defined(OPENSSL_WINDOWS) |
| 159 | #include <sys/timeb.h> |
| 160 | #else |
| 161 | #include <sys/socket.h> |
| 162 | #include <sys/time.h> |
| 163 | #endif |
| 164 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 165 | |
David Benjamin | 76c2efc | 2015-08-31 14:24:29 -0400 | [diff] [blame] | 166 | /* |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] | 167 | * to avoid downstream churn. */ |
David Benjamin | 76c2efc | 2015-08-31 14:24:29 -0400 | [diff] [blame] | 168 | OPENSSL_DECLARE_ERROR_REASON(SSL, UNKNOWN_PROTOCOL) |
David Benjamin | 97760d5 | 2015-07-24 23:02:49 -0400 | [diff] [blame] | 169 | |
David Benjamin | 311c257 | 2016-08-17 15:54:36 -0400 | [diff] [blame] | 170 | /* The following errors are no longer emitted, but are used in nginx without |
| 171 | * #ifdefs. */ |
| 172 | OPENSSL_DECLARE_ERROR_REASON(SSL, BLOCK_CIPHER_PAD_IS_WRONG) |
| 173 | OPENSSL_DECLARE_ERROR_REASON(SSL, NO_CIPHERS_SPECIFIED) |
| 174 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 175 | /* Some error codes are special. Ensure the make_errors.go script never |
| 176 | * regresses this. */ |
| 177 | OPENSSL_COMPILE_ASSERT(SSL_R_TLSV1_ALERT_NO_RENEGOTIATION == |
| 178 | SSL_AD_NO_RENEGOTIATION + SSL_AD_REASON_OFFSET, |
| 179 | ssl_alert_reason_code_mismatch); |
David Benjamin | e113608 | 2014-09-20 12:28:58 -0400 | [diff] [blame] | 180 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 181 | /* kMaxHandshakeSize is the maximum size, in bytes, of a handshake message. */ |
| 182 | static const size_t kMaxHandshakeSize = (1u << 24) - 1; |
| 183 | |
David Benjamin | aa58513 | 2015-06-29 23:36:17 -0400 | [diff] [blame] | 184 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl = |
| 185 | CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA; |
| 186 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl_ctx = |
| 187 | CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA; |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 188 | |
David Benjamin | 7c6d09b | 2015-09-05 11:00:19 -0400 | [diff] [blame] | 189 | int SSL_library_init(void) { |
| 190 | CRYPTO_library_init(); |
| 191 | return 1; |
| 192 | } |
| 193 | |
Adam Langley | e976e43 | 2016-02-15 14:01:10 -0800 | [diff] [blame] | 194 | static uint32_t ssl_session_hash(const SSL_SESSION *sess) { |
| 195 | const uint8_t *session_id = sess->session_id; |
| 196 | |
| 197 | uint8_t tmp_storage[sizeof(uint32_t)]; |
| 198 | if (sess->session_id_length < sizeof(tmp_storage)) { |
| 199 | memset(tmp_storage, 0, sizeof(tmp_storage)); |
| 200 | memcpy(tmp_storage, sess->session_id, sess->session_id_length); |
| 201 | session_id = tmp_storage; |
| 202 | } |
| 203 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 204 | uint32_t hash = |
Adam Langley | e976e43 | 2016-02-15 14:01:10 -0800 | [diff] [blame] | 205 | ((uint32_t)session_id[0]) | |
| 206 | ((uint32_t)session_id[1] << 8) | |
| 207 | ((uint32_t)session_id[2] << 16) | |
| 208 | ((uint32_t)session_id[3] << 24); |
David Benjamin | 7c6d09b | 2015-09-05 11:00:19 -0400 | [diff] [blame] | 209 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 210 | return hash; |
| 211 | } |
| 212 | |
| 213 | /* NB: If this function (or indeed the hash function which uses a sort of |
| 214 | * coarser function than this one) is changed, ensure |
| 215 | * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being |
| 216 | * able to construct an SSL_SESSION that will collide with any existing session |
| 217 | * with a matching session ID. */ |
| 218 | static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b) { |
| 219 | if (a->ssl_version != b->ssl_version) { |
| 220 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 221 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 222 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 223 | if (a->session_id_length != b->session_id_length) { |
| 224 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 225 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 226 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 227 | return memcmp(a->session_id, b->session_id, a->session_id_length); |
| 228 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 229 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 230 | SSL_CTX *SSL_CTX_new(const SSL_METHOD *method) { |
| 231 | SSL_CTX *ret = NULL; |
| 232 | |
| 233 | if (method == NULL) { |
| 234 | OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_METHOD_PASSED); |
| 235 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 236 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 237 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 238 | if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) { |
| 239 | OPENSSL_PUT_ERROR(SSL, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS); |
| 240 | goto err; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 241 | } |
| 242 | |
Brian Smith | 5ba0689 | 2016-02-07 09:36:04 -1000 | [diff] [blame] | 243 | ret = OPENSSL_malloc(sizeof(SSL_CTX)); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 244 | if (ret == NULL) { |
| 245 | goto err; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 246 | } |
| 247 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 248 | memset(ret, 0, sizeof(SSL_CTX)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 249 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 250 | ret->method = method->method; |
| 251 | |
| 252 | CRYPTO_MUTEX_init(&ret->lock); |
| 253 | |
| 254 | ret->session_cache_mode = SSL_SESS_CACHE_SERVER; |
| 255 | ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT; |
| 256 | |
| 257 | /* We take the system default */ |
| 258 | ret->session_timeout = SSL_DEFAULT_SESSION_TIMEOUT; |
| 259 | |
| 260 | ret->references = 1; |
| 261 | |
| 262 | ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT; |
| 263 | ret->verify_mode = SSL_VERIFY_NONE; |
| 264 | ret->cert = ssl_cert_new(); |
| 265 | if (ret->cert == NULL) { |
| 266 | goto err; |
| 267 | } |
| 268 | |
| 269 | ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp); |
| 270 | if (ret->sessions == NULL) { |
| 271 | goto err; |
| 272 | } |
| 273 | ret->cert_store = X509_STORE_new(); |
| 274 | if (ret->cert_store == NULL) { |
| 275 | goto err; |
| 276 | } |
| 277 | |
| 278 | ssl_create_cipher_list(ret->method, &ret->cipher_list, |
David Benjamin | d2cb1c1 | 2016-11-02 17:49:09 -0400 | [diff] [blame] | 279 | SSL_DEFAULT_CIPHER_LIST); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 280 | if (ret->cipher_list == NULL || |
| 281 | sk_SSL_CIPHER_num(ret->cipher_list->ciphers) <= 0) { |
| 282 | OPENSSL_PUT_ERROR(SSL, SSL_R_LIBRARY_HAS_NO_CIPHERS); |
| 283 | goto err2; |
| 284 | } |
| 285 | |
| 286 | ret->param = X509_VERIFY_PARAM_new(); |
| 287 | if (!ret->param) { |
| 288 | goto err; |
| 289 | } |
| 290 | |
| 291 | ret->client_CA = sk_X509_NAME_new_null(); |
| 292 | if (ret->client_CA == NULL) { |
| 293 | goto err; |
| 294 | } |
| 295 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 296 | CRYPTO_new_ex_data(&ret->ex_data); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 297 | |
| 298 | ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 299 | |
| 300 | /* Setup RFC4507 ticket keys */ |
| 301 | if (!RAND_bytes(ret->tlsext_tick_key_name, 16) || |
| 302 | !RAND_bytes(ret->tlsext_tick_hmac_key, 16) || |
| 303 | !RAND_bytes(ret->tlsext_tick_aes_key, 16)) { |
| 304 | ret->options |= SSL_OP_NO_TICKET; |
| 305 | } |
| 306 | |
David Benjamin | a983b4c | 2016-11-09 14:21:12 -0500 | [diff] [blame] | 307 | /* Disable the auto-chaining feature by default. Once this has stuck without |
| 308 | * problems, the feature will be removed entirely. */ |
| 309 | ret->mode = SSL_MODE_NO_AUTO_CHAIN; |
| 310 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 311 | /* Lock the SSL_CTX to the specified version, for compatibility with legacy |
| 312 | * uses of SSL_METHOD. */ |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 313 | if (!SSL_CTX_set_max_proto_version(ret, method->version) || |
| 314 | !SSL_CTX_set_min_proto_version(ret, method->version)) { |
| 315 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 316 | goto err2; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | return ret; |
| 320 | |
| 321 | err: |
| 322 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 323 | err2: |
| 324 | SSL_CTX_free(ret); |
| 325 | return NULL; |
| 326 | } |
| 327 | |
Adam Langley | 84cd159 | 2016-06-30 18:29:44 -0700 | [diff] [blame] | 328 | int SSL_CTX_up_ref(SSL_CTX *ctx) { |
| 329 | CRYPTO_refcount_inc(&ctx->references); |
| 330 | return 1; |
| 331 | } |
| 332 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 333 | void SSL_CTX_free(SSL_CTX *ctx) { |
| 334 | if (ctx == NULL || |
| 335 | !CRYPTO_refcount_dec_and_test_zero(&ctx->references)) { |
| 336 | return; |
| 337 | } |
| 338 | |
| 339 | X509_VERIFY_PARAM_free(ctx->param); |
| 340 | |
| 341 | /* Free internal session cache. However: the remove_cb() may reference the |
| 342 | * ex_data of SSL_CTX, thus the ex_data store can only be removed after the |
| 343 | * sessions were flushed. As the ex_data handling routines might also touch |
| 344 | * the session cache, the most secure solution seems to be: empty (flush) the |
| 345 | * cache, then free ex_data, then finally free the cache. (See ticket |
| 346 | * [openssl.org #212].) */ |
| 347 | SSL_CTX_flush_sessions(ctx, 0); |
| 348 | |
| 349 | CRYPTO_free_ex_data(&g_ex_data_class_ssl_ctx, ctx, &ctx->ex_data); |
| 350 | |
| 351 | CRYPTO_MUTEX_cleanup(&ctx->lock); |
| 352 | lh_SSL_SESSION_free(ctx->sessions); |
| 353 | X509_STORE_free(ctx->cert_store); |
| 354 | ssl_cipher_preference_list_free(ctx->cipher_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 355 | ssl_cipher_preference_list_free(ctx->cipher_list_tls10); |
| 356 | ssl_cipher_preference_list_free(ctx->cipher_list_tls11); |
| 357 | ssl_cert_free(ctx->cert); |
| 358 | sk_SSL_CUSTOM_EXTENSION_pop_free(ctx->client_custom_extensions, |
| 359 | SSL_CUSTOM_EXTENSION_free); |
| 360 | sk_SSL_CUSTOM_EXTENSION_pop_free(ctx->server_custom_extensions, |
| 361 | SSL_CUSTOM_EXTENSION_free); |
| 362 | sk_X509_NAME_pop_free(ctx->client_CA, X509_NAME_free); |
| 363 | sk_SRTP_PROTECTION_PROFILE_free(ctx->srtp_profiles); |
| 364 | OPENSSL_free(ctx->psk_identity_hint); |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 365 | OPENSSL_free(ctx->supported_group_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 366 | OPENSSL_free(ctx->alpn_client_proto_list); |
Alessandro Ghedini | 559f064 | 2016-12-07 12:55:32 +0000 | [diff] [blame] | 367 | CRYPTO_BUFFER_free(ctx->ocsp_response); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 368 | OPENSSL_free(ctx->signed_cert_timestamp_list); |
| 369 | EVP_PKEY_free(ctx->tlsext_channel_id_private); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 370 | |
| 371 | OPENSSL_free(ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 372 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 373 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 374 | SSL *SSL_new(SSL_CTX *ctx) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 375 | if (ctx == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 376 | OPENSSL_PUT_ERROR(SSL, SSL_R_NULL_SSL_CTX); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 377 | return NULL; |
| 378 | } |
| 379 | if (ctx->method == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 380 | 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] | 381 | return NULL; |
| 382 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 383 | |
Brian Smith | 5ba0689 | 2016-02-07 09:36:04 -1000 | [diff] [blame] | 384 | SSL *ssl = OPENSSL_malloc(sizeof(SSL)); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 385 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 386 | goto err; |
| 387 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 388 | memset(ssl, 0, sizeof(SSL)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 389 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 390 | ssl->min_version = ctx->min_version; |
| 391 | ssl->max_version = ctx->max_version; |
David Benjamin | 1eb367c | 2014-12-12 18:17:51 -0500 | [diff] [blame] | 392 | |
Taylor Brandstetter | 376a0fe | 2016-05-10 19:30:28 -0700 | [diff] [blame] | 393 | /* RFC 6347 states that implementations SHOULD use an initial timer value of |
| 394 | * 1 second. */ |
| 395 | ssl->initial_timeout_duration_ms = 1000; |
| 396 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 397 | ssl->options = ctx->options; |
| 398 | ssl->mode = ctx->mode; |
| 399 | ssl->max_cert_list = ctx->max_cert_list; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 400 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 401 | ssl->cert = ssl_cert_dup(ctx->cert); |
| 402 | if (ssl->cert == NULL) { |
David Benjamin | a5a3eeb | 2015-03-18 20:26:30 -0400 | [diff] [blame] | 403 | goto err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 404 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 405 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 406 | ssl->msg_callback = ctx->msg_callback; |
| 407 | ssl->msg_callback_arg = ctx->msg_callback_arg; |
| 408 | ssl->verify_mode = ctx->verify_mode; |
| 409 | ssl->sid_ctx_length = ctx->sid_ctx_length; |
| 410 | assert(ssl->sid_ctx_length <= sizeof ssl->sid_ctx); |
| 411 | memcpy(&ssl->sid_ctx, &ctx->sid_ctx, sizeof(ssl->sid_ctx)); |
| 412 | ssl->verify_callback = ctx->default_verify_callback; |
David Benjamin | bbaf367 | 2016-11-17 10:53:09 +0900 | [diff] [blame] | 413 | ssl->retain_only_sha256_of_client_certs = |
| 414 | ctx->retain_only_sha256_of_client_certs; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 415 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 416 | ssl->param = X509_VERIFY_PARAM_new(); |
| 417 | if (!ssl->param) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 418 | goto err; |
| 419 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 420 | X509_VERIFY_PARAM_inherit(ssl->param, ctx->param); |
| 421 | ssl->quiet_shutdown = ctx->quiet_shutdown; |
| 422 | ssl->max_send_fragment = ctx->max_send_fragment; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 423 | |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 424 | CRYPTO_refcount_inc(&ctx->references); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 425 | ssl->ctx = ctx; |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 426 | CRYPTO_refcount_inc(&ctx->references); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 427 | ssl->initial_ctx = ctx; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 428 | |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 429 | if (ctx->supported_group_list) { |
| 430 | ssl->supported_group_list = |
| 431 | BUF_memdup(ctx->supported_group_list, |
| 432 | ctx->supported_group_list_len * 2); |
| 433 | if (!ssl->supported_group_list) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 434 | goto err; |
| 435 | } |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 436 | ssl->supported_group_list_len = ctx->supported_group_list_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 437 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 438 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 439 | if (ssl->ctx->alpn_client_proto_list) { |
| 440 | ssl->alpn_client_proto_list = BUF_memdup( |
| 441 | ssl->ctx->alpn_client_proto_list, ssl->ctx->alpn_client_proto_list_len); |
| 442 | if (ssl->alpn_client_proto_list == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 443 | goto err; |
| 444 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 445 | ssl->alpn_client_proto_list_len = ssl->ctx->alpn_client_proto_list_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 446 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 447 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 448 | ssl->method = ctx->method; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 449 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 450 | if (!ssl->method->ssl_new(ssl)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 451 | goto err; |
| 452 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 453 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 454 | ssl->rwstate = SSL_NOTHING; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 455 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 456 | CRYPTO_new_ex_data(&ssl->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 457 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 458 | ssl->psk_identity_hint = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 459 | if (ctx->psk_identity_hint) { |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 460 | ssl->psk_identity_hint = BUF_strdup(ctx->psk_identity_hint); |
| 461 | if (ssl->psk_identity_hint == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 462 | goto err; |
| 463 | } |
| 464 | } |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 465 | ssl->psk_client_callback = ctx->psk_client_callback; |
| 466 | ssl->psk_server_callback = ctx->psk_server_callback; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 467 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 468 | ssl->tlsext_channel_id_enabled = ctx->tlsext_channel_id_enabled; |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 469 | if (ctx->tlsext_channel_id_private) { |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 470 | EVP_PKEY_up_ref(ctx->tlsext_channel_id_private); |
| 471 | ssl->tlsext_channel_id_private = ctx->tlsext_channel_id_private; |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 472 | } |
| 473 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 474 | ssl->signed_cert_timestamps_enabled = |
| 475 | ssl->ctx->signed_cert_timestamps_enabled; |
| 476 | ssl->ocsp_stapling_enabled = ssl->ctx->ocsp_stapling_enabled; |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 477 | |
Alessandro Ghedini | bf48364 | 2016-11-22 18:56:46 +0000 | [diff] [blame] | 478 | ssl->session_timeout = SSL_DEFAULT_SESSION_TIMEOUT; |
| 479 | |
| 480 | /* If the context has a default timeout, use it over the default. */ |
| 481 | if (ctx->session_timeout != 0) { |
| 482 | ssl->session_timeout = ctx->session_timeout; |
| 483 | } |
| 484 | |
Alessandro Ghedini | 559f064 | 2016-12-07 12:55:32 +0000 | [diff] [blame] | 485 | /* If the context has an OCSP response, use it. */ |
| 486 | if (ctx->ocsp_response != NULL) { |
| 487 | CRYPTO_BUFFER_up_ref(ctx->ocsp_response); |
| 488 | ssl->ocsp_response = ctx->ocsp_response; |
| 489 | } |
| 490 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 491 | return ssl; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 492 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 493 | err: |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 494 | SSL_free(ssl); |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 495 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 496 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 497 | return NULL; |
| 498 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 499 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 500 | void SSL_free(SSL *ssl) { |
| 501 | if (ssl == NULL) { |
| 502 | return; |
| 503 | } |
| 504 | |
| 505 | X509_VERIFY_PARAM_free(ssl->param); |
| 506 | |
| 507 | CRYPTO_free_ex_data(&g_ex_data_class_ssl, ssl, &ssl->ex_data); |
| 508 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 509 | ssl_free_wbio_buffer(ssl); |
| 510 | assert(ssl->bbio == NULL); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 511 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 512 | BIO_free_all(ssl->rbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 513 | BIO_free_all(ssl->wbio); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 514 | |
| 515 | BUF_MEM_free(ssl->init_buf); |
| 516 | |
| 517 | /* add extra stuff */ |
| 518 | ssl_cipher_preference_list_free(ssl->cipher_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 519 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 520 | SSL_SESSION_free(ssl->session); |
| 521 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 522 | ssl_cert_free(ssl->cert); |
| 523 | |
| 524 | OPENSSL_free(ssl->tlsext_hostname); |
| 525 | SSL_CTX_free(ssl->initial_ctx); |
Steven Valdez | ce902a9 | 2016-05-17 11:47:53 -0400 | [diff] [blame] | 526 | OPENSSL_free(ssl->supported_group_list); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 527 | OPENSSL_free(ssl->alpn_client_proto_list); |
| 528 | EVP_PKEY_free(ssl->tlsext_channel_id_private); |
| 529 | OPENSSL_free(ssl->psk_identity_hint); |
| 530 | sk_X509_NAME_pop_free(ssl->client_CA, X509_NAME_free); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 531 | sk_SRTP_PROTECTION_PROFILE_free(ssl->srtp_profiles); |
Alessandro Ghedini | 559f064 | 2016-12-07 12:55:32 +0000 | [diff] [blame] | 532 | CRYPTO_BUFFER_free(ssl->ocsp_response); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 533 | |
| 534 | if (ssl->method != NULL) { |
| 535 | ssl->method->ssl_free(ssl); |
| 536 | } |
| 537 | SSL_CTX_free(ssl->ctx); |
| 538 | |
| 539 | OPENSSL_free(ssl); |
| 540 | } |
| 541 | |
| 542 | void SSL_set_connect_state(SSL *ssl) { |
| 543 | ssl->server = 0; |
David Benjamin | 9f1dc82 | 2016-06-07 17:03:46 -0400 | [diff] [blame] | 544 | ssl->handshake_func = ssl3_connect; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | void SSL_set_accept_state(SSL *ssl) { |
| 548 | ssl->server = 1; |
David Benjamin | 9f1dc82 | 2016-06-07 17:03:46 -0400 | [diff] [blame] | 549 | ssl->handshake_func = ssl3_accept; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 550 | } |
| 551 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 552 | void SSL_set0_rbio(SSL *ssl, BIO *rbio) { |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 553 | BIO_free_all(ssl->rbio); |
| 554 | ssl->rbio = rbio; |
| 555 | } |
| 556 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 557 | void SSL_set0_wbio(SSL *ssl, BIO *wbio) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 558 | /* If the output buffering BIO is still in place, remove it. */ |
| 559 | if (ssl->bbio != NULL) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 560 | ssl->wbio = BIO_pop(ssl->wbio); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 561 | } |
| 562 | |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 563 | BIO_free_all(ssl->wbio); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 564 | ssl->wbio = wbio; |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 565 | |
| 566 | /* Re-attach |bbio| to the new |wbio|. */ |
| 567 | if (ssl->bbio != NULL) { |
| 568 | ssl->wbio = BIO_push(ssl->bbio, ssl->wbio); |
| 569 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 570 | } |
| 571 | |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 572 | void SSL_set_bio(SSL *ssl, BIO *rbio, BIO *wbio) { |
| 573 | /* For historical reasons, this function has many different cases in ownership |
| 574 | * handling. */ |
| 575 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 576 | /* If nothing has changed, do nothing */ |
| 577 | if (rbio == SSL_get_rbio(ssl) && wbio == SSL_get_wbio(ssl)) { |
| 578 | return; |
| 579 | } |
| 580 | |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 581 | /* If the two arguments are equal, one fewer reference is granted than |
| 582 | * taken. */ |
| 583 | if (rbio != NULL && rbio == wbio) { |
| 584 | BIO_up_ref(rbio); |
| 585 | } |
| 586 | |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 587 | /* If only the wbio is changed, adopt only one reference. */ |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 588 | if (rbio == SSL_get_rbio(ssl)) { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 589 | SSL_set0_wbio(ssl, wbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 590 | return; |
| 591 | } |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 592 | |
| 593 | /* There is an asymmetry here for historical reasons. If only the rbio is |
| 594 | * changed AND the rbio and wbio were originally different, then we only adopt |
| 595 | * one reference. */ |
| 596 | if (wbio == SSL_get_wbio(ssl) && SSL_get_rbio(ssl) != SSL_get_wbio(ssl)) { |
| 597 | SSL_set0_rbio(ssl, rbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 598 | return; |
| 599 | } |
| 600 | |
| 601 | /* Otherwise, adopt both references. */ |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 602 | SSL_set0_rbio(ssl, rbio); |
| 603 | SSL_set0_wbio(ssl, wbio); |
David Benjamin | f715c42 | 2016-06-11 19:01:56 -0400 | [diff] [blame] | 604 | } |
| 605 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 606 | BIO *SSL_get_rbio(const SSL *ssl) { return ssl->rbio; } |
| 607 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 608 | BIO *SSL_get_wbio(const SSL *ssl) { |
| 609 | if (ssl->bbio != NULL) { |
| 610 | /* If |bbio| is active, the true caller-configured BIO is its |next_bio|. */ |
| 611 | assert(ssl->bbio == ssl->wbio); |
| 612 | return ssl->bbio->next_bio; |
| 613 | } |
| 614 | return ssl->wbio; |
| 615 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 616 | |
| 617 | int SSL_do_handshake(SSL *ssl) { |
David Benjamin | 4c5ddb8 | 2016-03-11 22:56:19 -0500 | [diff] [blame] | 618 | ssl->rwstate = SSL_NOTHING; |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 619 | /* Functions which use SSL_get_error must clear the error queue on entry. */ |
| 620 | ERR_clear_error(); |
David Benjamin | 0d275bd | 2016-06-01 20:19:34 -0400 | [diff] [blame] | 621 | ERR_clear_system_error(); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 622 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 623 | if (ssl->handshake_func == NULL) { |
| 624 | OPENSSL_PUT_ERROR(SSL, SSL_R_CONNECTION_TYPE_NOT_SET); |
| 625 | return -1; |
| 626 | } |
| 627 | |
| 628 | if (!SSL_in_init(ssl)) { |
| 629 | return 1; |
| 630 | } |
| 631 | |
David Benjamin | 2644a13 | 2016-12-11 13:41:17 -0500 | [diff] [blame] | 632 | if (ssl->s3->hs == NULL) { |
| 633 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 634 | return -1; |
David Benjamin | ce8c9d2 | 2016-11-14 10:45:16 +0900 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | /* Run the handshake. */ |
| 638 | assert(ssl->s3->hs != NULL); |
| 639 | int ret = ssl->handshake_func(ssl->s3->hs); |
| 640 | if (ret <= 0) { |
| 641 | return ret; |
| 642 | } |
| 643 | |
| 644 | /* Destroy the handshake object if the handshake has completely finished. */ |
| 645 | if (!SSL_in_init(ssl)) { |
| 646 | ssl_handshake_free(ssl->s3->hs); |
| 647 | ssl->s3->hs = NULL; |
| 648 | } |
| 649 | |
| 650 | return 1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 651 | } |
| 652 | |
| 653 | int SSL_connect(SSL *ssl) { |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 654 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 655 | /* Not properly initialized yet */ |
| 656 | SSL_set_connect_state(ssl); |
| 657 | } |
| 658 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 659 | return SSL_do_handshake(ssl); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | int SSL_accept(SSL *ssl) { |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 663 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 664 | /* Not properly initialized yet */ |
| 665 | SSL_set_accept_state(ssl); |
| 666 | } |
| 667 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 668 | return SSL_do_handshake(ssl); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 669 | } |
| 670 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 671 | static int ssl_do_renegotiate(SSL *ssl) { |
David Benjamin | 34941c0 | 2016-10-08 11:45:31 -0400 | [diff] [blame] | 672 | /* We do not accept renegotiations as a server or SSL 3.0. SSL 3.0 will be |
| 673 | * removed entirely in the future and requires retaining more data for |
| 674 | * renegotiation_info. */ |
| 675 | if (ssl->server || ssl->version == SSL3_VERSION) { |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 676 | goto no_renegotiation; |
| 677 | } |
| 678 | |
| 679 | if (ssl->s3->tmp.message_type != SSL3_MT_HELLO_REQUEST || |
| 680 | ssl->init_num != 0) { |
| 681 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_DECODE_ERROR); |
| 682 | OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_HELLO_REQUEST); |
| 683 | return 0; |
| 684 | } |
| 685 | |
| 686 | switch (ssl->renegotiate_mode) { |
| 687 | case ssl_renegotiate_ignore: |
| 688 | /* Ignore the HelloRequest. */ |
| 689 | return 1; |
| 690 | |
| 691 | case ssl_renegotiate_once: |
| 692 | if (ssl->s3->total_renegotiations != 0) { |
| 693 | goto no_renegotiation; |
| 694 | } |
| 695 | break; |
| 696 | |
| 697 | case ssl_renegotiate_never: |
| 698 | goto no_renegotiation; |
| 699 | |
| 700 | case ssl_renegotiate_freely: |
| 701 | break; |
| 702 | } |
| 703 | |
| 704 | /* Renegotiation is only supported at quiescent points in the application |
| 705 | * protocol, namely in HTTPS, just before reading the HTTP response. Require |
| 706 | * the record-layer be idle and avoid complexities of sending a handshake |
| 707 | * record while an application_data record is being written. */ |
| 708 | if (ssl_write_buffer_is_pending(ssl)) { |
| 709 | goto no_renegotiation; |
| 710 | } |
| 711 | |
| 712 | /* Begin a new handshake. */ |
David Benjamin | 2644a13 | 2016-12-11 13:41:17 -0500 | [diff] [blame] | 713 | if (ssl->s3->hs != NULL) { |
| 714 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
| 715 | return 0; |
| 716 | } |
| 717 | ssl->s3->hs = ssl_handshake_new(ssl); |
| 718 | if (ssl->s3->hs == NULL) { |
| 719 | return 0; |
| 720 | } |
| 721 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 722 | ssl->s3->total_renegotiations++; |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 723 | return 1; |
| 724 | |
| 725 | no_renegotiation: |
| 726 | ssl3_send_alert(ssl, SSL3_AL_FATAL, SSL_AD_NO_RENEGOTIATION); |
| 727 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_RENEGOTIATION); |
| 728 | return 0; |
| 729 | } |
| 730 | |
| 731 | static int ssl_do_post_handshake(SSL *ssl) { |
| 732 | if (ssl3_protocol_version(ssl) < TLS1_3_VERSION) { |
| 733 | return ssl_do_renegotiate(ssl); |
| 734 | } |
| 735 | |
Steven Valdez | 8e1c7be | 2016-07-26 12:39:22 -0400 | [diff] [blame] | 736 | return tls13_post_handshake(ssl); |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 737 | } |
| 738 | |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 739 | static int ssl_read_impl(SSL *ssl, void *buf, int num, int peek) { |
David Benjamin | 4c5ddb8 | 2016-03-11 22:56:19 -0500 | [diff] [blame] | 740 | ssl->rwstate = SSL_NOTHING; |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 741 | /* Functions which use SSL_get_error must clear the error queue on entry. */ |
| 742 | ERR_clear_error(); |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 743 | ERR_clear_system_error(); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 744 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 745 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 746 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 747 | return -1; |
| 748 | } |
| 749 | |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 750 | for (;;) { |
| 751 | /* Complete the current handshake, if any. False Start will cause |
| 752 | * |SSL_do_handshake| to return mid-handshake, so this may require multiple |
| 753 | * iterations. */ |
| 754 | while (SSL_in_init(ssl)) { |
| 755 | int ret = SSL_do_handshake(ssl); |
| 756 | if (ret < 0) { |
| 757 | return ret; |
| 758 | } |
| 759 | if (ret == 0) { |
| 760 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 761 | return -1; |
| 762 | } |
| 763 | } |
| 764 | |
| 765 | int got_handshake; |
| 766 | int ret = ssl->method->read_app_data(ssl, &got_handshake, buf, num, peek); |
| 767 | if (ret > 0 || !got_handshake) { |
Steven Valdez | 32635b8 | 2016-08-16 11:25:03 -0400 | [diff] [blame] | 768 | ssl->s3->key_update_count = 0; |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 769 | return ret; |
| 770 | } |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 771 | |
| 772 | /* Handle the post-handshake message and try again. */ |
| 773 | if (!ssl_do_post_handshake(ssl)) { |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 774 | return -1; |
| 775 | } |
David Benjamin | 163f29a | 2016-07-28 11:05:58 -0400 | [diff] [blame] | 776 | ssl->method->release_current_message(ssl, 1 /* free buffer */); |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 777 | } |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | int SSL_read(SSL *ssl, void *buf, int num) { |
| 781 | return ssl_read_impl(ssl, buf, num, 0 /* consume bytes */); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | int SSL_peek(SSL *ssl, void *buf, int num) { |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 785 | return ssl_read_impl(ssl, buf, num, 1 /* peek */); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | int SSL_write(SSL *ssl, const void *buf, int num) { |
David Benjamin | 4c5ddb8 | 2016-03-11 22:56:19 -0500 | [diff] [blame] | 789 | ssl->rwstate = SSL_NOTHING; |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 790 | /* Functions which use SSL_get_error must clear the error queue on entry. */ |
| 791 | ERR_clear_error(); |
David Benjamin | c79845c | 2016-03-10 01:28:00 -0500 | [diff] [blame] | 792 | ERR_clear_system_error(); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 793 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 794 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 795 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 796 | return -1; |
| 797 | } |
| 798 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 799 | if (ssl->s3->send_shutdown != ssl_shutdown_none) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 800 | OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 801 | return -1; |
| 802 | } |
| 803 | |
David Benjamin | d7ac143 | 2016-03-10 00:41:25 -0500 | [diff] [blame] | 804 | /* If necessary, complete the handshake implicitly. */ |
| 805 | if (SSL_in_init(ssl) && !SSL_in_false_start(ssl)) { |
| 806 | int ret = SSL_do_handshake(ssl); |
| 807 | if (ret < 0) { |
| 808 | return ret; |
| 809 | } |
| 810 | if (ret == 0) { |
| 811 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 812 | return -1; |
| 813 | } |
| 814 | } |
| 815 | |
David Benjamin | f0ee907 | 2016-06-15 17:44:37 -0400 | [diff] [blame] | 816 | return ssl->method->write_app_data(ssl, buf, num); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 817 | } |
| 818 | |
| 819 | int SSL_shutdown(SSL *ssl) { |
David Benjamin | 4c5ddb8 | 2016-03-11 22:56:19 -0500 | [diff] [blame] | 820 | ssl->rwstate = SSL_NOTHING; |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 821 | /* Functions which use SSL_get_error must clear the error queue on entry. */ |
| 822 | ERR_clear_error(); |
David Benjamin | 0d275bd | 2016-06-01 20:19:34 -0400 | [diff] [blame] | 823 | ERR_clear_system_error(); |
David Benjamin | 15c1488 | 2016-03-14 14:25:46 -0400 | [diff] [blame] | 824 | |
David Benjamin | b2a7318 | 2016-03-10 01:25:26 -0500 | [diff] [blame] | 825 | if (ssl->handshake_func == NULL) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 826 | OPENSSL_PUT_ERROR(SSL, SSL_R_UNINITIALIZED); |
| 827 | return -1; |
| 828 | } |
| 829 | |
Steven Valdez | a14934f | 2016-02-29 10:05:08 -0500 | [diff] [blame] | 830 | /* We can't shutdown properly if we are in the middle of a handshake. */ |
| 831 | if (SSL_in_init(ssl)) { |
| 832 | OPENSSL_PUT_ERROR(SSL, SSL_R_SHUTDOWN_WHILE_IN_INIT); |
| 833 | return -1; |
| 834 | } |
| 835 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 836 | if (ssl->quiet_shutdown) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 837 | /* Do nothing if configured not to send a close_notify. */ |
| 838 | ssl->s3->send_shutdown = ssl_shutdown_close_notify; |
| 839 | ssl->s3->recv_shutdown = ssl_shutdown_close_notify; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 840 | return 1; |
| 841 | } |
| 842 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 843 | /* This function completes in two stages. It sends a close_notify and then it |
| 844 | * waits for a close_notify to come in. Perform exactly one action and return |
| 845 | * whether or not it succeeds. */ |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 846 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 847 | if (ssl->s3->send_shutdown != ssl_shutdown_close_notify) { |
| 848 | /* Send a close_notify. */ |
| 849 | if (ssl3_send_alert(ssl, SSL3_AL_WARNING, SSL_AD_CLOSE_NOTIFY) <= 0) { |
| 850 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 851 | } |
| 852 | } else if (ssl->s3->alert_dispatch) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 853 | /* Finish sending the close_notify. */ |
David Benjamin | f0ee907 | 2016-06-15 17:44:37 -0400 | [diff] [blame] | 854 | if (ssl->method->dispatch_alert(ssl) <= 0) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 855 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 856 | } |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 857 | } else if (ssl->s3->recv_shutdown != ssl_shutdown_close_notify) { |
| 858 | /* Wait for the peer's close_notify. */ |
David Benjamin | f0ee907 | 2016-06-15 17:44:37 -0400 | [diff] [blame] | 859 | ssl->method->read_close_notify(ssl); |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 860 | if (ssl->s3->recv_shutdown != ssl_shutdown_close_notify) { |
| 861 | return -1; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 862 | } |
| 863 | } |
| 864 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 865 | /* Return 0 for unidirectional shutdown and 1 for bidirectional shutdown. */ |
| 866 | return ssl->s3->recv_shutdown == ssl_shutdown_close_notify; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 867 | } |
| 868 | |
David Benjamin | 1d4f4c0 | 2016-07-26 18:03:08 -0400 | [diff] [blame] | 869 | int SSL_send_fatal_alert(SSL *ssl, uint8_t alert) { |
| 870 | if (ssl->s3->alert_dispatch) { |
| 871 | if (ssl->s3->send_alert[0] != SSL3_AL_FATAL || |
| 872 | ssl->s3->send_alert[1] != alert) { |
| 873 | /* We are already attempting to write a different alert. */ |
| 874 | OPENSSL_PUT_ERROR(SSL, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 875 | return -1; |
| 876 | } |
| 877 | return ssl->method->dispatch_alert(ssl); |
| 878 | } |
| 879 | |
| 880 | return ssl3_send_alert(ssl, SSL3_AL_FATAL, alert); |
| 881 | } |
| 882 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 883 | static int bio_retry_reason_to_error(int reason) { |
| 884 | switch (reason) { |
| 885 | case BIO_RR_CONNECT: |
| 886 | return SSL_ERROR_WANT_CONNECT; |
| 887 | case BIO_RR_ACCEPT: |
| 888 | return SSL_ERROR_WANT_ACCEPT; |
| 889 | default: |
| 890 | return SSL_ERROR_SYSCALL; |
| 891 | } |
| 892 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 893 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 894 | int SSL_get_error(const SSL *ssl, int ret_code) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 895 | if (ret_code > 0) { |
| 896 | return SSL_ERROR_NONE; |
| 897 | } |
| 898 | |
| 899 | /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc, |
| 900 | * where we do encode the error */ |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 901 | uint32_t err = ERR_peek_error(); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 902 | if (err != 0) { |
| 903 | if (ERR_GET_LIB(err) == ERR_LIB_SYS) { |
| 904 | return SSL_ERROR_SYSCALL; |
| 905 | } |
| 906 | return SSL_ERROR_SSL; |
| 907 | } |
| 908 | |
| 909 | if (ret_code == 0) { |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 910 | if (ssl->s3->recv_shutdown == ssl_shutdown_close_notify) { |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 911 | return SSL_ERROR_ZERO_RETURN; |
| 912 | } |
| 913 | /* An EOF was observed which violates the protocol, and the underlying |
| 914 | * transport does not participate in the error queue. Bubble up to the |
| 915 | * caller. */ |
| 916 | return SSL_ERROR_SYSCALL; |
| 917 | } |
| 918 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 919 | switch (ssl->rwstate) { |
| 920 | case SSL_PENDING_SESSION: |
| 921 | return SSL_ERROR_PENDING_SESSION; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 922 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 923 | case SSL_CERTIFICATE_SELECTION_PENDING: |
| 924 | return SSL_ERROR_PENDING_CERTIFICATE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 925 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 926 | case SSL_READING: { |
| 927 | BIO *bio = SSL_get_rbio(ssl); |
| 928 | if (BIO_should_read(bio)) { |
| 929 | return SSL_ERROR_WANT_READ; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 930 | } |
| 931 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 932 | if (BIO_should_write(bio)) { |
| 933 | /* TODO(davidben): OpenSSL historically checked for writes on the read |
| 934 | * BIO. Can this be removed? */ |
| 935 | return SSL_ERROR_WANT_WRITE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 936 | } |
| 937 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 938 | if (BIO_should_io_special(bio)) { |
| 939 | return bio_retry_reason_to_error(BIO_get_retry_reason(bio)); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 940 | } |
| 941 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 942 | break; |
| 943 | } |
| 944 | |
| 945 | case SSL_WRITING: { |
| 946 | BIO *bio = SSL_get_wbio(ssl); |
| 947 | if (BIO_should_write(bio)) { |
| 948 | return SSL_ERROR_WANT_WRITE; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 949 | } |
| 950 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 951 | if (BIO_should_read(bio)) { |
| 952 | /* TODO(davidben): OpenSSL historically checked for reads on the write |
| 953 | * BIO. Can this be removed? */ |
| 954 | return SSL_ERROR_WANT_READ; |
| 955 | } |
| 956 | |
| 957 | if (BIO_should_io_special(bio)) { |
| 958 | return bio_retry_reason_to_error(BIO_get_retry_reason(bio)); |
| 959 | } |
| 960 | |
| 961 | break; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 962 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 963 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 964 | case SSL_X509_LOOKUP: |
| 965 | return SSL_ERROR_WANT_X509_LOOKUP; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 966 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 967 | case SSL_CHANNEL_ID_LOOKUP: |
| 968 | return SSL_ERROR_WANT_CHANNEL_ID_LOOKUP; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 969 | |
David Benjamin | 287fc4f | 2016-12-10 15:12:03 -0500 | [diff] [blame] | 970 | case SSL_PRIVATE_KEY_OPERATION: |
| 971 | return SSL_ERROR_WANT_PRIVATE_KEY_OPERATION; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 972 | } |
| 973 | |
| 974 | return SSL_ERROR_SYSCALL; |
| 975 | } |
| 976 | |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 977 | static int set_min_version(const SSL_PROTOCOL_METHOD *method, uint16_t *out, |
| 978 | uint16_t version) { |
| 979 | if (version == 0) { |
| 980 | *out = method->min_version; |
| 981 | return 1; |
| 982 | } |
| 983 | |
Steven Valdez | fdd1099 | 2016-09-15 16:27:05 -0400 | [diff] [blame] | 984 | if (version == TLS1_3_VERSION) { |
| 985 | version = TLS1_3_DRAFT_VERSION; |
| 986 | } |
| 987 | |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 988 | return method->version_from_wire(out, version); |
| 989 | } |
| 990 | |
| 991 | static int set_max_version(const SSL_PROTOCOL_METHOD *method, uint16_t *out, |
| 992 | uint16_t version) { |
| 993 | if (version == 0) { |
| 994 | *out = method->max_version; |
| 995 | /* TODO(svaldez): Enable TLS 1.3 by default once fully implemented. */ |
| 996 | if (*out > TLS1_2_VERSION) { |
| 997 | *out = TLS1_2_VERSION; |
| 998 | } |
| 999 | return 1; |
| 1000 | } |
| 1001 | |
Steven Valdez | fdd1099 | 2016-09-15 16:27:05 -0400 | [diff] [blame] | 1002 | if (version == TLS1_3_VERSION) { |
| 1003 | version = TLS1_3_DRAFT_VERSION; |
| 1004 | } |
| 1005 | |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 1006 | return method->version_from_wire(out, version); |
| 1007 | } |
| 1008 | |
David Benjamin | e470690 | 2016-09-20 15:12:23 -0400 | [diff] [blame] | 1009 | int SSL_CTX_set_min_proto_version(SSL_CTX *ctx, uint16_t version) { |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 1010 | return set_min_version(ctx->method, &ctx->min_version, version); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1011 | } |
| 1012 | |
David Benjamin | e470690 | 2016-09-20 15:12:23 -0400 | [diff] [blame] | 1013 | int SSL_CTX_set_max_proto_version(SSL_CTX *ctx, uint16_t version) { |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 1014 | return set_max_version(ctx->method, &ctx->max_version, version); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1015 | } |
| 1016 | |
David Benjamin | e470690 | 2016-09-20 15:12:23 -0400 | [diff] [blame] | 1017 | int SSL_set_min_proto_version(SSL *ssl, uint16_t version) { |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 1018 | return set_min_version(ssl->method, &ssl->min_version, version); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1019 | } |
| 1020 | |
David Benjamin | e470690 | 2016-09-20 15:12:23 -0400 | [diff] [blame] | 1021 | int SSL_set_max_proto_version(SSL *ssl, uint16_t version) { |
David Benjamin | e34bcc9 | 2016-09-21 16:53:09 -0400 | [diff] [blame] | 1022 | return set_max_version(ssl->method, &ssl->max_version, version); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 1023 | } |
| 1024 | |
| 1025 | uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options) { |
| 1026 | ctx->options |= options; |
| 1027 | return ctx->options; |
| 1028 | } |
| 1029 | |
| 1030 | uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options) { |
| 1031 | ctx->options &= ~options; |
| 1032 | return ctx->options; |
| 1033 | } |
| 1034 | |
| 1035 | uint32_t SSL_CTX_get_options(const SSL_CTX *ctx) { return ctx->options; } |
| 1036 | |
| 1037 | uint32_t SSL_set_options(SSL *ssl, uint32_t options) { |
| 1038 | ssl->options |= options; |
| 1039 | return ssl->options; |
| 1040 | } |
| 1041 | |
| 1042 | uint32_t SSL_clear_options(SSL *ssl, uint32_t options) { |
| 1043 | ssl->options &= ~options; |
| 1044 | return ssl->options; |
| 1045 | } |
| 1046 | |
| 1047 | uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; } |
| 1048 | |
| 1049 | uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1050 | ctx->mode |= mode; |
| 1051 | return ctx->mode; |
| 1052 | } |
| 1053 | |
| 1054 | uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1055 | ctx->mode &= ~mode; |
| 1056 | return ctx->mode; |
| 1057 | } |
| 1058 | |
| 1059 | uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx) { return ctx->mode; } |
| 1060 | |
| 1061 | uint32_t SSL_set_mode(SSL *ssl, uint32_t mode) { |
| 1062 | ssl->mode |= mode; |
| 1063 | return ssl->mode; |
| 1064 | } |
| 1065 | |
| 1066 | uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode) { |
| 1067 | ssl->mode &= ~mode; |
| 1068 | return ssl->mode; |
| 1069 | } |
| 1070 | |
| 1071 | uint32_t SSL_get_mode(const SSL *ssl) { return ssl->mode; } |
| 1072 | |
Adam Langley | d519bf6 | 2016-12-12 11:16:44 -0800 | [diff] [blame^] | 1073 | void SSL_CTX_set0_buffer_pool(SSL_CTX *ctx, CRYPTO_BUFFER_POOL *pool) { |
| 1074 | ctx->pool = pool; |
| 1075 | } |
| 1076 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1077 | X509 *SSL_get_peer_certificate(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1078 | if (ssl == NULL) { |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1079 | return NULL; |
| 1080 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1081 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1082 | if (session == NULL || session->x509_peer == NULL) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1083 | return NULL; |
| 1084 | } |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1085 | X509_up_ref(session->x509_peer); |
| 1086 | return session->x509_peer; |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1087 | } |
| 1088 | |
| 1089 | STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1090 | if (ssl == NULL) { |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1091 | return NULL; |
| 1092 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1093 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | 364f7a6 | 2016-12-12 10:51:00 -0800 | [diff] [blame] | 1094 | if (session == NULL || |
| 1095 | session->x509_chain == NULL) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1096 | return NULL; |
| 1097 | } |
Adam Langley | 364f7a6 | 2016-12-12 10:51:00 -0800 | [diff] [blame] | 1098 | |
| 1099 | if (!ssl->server) { |
| 1100 | return session->x509_chain; |
| 1101 | } |
| 1102 | |
| 1103 | /* OpenSSL historically didn't include the leaf certificate in the returned |
| 1104 | * certificate chain, but only for servers. */ |
| 1105 | if (session->x509_chain_without_leaf == NULL) { |
| 1106 | session->x509_chain_without_leaf = sk_X509_new_null(); |
| 1107 | if (session->x509_chain_without_leaf == NULL) { |
| 1108 | return NULL; |
| 1109 | } |
| 1110 | |
| 1111 | for (size_t i = 1; i < sk_X509_num(session->x509_chain); i++) { |
| 1112 | X509 *cert = sk_X509_value(session->x509_chain, i); |
| 1113 | if (!sk_X509_push(session->x509_chain_without_leaf, cert)) { |
| 1114 | sk_X509_pop_free(session->x509_chain_without_leaf, X509_free); |
| 1115 | session->x509_chain_without_leaf = NULL; |
| 1116 | return NULL; |
| 1117 | } |
| 1118 | X509_up_ref(cert); |
| 1119 | } |
| 1120 | } |
| 1121 | |
| 1122 | return session->x509_chain_without_leaf; |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, size_t *out_len, |
| 1126 | size_t max_out) { |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1127 | /* tls-unique is not defined for SSL 3.0 or TLS 1.3. */ |
| 1128 | if (!ssl->s3->initial_handshake_complete || |
| 1129 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1130 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1131 | goto err; |
| 1132 | } |
| 1133 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1134 | /* The tls-unique value is the first Finished message in the handshake, which |
| 1135 | * is the client's in a full handshake and the server's for a resumption. See |
| 1136 | * https://tools.ietf.org/html/rfc5929#section-3.1. */ |
| 1137 | const uint8_t *finished = ssl->s3->previous_client_finished; |
| 1138 | size_t finished_len = ssl->s3->previous_client_finished_len; |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1139 | if (ssl->session != NULL) { |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1140 | /* tls-unique is broken for resumed sessions unless EMS is used. */ |
| 1141 | if (!ssl->session->extended_master_secret) { |
| 1142 | goto err; |
| 1143 | } |
| 1144 | finished = ssl->s3->previous_server_finished; |
| 1145 | finished_len = ssl->s3->previous_server_finished_len; |
| 1146 | } |
| 1147 | |
David Benjamin | ee0c827 | 2015-09-13 01:03:54 -0400 | [diff] [blame] | 1148 | *out_len = finished_len; |
| 1149 | if (finished_len > max_out) { |
| 1150 | *out_len = max_out; |
| 1151 | } |
| 1152 | |
| 1153 | memcpy(out, finished, *out_len); |
| 1154 | return 1; |
| 1155 | |
| 1156 | err: |
| 1157 | *out_len = 0; |
| 1158 | memset(out, 0, max_out); |
| 1159 | return 0; |
| 1160 | } |
| 1161 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1162 | int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const uint8_t *sid_ctx, |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1163 | size_t sid_ctx_len) { |
David Benjamin | dafbdd4 | 2015-09-14 01:40:10 -0400 | [diff] [blame] | 1164 | if (sid_ctx_len > sizeof(ctx->sid_ctx)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1165 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1166 | return 0; |
| 1167 | } |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1168 | |
| 1169 | assert(sizeof(ctx->sid_ctx) < 256); |
| 1170 | ctx->sid_ctx_length = (uint8_t)sid_ctx_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1171 | memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1172 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1173 | return 1; |
| 1174 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1175 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1176 | 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] | 1177 | size_t sid_ctx_len) { |
| 1178 | if (sid_ctx_len > sizeof(ssl->sid_ctx)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1179 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1180 | return 0; |
| 1181 | } |
David Benjamin | 30c4c30 | 2016-12-07 22:35:24 -0500 | [diff] [blame] | 1182 | |
| 1183 | assert(sizeof(ssl->sid_ctx) < 256); |
| 1184 | ssl->sid_ctx_length = (uint8_t)sid_ctx_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1185 | memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1186 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1187 | return 1; |
| 1188 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1189 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1190 | int SSL_CTX_set_purpose(SSL_CTX *ctx, int purpose) { |
| 1191 | return X509_VERIFY_PARAM_set_purpose(ctx->param, purpose); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1192 | } |
| 1193 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1194 | int SSL_set_purpose(SSL *ssl, int purpose) { |
| 1195 | return X509_VERIFY_PARAM_set_purpose(ssl->param, purpose); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1196 | } |
| 1197 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1198 | int SSL_CTX_set_trust(SSL_CTX *ctx, int trust) { |
| 1199 | return X509_VERIFY_PARAM_set_trust(ctx->param, trust); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1200 | } |
| 1201 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1202 | int SSL_set_trust(SSL *ssl, int trust) { |
| 1203 | return X509_VERIFY_PARAM_set_trust(ssl->param, trust); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1204 | } |
| 1205 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1206 | int SSL_CTX_set1_param(SSL_CTX *ctx, const X509_VERIFY_PARAM *param) { |
| 1207 | return X509_VERIFY_PARAM_set1(ctx->param, param); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1208 | } |
| 1209 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1210 | int SSL_set1_param(SSL *ssl, const X509_VERIFY_PARAM *param) { |
| 1211 | return X509_VERIFY_PARAM_set1(ssl->param, param); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1212 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1213 | |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1214 | void ssl_cipher_preference_list_free( |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1215 | struct ssl_cipher_preference_list_st *cipher_list) { |
David Benjamin | 5d1ec73 | 2015-04-22 13:38:00 -0400 | [diff] [blame] | 1216 | if (cipher_list == NULL) { |
| 1217 | return; |
| 1218 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1219 | sk_SSL_CIPHER_free(cipher_list->ciphers); |
| 1220 | OPENSSL_free(cipher_list->in_group_flags); |
| 1221 | OPENSSL_free(cipher_list); |
| 1222 | } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1223 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1224 | X509_VERIFY_PARAM *SSL_CTX_get0_param(SSL_CTX *ctx) { return ctx->param; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1225 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1226 | X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl) { return ssl->param; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1227 | |
David Benjamin | 7481d39 | 2015-07-05 19:38:46 -0400 | [diff] [blame] | 1228 | void SSL_certs_clear(SSL *ssl) { ssl_cert_clear_certs(ssl->cert); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1229 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1230 | int SSL_get_fd(const SSL *ssl) { return SSL_get_rfd(ssl); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1231 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1232 | int SSL_get_rfd(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1233 | int ret = -1; |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1234 | BIO *b = BIO_find_type(SSL_get_rbio(ssl), BIO_TYPE_DESCRIPTOR); |
| 1235 | if (b != NULL) { |
| 1236 | BIO_get_fd(b, &ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1237 | } |
| 1238 | return ret; |
| 1239 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1240 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1241 | int SSL_get_wfd(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1242 | int ret = -1; |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1243 | BIO *b = BIO_find_type(SSL_get_wbio(ssl), BIO_TYPE_DESCRIPTOR); |
| 1244 | if (b != NULL) { |
| 1245 | BIO_get_fd(b, &ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1246 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1247 | return ret; |
| 1248 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1249 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1250 | int SSL_set_fd(SSL *ssl, int fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1251 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1252 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1253 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1254 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1255 | } |
| 1256 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1257 | SSL_set_bio(ssl, bio, bio); |
| 1258 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1259 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1260 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1261 | int SSL_set_wfd(SSL *ssl, int fd) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 1262 | BIO *rbio = SSL_get_rbio(ssl); |
| 1263 | if (rbio == NULL || BIO_method_type(rbio) != BIO_TYPE_SOCKET || |
| 1264 | BIO_get_fd(rbio, NULL) != fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1265 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1266 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1267 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1268 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1269 | } |
| 1270 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1271 | SSL_set0_wbio(ssl, bio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1272 | } else { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1273 | /* Copy the rbio over to the wbio. */ |
| 1274 | BIO_up_ref(rbio); |
| 1275 | SSL_set0_wbio(ssl, rbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1276 | } |
| 1277 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1278 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1279 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1280 | |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1281 | int SSL_set_rfd(SSL *ssl, int fd) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 1282 | BIO *wbio = SSL_get_wbio(ssl); |
| 1283 | if (wbio == NULL || BIO_method_type(wbio) != BIO_TYPE_SOCKET || |
| 1284 | BIO_get_fd(wbio, NULL) != fd) { |
David Benjamin | 22ce9b2 | 2016-03-06 19:26:52 -0500 | [diff] [blame] | 1285 | BIO *bio = BIO_new(BIO_s_socket()); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1286 | if (bio == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1287 | OPENSSL_PUT_ERROR(SSL, ERR_R_BUF_LIB); |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1288 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1289 | } |
| 1290 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1291 | SSL_set0_rbio(ssl, bio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1292 | } else { |
David Benjamin | 4501bd5 | 2016-08-01 13:39:41 -0400 | [diff] [blame] | 1293 | /* Copy the wbio over to the rbio. */ |
| 1294 | BIO_up_ref(wbio); |
| 1295 | SSL_set0_rbio(ssl, wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1296 | } |
David Benjamin | 066fe0a | 2015-10-17 21:11:33 -0400 | [diff] [blame] | 1297 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1298 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1299 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1300 | static size_t copy_finished(void *out, size_t out_len, const uint8_t *in, |
| 1301 | size_t in_len) { |
| 1302 | if (out_len > in_len) { |
| 1303 | out_len = in_len; |
| 1304 | } |
| 1305 | memcpy(out, in, out_len); |
| 1306 | return in_len; |
| 1307 | } |
| 1308 | |
David Benjamin | 1a1b34d | 2015-10-17 12:51:52 -0400 | [diff] [blame] | 1309 | 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] | 1310 | if (!ssl->s3->initial_handshake_complete || |
| 1311 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1312 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1313 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1314 | } |
| 1315 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1316 | if (ssl->server) { |
| 1317 | return copy_finished(buf, count, ssl->s3->previous_server_finished, |
| 1318 | ssl->s3->previous_server_finished_len); |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1319 | } |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1320 | |
| 1321 | return copy_finished(buf, count, ssl->s3->previous_client_finished, |
| 1322 | ssl->s3->previous_client_finished_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1323 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1324 | |
David Benjamin | 1a1b34d | 2015-10-17 12:51:52 -0400 | [diff] [blame] | 1325 | 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] | 1326 | if (!ssl->s3->initial_handshake_complete || |
| 1327 | ssl3_protocol_version(ssl) < TLS1_VERSION || |
| 1328 | ssl3_protocol_version(ssl) >= TLS1_3_VERSION) { |
| 1329 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1330 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1331 | |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1332 | if (ssl->server) { |
| 1333 | return copy_finished(buf, count, ssl->s3->previous_client_finished, |
| 1334 | ssl->s3->previous_client_finished_len); |
David Benjamin | ced00b4 | 2016-10-08 11:24:09 -0400 | [diff] [blame] | 1335 | } |
David Benjamin | 49ddf41 | 2016-10-08 11:56:01 -0400 | [diff] [blame] | 1336 | |
| 1337 | return copy_finished(buf, count, ssl->s3->previous_server_finished, |
| 1338 | ssl->s3->previous_server_finished_len); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1339 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1340 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1341 | int SSL_get_verify_mode(const SSL *ssl) { return ssl->verify_mode; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1342 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1343 | int SSL_get_verify_depth(const SSL *ssl) { |
| 1344 | return X509_VERIFY_PARAM_get_depth(ssl->param); |
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 | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 1347 | int SSL_get_extms_support(const SSL *ssl) { |
David Benjamin | a68c118 | 2016-07-24 00:14:33 -0400 | [diff] [blame] | 1348 | if (!ssl->s3->have_version) { |
| 1349 | return 0; |
| 1350 | } |
Steven Valdez | 143e8b3 | 2016-07-11 13:19:03 -0400 | [diff] [blame] | 1351 | return ssl3_protocol_version(ssl) >= TLS1_3_VERSION || |
| 1352 | ssl->s3->tmp.extended_master_secret == 1; |
Matt Braithwaite | cd6f54b | 2015-09-17 12:54:42 -0700 | [diff] [blame] | 1353 | } |
| 1354 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1355 | int (*SSL_get_verify_callback(const SSL *ssl))(int, X509_STORE_CTX *) { |
| 1356 | return ssl->verify_callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1357 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1358 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1359 | int SSL_CTX_get_verify_mode(const SSL_CTX *ctx) { return ctx->verify_mode; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1360 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1361 | int SSL_CTX_get_verify_depth(const SSL_CTX *ctx) { |
| 1362 | return X509_VERIFY_PARAM_get_depth(ctx->param); |
| 1363 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1364 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1365 | int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))( |
| 1366 | int ok, X509_STORE_CTX *store_ctx) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1367 | return ctx->default_verify_callback; |
| 1368 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1369 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1370 | void SSL_set_verify(SSL *ssl, int mode, |
| 1371 | int (*callback)(int ok, X509_STORE_CTX *store_ctx)) { |
| 1372 | ssl->verify_mode = mode; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1373 | if (callback != NULL) { |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1374 | ssl->verify_callback = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1375 | } |
| 1376 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1377 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 1378 | void SSL_set_verify_depth(SSL *ssl, int depth) { |
| 1379 | X509_VERIFY_PARAM_set_depth(ssl->param, depth); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1380 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1381 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 1382 | int SSL_CTX_get_read_ahead(const SSL_CTX *ctx) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1383 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 1384 | int SSL_get_read_ahead(const SSL *ssl) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1385 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 1386 | void SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 1387 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 1388 | void SSL_set_read_ahead(SSL *ssl, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 1389 | |
David Benjamin | 9f85949 | 2015-10-03 10:44:30 -0400 | [diff] [blame] | 1390 | int SSL_pending(const SSL *ssl) { |
| 1391 | if (ssl->s3->rrec.type != SSL3_RT_APPLICATION_DATA) { |
| 1392 | return 0; |
| 1393 | } |
| 1394 | return ssl->s3->rrec.length; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1395 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1396 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1397 | /* Fix this so it checks all the valid key/cert options */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1398 | int SSL_CTX_check_private_key(const SSL_CTX *ctx) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 1399 | if (ctx->cert->privatekey == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1400 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1401 | return 0; |
| 1402 | } |
| 1403 | |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1404 | X509 *x509 = ctx->cert->x509_leaf; |
| 1405 | if (x509 == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1406 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CERTIFICATE_ASSIGNED); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1407 | return 0; |
| 1408 | } |
David Benjamin | 0b145c2 | 2014-11-26 20:10:09 -0500 | [diff] [blame] | 1409 | |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1410 | return X509_check_private_key(x509, ctx->cert->privatekey); |
| 1411 | } |
| 1412 | |
| 1413 | /* Fix this function so that it takes an optional type parameter */ |
| 1414 | int SSL_check_private_key(const SSL *ssl) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 1415 | if (ssl->cert->privatekey == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1416 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_PRIVATE_KEY_ASSIGNED); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1417 | return 0; |
| 1418 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1419 | |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 1420 | X509 *x509 = ssl->cert->x509_leaf; |
| 1421 | if (x509 == NULL) { |
| 1422 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CERTIFICATE_ASSIGNED); |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
| 1426 | return X509_check_private_key(x509, ssl->cert->privatekey); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1427 | } |
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 | long SSL_get_default_timeout(const SSL *ssl) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1430 | return SSL_DEFAULT_SESSION_TIMEOUT; |
| 1431 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1432 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1433 | int SSL_renegotiate(SSL *ssl) { |
| 1434 | /* Caller-initiated renegotiation is not supported. */ |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1435 | OPENSSL_PUT_ERROR(SSL, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1436 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1437 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1438 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 1439 | int SSL_renegotiate_pending(SSL *ssl) { |
| 1440 | return SSL_in_init(ssl) && ssl->s3->initial_handshake_complete; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1441 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1442 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1443 | int SSL_total_renegotiations(const SSL *ssl) { |
| 1444 | return ssl->s3->total_renegotiations; |
| 1445 | } |
| 1446 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1447 | size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx) { |
| 1448 | return ctx->max_cert_list; |
| 1449 | } |
| 1450 | |
| 1451 | void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, size_t max_cert_list) { |
| 1452 | if (max_cert_list > kMaxHandshakeSize) { |
| 1453 | max_cert_list = kMaxHandshakeSize; |
| 1454 | } |
| 1455 | ctx->max_cert_list = (uint32_t)max_cert_list; |
| 1456 | } |
| 1457 | |
| 1458 | size_t SSL_get_max_cert_list(const SSL *ssl) { |
| 1459 | return ssl->max_cert_list; |
| 1460 | } |
| 1461 | |
| 1462 | void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list) { |
| 1463 | if (max_cert_list > kMaxHandshakeSize) { |
| 1464 | max_cert_list = kMaxHandshakeSize; |
| 1465 | } |
| 1466 | ssl->max_cert_list = (uint32_t)max_cert_list; |
| 1467 | } |
| 1468 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1469 | 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] | 1470 | if (max_send_fragment < 512) { |
| 1471 | max_send_fragment = 512; |
| 1472 | } |
| 1473 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1474 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1475 | } |
| 1476 | ctx->max_send_fragment = (uint16_t)max_send_fragment; |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1477 | |
| 1478 | return 1; |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1479 | } |
| 1480 | |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1481 | 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] | 1482 | if (max_send_fragment < 512) { |
| 1483 | max_send_fragment = 512; |
| 1484 | } |
| 1485 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1486 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1487 | } |
| 1488 | ssl->max_send_fragment = (uint16_t)max_send_fragment; |
Adam Langley | ce9d85e | 2016-01-24 15:58:39 -0800 | [diff] [blame] | 1489 | |
| 1490 | return 1; |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1491 | } |
| 1492 | |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1493 | int SSL_set_mtu(SSL *ssl, unsigned mtu) { |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 1494 | if (!SSL_is_dtls(ssl) || mtu < dtls1_min_mtu()) { |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1495 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1496 | } |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1497 | ssl->d1->mtu = mtu; |
| 1498 | return 1; |
| 1499 | } |
| 1500 | |
| 1501 | int SSL_get_secure_renegotiation_support(const SSL *ssl) { |
| 1502 | return ssl->s3->send_connection_binding; |
| 1503 | } |
| 1504 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1505 | LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx) { return ctx->sessions; } |
| 1506 | |
David Benjamin | 71f7d3d | 2015-05-05 09:46:38 -0400 | [diff] [blame] | 1507 | size_t SSL_CTX_sess_number(const SSL_CTX *ctx) { |
| 1508 | return lh_SSL_SESSION_num_items(ctx->sessions); |
| 1509 | } |
| 1510 | |
| 1511 | unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, unsigned long size) { |
| 1512 | unsigned long ret = ctx->session_cache_size; |
| 1513 | ctx->session_cache_size = size; |
| 1514 | return ret; |
| 1515 | } |
| 1516 | |
| 1517 | unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx) { |
| 1518 | return ctx->session_cache_size; |
| 1519 | } |
| 1520 | |
| 1521 | int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode) { |
| 1522 | int ret = ctx->session_cache_mode; |
| 1523 | ctx->session_cache_mode = mode; |
| 1524 | return ret; |
| 1525 | } |
| 1526 | |
| 1527 | int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx) { |
| 1528 | return ctx->session_cache_mode; |
| 1529 | } |
| 1530 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1531 | |
| 1532 | int SSL_CTX_get_tlsext_ticket_keys(SSL_CTX *ctx, void *out, size_t len) { |
| 1533 | if (out == NULL) { |
| 1534 | return 48; |
| 1535 | } |
| 1536 | if (len != 48) { |
| 1537 | OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH); |
| 1538 | return 0; |
| 1539 | } |
| 1540 | uint8_t *out_bytes = out; |
| 1541 | memcpy(out_bytes, ctx->tlsext_tick_key_name, 16); |
| 1542 | memcpy(out_bytes + 16, ctx->tlsext_tick_hmac_key, 16); |
| 1543 | memcpy(out_bytes + 32, ctx->tlsext_tick_aes_key, 16); |
| 1544 | return 1; |
| 1545 | } |
| 1546 | |
| 1547 | int SSL_CTX_set_tlsext_ticket_keys(SSL_CTX *ctx, const void *in, size_t len) { |
| 1548 | if (in == NULL) { |
| 1549 | return 48; |
| 1550 | } |
| 1551 | if (len != 48) { |
| 1552 | OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_TICKET_KEYS_LENGTH); |
| 1553 | return 0; |
| 1554 | } |
| 1555 | const uint8_t *in_bytes = in; |
| 1556 | memcpy(ctx->tlsext_tick_key_name, in_bytes, 16); |
| 1557 | memcpy(ctx->tlsext_tick_hmac_key, in_bytes + 16, 16); |
| 1558 | memcpy(ctx->tlsext_tick_aes_key, in_bytes + 32, 16); |
| 1559 | return 1; |
| 1560 | } |
| 1561 | |
| 1562 | int SSL_CTX_set_tlsext_ticket_key_cb( |
| 1563 | SSL_CTX *ctx, int (*callback)(SSL *ssl, uint8_t *key_name, uint8_t *iv, |
| 1564 | EVP_CIPHER_CTX *ctx, HMAC_CTX *hmac_ctx, |
| 1565 | int encrypt)) { |
| 1566 | ctx->tlsext_ticket_key_cb = callback; |
| 1567 | return 1; |
| 1568 | } |
| 1569 | |
| 1570 | int SSL_CTX_set1_curves(SSL_CTX *ctx, const int *curves, size_t curves_len) { |
| 1571 | return tls1_set_curves(&ctx->supported_group_list, |
| 1572 | &ctx->supported_group_list_len, curves, |
| 1573 | curves_len); |
| 1574 | } |
| 1575 | |
| 1576 | int SSL_set1_curves(SSL *ssl, const int *curves, size_t curves_len) { |
| 1577 | return tls1_set_curves(&ssl->supported_group_list, |
| 1578 | &ssl->supported_group_list_len, curves, |
| 1579 | curves_len); |
| 1580 | } |
| 1581 | |
Alessandro Ghedini | 5fd1807 | 2016-09-28 21:04:25 +0100 | [diff] [blame] | 1582 | int SSL_CTX_set1_curves_list(SSL_CTX *ctx, const char *curves) { |
| 1583 | return tls1_set_curves_list(&ctx->supported_group_list, |
| 1584 | &ctx->supported_group_list_len, curves); |
| 1585 | } |
| 1586 | |
| 1587 | int SSL_set1_curves_list(SSL *ssl, const char *curves) { |
| 1588 | return tls1_set_curves_list(&ssl->supported_group_list, |
| 1589 | &ssl->supported_group_list_len, curves); |
| 1590 | } |
| 1591 | |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1592 | uint16_t SSL_get_curve_id(const SSL *ssl) { |
| 1593 | /* TODO(davidben): This checks the wrong session if there is a renegotiation in |
| 1594 | * progress. */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1595 | SSL_SESSION *session = SSL_get_session(ssl); |
| 1596 | if (session == NULL || |
| 1597 | session->cipher == NULL || |
Steven Valdez | 803c77a | 2016-09-06 14:13:43 -0400 | [diff] [blame] | 1598 | (ssl3_protocol_version(ssl) < TLS1_3_VERSION && |
| 1599 | !SSL_CIPHER_is_ECDHE(session->cipher))) { |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1600 | return 0; |
| 1601 | } |
| 1602 | |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1603 | return (uint16_t)session->key_exchange_info; |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 1604 | } |
| 1605 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1606 | int SSL_CTX_set_tmp_dh(SSL_CTX *ctx, const DH *dh) { |
| 1607 | DH_free(ctx->cert->dh_tmp); |
| 1608 | ctx->cert->dh_tmp = DHparams_dup(dh); |
| 1609 | if (ctx->cert->dh_tmp == NULL) { |
| 1610 | OPENSSL_PUT_ERROR(SSL, ERR_R_DH_LIB); |
| 1611 | return 0; |
| 1612 | } |
| 1613 | return 1; |
| 1614 | } |
| 1615 | |
| 1616 | int SSL_set_tmp_dh(SSL *ssl, const DH *dh) { |
| 1617 | DH_free(ssl->cert->dh_tmp); |
| 1618 | ssl->cert->dh_tmp = DHparams_dup(dh); |
| 1619 | if (ssl->cert->dh_tmp == NULL) { |
| 1620 | OPENSSL_PUT_ERROR(SSL, ERR_R_DH_LIB); |
| 1621 | return 0; |
| 1622 | } |
| 1623 | return 1; |
| 1624 | } |
| 1625 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1626 | STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *ssl) { |
| 1627 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1628 | return NULL; |
| 1629 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1630 | |
David Benjamin | af3b3d3 | 2016-10-31 16:29:57 -0400 | [diff] [blame] | 1631 | const struct ssl_cipher_preference_list_st *prefs = |
| 1632 | ssl_get_cipher_preferences(ssl); |
| 1633 | if (prefs == NULL) { |
| 1634 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1635 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1636 | |
David Benjamin | af3b3d3 | 2016-10-31 16:29:57 -0400 | [diff] [blame] | 1637 | return prefs->ciphers; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1638 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1639 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1640 | const char *SSL_get_cipher_list(const SSL *ssl, int n) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1641 | const SSL_CIPHER *c; |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 1642 | STACK_OF(SSL_CIPHER) *sk; |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1643 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1644 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1645 | return NULL; |
| 1646 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1647 | |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1648 | sk = SSL_get_ciphers(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1649 | if (sk == NULL || n < 0 || (size_t)n >= sk_SSL_CIPHER_num(sk)) { |
| 1650 | return NULL; |
| 1651 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1652 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1653 | c = sk_SSL_CIPHER_value(sk, n); |
| 1654 | if (c == NULL) { |
| 1655 | return NULL; |
| 1656 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1657 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1658 | return c->name; |
| 1659 | } |
David Benjamin | 5491e3f | 2014-09-29 19:33:09 -0400 | [diff] [blame] | 1660 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1661 | int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) { |
David Benjamin | d2cb1c1 | 2016-11-02 17:49:09 -0400 | [diff] [blame] | 1662 | STACK_OF(SSL_CIPHER) *cipher_list = |
| 1663 | ssl_create_cipher_list(ctx->method, &ctx->cipher_list, str); |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1664 | if (cipher_list == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1665 | return 0; |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | /* |ssl_create_cipher_list| may succeed but return an empty cipher list. */ |
| 1669 | if (sk_SSL_CIPHER_num(cipher_list) == 0) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1670 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CIPHER_MATCH); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1671 | return 0; |
| 1672 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1673 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1674 | return 1; |
| 1675 | } |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1676 | |
Adam Langley | cef7583 | 2015-09-03 14:51:12 -0700 | [diff] [blame] | 1677 | int SSL_CTX_set_cipher_list_tls10(SSL_CTX *ctx, const char *str) { |
David Benjamin | d2cb1c1 | 2016-11-02 17:49:09 -0400 | [diff] [blame] | 1678 | STACK_OF(SSL_CIPHER) *cipher_list = |
| 1679 | ssl_create_cipher_list(ctx->method, &ctx->cipher_list_tls10, str); |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1680 | if (cipher_list == NULL) { |
Adam Langley | cef7583 | 2015-09-03 14:51:12 -0700 | [diff] [blame] | 1681 | return 0; |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1682 | } |
| 1683 | |
| 1684 | /* |ssl_create_cipher_list| may succeed but return an empty cipher list. */ |
| 1685 | if (sk_SSL_CIPHER_num(cipher_list) == 0) { |
Adam Langley | cef7583 | 2015-09-03 14:51:12 -0700 | [diff] [blame] | 1686 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CIPHER_MATCH); |
| 1687 | return 0; |
| 1688 | } |
| 1689 | |
| 1690 | return 1; |
| 1691 | } |
| 1692 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1693 | int SSL_CTX_set_cipher_list_tls11(SSL_CTX *ctx, const char *str) { |
David Benjamin | d2cb1c1 | 2016-11-02 17:49:09 -0400 | [diff] [blame] | 1694 | STACK_OF(SSL_CIPHER) *cipher_list = |
| 1695 | ssl_create_cipher_list(ctx->method, &ctx->cipher_list_tls11, str); |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1696 | if (cipher_list == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1697 | return 0; |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1698 | } |
| 1699 | |
| 1700 | /* |ssl_create_cipher_list| may succeed but return an empty cipher list. */ |
| 1701 | if (sk_SSL_CIPHER_num(cipher_list) == 0) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1702 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CIPHER_MATCH); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1703 | return 0; |
| 1704 | } |
David Benjamin | 9f2c0d7 | 2014-10-21 22:00:19 -0400 | [diff] [blame] | 1705 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1706 | return 1; |
| 1707 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [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) { |
David Benjamin | d2cb1c1 | 2016-11-02 17:49:09 -0400 | [diff] [blame] | 1710 | STACK_OF(SSL_CIPHER) *cipher_list = |
| 1711 | ssl_create_cipher_list(ssl->ctx->method, &ssl->cipher_list, str); |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1712 | if (cipher_list == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1713 | return 0; |
David Benjamin | 32876b3 | 2015-09-20 12:17:03 -0400 | [diff] [blame] | 1714 | } |
| 1715 | |
| 1716 | /* |ssl_create_cipher_list| may succeed but return an empty cipher list. */ |
| 1717 | if (sk_SSL_CIPHER_num(cipher_list) == 0) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1718 | OPENSSL_PUT_ERROR(SSL, SSL_R_NO_CIPHER_MATCH); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1719 | return 0; |
| 1720 | } |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1721 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1722 | return 1; |
| 1723 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1724 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1725 | const char *SSL_get_servername(const SSL *ssl, const int type) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1726 | if (type != TLSEXT_NAMETYPE_host_name) { |
| 1727 | return NULL; |
| 1728 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1729 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1730 | /* Historically, |SSL_get_servername| was also the configuration getter |
| 1731 | * corresponding to |SSL_set_tlsext_host_name|. */ |
| 1732 | if (ssl->tlsext_hostname != NULL) { |
| 1733 | return ssl->tlsext_hostname; |
| 1734 | } |
| 1735 | |
David Benjamin | 4eb95cc | 2016-11-16 17:08:23 +0900 | [diff] [blame] | 1736 | /* During the handshake, report the handshake value. */ |
| 1737 | if (ssl->s3->hs != NULL) { |
| 1738 | return ssl->s3->hs->hostname; |
| 1739 | } |
| 1740 | |
| 1741 | /* SSL_get_servername may also be called after the handshake to look up the |
| 1742 | * SNI value. |
| 1743 | * |
| 1744 | * TODO(davidben): This is almost unused. Can we remove it? */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1745 | SSL_SESSION *session = SSL_get_session(ssl); |
| 1746 | if (session == NULL) { |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1747 | return NULL; |
| 1748 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1749 | return session->tlsext_hostname; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1750 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1751 | |
David Benjamin | 07e1384 | 2015-10-17 13:48:04 -0400 | [diff] [blame] | 1752 | int SSL_get_servername_type(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1753 | SSL_SESSION *session = SSL_get_session(ssl); |
| 1754 | if (session == NULL || session->tlsext_hostname == NULL) { |
| 1755 | return -1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1756 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1757 | return TLSEXT_NAMETYPE_host_name; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1758 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1759 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1760 | void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx) { |
| 1761 | ctx->signed_cert_timestamps_enabled = 1; |
| 1762 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1763 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1764 | int SSL_enable_signed_cert_timestamps(SSL *ssl) { |
| 1765 | ssl->signed_cert_timestamps_enabled = 1; |
| 1766 | return 1; |
| 1767 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1768 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1769 | void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx) { |
| 1770 | ctx->ocsp_stapling_enabled = 1; |
| 1771 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1772 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1773 | int SSL_enable_ocsp_stapling(SSL *ssl) { |
| 1774 | ssl->ocsp_stapling_enabled = 1; |
| 1775 | return 1; |
| 1776 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1777 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1778 | void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, const uint8_t **out, |
| 1779 | size_t *out_len) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1780 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | 3cb50e0 | 2014-08-26 14:00:31 -0700 | [diff] [blame] | 1781 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1782 | *out_len = 0; |
| 1783 | *out = NULL; |
| 1784 | if (ssl->server || !session || !session->tlsext_signed_cert_timestamp_list) { |
| 1785 | return; |
| 1786 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1787 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1788 | *out = session->tlsext_signed_cert_timestamp_list; |
| 1789 | *out_len = session->tlsext_signed_cert_timestamp_list_length; |
| 1790 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1791 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1792 | void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out, |
| 1793 | size_t *out_len) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 1794 | SSL_SESSION *session = SSL_get_session(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1795 | |
| 1796 | *out_len = 0; |
| 1797 | *out = NULL; |
| 1798 | if (ssl->server || !session || !session->ocsp_response) { |
| 1799 | return; |
| 1800 | } |
| 1801 | *out = session->ocsp_response; |
| 1802 | *out_len = session->ocsp_response_length; |
| 1803 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1804 | |
Paul Lietar | 4fac72e | 2015-09-09 13:44:55 +0100 | [diff] [blame] | 1805 | int SSL_CTX_set_signed_cert_timestamp_list(SSL_CTX *ctx, const uint8_t *list, |
| 1806 | size_t list_len) { |
Adam Langley | 9b885c5 | 2016-11-18 14:21:03 -0800 | [diff] [blame] | 1807 | CBS sct_list; |
| 1808 | CBS_init(&sct_list, list, list_len); |
| 1809 | if (!ssl_is_sct_list_valid(&sct_list)) { |
| 1810 | OPENSSL_PUT_ERROR(SSL, SSL_R_INVALID_SCT_LIST); |
Paul Lietar | 4fac72e | 2015-09-09 13:44:55 +0100 | [diff] [blame] | 1811 | return 0; |
| 1812 | } |
Paul Lietar | 4fac72e | 2015-09-09 13:44:55 +0100 | [diff] [blame] | 1813 | |
Adam Langley | 9b885c5 | 2016-11-18 14:21:03 -0800 | [diff] [blame] | 1814 | return CBS_stow(&sct_list, &ctx->signed_cert_timestamp_list, |
| 1815 | &ctx->signed_cert_timestamp_list_length); |
Paul Lietar | 4fac72e | 2015-09-09 13:44:55 +0100 | [diff] [blame] | 1816 | } |
| 1817 | |
Paul Lietar | aeeff2c | 2015-08-12 11:47:11 +0100 | [diff] [blame] | 1818 | int SSL_CTX_set_ocsp_response(SSL_CTX *ctx, const uint8_t *response, |
| 1819 | size_t response_len) { |
Alessandro Ghedini | 559f064 | 2016-12-07 12:55:32 +0000 | [diff] [blame] | 1820 | CRYPTO_BUFFER_free(ctx->ocsp_response); |
| 1821 | ctx->ocsp_response = CRYPTO_BUFFER_new(response, response_len, NULL); |
| 1822 | return ctx->ocsp_response != NULL; |
| 1823 | } |
Paul Lietar | aeeff2c | 2015-08-12 11:47:11 +0100 | [diff] [blame] | 1824 | |
Alessandro Ghedini | 559f064 | 2016-12-07 12:55:32 +0000 | [diff] [blame] | 1825 | int SSL_set_ocsp_response(SSL *ssl, const uint8_t *response, |
| 1826 | size_t response_len) { |
| 1827 | CRYPTO_BUFFER_free(ssl->ocsp_response); |
| 1828 | ssl->ocsp_response = CRYPTO_BUFFER_new(response, response_len, NULL); |
| 1829 | return ssl->ocsp_response != NULL; |
Paul Lietar | aeeff2c | 2015-08-12 11:47:11 +0100 | [diff] [blame] | 1830 | } |
| 1831 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1832 | int SSL_set_tlsext_host_name(SSL *ssl, const char *name) { |
| 1833 | OPENSSL_free(ssl->tlsext_hostname); |
| 1834 | ssl->tlsext_hostname = NULL; |
| 1835 | |
| 1836 | if (name == NULL) { |
| 1837 | return 1; |
| 1838 | } |
| 1839 | |
| 1840 | size_t len = strlen(name); |
| 1841 | if (len == 0 || len > TLSEXT_MAXLEN_host_name) { |
| 1842 | OPENSSL_PUT_ERROR(SSL, SSL_R_SSL3_EXT_INVALID_SERVERNAME); |
| 1843 | return 0; |
| 1844 | } |
| 1845 | ssl->tlsext_hostname = BUF_strdup(name); |
| 1846 | if (ssl->tlsext_hostname == NULL) { |
| 1847 | OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE); |
| 1848 | return 0; |
| 1849 | } |
| 1850 | return 1; |
| 1851 | } |
| 1852 | |
| 1853 | int SSL_CTX_set_tlsext_servername_callback( |
| 1854 | SSL_CTX *ctx, int (*callback)(SSL *ssl, int *out_alert, void *arg)) { |
| 1855 | ctx->tlsext_servername_callback = callback; |
| 1856 | return 1; |
| 1857 | } |
| 1858 | |
| 1859 | int SSL_CTX_set_tlsext_servername_arg(SSL_CTX *ctx, void *arg) { |
| 1860 | ctx->tlsext_servername_arg = arg; |
| 1861 | return 1; |
| 1862 | } |
| 1863 | |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1864 | int SSL_select_next_proto(uint8_t **out, uint8_t *out_len, |
| 1865 | const uint8_t *server, unsigned server_len, |
| 1866 | const uint8_t *client, unsigned client_len) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1867 | unsigned int i, j; |
| 1868 | const uint8_t *result; |
| 1869 | int status = OPENSSL_NPN_UNSUPPORTED; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1870 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1871 | /* For each protocol in server preference order, see if we support it. */ |
| 1872 | for (i = 0; i < server_len;) { |
| 1873 | for (j = 0; j < client_len;) { |
| 1874 | if (server[i] == client[j] && |
| 1875 | memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) { |
| 1876 | /* We found a match */ |
| 1877 | result = &server[i]; |
| 1878 | status = OPENSSL_NPN_NEGOTIATED; |
| 1879 | goto found; |
| 1880 | } |
| 1881 | j += client[j]; |
| 1882 | j++; |
| 1883 | } |
| 1884 | i += server[i]; |
| 1885 | i++; |
| 1886 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1887 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1888 | /* There's no overlap between our protocols and the server's list. */ |
| 1889 | result = client; |
| 1890 | status = OPENSSL_NPN_NO_OVERLAP; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1891 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1892 | found: |
| 1893 | *out = (uint8_t *)result + 1; |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1894 | *out_len = result[0]; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1895 | return status; |
| 1896 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1897 | |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1898 | void SSL_get0_next_proto_negotiated(const SSL *ssl, const uint8_t **out_data, |
| 1899 | unsigned *out_len) { |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 1900 | *out_data = ssl->s3->next_proto_negotiated; |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1901 | if (*out_data == NULL) { |
| 1902 | *out_len = 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1903 | } else { |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 1904 | *out_len = ssl->s3->next_proto_negotiated_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1905 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1906 | } |
| 1907 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1908 | void SSL_CTX_set_next_protos_advertised_cb( |
| 1909 | SSL_CTX *ctx, |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1910 | 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] | 1911 | void *arg) { |
| 1912 | ctx->next_protos_advertised_cb = cb; |
| 1913 | ctx->next_protos_advertised_cb_arg = arg; |
| 1914 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1915 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1916 | void SSL_CTX_set_next_proto_select_cb( |
David Benjamin | 977547b | 2015-09-16 00:25:52 -0400 | [diff] [blame] | 1917 | SSL_CTX *ctx, int (*cb)(SSL *ssl, uint8_t **out, uint8_t *out_len, |
| 1918 | const uint8_t *in, unsigned in_len, void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1919 | void *arg) { |
| 1920 | ctx->next_proto_select_cb = cb; |
| 1921 | ctx->next_proto_select_cb_arg = arg; |
| 1922 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1923 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1924 | int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos, |
| 1925 | unsigned protos_len) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1926 | OPENSSL_free(ctx->alpn_client_proto_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1927 | ctx->alpn_client_proto_list = BUF_memdup(protos, protos_len); |
| 1928 | if (!ctx->alpn_client_proto_list) { |
| 1929 | return 1; |
| 1930 | } |
| 1931 | ctx->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1932 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1933 | return 0; |
| 1934 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1935 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1936 | 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] | 1937 | OPENSSL_free(ssl->alpn_client_proto_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1938 | ssl->alpn_client_proto_list = BUF_memdup(protos, protos_len); |
| 1939 | if (!ssl->alpn_client_proto_list) { |
| 1940 | return 1; |
| 1941 | } |
| 1942 | ssl->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1943 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1944 | return 0; |
| 1945 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1946 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1947 | void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx, |
| 1948 | int (*cb)(SSL *ssl, const uint8_t **out, |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1949 | uint8_t *out_len, const uint8_t *in, |
| 1950 | unsigned in_len, void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1951 | void *arg) { |
| 1952 | ctx->alpn_select_cb = cb; |
| 1953 | ctx->alpn_select_cb_arg = arg; |
| 1954 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1955 | |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1956 | void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **out_data, |
| 1957 | unsigned *out_len) { |
| 1958 | *out_data = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1959 | if (ssl->s3) { |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1960 | *out_data = ssl->s3->alpn_selected; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1961 | } |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1962 | if (*out_data == NULL) { |
| 1963 | *out_len = 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1964 | } else { |
David Benjamin | 8984f1f | 2015-09-16 00:10:19 -0400 | [diff] [blame] | 1965 | *out_len = ssl->s3->alpn_selected_len; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1966 | } |
| 1967 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1968 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1969 | |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1970 | void SSL_CTX_set_tls_channel_id_enabled(SSL_CTX *ctx, int enabled) { |
| 1971 | ctx->tlsext_channel_id_enabled = !!enabled; |
| 1972 | } |
| 1973 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1974 | int SSL_CTX_enable_tls_channel_id(SSL_CTX *ctx) { |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1975 | SSL_CTX_set_tls_channel_id_enabled(ctx, 1); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1976 | return 1; |
| 1977 | } |
| 1978 | |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1979 | void SSL_set_tls_channel_id_enabled(SSL *ssl, int enabled) { |
| 1980 | ssl->tlsext_channel_id_enabled = !!enabled; |
| 1981 | } |
| 1982 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1983 | int SSL_enable_tls_channel_id(SSL *ssl) { |
David Benjamin | eebd3c8 | 2016-12-06 17:43:58 -0500 | [diff] [blame] | 1984 | SSL_set_tls_channel_id_enabled(ssl, 1); |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 1985 | return 1; |
| 1986 | } |
| 1987 | |
| 1988 | static int is_p256_key(EVP_PKEY *private_key) { |
| 1989 | const EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(private_key); |
| 1990 | return ec_key != NULL && |
| 1991 | EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)) == |
| 1992 | NID_X9_62_prime256v1; |
| 1993 | } |
| 1994 | |
| 1995 | int SSL_CTX_set1_tls_channel_id(SSL_CTX *ctx, EVP_PKEY *private_key) { |
| 1996 | if (!is_p256_key(private_key)) { |
| 1997 | OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256); |
| 1998 | return 0; |
| 1999 | } |
| 2000 | |
| 2001 | EVP_PKEY_free(ctx->tlsext_channel_id_private); |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 2002 | EVP_PKEY_up_ref(private_key); |
| 2003 | ctx->tlsext_channel_id_private = private_key; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2004 | ctx->tlsext_channel_id_enabled = 1; |
| 2005 | |
| 2006 | return 1; |
| 2007 | } |
| 2008 | |
| 2009 | int SSL_set1_tls_channel_id(SSL *ssl, EVP_PKEY *private_key) { |
| 2010 | if (!is_p256_key(private_key)) { |
| 2011 | OPENSSL_PUT_ERROR(SSL, SSL_R_CHANNEL_ID_NOT_P256); |
| 2012 | return 0; |
| 2013 | } |
| 2014 | |
| 2015 | EVP_PKEY_free(ssl->tlsext_channel_id_private); |
Adam Langley | 310d3f6 | 2016-07-12 10:39:20 -0700 | [diff] [blame] | 2016 | EVP_PKEY_up_ref(private_key); |
| 2017 | ssl->tlsext_channel_id_private = private_key; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2018 | ssl->tlsext_channel_id_enabled = 1; |
| 2019 | |
| 2020 | return 1; |
| 2021 | } |
| 2022 | |
| 2023 | size_t SSL_get_tls_channel_id(SSL *ssl, uint8_t *out, size_t max_out) { |
| 2024 | if (!ssl->s3->tlsext_channel_id_valid) { |
| 2025 | return 0; |
| 2026 | } |
| 2027 | memcpy(out, ssl->s3->tlsext_channel_id, (max_out < 64) ? max_out : 64); |
| 2028 | return 64; |
| 2029 | } |
| 2030 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2031 | void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 2032 | int (*cb)(X509_STORE_CTX *store_ctx, |
| 2033 | void *arg), |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2034 | void *arg) { |
| 2035 | ctx->app_verify_callback = cb; |
| 2036 | ctx->app_verify_arg = arg; |
| 2037 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2038 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2039 | void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, |
| 2040 | int (*cb)(int, X509_STORE_CTX *)) { |
| 2041 | ctx->verify_mode = mode; |
| 2042 | ctx->default_verify_callback = cb; |
| 2043 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2044 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2045 | void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth) { |
| 2046 | X509_VERIFY_PARAM_set_depth(ctx->param, depth); |
| 2047 | } |
Adam Langley | 1258b6a | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2048 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2049 | 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] | 2050 | if (ssl->server || ssl->s3->hs == NULL) { |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2051 | *out_types = NULL; |
| 2052 | return 0; |
| 2053 | } |
David Benjamin | a048678 | 2016-10-06 19:11:32 -0400 | [diff] [blame] | 2054 | *out_types = ssl->s3->hs->certificate_types; |
| 2055 | return ssl->s3->hs->num_certificate_types; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2056 | } |
| 2057 | |
David Benjamin | f3c8f8d | 2016-11-17 17:20:47 +0900 | [diff] [blame] | 2058 | void ssl_update_cache(SSL_HANDSHAKE *hs, int mode) { |
| 2059 | SSL *const ssl = hs->ssl; |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2060 | SSL_CTX *ctx = ssl->initial_ctx; |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 2061 | /* Never cache sessions with empty session IDs. */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2062 | if (ssl->s3->established_session->session_id_length == 0 || |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2063 | (ctx->session_cache_mode & mode) != mode) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2064 | return; |
| 2065 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2066 | |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2067 | /* Clients never use the internal session cache. */ |
| 2068 | int use_internal_cache = ssl->server && !(ctx->session_cache_mode & |
| 2069 | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
David Benjamin | 95d3182 | 2015-06-15 19:53:32 -0400 | [diff] [blame] | 2070 | |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2071 | /* A client may see new sessions on abbreviated handshakes if the server |
| 2072 | * decides to renew the ticket. Once the handshake is completed, it should be |
| 2073 | * inserted into the cache. */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2074 | if (ssl->s3->established_session != ssl->session || |
David Benjamin | f3c8f8d | 2016-11-17 17:20:47 +0900 | [diff] [blame] | 2075 | (!ssl->server && hs->ticket_expected)) { |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2076 | if (use_internal_cache) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2077 | SSL_CTX_add_session(ctx, ssl->s3->established_session); |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2078 | } |
David Benjamin | b919540 | 2016-08-05 10:51:43 -0400 | [diff] [blame] | 2079 | if (ctx->new_session_cb != NULL) { |
| 2080 | SSL_SESSION_up_ref(ssl->s3->established_session); |
| 2081 | if (!ctx->new_session_cb(ssl, ssl->s3->established_session)) { |
| 2082 | /* |new_session_cb|'s return value signals whether it took ownership. */ |
| 2083 | SSL_SESSION_free(ssl->s3->established_session); |
| 2084 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2085 | } |
| 2086 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2087 | |
David Benjamin | 1269ddd | 2015-10-18 15:18:55 -0400 | [diff] [blame] | 2088 | if (use_internal_cache && |
| 2089 | !(ctx->session_cache_mode & SSL_SESS_CACHE_NO_AUTO_CLEAR)) { |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 2090 | /* Automatically flush the internal session cache every 255 connections. */ |
| 2091 | int flush_cache = 0; |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 2092 | CRYPTO_MUTEX_lock_write(&ctx->lock); |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 2093 | ctx->handshakes_since_cache_flush++; |
| 2094 | if (ctx->handshakes_since_cache_flush >= 255) { |
| 2095 | flush_cache = 1; |
| 2096 | ctx->handshakes_since_cache_flush = 0; |
| 2097 | } |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 2098 | CRYPTO_MUTEX_unlock_write(&ctx->lock); |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 2099 | |
| 2100 | if (flush_cache) { |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 2101 | struct timeval now; |
| 2102 | ssl_get_current_time(ssl, &now); |
| 2103 | SSL_CTX_flush_sessions(ctx, (long)now.tv_sec); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2104 | } |
| 2105 | } |
| 2106 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2107 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2108 | static const char *ssl_get_version(int version) { |
| 2109 | switch (version) { |
Steven Valdez | fdd1099 | 2016-09-15 16:27:05 -0400 | [diff] [blame] | 2110 | /* Report TLS 1.3 draft version as TLS 1.3 in the public API. */ |
| 2111 | case TLS1_3_DRAFT_VERSION: |
Steven Valdez | 4f94b1c | 2016-05-24 12:31:07 -0400 | [diff] [blame] | 2112 | return "TLSv1.3"; |
| 2113 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2114 | case TLS1_2_VERSION: |
| 2115 | return "TLSv1.2"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2116 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2117 | case TLS1_1_VERSION: |
| 2118 | return "TLSv1.1"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2119 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2120 | case TLS1_VERSION: |
| 2121 | return "TLSv1"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2122 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2123 | case SSL3_VERSION: |
| 2124 | return "SSLv3"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2125 | |
David Benjamin | 1c722b7 | 2015-04-20 13:53:10 -0400 | [diff] [blame] | 2126 | case DTLS1_VERSION: |
| 2127 | return "DTLSv1"; |
| 2128 | |
| 2129 | case DTLS1_2_VERSION: |
| 2130 | return "DTLSv1.2"; |
| 2131 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2132 | default: |
| 2133 | return "unknown"; |
| 2134 | } |
| 2135 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2136 | |
David Benjamin | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 2137 | const char *SSL_get_version(const SSL *ssl) { |
| 2138 | return ssl_get_version(ssl->version); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2139 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2140 | |
David Benjamin | a6b8cdf | 2015-09-13 14:07:33 -0400 | [diff] [blame] | 2141 | const char *SSL_SESSION_get_version(const SSL_SESSION *session) { |
| 2142 | return ssl_get_version(session->ssl_version); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2143 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2144 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2145 | X509 *SSL_get_certificate(const SSL *ssl) { |
| 2146 | if (ssl->cert != NULL) { |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 2147 | return ssl->cert->x509_leaf; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2148 | } |
| 2149 | |
| 2150 | return NULL; |
| 2151 | } |
| 2152 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2153 | EVP_PKEY *SSL_get_privatekey(const SSL *ssl) { |
| 2154 | if (ssl->cert != NULL) { |
| 2155 | return ssl->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2156 | } |
| 2157 | |
| 2158 | return NULL; |
| 2159 | } |
| 2160 | |
| 2161 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx) { |
| 2162 | if (ctx->cert != NULL) { |
Adam Langley | c5ac2b6 | 2016-11-07 12:02:35 -0800 | [diff] [blame] | 2163 | return ctx->cert->x509_leaf; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2164 | } |
| 2165 | |
| 2166 | return NULL; |
| 2167 | } |
| 2168 | |
| 2169 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx) { |
| 2170 | if (ctx->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame] | 2171 | return ctx->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2172 | } |
| 2173 | |
| 2174 | return NULL; |
| 2175 | } |
| 2176 | |
David Benjamin | 42fea37 | 2015-09-19 01:22:44 -0400 | [diff] [blame] | 2177 | const SSL_CIPHER *SSL_get_current_cipher(const SSL *ssl) { |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 2178 | if (ssl->s3->aead_write_ctx == NULL) { |
David Benjamin | a07c0fc | 2015-05-13 13:19:42 -0400 | [diff] [blame] | 2179 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2180 | } |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 2181 | return ssl->s3->aead_write_ctx->cipher; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2182 | } |
| 2183 | |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2184 | int SSL_session_reused(const SSL *ssl) { |
Steven Valdez | 4aa154e | 2016-07-29 14:32:55 -0400 | [diff] [blame] | 2185 | return ssl->s3->session_reused; |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 2186 | } |
| 2187 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2188 | const COMP_METHOD *SSL_get_current_compression(SSL *ssl) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2189 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2190 | const COMP_METHOD *SSL_get_current_expansion(SSL *ssl) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2191 | |
Adam Langley | 29ec5d1 | 2016-03-01 16:12:28 -0800 | [diff] [blame] | 2192 | int *SSL_get_server_tmp_key(SSL *ssl, EVP_PKEY **out_key) { return 0; } |
| 2193 | |
David Benjamin | 30152fd | 2016-05-05 20:45:48 -0400 | [diff] [blame] | 2194 | int ssl_is_wbio_buffered(const SSL *ssl) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2195 | return ssl->bbio != NULL; |
David Benjamin | 30152fd | 2016-05-05 20:45:48 -0400 | [diff] [blame] | 2196 | } |
| 2197 | |
David Benjamin | b095f0f | 2016-05-05 21:50:24 -0400 | [diff] [blame] | 2198 | int ssl_init_wbio_buffer(SSL *ssl) { |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2199 | if (ssl->bbio != NULL) { |
| 2200 | /* Already buffered. */ |
| 2201 | assert(ssl->bbio == ssl->wbio); |
| 2202 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2203 | } |
| 2204 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2205 | BIO *bbio = BIO_new(BIO_f_buffer()); |
| 2206 | if (bbio == NULL || |
| 2207 | !BIO_set_read_buffer_size(bbio, 1)) { |
| 2208 | BIO_free(bbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2209 | return 0; |
| 2210 | } |
| 2211 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2212 | ssl->bbio = bbio; |
| 2213 | ssl->wbio = BIO_push(bbio, ssl->wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2214 | return 1; |
| 2215 | } |
| 2216 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2217 | void ssl_free_wbio_buffer(SSL *ssl) { |
| 2218 | if (ssl->bbio == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2219 | return; |
| 2220 | } |
| 2221 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2222 | assert(ssl->bbio == ssl->wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2223 | |
David Benjamin | 2f87112 | 2016-05-20 14:27:17 -0400 | [diff] [blame] | 2224 | ssl->wbio = BIO_pop(ssl->wbio); |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2225 | BIO_free(ssl->bbio); |
| 2226 | ssl->bbio = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2227 | } |
| 2228 | |
| 2229 | void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode) { |
Adam Langley | bb85f3d | 2015-10-28 18:44:11 -0700 | [diff] [blame] | 2230 | ctx->quiet_shutdown = (mode != 0); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2231 | } |
| 2232 | |
| 2233 | int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) { |
| 2234 | return ctx->quiet_shutdown; |
| 2235 | } |
| 2236 | |
Adam Langley | bb85f3d | 2015-10-28 18:44:11 -0700 | [diff] [blame] | 2237 | void SSL_set_quiet_shutdown(SSL *ssl, int mode) { |
| 2238 | ssl->quiet_shutdown = (mode != 0); |
| 2239 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2240 | |
David Benjamin | 9f85949 | 2015-10-03 10:44:30 -0400 | [diff] [blame] | 2241 | int SSL_get_quiet_shutdown(const SSL *ssl) { return ssl->quiet_shutdown; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2242 | |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2243 | void SSL_set_shutdown(SSL *ssl, int mode) { |
| 2244 | /* It is an error to clear any bits that have already been set. (We can't try |
| 2245 | * to get a second close_notify or send two.) */ |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2246 | assert((SSL_get_shutdown(ssl) & mode) == SSL_get_shutdown(ssl)); |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2247 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2248 | if (mode & SSL_RECEIVED_SHUTDOWN && |
| 2249 | ssl->s3->recv_shutdown == ssl_shutdown_none) { |
| 2250 | ssl->s3->recv_shutdown = ssl_shutdown_close_notify; |
| 2251 | } |
| 2252 | |
| 2253 | if (mode & SSL_SENT_SHUTDOWN && |
| 2254 | ssl->s3->send_shutdown == ssl_shutdown_none) { |
| 2255 | ssl->s3->send_shutdown = ssl_shutdown_close_notify; |
| 2256 | } |
David Benjamin | 63006a9 | 2015-10-18 00:00:06 -0400 | [diff] [blame] | 2257 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2258 | |
David Benjamin | fa214e4 | 2016-05-10 17:03:10 -0400 | [diff] [blame] | 2259 | int SSL_get_shutdown(const SSL *ssl) { |
| 2260 | int ret = 0; |
| 2261 | if (ssl->s3->recv_shutdown != ssl_shutdown_none) { |
| 2262 | /* Historically, OpenSSL set |SSL_RECEIVED_SHUTDOWN| on both close_notify |
| 2263 | * and fatal alert. */ |
| 2264 | ret |= SSL_RECEIVED_SHUTDOWN; |
| 2265 | } |
| 2266 | if (ssl->s3->send_shutdown == ssl_shutdown_close_notify) { |
| 2267 | /* Historically, OpenSSL set |SSL_SENT_SHUTDOWN| on only close_notify. */ |
| 2268 | ret |= SSL_SENT_SHUTDOWN; |
| 2269 | } |
| 2270 | return ret; |
| 2271 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2272 | |
Steven Valdez | fdd1099 | 2016-09-15 16:27:05 -0400 | [diff] [blame] | 2273 | int SSL_version(const SSL *ssl) { |
| 2274 | /* Report TLS 1.3 draft version as TLS 1.3 in the public API. */ |
| 2275 | if (ssl->version == TLS1_3_DRAFT_VERSION) { |
| 2276 | return TLS1_3_VERSION; |
| 2277 | } |
| 2278 | |
| 2279 | return ssl->version; |
| 2280 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2281 | |
| 2282 | SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) { return ssl->ctx; } |
| 2283 | |
| 2284 | SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx) { |
| 2285 | if (ssl->ctx == ctx) { |
| 2286 | return ssl->ctx; |
| 2287 | } |
| 2288 | |
| 2289 | if (ctx == NULL) { |
| 2290 | ctx = ssl->initial_ctx; |
| 2291 | } |
| 2292 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2293 | ssl_cert_free(ssl->cert); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2294 | ssl->cert = ssl_cert_dup(ctx->cert); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2295 | |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 2296 | CRYPTO_refcount_inc(&ctx->references); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2297 | SSL_CTX_free(ssl->ctx); /* decrement reference count */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2298 | ssl->ctx = ctx; |
| 2299 | |
| 2300 | ssl->sid_ctx_length = ctx->sid_ctx_length; |
| 2301 | assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx)); |
| 2302 | memcpy(ssl->sid_ctx, ctx->sid_ctx, sizeof(ssl->sid_ctx)); |
| 2303 | |
| 2304 | return ssl->ctx; |
| 2305 | } |
| 2306 | |
| 2307 | int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) { |
| 2308 | return X509_STORE_set_default_paths(ctx->cert_store); |
| 2309 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2310 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 2311 | int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *ca_file, |
| 2312 | const char *ca_dir) { |
| 2313 | return X509_STORE_load_locations(ctx->cert_store, ca_file, ca_dir); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2314 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2315 | |
| 2316 | void SSL_set_info_callback(SSL *ssl, |
David Benjamin | 8217024 | 2015-10-17 22:51:17 -0400 | [diff] [blame] | 2317 | void (*cb)(const SSL *ssl, int type, int value)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2318 | ssl->info_callback = cb; |
| 2319 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2320 | |
David Benjamin | 8217024 | 2015-10-17 22:51:17 -0400 | [diff] [blame] | 2321 | void (*SSL_get_info_callback(const SSL *ssl))(const SSL *ssl, int type, |
| 2322 | int value) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2323 | return ssl->info_callback; |
| 2324 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2325 | |
David Benjamin | cb0c29f | 2016-12-12 17:00:50 -0500 | [diff] [blame] | 2326 | int SSL_state(const SSL *ssl) { |
| 2327 | if (ssl->s3->hs == NULL) { |
| 2328 | assert(ssl->s3->initial_handshake_complete); |
| 2329 | return SSL_ST_OK; |
| 2330 | } |
| 2331 | |
| 2332 | return ssl->s3->hs->state; |
| 2333 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2334 | |
David Benjamin | ece089c | 2015-05-15 23:52:42 -0400 | [diff] [blame] | 2335 | void SSL_set_state(SSL *ssl, int state) { } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2336 | |
Emily Stark | 95a79ee | 2016-02-25 21:12:28 -0800 | [diff] [blame] | 2337 | char *SSL_get_shared_ciphers(const SSL *ssl, char *buf, int len) { |
| 2338 | if (len <= 0) { |
| 2339 | return NULL; |
| 2340 | } |
| 2341 | buf[0] = '\0'; |
| 2342 | return buf; |
| 2343 | } |
| 2344 | |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 2345 | void SSL_set_verify_result(SSL *ssl, long result) { |
David Benjamin | 93d9743 | 2016-08-08 21:22:47 -0400 | [diff] [blame] | 2346 | if (result != X509_V_OK) { |
| 2347 | abort(); |
| 2348 | } |
David Benjamin | 5993704 | 2015-09-19 13:04:22 -0400 | [diff] [blame] | 2349 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2350 | |
David Benjamin | 7aa31d6 | 2016-08-08 21:38:32 -0400 | [diff] [blame] | 2351 | long SSL_get_verify_result(const SSL *ssl) { |
| 2352 | SSL_SESSION *session = SSL_get_session(ssl); |
| 2353 | if (session == NULL) { |
| 2354 | return X509_V_ERR_INVALID_CALL; |
| 2355 | } |
| 2356 | return session->verify_result; |
| 2357 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2358 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2359 | int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2360 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2361 | int index; |
| 2362 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl, &index, argl, argp, |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2363 | dup_func, free_func)) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2364 | return -1; |
| 2365 | } |
| 2366 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2367 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2368 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2369 | int SSL_set_ex_data(SSL *ssl, int idx, void *arg) { |
| 2370 | return CRYPTO_set_ex_data(&ssl->ex_data, idx, arg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2371 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2372 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2373 | void *SSL_get_ex_data(const SSL *ssl, int idx) { |
| 2374 | return CRYPTO_get_ex_data(&ssl->ex_data, idx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2375 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2376 | |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2377 | int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_unused *unused, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2378 | CRYPTO_EX_dup *dup_func, |
| 2379 | CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2380 | int index; |
| 2381 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl_ctx, &index, argl, argp, |
David Benjamin | 8a58933 | 2015-12-04 23:14:35 -0500 | [diff] [blame] | 2382 | dup_func, free_func)) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2383 | return -1; |
| 2384 | } |
| 2385 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2386 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2387 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2388 | int SSL_CTX_set_ex_data(SSL_CTX *ctx, int idx, void *arg) { |
| 2389 | return CRYPTO_set_ex_data(&ctx->ex_data, idx, arg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2390 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2391 | |
David Benjamin | 1ac08fe | 2015-09-15 01:36:22 -0400 | [diff] [blame] | 2392 | void *SSL_CTX_get_ex_data(const SSL_CTX *ctx, int idx) { |
| 2393 | return CRYPTO_get_ex_data(&ctx->ex_data, idx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2394 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2395 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2396 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx) { |
| 2397 | return ctx->cert_store; |
| 2398 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2399 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2400 | void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2401 | X509_STORE_free(ctx->cert_store); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2402 | ctx->cert_store = store; |
| 2403 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2404 | |
David Benjamin | 93d1749 | 2015-10-17 12:43:36 -0400 | [diff] [blame] | 2405 | int SSL_want(const SSL *ssl) { return ssl->rwstate; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2406 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2407 | void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, |
| 2408 | RSA *(*cb)(SSL *ssl, int is_export, |
| 2409 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2410 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2411 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2412 | void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb)(SSL *ssl, int is_export, |
| 2413 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2414 | } |
| 2415 | |
| 2416 | void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2417 | DH *(*callback)(SSL *ssl, int is_export, |
| 2418 | int keylength)) { |
| 2419 | ctx->cert->dh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2420 | } |
| 2421 | |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2422 | void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*callback)(SSL *ssl, int is_export, |
| 2423 | int keylength)) { |
| 2424 | ssl->cert->dh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2425 | } |
| 2426 | |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 2427 | unsigned SSL_get_dhe_group_size(const SSL *ssl) { |
| 2428 | /* TODO(davidben): This checks the wrong session if there is a renegotiation in |
| 2429 | * progress. */ |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2430 | SSL_SESSION *session = SSL_get_session(ssl); |
| 2431 | if (session == NULL || |
| 2432 | session->cipher == NULL || |
| 2433 | !SSL_CIPHER_is_DHE(session->cipher)) { |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 2434 | return 0; |
| 2435 | } |
| 2436 | |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2437 | return session->key_exchange_info; |
David Benjamin | 9e68f19 | 2016-06-30 14:55:33 -0400 | [diff] [blame] | 2438 | } |
| 2439 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2440 | int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { |
| 2441 | if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 2442 | OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2443 | return 0; |
| 2444 | } |
| 2445 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2446 | OPENSSL_free(ctx->psk_identity_hint); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2447 | |
| 2448 | if (identity_hint != NULL) { |
| 2449 | ctx->psk_identity_hint = BUF_strdup(identity_hint); |
| 2450 | if (ctx->psk_identity_hint == NULL) { |
| 2451 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2452 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2453 | } else { |
| 2454 | ctx->psk_identity_hint = NULL; |
| 2455 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2456 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2457 | return 1; |
| 2458 | } |
| 2459 | |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2460 | int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { |
| 2461 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2462 | return 0; |
| 2463 | } |
| 2464 | |
| 2465 | if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 2466 | OPENSSL_PUT_ERROR(SSL, SSL_R_DATA_LENGTH_TOO_LONG); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2467 | return 0; |
| 2468 | } |
| 2469 | |
| 2470 | /* Clear currently configured hint, if any. */ |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2471 | OPENSSL_free(ssl->psk_identity_hint); |
| 2472 | ssl->psk_identity_hint = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2473 | |
David Benjamin | 7867934 | 2016-09-16 19:42:05 -0400 | [diff] [blame] | 2474 | /* Treat the empty hint as not supplying one. Plain PSK makes it possible to |
| 2475 | * send either no hint (omit ServerKeyExchange) or an empty hint, while |
| 2476 | * ECDHE_PSK can only spell empty hint. Having different capabilities is odd, |
| 2477 | * so we interpret empty and missing as identical. */ |
| 2478 | if (identity_hint != NULL && identity_hint[0] != '\0') { |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2479 | ssl->psk_identity_hint = BUF_strdup(identity_hint); |
| 2480 | if (ssl->psk_identity_hint == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2481 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2482 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2483 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2484 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2485 | return 1; |
| 2486 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2487 | |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2488 | const char *SSL_get_psk_identity_hint(const SSL *ssl) { |
| 2489 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2490 | return NULL; |
| 2491 | } |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2492 | return ssl->psk_identity_hint; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2493 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2494 | |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2495 | const char *SSL_get_psk_identity(const SSL *ssl) { |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2496 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2497 | return NULL; |
| 2498 | } |
Steven Valdez | 87eab49 | 2016-06-27 16:34:59 -0400 | [diff] [blame] | 2499 | SSL_SESSION *session = SSL_get_session(ssl); |
| 2500 | if (session == NULL) { |
| 2501 | return NULL; |
| 2502 | } |
| 2503 | return session->psk_identity; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2504 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2505 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2506 | void SSL_set_psk_client_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2507 | SSL *ssl, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2508 | unsigned max_identity_len, uint8_t *psk, |
| 2509 | unsigned max_psk_len)) { |
| 2510 | ssl->psk_client_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2511 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2512 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2513 | void SSL_CTX_set_psk_client_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2514 | SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2515 | unsigned max_identity_len, uint8_t *psk, |
| 2516 | unsigned max_psk_len)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2517 | ctx->psk_client_callback = cb; |
| 2518 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2519 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2520 | void SSL_set_psk_server_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2521 | SSL *ssl, unsigned (*cb)(SSL *ssl, const char *identity, uint8_t *psk, |
| 2522 | unsigned max_psk_len)) { |
| 2523 | ssl->psk_server_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2524 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2525 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2526 | void SSL_CTX_set_psk_server_callback( |
David Benjamin | e8814df | 2015-09-15 08:05:54 -0400 | [diff] [blame] | 2527 | SSL_CTX *ctx, unsigned (*cb)(SSL *ssl, const char *identity, |
| 2528 | uint8_t *psk, unsigned max_psk_len)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2529 | ctx->psk_server_callback = cb; |
| 2530 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2531 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2532 | void SSL_CTX_set_msg_callback(SSL_CTX *ctx, |
| 2533 | void (*cb)(int write_p, int version, |
| 2534 | int content_type, const void *buf, |
| 2535 | size_t len, SSL *ssl, void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2536 | ctx->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2537 | } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2538 | |
| 2539 | void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg) { |
| 2540 | ctx->msg_callback_arg = arg; |
| 2541 | } |
| 2542 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2543 | void SSL_set_msg_callback(SSL *ssl, |
| 2544 | void (*cb)(int write_p, int version, int content_type, |
| 2545 | const void *buf, size_t len, SSL *ssl, |
| 2546 | void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2547 | ssl->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2548 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2549 | |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2550 | void SSL_set_msg_callback_arg(SSL *ssl, void *arg) { |
| 2551 | ssl->msg_callback_arg = arg; |
| 2552 | } |
| 2553 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2554 | void SSL_CTX_set_keylog_callback(SSL_CTX *ctx, |
| 2555 | void (*cb)(const SSL *ssl, const char *line)) { |
| 2556 | ctx->keylog_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2557 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2558 | |
David Benjamin | 6e3f5cc | 2016-09-14 14:43:14 -0400 | [diff] [blame] | 2559 | void (*SSL_CTX_get_keylog_callback(const SSL_CTX *ctx))(const SSL *ssl, |
| 2560 | const char *line) { |
| 2561 | return ctx->keylog_callback; |
| 2562 | } |
| 2563 | |
Taylor Brandstetter | 9edb2c6 | 2016-06-08 15:26:59 -0700 | [diff] [blame] | 2564 | void SSL_CTX_set_current_time_cb(SSL_CTX *ctx, |
| 2565 | void (*cb)(const SSL *ssl, |
| 2566 | struct timeval *out_clock)) { |
| 2567 | ctx->current_time_cb = cb; |
| 2568 | } |
| 2569 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2570 | static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len) { |
| 2571 | static const char hextable[] = "0123456789abcdef"; |
| 2572 | uint8_t *out; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2573 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2574 | if (!CBB_add_space(cbb, &out, in_len * 2)) { |
| 2575 | return 0; |
| 2576 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2577 | |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 2578 | for (size_t i = 0; i < in_len; i++) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2579 | *(out++) = (uint8_t)hextable[in[i] >> 4]; |
| 2580 | *(out++) = (uint8_t)hextable[in[i] & 0xf]; |
| 2581 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2582 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2583 | return 1; |
| 2584 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2585 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2586 | int ssl_log_rsa_client_key_exchange(const SSL *ssl, |
| 2587 | const uint8_t *encrypted_premaster, |
| 2588 | size_t encrypted_premaster_len, |
| 2589 | const uint8_t *premaster, |
| 2590 | size_t premaster_len) { |
| 2591 | if (ssl->ctx->keylog_callback == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2592 | return 1; |
| 2593 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2594 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2595 | if (encrypted_premaster_len < 8) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 2596 | OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2597 | return 0; |
| 2598 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2599 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2600 | CBB cbb; |
| 2601 | uint8_t *out; |
| 2602 | size_t out_len; |
David Benjamin | a865320 | 2015-06-28 01:26:10 -0400 | [diff] [blame] | 2603 | if (!CBB_init(&cbb, 4 + 16 + 1 + premaster_len * 2 + 1) || |
| 2604 | !CBB_add_bytes(&cbb, (const uint8_t *)"RSA ", 4) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2605 | /* Only the first 8 bytes of the encrypted premaster secret are |
| 2606 | * logged. */ |
| 2607 | !cbb_add_hex(&cbb, encrypted_premaster, 8) || |
| 2608 | !CBB_add_bytes(&cbb, (const uint8_t *)" ", 1) || |
| 2609 | !cbb_add_hex(&cbb, premaster, premaster_len) || |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2610 | !CBB_add_u8(&cbb, 0 /* NUL */) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2611 | !CBB_finish(&cbb, &out, &out_len)) { |
| 2612 | CBB_cleanup(&cbb); |
| 2613 | return 0; |
| 2614 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2615 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2616 | ssl->ctx->keylog_callback(ssl, (const char *)out); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2617 | OPENSSL_free(out); |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2618 | return 1; |
Adam Langley | 95f2288 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2619 | } |
| 2620 | |
David Benjamin | e776cc2 | 2016-07-19 07:26:49 +0200 | [diff] [blame] | 2621 | int ssl_log_secret(const SSL *ssl, const char *label, const uint8_t *secret, |
| 2622 | size_t secret_len) { |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2623 | if (ssl->ctx->keylog_callback == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2624 | return 1; |
| 2625 | } |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2626 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2627 | CBB cbb; |
| 2628 | uint8_t *out; |
| 2629 | size_t out_len; |
David Benjamin | e776cc2 | 2016-07-19 07:26:49 +0200 | [diff] [blame] | 2630 | if (!CBB_init(&cbb, strlen(label) + 1 + SSL3_RANDOM_SIZE * 2 + 1 + |
| 2631 | secret_len * 2 + 1) || |
| 2632 | !CBB_add_bytes(&cbb, (const uint8_t *)label, strlen(label)) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2633 | !CBB_add_bytes(&cbb, (const uint8_t *)" ", 1) || |
David Benjamin | e776cc2 | 2016-07-19 07:26:49 +0200 | [diff] [blame] | 2634 | !cbb_add_hex(&cbb, ssl->s3->client_random, SSL3_RANDOM_SIZE) || |
| 2635 | !CBB_add_bytes(&cbb, (const uint8_t *)" ", 1) || |
| 2636 | !cbb_add_hex(&cbb, secret, secret_len) || |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2637 | !CBB_add_u8(&cbb, 0 /* NUL */) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2638 | !CBB_finish(&cbb, &out, &out_len)) { |
| 2639 | CBB_cleanup(&cbb); |
| 2640 | return 0; |
| 2641 | } |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2642 | |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2643 | ssl->ctx->keylog_callback(ssl, (const char *)out); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2644 | OPENSSL_free(out); |
David Benjamin | d28f59c | 2015-11-17 22:32:50 -0500 | [diff] [blame] | 2645 | return 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2646 | } |
| 2647 | |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2648 | int SSL_is_init_finished(const SSL *ssl) { |
David Benjamin | cb0c29f | 2016-12-12 17:00:50 -0500 | [diff] [blame] | 2649 | return SSL_state(ssl) == SSL_ST_OK; |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2650 | } |
| 2651 | |
| 2652 | int SSL_in_init(const SSL *ssl) { |
David Benjamin | cb0c29f | 2016-12-12 17:00:50 -0500 | [diff] [blame] | 2653 | return (SSL_state(ssl) & SSL_ST_INIT) != 0; |
David Benjamin | 5d8b128 | 2015-10-17 23:26:35 -0400 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | int SSL_in_false_start(const SSL *ssl) { |
David Benjamin | a048678 | 2016-10-06 19:11:32 -0400 | [diff] [blame] | 2657 | if (ssl->s3->hs == NULL) { |
| 2658 | return 0; |
| 2659 | } |
| 2660 | return ssl->s3->hs->in_false_start; |
David Benjamin | ed7c475 | 2015-02-16 19:16:46 -0500 | [diff] [blame] | 2661 | } |
| 2662 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2663 | int SSL_cutthrough_complete(const SSL *ssl) { |
| 2664 | return SSL_in_false_start(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2665 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2666 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2667 | void SSL_get_structure_sizes(size_t *ssl_size, size_t *ssl_ctx_size, |
| 2668 | size_t *ssl_session_size) { |
| 2669 | *ssl_size = sizeof(SSL); |
| 2670 | *ssl_ctx_size = sizeof(SSL_CTX); |
| 2671 | *ssl_session_size = sizeof(SSL_SESSION); |
| 2672 | } |
Feng Lu | 41aa325 | 2014-11-21 22:47:56 -0800 | [diff] [blame] | 2673 | |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2674 | int ssl3_can_false_start(const SSL *ssl) { |
| 2675 | const SSL_CIPHER *const cipher = SSL_get_current_cipher(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2676 | |
Adam Langley | e631d96 | 2015-04-01 13:11:01 -0700 | [diff] [blame] | 2677 | /* False Start only for TLS 1.2 with an ECDHE+AEAD cipher and ALPN or NPN. */ |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2678 | return !SSL_is_dtls(ssl) && |
Steven Valdez | 4f94b1c | 2016-05-24 12:31:07 -0400 | [diff] [blame] | 2679 | SSL_version(ssl) == TLS1_2_VERSION && |
David Benjamin | b74b081 | 2016-10-06 19:43:48 -0400 | [diff] [blame] | 2680 | (ssl->s3->alpn_selected != NULL || |
| 2681 | ssl->s3->next_proto_negotiated != NULL) && |
David Benjamin | 195dc78 | 2015-02-19 13:27:05 -0500 | [diff] [blame] | 2682 | cipher != NULL && |
Matthew Braithwaite | 651aaef | 2016-12-08 16:14:36 -0800 | [diff] [blame] | 2683 | cipher->algorithm_mkey == SSL_kECDHE && |
David Benjamin | 13414b3 | 2015-12-09 23:02:39 -0500 | [diff] [blame] | 2684 | cipher->algorithm_mac == SSL_AEAD; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2685 | } |
| 2686 | |
| 2687 | const SSL3_ENC_METHOD *ssl3_get_enc_method(uint16_t version) { |
| 2688 | switch (version) { |
| 2689 | case SSL3_VERSION: |
| 2690 | return &SSLv3_enc_data; |
| 2691 | |
| 2692 | case TLS1_VERSION: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2693 | case TLS1_1_VERSION: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2694 | case TLS1_2_VERSION: |
Steven Valdez | 4f94b1c | 2016-05-24 12:31:07 -0400 | [diff] [blame] | 2695 | case TLS1_3_VERSION: |
David Benjamin | a1e9cab | 2015-12-30 00:08:49 -0500 | [diff] [blame] | 2696 | return &TLSv1_enc_data; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2697 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2698 | default: |
| 2699 | return NULL; |
| 2700 | } |
| 2701 | } |
| 2702 | |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2703 | const struct { |
| 2704 | uint16_t version; |
| 2705 | uint32_t flag; |
| 2706 | } kVersions[] = { |
| 2707 | {SSL3_VERSION, SSL_OP_NO_SSLv3}, |
| 2708 | {TLS1_VERSION, SSL_OP_NO_TLSv1}, |
| 2709 | {TLS1_1_VERSION, SSL_OP_NO_TLSv1_1}, |
| 2710 | {TLS1_2_VERSION, SSL_OP_NO_TLSv1_2}, |
| 2711 | {TLS1_3_VERSION, SSL_OP_NO_TLSv1_3}, |
| 2712 | }; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2713 | |
Steven Valdez | cb96654 | 2016-08-17 16:56:14 -0400 | [diff] [blame] | 2714 | static const size_t kVersionsLen = OPENSSL_ARRAY_SIZE(kVersions); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2715 | |
David Benjamin | e0ff767 | 2016-09-19 18:40:03 -0400 | [diff] [blame] | 2716 | int ssl_get_version_range(const SSL *ssl, uint16_t *out_min_version, |
| 2717 | uint16_t *out_max_version) { |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2718 | /* For historical reasons, |SSL_OP_NO_DTLSv1| aliases |SSL_OP_NO_TLSv1|, but |
| 2719 | * DTLS 1.0 should be mapped to TLS 1.1. */ |
David Benjamin | 0d56f88 | 2015-12-19 17:05:56 -0500 | [diff] [blame] | 2720 | uint32_t options = ssl->options; |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2721 | if (SSL_is_dtls(ssl)) { |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2722 | options &= ~SSL_OP_NO_TLSv1_1; |
| 2723 | if (options & SSL_OP_NO_DTLSv1) { |
| 2724 | options |= SSL_OP_NO_TLSv1_1; |
| 2725 | } |
| 2726 | } |
| 2727 | |
| 2728 | uint16_t min_version = ssl->min_version; |
| 2729 | uint16_t max_version = ssl->max_version; |
| 2730 | |
| 2731 | /* Bound the range to only those implemented in this protocol. */ |
| 2732 | if (min_version < ssl->method->min_version) { |
| 2733 | min_version = ssl->method->min_version; |
| 2734 | } |
| 2735 | if (max_version > ssl->method->max_version) { |
| 2736 | max_version = ssl->method->max_version; |
| 2737 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2738 | |
| 2739 | /* OpenSSL's API for controlling versions entails blacklisting individual |
| 2740 | * protocols. This has two problems. First, on the client, the protocol can |
| 2741 | * only express a contiguous range of versions. Second, a library consumer |
| 2742 | * trying to set a maximum version cannot disable protocol versions that get |
| 2743 | * added in a future version of the library. |
| 2744 | * |
| 2745 | * To account for both of these, OpenSSL interprets the client-side bitmask |
| 2746 | * as a min/max range by picking the lowest contiguous non-empty range of |
| 2747 | * enabled protocols. Note that this means it is impossible to set a maximum |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2748 | * version of the higest supported TLS version in a future-proof way. */ |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2749 | int any_enabled = 0; |
David Benjamin | 5409123 | 2016-09-05 12:47:25 -0400 | [diff] [blame] | 2750 | for (size_t i = 0; i < kVersionsLen; i++) { |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2751 | /* Only look at the versions already enabled. */ |
| 2752 | if (min_version > kVersions[i].version) { |
| 2753 | continue; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2754 | } |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2755 | if (max_version < kVersions[i].version) { |
| 2756 | break; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2757 | } |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2758 | |
| 2759 | if (!(options & kVersions[i].flag)) { |
| 2760 | /* The minimum version is the first enabled version. */ |
| 2761 | if (!any_enabled) { |
| 2762 | any_enabled = 1; |
| 2763 | min_version = kVersions[i].version; |
| 2764 | } |
| 2765 | continue; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2766 | } |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2767 | |
| 2768 | /* If there is a disabled version after the first enabled one, all versions |
| 2769 | * after it are implicitly disabled. */ |
| 2770 | if (any_enabled) { |
| 2771 | max_version = kVersions[i-1].version; |
| 2772 | break; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2773 | } |
| 2774 | } |
| 2775 | |
David Benjamin | e0ff767 | 2016-09-19 18:40:03 -0400 | [diff] [blame] | 2776 | if (!any_enabled) { |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2777 | OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_SSL_VERSION); |
| 2778 | return 0; |
David Benjamin | ea72bd0 | 2014-12-21 21:27:41 -0500 | [diff] [blame] | 2779 | } |
| 2780 | |
David Benjamin | b6a0a51 | 2016-06-21 10:33:21 -0400 | [diff] [blame] | 2781 | *out_min_version = min_version; |
| 2782 | *out_max_version = max_version; |
| 2783 | return 1; |
David Benjamin | ea72bd0 | 2014-12-21 21:27:41 -0500 | [diff] [blame] | 2784 | } |
| 2785 | |
David Benjamin | b9e4fa5 | 2015-12-29 23:58:17 -0500 | [diff] [blame] | 2786 | uint16_t ssl3_protocol_version(const SSL *ssl) { |
| 2787 | assert(ssl->s3->have_version); |
David Benjamin | 2dc0204 | 2016-09-19 19:57:37 -0400 | [diff] [blame] | 2788 | uint16_t version; |
| 2789 | if (!ssl->method->version_from_wire(&version, ssl->version)) { |
| 2790 | /* TODO(davidben): Use the internal version representation for ssl->version |
| 2791 | * and map to the public API representation at API boundaries. */ |
| 2792 | assert(0); |
| 2793 | return 0; |
| 2794 | } |
| 2795 | |
| 2796 | return version; |
David Benjamin | b9e4fa5 | 2015-12-29 23:58:17 -0500 | [diff] [blame] | 2797 | } |
| 2798 | |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2799 | int SSL_is_server(const SSL *ssl) { return ssl->server; } |
| 2800 | |
| 2801 | int SSL_is_dtls(const SSL *ssl) { return ssl->method->is_dtls; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2802 | |
David Benjamin | 731058e | 2016-12-03 23:15:13 -0500 | [diff] [blame] | 2803 | void SSL_CTX_set_select_certificate_cb(SSL_CTX *ctx, |
| 2804 | int (*cb)(const SSL_CLIENT_HELLO *)) { |
David Benjamin | d4c2bce | 2015-10-17 12:28:18 -0400 | [diff] [blame] | 2805 | ctx->select_certificate_cb = cb; |
| 2806 | } |
| 2807 | |
David Benjamin | 731058e | 2016-12-03 23:15:13 -0500 | [diff] [blame] | 2808 | void SSL_CTX_set_dos_protection_cb(SSL_CTX *ctx, |
| 2809 | int (*cb)(const SSL_CLIENT_HELLO *)) { |
Adam Langley | 524e717 | 2015-02-20 16:04:00 -0800 | [diff] [blame] | 2810 | ctx->dos_protection_cb = cb; |
| 2811 | } |
| 2812 | |
David Benjamin | 1d5ef3b | 2015-10-12 19:54:18 -0400 | [diff] [blame] | 2813 | void SSL_set_renegotiate_mode(SSL *ssl, enum ssl_renegotiate_mode_t mode) { |
| 2814 | ssl->renegotiate_mode = mode; |
| 2815 | } |
| 2816 | |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2817 | int SSL_get_ivs(const SSL *ssl, const uint8_t **out_read_iv, |
| 2818 | const uint8_t **out_write_iv, size_t *out_iv_len) { |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 2819 | if (ssl->s3->aead_read_ctx == NULL || ssl->s3->aead_write_ctx == NULL) { |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2820 | return 0; |
| 2821 | } |
| 2822 | |
| 2823 | size_t write_iv_len; |
David Benjamin | 79978df | 2015-12-25 15:56:49 -0500 | [diff] [blame] | 2824 | if (!EVP_AEAD_CTX_get_iv(&ssl->s3->aead_read_ctx->ctx, out_read_iv, |
| 2825 | out_iv_len) || |
| 2826 | !EVP_AEAD_CTX_get_iv(&ssl->s3->aead_write_ctx->ctx, out_write_iv, |
Adam Langley | c2d3280 | 2015-11-03 18:36:10 -0800 | [diff] [blame] | 2827 | &write_iv_len) || |
| 2828 | *out_iv_len != write_iv_len) { |
| 2829 | return 0; |
| 2830 | } |
| 2831 | |
| 2832 | return 1; |
David Benjamin | e348ff4 | 2015-11-06 17:55:30 -0500 | [diff] [blame] | 2833 | } |
David Benjamin | 6e80765 | 2015-11-02 12:02:20 -0500 | [diff] [blame] | 2834 | |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2835 | static uint64_t be_to_u64(const uint8_t in[8]) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2836 | return (((uint64_t)in[0]) << 56) | (((uint64_t)in[1]) << 48) | |
| 2837 | (((uint64_t)in[2]) << 40) | (((uint64_t)in[3]) << 32) | |
| 2838 | (((uint64_t)in[4]) << 24) | (((uint64_t)in[5]) << 16) | |
| 2839 | (((uint64_t)in[6]) << 8) | ((uint64_t)in[7]); |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2840 | } |
| 2841 | |
| 2842 | uint64_t SSL_get_read_sequence(const SSL *ssl) { |
| 2843 | /* TODO(davidben): Internally represent sequence numbers as uint64_t. */ |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2844 | if (SSL_is_dtls(ssl)) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2845 | /* max_seq_num already includes the epoch. */ |
| 2846 | assert(ssl->d1->r_epoch == (ssl->d1->bitmap.max_seq_num >> 48)); |
| 2847 | return ssl->d1->bitmap.max_seq_num; |
| 2848 | } |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2849 | return be_to_u64(ssl->s3->read_sequence); |
| 2850 | } |
| 2851 | |
| 2852 | uint64_t SSL_get_write_sequence(const SSL *ssl) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2853 | uint64_t ret = be_to_u64(ssl->s3->write_sequence); |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2854 | if (SSL_is_dtls(ssl)) { |
David Benjamin | de94238 | 2016-02-11 12:02:01 -0500 | [diff] [blame] | 2855 | assert((ret >> 48) == 0); |
| 2856 | ret |= ((uint64_t)ssl->d1->w_epoch) << 48; |
| 2857 | } |
| 2858 | return ret; |
David Benjamin | 91b2501 | 2016-01-21 16:39:58 -0500 | [diff] [blame] | 2859 | } |
| 2860 | |
Steven Valdez | 0256385 | 2016-06-23 13:33:05 -0400 | [diff] [blame] | 2861 | uint16_t SSL_get_peer_signature_algorithm(const SSL *ssl) { |
| 2862 | return ssl->s3->tmp.peer_signature_algorithm; |
| 2863 | } |
| 2864 | |
David Benjamin | 96ba15f | 2015-12-25 14:10:17 -0500 | [diff] [blame] | 2865 | size_t SSL_get_client_random(const SSL *ssl, uint8_t *out, size_t max_out) { |
| 2866 | if (max_out == 0) { |
| 2867 | return sizeof(ssl->s3->client_random); |
| 2868 | } |
| 2869 | if (max_out > sizeof(ssl->s3->client_random)) { |
| 2870 | max_out = sizeof(ssl->s3->client_random); |
| 2871 | } |
| 2872 | memcpy(out, ssl->s3->client_random, max_out); |
| 2873 | return max_out; |
| 2874 | } |
| 2875 | |
| 2876 | size_t SSL_get_server_random(const SSL *ssl, uint8_t *out, size_t max_out) { |
| 2877 | if (max_out == 0) { |
| 2878 | return sizeof(ssl->s3->server_random); |
| 2879 | } |
| 2880 | if (max_out > sizeof(ssl->s3->server_random)) { |
| 2881 | max_out = sizeof(ssl->s3->server_random); |
| 2882 | } |
| 2883 | memcpy(out, ssl->s3->server_random, max_out); |
| 2884 | return max_out; |
| 2885 | } |
| 2886 | |
David Benjamin | f6494f4 | 2016-01-07 12:37:41 -0800 | [diff] [blame] | 2887 | const SSL_CIPHER *SSL_get_pending_cipher(const SSL *ssl) { |
| 2888 | if (!SSL_in_init(ssl)) { |
| 2889 | return NULL; |
| 2890 | } |
| 2891 | return ssl->s3->tmp.new_cipher; |
| 2892 | } |
| 2893 | |
David Benjamin | bbaf367 | 2016-11-17 10:53:09 +0900 | [diff] [blame] | 2894 | void SSL_set_retain_only_sha256_of_client_certs(SSL *ssl, int enabled) { |
| 2895 | ssl->retain_only_sha256_of_client_certs = !!enabled; |
| 2896 | } |
| 2897 | |
David Benjamin | cdd0b7e | 2016-01-07 10:10:41 -0800 | [diff] [blame] | 2898 | void SSL_CTX_set_retain_only_sha256_of_client_certs(SSL_CTX *ctx, int enabled) { |
| 2899 | ctx->retain_only_sha256_of_client_certs = !!enabled; |
| 2900 | } |
| 2901 | |
David Benjamin | 65ac997 | 2016-09-02 21:35:25 -0400 | [diff] [blame] | 2902 | void SSL_CTX_set_grease_enabled(SSL_CTX *ctx, int enabled) { |
| 2903 | ctx->grease_enabled = !!enabled; |
| 2904 | } |
| 2905 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2906 | int SSL_clear(SSL *ssl) { |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2907 | /* In OpenSSL, reusing a client |SSL| with |SSL_clear| causes the previously |
| 2908 | * established session to be offered the next time around. wpa_supplicant |
| 2909 | * depends on this behavior, so emulate it. */ |
| 2910 | SSL_SESSION *session = NULL; |
| 2911 | if (!ssl->server && ssl->s3->established_session != NULL) { |
| 2912 | session = ssl->s3->established_session; |
| 2913 | SSL_SESSION_up_ref(session); |
| 2914 | } |
| 2915 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2916 | /* TODO(davidben): Some state on |ssl| is reset both in |SSL_new| and |
| 2917 | * |SSL_clear| because it is per-connection state rather than configuration |
| 2918 | * state. Per-connection state should be on |ssl->s3| and |ssl->d1| so it is |
| 2919 | * naturally reset at the right points between |SSL_new|, |SSL_clear|, and |
| 2920 | * |ssl3_new|. */ |
| 2921 | |
| 2922 | ssl->rwstate = SSL_NOTHING; |
| 2923 | |
| 2924 | BUF_MEM_free(ssl->init_buf); |
| 2925 | ssl->init_buf = NULL; |
David Benjamin | 4905454 | 2016-07-27 13:51:01 -0400 | [diff] [blame] | 2926 | ssl->init_msg = NULL; |
| 2927 | ssl->init_num = 0; |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2928 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2929 | /* The ssl->d1->mtu is simultaneously configuration (preserved across |
| 2930 | * clear) and connection-specific state (gets reset). |
| 2931 | * |
| 2932 | * TODO(davidben): Avoid this. */ |
| 2933 | unsigned mtu = 0; |
| 2934 | if (ssl->d1 != NULL) { |
| 2935 | mtu = ssl->d1->mtu; |
| 2936 | } |
| 2937 | |
| 2938 | ssl->method->ssl_free(ssl); |
| 2939 | if (!ssl->method->ssl_new(ssl)) { |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2940 | SSL_SESSION_free(session); |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2941 | return 0; |
| 2942 | } |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2943 | |
David Benjamin | ce079fd | 2016-08-02 16:22:34 -0400 | [diff] [blame] | 2944 | 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] | 2945 | ssl->d1->mtu = mtu; |
| 2946 | } |
| 2947 | |
David Benjamin | b79cc84 | 2016-12-07 15:57:14 -0500 | [diff] [blame] | 2948 | if (session != NULL) { |
| 2949 | SSL_set_session(ssl, session); |
| 2950 | SSL_SESSION_free(session); |
| 2951 | } |
| 2952 | |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 2953 | return 1; |
| 2954 | } |
| 2955 | |
David Benjamin | 4e9cc71 | 2016-06-01 20:16:03 -0400 | [diff] [blame] | 2956 | void ssl_do_info_callback(const SSL *ssl, int type, int value) { |
| 2957 | void (*cb)(const SSL *ssl, int type, int value) = NULL; |
| 2958 | if (ssl->info_callback != NULL) { |
| 2959 | cb = ssl->info_callback; |
| 2960 | } else if (ssl->ctx->info_callback != NULL) { |
| 2961 | cb = ssl->ctx->info_callback; |
| 2962 | } |
| 2963 | |
| 2964 | if (cb != NULL) { |
| 2965 | cb(ssl, type, value); |
| 2966 | } |
| 2967 | } |
| 2968 | |
David Benjamin | c027999 | 2016-09-19 20:15:07 -0400 | [diff] [blame] | 2969 | void ssl_do_msg_callback(SSL *ssl, int is_write, int content_type, |
David Benjamin | 4e9cc71 | 2016-06-01 20:16:03 -0400 | [diff] [blame] | 2970 | const void *buf, size_t len) { |
David Benjamin | c027999 | 2016-09-19 20:15:07 -0400 | [diff] [blame] | 2971 | if (ssl->msg_callback == NULL) { |
| 2972 | return; |
David Benjamin | 4e9cc71 | 2016-06-01 20:16:03 -0400 | [diff] [blame] | 2973 | } |
David Benjamin | c027999 | 2016-09-19 20:15:07 -0400 | [diff] [blame] | 2974 | |
| 2975 | /* |version| is zero when calling for |SSL3_RT_HEADER| and |SSL2_VERSION| for |
| 2976 | * a V2ClientHello. */ |
| 2977 | int version; |
| 2978 | switch (content_type) { |
| 2979 | case 0: |
| 2980 | /* V2ClientHello */ |
| 2981 | version = SSL2_VERSION; |
| 2982 | break; |
| 2983 | case SSL3_RT_HEADER: |
| 2984 | version = 0; |
| 2985 | break; |
| 2986 | default: |
Steven Valdez | fdd1099 | 2016-09-15 16:27:05 -0400 | [diff] [blame] | 2987 | version = SSL_version(ssl); |
David Benjamin | c027999 | 2016-09-19 20:15:07 -0400 | [diff] [blame] | 2988 | } |
| 2989 | |
| 2990 | ssl->msg_callback(is_write, version, content_type, buf, len, ssl, |
| 2991 | ssl->msg_callback_arg); |
David Benjamin | 4e9cc71 | 2016-06-01 20:16:03 -0400 | [diff] [blame] | 2992 | } |
| 2993 | |
David Benjamin | da881e9 | 2015-04-26 14:45:04 -0400 | [diff] [blame] | 2994 | int SSL_CTX_sess_connect(const SSL_CTX *ctx) { return 0; } |
| 2995 | int SSL_CTX_sess_connect_good(const SSL_CTX *ctx) { return 0; } |
| 2996 | int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2997 | int SSL_CTX_sess_accept(const SSL_CTX *ctx) { return 0; } |
| 2998 | int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2999 | int SSL_CTX_sess_accept_good(const SSL_CTX *ctx) { return 0; } |
| 3000 | int SSL_CTX_sess_hits(const SSL_CTX *ctx) { return 0; } |
| 3001 | int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx) { return 0; } |
| 3002 | int SSL_CTX_sess_misses(const SSL_CTX *ctx) { return 0; } |
| 3003 | int SSL_CTX_sess_timeouts(const SSL_CTX *ctx) { return 0; } |
| 3004 | int SSL_CTX_sess_cache_full(const SSL_CTX *ctx) { return 0; } |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 3005 | |
| 3006 | int SSL_num_renegotiations(const SSL *ssl) { |
| 3007 | return SSL_total_renegotiations(ssl); |
| 3008 | } |
| 3009 | |
| 3010 | int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx) { return 0; } |
| 3011 | int SSL_need_tmp_RSA(const SSL *ssl) { return 0; } |
| 3012 | int SSL_CTX_set_tmp_rsa(SSL_CTX *ctx, const RSA *rsa) { return 1; } |
| 3013 | int SSL_set_tmp_rsa(SSL *ssl, const RSA *rsa) { return 1; } |
Matt Braithwaite | 4838d8a | 2015-08-20 13:20:03 -0700 | [diff] [blame] | 3014 | void ERR_load_SSL_strings(void) {} |
David Benjamin | 27bbae4 | 2015-09-13 00:54:37 -0400 | [diff] [blame] | 3015 | void SSL_load_error_strings(void) {} |
David Benjamin | 936aada | 2016-06-07 19:09:22 -0400 | [diff] [blame] | 3016 | int SSL_cache_hit(SSL *ssl) { return SSL_session_reused(ssl); } |
| 3017 | |
| 3018 | int SSL_CTX_set_tmp_ecdh(SSL_CTX *ctx, const EC_KEY *ec_key) { |
| 3019 | if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) { |
| 3020 | OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER); |
| 3021 | return 0; |
| 3022 | } |
| 3023 | int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)); |
| 3024 | return SSL_CTX_set1_curves(ctx, &nid, 1); |
| 3025 | } |
| 3026 | |
| 3027 | int SSL_set_tmp_ecdh(SSL *ssl, const EC_KEY *ec_key) { |
| 3028 | if (ec_key == NULL || EC_KEY_get0_group(ec_key) == NULL) { |
| 3029 | OPENSSL_PUT_ERROR(SSL, ERR_R_PASSED_NULL_PARAMETER); |
| 3030 | return 0; |
| 3031 | } |
| 3032 | int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec_key)); |
| 3033 | return SSL_set1_curves(ssl, &nid, 1); |
| 3034 | } |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 3035 | |
| 3036 | void ssl_get_current_time(const SSL *ssl, struct timeval *out_clock) { |
| 3037 | if (ssl->ctx->current_time_cb != NULL) { |
| 3038 | ssl->ctx->current_time_cb(ssl, out_clock); |
| 3039 | return; |
| 3040 | } |
| 3041 | |
David Benjamin | ec978dd | 2016-11-04 18:59:33 -0400 | [diff] [blame] | 3042 | #if defined(BORINGSSL_UNSAFE_DETERMINISTIC_MODE) |
David Benjamin | 01a9057 | 2016-09-22 00:11:43 -0400 | [diff] [blame] | 3043 | out_clock->tv_sec = 1234; |
| 3044 | out_clock->tv_usec = 1234; |
| 3045 | #elif defined(OPENSSL_WINDOWS) |
David Benjamin | 721e8b7 | 2016-08-03 13:13:17 -0400 | [diff] [blame] | 3046 | struct _timeb time; |
| 3047 | _ftime(&time); |
| 3048 | out_clock->tv_sec = time.time; |
| 3049 | out_clock->tv_usec = time.millitm * 1000; |
| 3050 | #else |
| 3051 | gettimeofday(out_clock, NULL); |
| 3052 | #endif |
| 3053 | } |
David Benjamin | e470690 | 2016-09-20 15:12:23 -0400 | [diff] [blame] | 3054 | |
| 3055 | int SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version) { |
| 3056 | return SSL_CTX_set_min_proto_version(ctx, version); |
| 3057 | } |
| 3058 | |
| 3059 | int SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version) { |
| 3060 | return SSL_CTX_set_max_proto_version(ctx, version); |
| 3061 | } |
| 3062 | |
| 3063 | int SSL_set_min_version(SSL *ssl, uint16_t version) { |
| 3064 | return SSL_set_min_proto_version(ssl, version); |
| 3065 | } |
| 3066 | |
| 3067 | int SSL_set_max_version(SSL *ssl, uint16_t version) { |
| 3068 | return SSL_set_max_proto_version(ssl, version); |
| 3069 | } |