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 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 141 | #include <assert.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 142 | #include <stdio.h> |
| 143 | #include <string.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 144 | |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 145 | #include <openssl/bytestring.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 146 | #include <openssl/dh.h> |
David Benjamin | f0ae170 | 2015-04-07 23:05:04 -0400 | [diff] [blame] | 147 | #include <openssl/err.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 148 | #include <openssl/lhash.h> |
| 149 | #include <openssl/mem.h> |
| 150 | #include <openssl/obj.h> |
| 151 | #include <openssl/rand.h> |
| 152 | #include <openssl/x509v3.h> |
| 153 | |
David Benjamin | 2ee94aa | 2015-04-07 22:38:30 -0400 | [diff] [blame] | 154 | #include "internal.h" |
David Benjamin | 546f1a5 | 2015-04-15 16:46:09 -0400 | [diff] [blame] | 155 | #include "../crypto/internal.h" |
| 156 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 157 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 158 | /* Some error codes are special. Ensure the make_errors.go script never |
| 159 | * regresses this. */ |
| 160 | OPENSSL_COMPILE_ASSERT(SSL_R_TLSV1_ALERT_NO_RENEGOTIATION == |
| 161 | SSL_AD_NO_RENEGOTIATION + SSL_AD_REASON_OFFSET, |
| 162 | ssl_alert_reason_code_mismatch); |
David Benjamin | e113608 | 2014-09-20 12:28:58 -0400 | [diff] [blame] | 163 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 164 | /* kMaxHandshakeSize is the maximum size, in bytes, of a handshake message. */ |
| 165 | static const size_t kMaxHandshakeSize = (1u << 24) - 1; |
| 166 | |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 167 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl = CRYPTO_EX_DATA_CLASS_INIT; |
| 168 | static CRYPTO_EX_DATA_CLASS g_ex_data_class_ssl_ctx = CRYPTO_EX_DATA_CLASS_INIT; |
| 169 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 170 | int SSL_clear(SSL *ssl) { |
| 171 | if (ssl->method == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 172 | OPENSSL_PUT_ERROR(SSL, SSL_clear, SSL_R_NO_METHOD_SPECIFIED); |
| 173 | return 0; |
| 174 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 175 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 176 | if (ssl_clear_bad_session(ssl)) { |
| 177 | SSL_SESSION_free(ssl->session); |
| 178 | ssl->session = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 179 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 180 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 181 | ssl->hit = 0; |
| 182 | ssl->shutdown = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 183 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 184 | /* SSL_clear may be called before or after the |ssl| is initialized in either |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 185 | * accept or connect state. In the latter case, SSL_clear should preserve the |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 186 | * half and reset |ssl->state| accordingly. */ |
| 187 | if (ssl->handshake_func != NULL) { |
| 188 | if (ssl->server) { |
| 189 | SSL_set_accept_state(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 190 | } else { |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 191 | SSL_set_connect_state(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 192 | } |
| 193 | } else { |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 194 | assert(ssl->state == 0); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 195 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 196 | |
David Benjamin | 5f387e3 | 2015-05-15 22:05:42 -0400 | [diff] [blame] | 197 | /* TODO(davidben): Some state on |ssl| is reset both in |SSL_new| and |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 198 | * |SSL_clear| because it is per-connection state rather than configuration |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 199 | * state. Per-connection state should be on |ssl->s3| and |ssl->d1| so it is |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 200 | * naturally reset at the right points between |SSL_new|, |SSL_clear|, and |
| 201 | * |ssl3_new|. */ |
| 202 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 203 | ssl->rwstate = SSL_NOTHING; |
| 204 | ssl->rstate = SSL_ST_READ_HEADER; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 205 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 206 | BUF_MEM_free(ssl->init_buf); |
| 207 | ssl->init_buf = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 208 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 209 | ssl->packet = NULL; |
| 210 | ssl->packet_length = 0; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 211 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 212 | ssl_clear_cipher_ctx(ssl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 213 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 214 | OPENSSL_free(ssl->next_proto_negotiated); |
| 215 | ssl->next_proto_negotiated = NULL; |
| 216 | ssl->next_proto_negotiated_len = 0; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 217 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 218 | /* The ssl->d1->mtu is simultaneously configuration (preserved across |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 219 | * clear) and connection-specific state (gets reset). |
| 220 | * |
| 221 | * TODO(davidben): Avoid this. */ |
| 222 | unsigned mtu = 0; |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 223 | if (ssl->d1 != NULL) { |
| 224 | mtu = ssl->d1->mtu; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 225 | } |
| 226 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 227 | ssl->method->ssl_free(ssl); |
| 228 | if (!ssl->method->ssl_new(ssl)) { |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 229 | return 0; |
| 230 | } |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 231 | ssl->enc_method = ssl3_get_enc_method(ssl->version); |
| 232 | assert(ssl->enc_method != NULL); |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 233 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 234 | if (SSL_IS_DTLS(ssl) && (SSL_get_options(ssl) & SSL_OP_NO_QUERY_MTU)) { |
| 235 | ssl->d1->mtu = mtu; |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 236 | } |
| 237 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 238 | ssl->client_version = ssl->version; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 239 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 240 | return 1; |
| 241 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 242 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 243 | SSL *SSL_new(SSL_CTX *ctx) { |
| 244 | SSL *s; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 245 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 246 | if (ctx == NULL) { |
| 247 | OPENSSL_PUT_ERROR(SSL, SSL_new, SSL_R_NULL_SSL_CTX); |
| 248 | return NULL; |
| 249 | } |
| 250 | if (ctx->method == NULL) { |
| 251 | OPENSSL_PUT_ERROR(SSL, SSL_new, SSL_R_SSL_CTX_HAS_NO_DEFAULT_SSL_VERSION); |
| 252 | return NULL; |
| 253 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 254 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 255 | s = (SSL *)OPENSSL_malloc(sizeof(SSL)); |
| 256 | if (s == NULL) { |
| 257 | goto err; |
| 258 | } |
| 259 | memset(s, 0, sizeof(SSL)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 260 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 261 | s->min_version = ctx->min_version; |
| 262 | s->max_version = ctx->max_version; |
David Benjamin | 1eb367c | 2014-12-12 18:17:51 -0500 | [diff] [blame] | 263 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 264 | s->options = ctx->options; |
| 265 | s->mode = ctx->mode; |
| 266 | s->max_cert_list = ctx->max_cert_list; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 267 | |
David Benjamin | a5a3eeb | 2015-03-18 20:26:30 -0400 | [diff] [blame] | 268 | s->cert = ssl_cert_dup(ctx->cert); |
| 269 | if (s->cert == NULL) { |
| 270 | goto err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 271 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 272 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 273 | s->msg_callback = ctx->msg_callback; |
| 274 | s->msg_callback_arg = ctx->msg_callback_arg; |
| 275 | s->verify_mode = ctx->verify_mode; |
| 276 | s->sid_ctx_length = ctx->sid_ctx_length; |
| 277 | assert(s->sid_ctx_length <= sizeof s->sid_ctx); |
| 278 | memcpy(&s->sid_ctx, &ctx->sid_ctx, sizeof(s->sid_ctx)); |
| 279 | s->verify_callback = ctx->default_verify_callback; |
| 280 | s->generate_session_id = ctx->generate_session_id; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 281 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 282 | s->param = X509_VERIFY_PARAM_new(); |
| 283 | if (!s->param) { |
| 284 | goto err; |
| 285 | } |
| 286 | X509_VERIFY_PARAM_inherit(s->param, ctx->param); |
| 287 | s->quiet_shutdown = ctx->quiet_shutdown; |
| 288 | s->max_send_fragment = ctx->max_send_fragment; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 289 | |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 290 | CRYPTO_refcount_inc(&ctx->references); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 291 | s->ctx = ctx; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 292 | s->tlsext_ticket_expected = 0; |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 293 | CRYPTO_refcount_inc(&ctx->references); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 294 | s->initial_ctx = ctx; |
| 295 | if (ctx->tlsext_ecpointformatlist) { |
| 296 | s->tlsext_ecpointformatlist = BUF_memdup( |
| 297 | ctx->tlsext_ecpointformatlist, ctx->tlsext_ecpointformatlist_length); |
| 298 | if (!s->tlsext_ecpointformatlist) { |
| 299 | goto err; |
| 300 | } |
| 301 | s->tlsext_ecpointformatlist_length = ctx->tlsext_ecpointformatlist_length; |
| 302 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 303 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 304 | if (ctx->tlsext_ellipticcurvelist) { |
| 305 | s->tlsext_ellipticcurvelist = |
| 306 | BUF_memdup(ctx->tlsext_ellipticcurvelist, |
| 307 | ctx->tlsext_ellipticcurvelist_length * 2); |
| 308 | if (!s->tlsext_ellipticcurvelist) { |
| 309 | goto err; |
| 310 | } |
| 311 | s->tlsext_ellipticcurvelist_length = ctx->tlsext_ellipticcurvelist_length; |
| 312 | } |
| 313 | s->next_proto_negotiated = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 314 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 315 | if (s->ctx->alpn_client_proto_list) { |
| 316 | s->alpn_client_proto_list = BUF_memdup(s->ctx->alpn_client_proto_list, |
| 317 | s->ctx->alpn_client_proto_list_len); |
| 318 | if (s->alpn_client_proto_list == NULL) { |
| 319 | goto err; |
| 320 | } |
| 321 | s->alpn_client_proto_list_len = s->ctx->alpn_client_proto_list_len; |
| 322 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 323 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 324 | s->verify_result = X509_V_OK; |
| 325 | s->method = ctx->method; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 326 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 327 | if (!s->method->ssl_new(s)) { |
| 328 | goto err; |
| 329 | } |
| 330 | s->enc_method = ssl3_get_enc_method(s->version); |
| 331 | assert(s->enc_method != NULL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 332 | |
David Benjamin | 62fd162 | 2015-01-11 13:30:01 -0500 | [diff] [blame] | 333 | s->rwstate = SSL_NOTHING; |
| 334 | s->rstate = SSL_ST_READ_HEADER; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 335 | |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 336 | CRYPTO_new_ex_data(&g_ex_data_class_ssl, s, &s->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 337 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 338 | s->psk_identity_hint = NULL; |
| 339 | if (ctx->psk_identity_hint) { |
| 340 | s->psk_identity_hint = BUF_strdup(ctx->psk_identity_hint); |
| 341 | if (s->psk_identity_hint == NULL) { |
| 342 | goto err; |
| 343 | } |
| 344 | } |
| 345 | s->psk_client_callback = ctx->psk_client_callback; |
| 346 | s->psk_server_callback = ctx->psk_server_callback; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 347 | |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 348 | s->tlsext_channel_id_enabled = ctx->tlsext_channel_id_enabled; |
| 349 | if (ctx->tlsext_channel_id_private) { |
David Benjamin | 9a10f8f | 2015-05-05 22:22:40 -0400 | [diff] [blame] | 350 | s->tlsext_channel_id_private = |
| 351 | EVP_PKEY_up_ref(ctx->tlsext_channel_id_private); |
David Benjamin | 02ddbfd | 2015-01-11 13:09:11 -0500 | [diff] [blame] | 352 | } |
| 353 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 354 | s->signed_cert_timestamps_enabled = s->ctx->signed_cert_timestamps_enabled; |
| 355 | s->ocsp_stapling_enabled = s->ctx->ocsp_stapling_enabled; |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 356 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 357 | return s; |
| 358 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 359 | err: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 360 | SSL_free(s); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 361 | OPENSSL_PUT_ERROR(SSL, SSL_new, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 362 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 363 | return NULL; |
| 364 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 365 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 366 | int SSL_CTX_set_session_id_context(SSL_CTX *ctx, const uint8_t *sid_ctx, |
| 367 | unsigned int sid_ctx_len) { |
| 368 | if (sid_ctx_len > sizeof ctx->sid_ctx) { |
| 369 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_set_session_id_context, |
| 370 | SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG); |
| 371 | return 0; |
| 372 | } |
| 373 | ctx->sid_ctx_length = sid_ctx_len; |
| 374 | memcpy(ctx->sid_ctx, sid_ctx, sid_ctx_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 375 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 376 | return 1; |
| 377 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 378 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 379 | int SSL_set_session_id_context(SSL *ssl, const uint8_t *sid_ctx, |
| 380 | unsigned int sid_ctx_len) { |
| 381 | if (sid_ctx_len > SSL_MAX_SID_CTX_LENGTH) { |
| 382 | OPENSSL_PUT_ERROR(SSL, SSL_set_session_id_context, |
| 383 | SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG); |
| 384 | return 0; |
| 385 | } |
| 386 | ssl->sid_ctx_length = sid_ctx_len; |
| 387 | memcpy(ssl->sid_ctx, sid_ctx, sid_ctx_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 388 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 389 | return 1; |
| 390 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 391 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 392 | int SSL_CTX_set_generate_session_id(SSL_CTX *ctx, GEN_SESSION_CB cb) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 393 | ctx->generate_session_id = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 394 | return 1; |
| 395 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 396 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 397 | int SSL_set_generate_session_id(SSL *ssl, GEN_SESSION_CB cb) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 398 | ssl->generate_session_id = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 399 | return 1; |
| 400 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 401 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 402 | int SSL_has_matching_session_id(const SSL *ssl, const uint8_t *id, |
| 403 | unsigned int id_len) { |
| 404 | /* A quick examination of SSL_SESSION_hash and SSL_SESSION_cmp shows how we |
| 405 | * can "construct" a session to give us the desired check - ie. to find if |
| 406 | * there's a session in the hash table that would conflict with any new |
| 407 | * session built out of this id/id_len and the ssl_version in use by this |
| 408 | * SSL. */ |
| 409 | SSL_SESSION r, *p; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 410 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 411 | if (id_len > sizeof r.session_id) { |
| 412 | return 0; |
| 413 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 414 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 415 | r.ssl_version = ssl->version; |
| 416 | r.session_id_length = id_len; |
| 417 | memcpy(r.session_id, id, id_len); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 418 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 419 | CRYPTO_MUTEX_lock_read(&ssl->ctx->lock); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 420 | p = lh_SSL_SESSION_retrieve(ssl->ctx->sessions, &r); |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 421 | CRYPTO_MUTEX_unlock(&ssl->ctx->lock); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 422 | return p != NULL; |
| 423 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 424 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 425 | int SSL_CTX_set_purpose(SSL_CTX *s, int purpose) { |
| 426 | return X509_VERIFY_PARAM_set_purpose(s->param, purpose); |
| 427 | } |
| 428 | |
| 429 | int SSL_set_purpose(SSL *s, int purpose) { |
| 430 | return X509_VERIFY_PARAM_set_purpose(s->param, purpose); |
| 431 | } |
| 432 | |
| 433 | int SSL_CTX_set_trust(SSL_CTX *s, int trust) { |
| 434 | return X509_VERIFY_PARAM_set_trust(s->param, trust); |
| 435 | } |
| 436 | |
| 437 | int SSL_set_trust(SSL *s, int trust) { |
| 438 | return X509_VERIFY_PARAM_set_trust(s->param, trust); |
| 439 | } |
| 440 | |
| 441 | int SSL_CTX_set1_param(SSL_CTX *ctx, X509_VERIFY_PARAM *vpm) { |
| 442 | return X509_VERIFY_PARAM_set1(ctx->param, vpm); |
| 443 | } |
| 444 | |
| 445 | int SSL_set1_param(SSL *ssl, X509_VERIFY_PARAM *vpm) { |
| 446 | return X509_VERIFY_PARAM_set1(ssl->param, vpm); |
| 447 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 448 | |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 449 | void ssl_cipher_preference_list_free( |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 450 | struct ssl_cipher_preference_list_st *cipher_list) { |
David Benjamin | 5d1ec73 | 2015-04-22 13:38:00 -0400 | [diff] [blame] | 451 | if (cipher_list == NULL) { |
| 452 | return; |
| 453 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 454 | sk_SSL_CIPHER_free(cipher_list->ciphers); |
| 455 | OPENSSL_free(cipher_list->in_group_flags); |
| 456 | OPENSSL_free(cipher_list); |
| 457 | } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 458 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 459 | struct ssl_cipher_preference_list_st *ssl_cipher_preference_list_dup( |
| 460 | struct ssl_cipher_preference_list_st *cipher_list) { |
| 461 | struct ssl_cipher_preference_list_st *ret = NULL; |
| 462 | size_t n = sk_SSL_CIPHER_num(cipher_list->ciphers); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 463 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 464 | ret = OPENSSL_malloc(sizeof(struct ssl_cipher_preference_list_st)); |
| 465 | if (!ret) { |
| 466 | goto err; |
| 467 | } |
| 468 | |
| 469 | ret->ciphers = NULL; |
| 470 | ret->in_group_flags = NULL; |
| 471 | ret->ciphers = sk_SSL_CIPHER_dup(cipher_list->ciphers); |
| 472 | if (!ret->ciphers) { |
| 473 | goto err; |
| 474 | } |
| 475 | ret->in_group_flags = BUF_memdup(cipher_list->in_group_flags, n); |
| 476 | if (!ret->in_group_flags) { |
| 477 | goto err; |
| 478 | } |
| 479 | |
| 480 | return ret; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 481 | |
| 482 | err: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 483 | ssl_cipher_preference_list_free(ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 484 | return NULL; |
| 485 | } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 486 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 487 | struct ssl_cipher_preference_list_st *ssl_cipher_preference_list_from_ciphers( |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 488 | STACK_OF(SSL_CIPHER) *ciphers) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 489 | struct ssl_cipher_preference_list_st *ret = NULL; |
| 490 | size_t n = sk_SSL_CIPHER_num(ciphers); |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 491 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 492 | ret = OPENSSL_malloc(sizeof(struct ssl_cipher_preference_list_st)); |
| 493 | if (!ret) { |
| 494 | goto err; |
| 495 | } |
| 496 | ret->ciphers = NULL; |
| 497 | ret->in_group_flags = NULL; |
| 498 | ret->ciphers = sk_SSL_CIPHER_dup(ciphers); |
| 499 | if (!ret->ciphers) { |
| 500 | goto err; |
| 501 | } |
| 502 | ret->in_group_flags = OPENSSL_malloc(n); |
| 503 | if (!ret->in_group_flags) { |
| 504 | goto err; |
| 505 | } |
| 506 | memset(ret->in_group_flags, 0, n); |
| 507 | return ret; |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 508 | |
| 509 | err: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 510 | ssl_cipher_preference_list_free(ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 511 | return NULL; |
| 512 | } |
Adam Langley | 858a88d | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 513 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 514 | 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] | 515 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 516 | X509_VERIFY_PARAM *SSL_get0_param(SSL *ssl) { return ssl->param; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 517 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 518 | void SSL_certs_clear(SSL *s) { ssl_cert_clear_certs(s->cert); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 519 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 520 | void SSL_free(SSL *ssl) { |
| 521 | if (ssl == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 522 | return; |
| 523 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 524 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 525 | X509_VERIFY_PARAM_free(ssl->param); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 526 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 527 | CRYPTO_free_ex_data(&g_ex_data_class_ssl, ssl, &ssl->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 528 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 529 | if (ssl->bbio != NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 530 | /* If the buffering BIO is in place, pop it off */ |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 531 | if (ssl->bbio == ssl->wbio) { |
| 532 | ssl->wbio = BIO_pop(ssl->wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 533 | } |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 534 | BIO_free(ssl->bbio); |
| 535 | ssl->bbio = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 536 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 537 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 538 | int free_wbio = ssl->wbio != ssl->rbio; |
| 539 | BIO_free_all(ssl->rbio); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 540 | if (free_wbio) { |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 541 | BIO_free_all(ssl->wbio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 542 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 543 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 544 | BUF_MEM_free(ssl->init_buf); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 545 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 546 | /* add extra stuff */ |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 547 | ssl_cipher_preference_list_free(ssl->cipher_list); |
| 548 | sk_SSL_CIPHER_free(ssl->cipher_list_by_id); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 549 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 550 | ssl_clear_bad_session(ssl); |
| 551 | SSL_SESSION_free(ssl->session); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 552 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 553 | ssl_clear_cipher_ctx(ssl); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 554 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 555 | ssl_cert_free(ssl->cert); |
Adam Langley | 0289c73 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 556 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 557 | OPENSSL_free(ssl->tlsext_hostname); |
| 558 | SSL_CTX_free(ssl->initial_ctx); |
| 559 | OPENSSL_free(ssl->tlsext_ecpointformatlist); |
| 560 | OPENSSL_free(ssl->tlsext_ellipticcurvelist); |
| 561 | OPENSSL_free(ssl->alpn_client_proto_list); |
| 562 | EVP_PKEY_free(ssl->tlsext_channel_id_private); |
| 563 | OPENSSL_free(ssl->psk_identity_hint); |
| 564 | sk_X509_NAME_pop_free(ssl->client_CA, X509_NAME_free); |
| 565 | OPENSSL_free(ssl->next_proto_negotiated); |
| 566 | sk_SRTP_PROTECTION_PROFILE_free(ssl->srtp_profiles); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 567 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 568 | if (ssl->method != NULL) { |
| 569 | ssl->method->ssl_free(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 570 | } |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 571 | SSL_CTX_free(ssl->ctx); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 572 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 573 | OPENSSL_free(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 574 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 575 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 576 | void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio) { |
| 577 | /* If the output buffering BIO is still in place, remove it. */ |
| 578 | if (s->bbio != NULL) { |
| 579 | if (s->wbio == s->bbio) { |
| 580 | s->wbio = s->wbio->next_bio; |
| 581 | s->bbio->next_bio = NULL; |
| 582 | } |
| 583 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 584 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 585 | if (s->rbio != rbio) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 586 | BIO_free_all(s->rbio); |
| 587 | } |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 588 | if (s->wbio != wbio && s->rbio != s->wbio) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 589 | BIO_free_all(s->wbio); |
| 590 | } |
| 591 | s->rbio = rbio; |
| 592 | s->wbio = wbio; |
| 593 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 594 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 595 | BIO *SSL_get_rbio(const SSL *s) { return s->rbio; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 596 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 597 | BIO *SSL_get_wbio(const SSL *s) { return s->wbio; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 598 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 599 | int SSL_get_fd(const SSL *s) { return SSL_get_rfd(s); } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 600 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 601 | int SSL_get_rfd(const SSL *s) { |
| 602 | int ret = -1; |
| 603 | BIO *b, *r; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 604 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 605 | b = SSL_get_rbio(s); |
| 606 | r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR); |
| 607 | if (r != NULL) { |
| 608 | BIO_get_fd(r, &ret); |
| 609 | } |
| 610 | return ret; |
| 611 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 612 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 613 | int SSL_get_wfd(const SSL *s) { |
| 614 | int ret = -1; |
| 615 | BIO *b, *r; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 616 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 617 | b = SSL_get_wbio(s); |
| 618 | r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR); |
| 619 | if (r != NULL) { |
| 620 | BIO_get_fd(r, &ret); |
| 621 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 622 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 623 | return ret; |
| 624 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 625 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 626 | int SSL_set_fd(SSL *s, int fd) { |
| 627 | int ret = 0; |
| 628 | BIO *bio = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 629 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 630 | bio = BIO_new(BIO_s_fd()); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 631 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 632 | if (bio == NULL) { |
| 633 | OPENSSL_PUT_ERROR(SSL, SSL_set_fd, ERR_R_BUF_LIB); |
| 634 | goto err; |
| 635 | } |
| 636 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
| 637 | SSL_set_bio(s, bio, bio); |
| 638 | ret = 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 639 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 640 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 641 | return ret; |
| 642 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 643 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 644 | int SSL_set_wfd(SSL *s, int fd) { |
| 645 | int ret = 0; |
| 646 | BIO *bio = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 647 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 648 | if (s->rbio == NULL || BIO_method_type(s->rbio) != BIO_TYPE_FD || |
| 649 | (int)BIO_get_fd(s->rbio, NULL) != fd) { |
| 650 | bio = BIO_new(BIO_s_fd()); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 651 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 652 | if (bio == NULL) { |
| 653 | OPENSSL_PUT_ERROR(SSL, SSL_set_wfd, ERR_R_BUF_LIB); |
| 654 | goto err; |
| 655 | } |
| 656 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
| 657 | SSL_set_bio(s, SSL_get_rbio(s), bio); |
| 658 | } else { |
| 659 | SSL_set_bio(s, SSL_get_rbio(s), SSL_get_rbio(s)); |
| 660 | } |
| 661 | |
| 662 | ret = 1; |
| 663 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 664 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 665 | return ret; |
| 666 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 667 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 668 | int SSL_set_rfd(SSL *s, int fd) { |
| 669 | int ret = 0; |
| 670 | BIO *bio = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 671 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 672 | if (s->wbio == NULL || BIO_method_type(s->wbio) != BIO_TYPE_FD || |
| 673 | (int)BIO_get_fd(s->wbio, NULL) != fd) { |
| 674 | bio = BIO_new(BIO_s_fd()); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 675 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 676 | if (bio == NULL) { |
| 677 | OPENSSL_PUT_ERROR(SSL, SSL_set_rfd, ERR_R_BUF_LIB); |
| 678 | goto err; |
| 679 | } |
| 680 | BIO_set_fd(bio, fd, BIO_NOCLOSE); |
| 681 | SSL_set_bio(s, bio, SSL_get_wbio(s)); |
| 682 | } else { |
| 683 | SSL_set_bio(s, SSL_get_wbio(s), SSL_get_wbio(s)); |
| 684 | } |
| 685 | ret = 1; |
| 686 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 687 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 688 | return ret; |
| 689 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 690 | |
| 691 | /* return length of latest Finished message we sent, copy to 'buf' */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 692 | size_t SSL_get_finished(const SSL *s, void *buf, size_t count) { |
| 693 | size_t ret = 0; |
| 694 | |
| 695 | if (s->s3 != NULL) { |
| 696 | ret = s->s3->tmp.finish_md_len; |
| 697 | if (count > ret) { |
| 698 | count = ret; |
| 699 | } |
| 700 | memcpy(buf, s->s3->tmp.finish_md, count); |
| 701 | } |
| 702 | |
| 703 | return ret; |
| 704 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 705 | |
| 706 | /* return length of latest Finished message we expected, copy to 'buf' */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 707 | size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count) { |
| 708 | size_t ret = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 709 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 710 | if (s->s3 != NULL) { |
| 711 | ret = s->s3->tmp.peer_finish_md_len; |
| 712 | if (count > ret) { |
| 713 | count = ret; |
| 714 | } |
| 715 | memcpy(buf, s->s3->tmp.peer_finish_md, count); |
| 716 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 717 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 718 | return ret; |
| 719 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 720 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 721 | int SSL_get_verify_mode(const SSL *s) { return s->verify_mode; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 722 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 723 | int SSL_get_verify_depth(const SSL *s) { |
| 724 | return X509_VERIFY_PARAM_get_depth(s->param); |
| 725 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 726 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 727 | int (*SSL_get_verify_callback(const SSL *s))(int, X509_STORE_CTX *) { |
| 728 | return s->verify_callback; |
| 729 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 730 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 731 | 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] | 732 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 733 | int SSL_CTX_get_verify_depth(const SSL_CTX *ctx) { |
| 734 | return X509_VERIFY_PARAM_get_depth(ctx->param); |
| 735 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 736 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 737 | int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int, X509_STORE_CTX *) { |
| 738 | return ctx->default_verify_callback; |
| 739 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 740 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 741 | void SSL_set_verify(SSL *s, int mode, |
| 742 | int (*callback)(int ok, X509_STORE_CTX *ctx)) { |
| 743 | s->verify_mode = mode; |
| 744 | if (callback != NULL) { |
| 745 | s->verify_callback = callback; |
| 746 | } |
| 747 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 748 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 749 | void SSL_set_verify_depth(SSL *s, int depth) { |
| 750 | X509_VERIFY_PARAM_set_depth(s->param, depth); |
| 751 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 752 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 753 | int SSL_CTX_get_read_ahead(const SSL_CTX *ctx) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 754 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 755 | int SSL_get_read_ahead(const SSL *s) { return 0; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 756 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 757 | void SSL_CTX_set_read_ahead(SSL_CTX *ctx, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 758 | |
David Benjamin | 9a41d1b | 2015-05-16 01:30:09 -0400 | [diff] [blame] | 759 | void SSL_set_read_ahead(SSL *s, int yes) { } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 760 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 761 | int SSL_pending(const SSL *s) { |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 762 | if (s->rstate == SSL_ST_READ_BODY) { |
| 763 | return 0; |
| 764 | } |
| 765 | |
| 766 | return (s->s3->rrec.type == SSL3_RT_APPLICATION_DATA) ? s->s3->rrec.length |
| 767 | : 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 768 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 769 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 770 | X509 *SSL_get_peer_certificate(const SSL *s) { |
| 771 | X509 *r; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 772 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 773 | if (s == NULL || s->session == NULL) { |
| 774 | r = NULL; |
| 775 | } else { |
| 776 | r = s->session->peer; |
| 777 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 778 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 779 | if (r == NULL) { |
| 780 | return NULL; |
| 781 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 782 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 783 | return X509_up_ref(r); |
| 784 | } |
| 785 | |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 786 | STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) { |
| 787 | STACK_OF(X509) *r; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 788 | |
| 789 | if (s == NULL || s->session == NULL || s->session->sess_cert == NULL) { |
| 790 | r = NULL; |
| 791 | } else { |
| 792 | r = s->session->sess_cert->cert_chain; |
| 793 | } |
| 794 | |
| 795 | /* If we are a client, cert_chain includes the peer's own certificate; if we |
| 796 | * are a server, it does not. */ |
| 797 | return r; |
| 798 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 799 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 800 | /* Fix this so it checks all the valid key/cert options */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 801 | int SSL_CTX_check_private_key(const SSL_CTX *ctx) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 802 | if (ctx == NULL || ctx->cert == NULL || ctx->cert->x509 == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 803 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_check_private_key, |
| 804 | SSL_R_NO_CERTIFICATE_ASSIGNED); |
| 805 | return 0; |
| 806 | } |
| 807 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 808 | if (ctx->cert->privatekey == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 809 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_check_private_key, |
| 810 | SSL_R_NO_PRIVATE_KEY_ASSIGNED); |
| 811 | return 0; |
| 812 | } |
| 813 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 814 | return X509_check_private_key(ctx->cert->x509, ctx->cert->privatekey); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 815 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 816 | |
| 817 | /* Fix this function so that it takes an optional type parameter */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 818 | int SSL_check_private_key(const SSL *ssl) { |
| 819 | if (ssl == NULL) { |
| 820 | OPENSSL_PUT_ERROR(SSL, SSL_check_private_key, ERR_R_PASSED_NULL_PARAMETER); |
| 821 | return 0; |
| 822 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 823 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 824 | if (ssl->cert == NULL) { |
| 825 | OPENSSL_PUT_ERROR(SSL, SSL_check_private_key, |
| 826 | SSL_R_NO_CERTIFICATE_ASSIGNED); |
| 827 | return 0; |
| 828 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 829 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 830 | if (ssl->cert->x509 == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 831 | OPENSSL_PUT_ERROR(SSL, SSL_check_private_key, |
| 832 | SSL_R_NO_CERTIFICATE_ASSIGNED); |
| 833 | return 0; |
| 834 | } |
David Benjamin | 0b145c2 | 2014-11-26 20:10:09 -0500 | [diff] [blame] | 835 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 836 | if (ssl->cert->privatekey == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 837 | OPENSSL_PUT_ERROR(SSL, SSL_check_private_key, |
| 838 | SSL_R_NO_PRIVATE_KEY_ASSIGNED); |
| 839 | return 0; |
| 840 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 841 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 842 | return X509_check_private_key(ssl->cert->x509, ssl->cert->privatekey); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 843 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 844 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 845 | int SSL_accept(SSL *s) { |
| 846 | if (s->handshake_func == 0) { |
| 847 | /* Not properly initialized yet */ |
| 848 | SSL_set_accept_state(s); |
| 849 | } |
David Benjamin | 0b145c2 | 2014-11-26 20:10:09 -0500 | [diff] [blame] | 850 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 851 | if (s->handshake_func != s->method->ssl_accept) { |
HÃ¥vard Molland | ab2479a | 2015-03-20 13:15:39 +0100 | [diff] [blame] | 852 | OPENSSL_PUT_ERROR(SSL, SSL_accept, ERR_R_INTERNAL_ERROR); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 853 | return -1; |
| 854 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 855 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 856 | return s->handshake_func(s); |
| 857 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 858 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 859 | int SSL_connect(SSL *s) { |
| 860 | if (s->handshake_func == 0) { |
| 861 | /* Not properly initialized yet */ |
| 862 | SSL_set_connect_state(s); |
| 863 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 864 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 865 | if (s->handshake_func != s->method->ssl_connect) { |
| 866 | OPENSSL_PUT_ERROR(SSL, SSL_connect, ERR_R_INTERNAL_ERROR); |
| 867 | return -1; |
| 868 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 869 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 870 | return s->handshake_func(s); |
| 871 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 872 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 873 | long SSL_get_default_timeout(const SSL *s) { |
| 874 | return SSL_DEFAULT_SESSION_TIMEOUT; |
| 875 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 876 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 877 | int SSL_read(SSL *s, void *buf, int num) { |
| 878 | if (s->handshake_func == 0) { |
| 879 | OPENSSL_PUT_ERROR(SSL, SSL_read, SSL_R_UNINITIALIZED); |
| 880 | return -1; |
| 881 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 882 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 883 | if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { |
| 884 | s->rwstate = SSL_NOTHING; |
| 885 | return 0; |
| 886 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 887 | |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 888 | ERR_clear_system_error(); |
| 889 | return s->method->ssl_read_app_data(s, buf, num, 0); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 890 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 891 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 892 | int SSL_peek(SSL *s, void *buf, int num) { |
| 893 | if (s->handshake_func == 0) { |
| 894 | OPENSSL_PUT_ERROR(SSL, SSL_peek, SSL_R_UNINITIALIZED); |
| 895 | return -1; |
| 896 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 897 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 898 | if (s->shutdown & SSL_RECEIVED_SHUTDOWN) { |
| 899 | return 0; |
| 900 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 901 | |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 902 | ERR_clear_system_error(); |
| 903 | return s->method->ssl_read_app_data(s, buf, num, 1); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 904 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 905 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 906 | int SSL_write(SSL *s, const void *buf, int num) { |
| 907 | if (s->handshake_func == 0) { |
| 908 | OPENSSL_PUT_ERROR(SSL, SSL_write, SSL_R_UNINITIALIZED); |
| 909 | return -1; |
| 910 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 911 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 912 | if (s->shutdown & SSL_SENT_SHUTDOWN) { |
| 913 | s->rwstate = SSL_NOTHING; |
| 914 | OPENSSL_PUT_ERROR(SSL, SSL_write, SSL_R_PROTOCOL_IS_SHUTDOWN); |
| 915 | return -1; |
| 916 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 917 | |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 918 | ERR_clear_system_error(); |
| 919 | return s->method->ssl_write_app_data(s, buf, num); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 920 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 921 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 922 | int SSL_shutdown(SSL *s) { |
| 923 | /* Note that this function behaves differently from what one might expect. |
| 924 | * Return values are 0 for no success (yet), 1 for success; but calling it |
| 925 | * once is usually not enough, even if blocking I/O is used (see |
| 926 | * ssl3_shutdown). */ |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 927 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 928 | if (s->handshake_func == 0) { |
| 929 | OPENSSL_PUT_ERROR(SSL, SSL_shutdown, SSL_R_UNINITIALIZED); |
| 930 | return -1; |
| 931 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 932 | |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 933 | if (SSL_in_init(s)) { |
| 934 | return 1; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 935 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 936 | |
David Benjamin | 904dc72 | 2015-05-30 16:39:07 -0400 | [diff] [blame] | 937 | /* Do nothing if configured not to send a close_notify. */ |
| 938 | if (s->quiet_shutdown) { |
| 939 | s->shutdown = SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN; |
| 940 | return 1; |
| 941 | } |
| 942 | |
| 943 | if (!(s->shutdown & SSL_SENT_SHUTDOWN)) { |
| 944 | s->shutdown |= SSL_SENT_SHUTDOWN; |
| 945 | ssl3_send_alert(s, SSL3_AL_WARNING, SSL_AD_CLOSE_NOTIFY); |
| 946 | |
| 947 | /* our shutdown alert has been sent now, and if it still needs to be |
| 948 | * written, s->s3->alert_dispatch will be true */ |
| 949 | if (s->s3->alert_dispatch) { |
| 950 | return -1; /* return WANT_WRITE */ |
| 951 | } |
| 952 | } else if (s->s3->alert_dispatch) { |
| 953 | /* resend it if not sent */ |
| 954 | int ret = s->method->ssl_dispatch_alert(s); |
| 955 | if (ret == -1) { |
| 956 | /* we only get to return -1 here the 2nd/Nth invocation, we must have |
| 957 | * already signalled return 0 upon a previous invoation, return |
| 958 | * WANT_WRITE */ |
| 959 | return ret; |
| 960 | } |
| 961 | } else if (!(s->shutdown & SSL_RECEIVED_SHUTDOWN)) { |
| 962 | /* If we are waiting for a close from our peer, we are closed */ |
| 963 | s->method->ssl_read_close_notify(s); |
| 964 | if (!(s->shutdown & SSL_RECEIVED_SHUTDOWN)) { |
| 965 | return -1; /* return WANT_READ */ |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | if (s->shutdown == (SSL_SENT_SHUTDOWN | SSL_RECEIVED_SHUTDOWN) && |
| 970 | !s->s3->alert_dispatch) { |
| 971 | return 1; |
| 972 | } else { |
| 973 | return 0; |
| 974 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 975 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 976 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 977 | int SSL_renegotiate(SSL *ssl) { |
| 978 | /* Caller-initiated renegotiation is not supported. */ |
| 979 | OPENSSL_PUT_ERROR(SSL, SSL_renegotiate, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED); |
| 980 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 981 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 982 | |
David Benjamin | 44d3eed | 2015-05-21 01:29:55 -0400 | [diff] [blame] | 983 | int SSL_renegotiate_pending(SSL *ssl) { |
| 984 | return SSL_in_init(ssl) && ssl->s3->initial_handshake_complete; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 985 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 986 | |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 987 | uint32_t SSL_CTX_set_options(SSL_CTX *ctx, uint32_t options) { |
| 988 | ctx->options |= options; |
| 989 | return ctx->options; |
| 990 | } |
| 991 | |
| 992 | uint32_t SSL_set_options(SSL *ssl, uint32_t options) { |
| 993 | ssl->options |= options; |
| 994 | return ssl->options; |
| 995 | } |
| 996 | |
| 997 | uint32_t SSL_CTX_clear_options(SSL_CTX *ctx, uint32_t options) { |
| 998 | ctx->options &= ~options; |
| 999 | return ctx->options; |
| 1000 | } |
| 1001 | |
| 1002 | uint32_t SSL_clear_options(SSL *ssl, uint32_t options) { |
| 1003 | ssl->options &= ~options; |
| 1004 | return ssl->options; |
| 1005 | } |
| 1006 | |
| 1007 | uint32_t SSL_CTX_get_options(const SSL_CTX *ctx) { return ctx->options; } |
| 1008 | |
| 1009 | uint32_t SSL_get_options(const SSL *ssl) { return ssl->options; } |
| 1010 | |
| 1011 | uint32_t SSL_CTX_set_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1012 | ctx->mode |= mode; |
| 1013 | return ctx->mode; |
| 1014 | } |
| 1015 | |
| 1016 | uint32_t SSL_set_mode(SSL *ssl, uint32_t mode) { |
| 1017 | ssl->mode |= mode; |
| 1018 | return ssl->mode; |
| 1019 | } |
| 1020 | |
| 1021 | uint32_t SSL_CTX_clear_mode(SSL_CTX *ctx, uint32_t mode) { |
| 1022 | ctx->mode &= ~mode; |
| 1023 | return ctx->mode; |
| 1024 | } |
| 1025 | |
| 1026 | uint32_t SSL_clear_mode(SSL *ssl, uint32_t mode) { |
| 1027 | ssl->mode &= ~mode; |
| 1028 | return ssl->mode; |
| 1029 | } |
| 1030 | |
| 1031 | uint32_t SSL_CTX_get_mode(const SSL_CTX *ctx) { return ctx->mode; } |
| 1032 | |
| 1033 | uint32_t SSL_get_mode(const SSL *ssl) { return ssl->mode; } |
| 1034 | |
David Benjamin | 1d0a194 | 2015-04-26 15:35:35 -0400 | [diff] [blame] | 1035 | size_t SSL_CTX_get_max_cert_list(const SSL_CTX *ctx) { |
| 1036 | return ctx->max_cert_list; |
| 1037 | } |
| 1038 | |
| 1039 | void SSL_CTX_set_max_cert_list(SSL_CTX *ctx, size_t max_cert_list) { |
| 1040 | if (max_cert_list > kMaxHandshakeSize) { |
| 1041 | max_cert_list = kMaxHandshakeSize; |
| 1042 | } |
| 1043 | ctx->max_cert_list = (uint32_t)max_cert_list; |
| 1044 | } |
| 1045 | |
| 1046 | size_t SSL_get_max_cert_list(const SSL *ssl) { |
| 1047 | return ssl->max_cert_list; |
| 1048 | } |
| 1049 | |
| 1050 | void SSL_set_max_cert_list(SSL *ssl, size_t max_cert_list) { |
| 1051 | if (max_cert_list > kMaxHandshakeSize) { |
| 1052 | max_cert_list = kMaxHandshakeSize; |
| 1053 | } |
| 1054 | ssl->max_cert_list = (uint32_t)max_cert_list; |
| 1055 | } |
| 1056 | |
| 1057 | void SSL_CTX_set_max_send_fragment(SSL_CTX *ctx, size_t max_send_fragment) { |
| 1058 | if (max_send_fragment < 512) { |
| 1059 | max_send_fragment = 512; |
| 1060 | } |
| 1061 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1062 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1063 | } |
| 1064 | ctx->max_send_fragment = (uint16_t)max_send_fragment; |
| 1065 | } |
| 1066 | |
| 1067 | void SSL_set_max_send_fragment(SSL *ssl, size_t max_send_fragment) { |
| 1068 | if (max_send_fragment < 512) { |
| 1069 | max_send_fragment = 512; |
| 1070 | } |
| 1071 | if (max_send_fragment > SSL3_RT_MAX_PLAIN_LENGTH) { |
| 1072 | max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
| 1073 | } |
| 1074 | ssl->max_send_fragment = (uint16_t)max_send_fragment; |
| 1075 | } |
| 1076 | |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1077 | int SSL_set_mtu(SSL *ssl, unsigned mtu) { |
| 1078 | if (!SSL_IS_DTLS(ssl) || mtu < dtls1_min_mtu()) { |
| 1079 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1080 | } |
David Benjamin | cb9cf79 | 2015-05-05 09:46:14 -0400 | [diff] [blame] | 1081 | ssl->d1->mtu = mtu; |
| 1082 | return 1; |
| 1083 | } |
| 1084 | |
| 1085 | int SSL_get_secure_renegotiation_support(const SSL *ssl) { |
| 1086 | return ssl->s3->send_connection_binding; |
| 1087 | } |
| 1088 | |
| 1089 | long SSL_ctrl(SSL *s, int cmd, long larg, void *parg) { |
| 1090 | return s->method->ssl_ctrl(s, cmd, larg, parg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1091 | } |
| 1092 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1093 | LHASH_OF(SSL_SESSION) *SSL_CTX_sessions(SSL_CTX *ctx) { return ctx->sessions; } |
| 1094 | |
David Benjamin | 71f7d3d | 2015-05-05 09:46:38 -0400 | [diff] [blame] | 1095 | size_t SSL_CTX_sess_number(const SSL_CTX *ctx) { |
| 1096 | return lh_SSL_SESSION_num_items(ctx->sessions); |
| 1097 | } |
| 1098 | |
| 1099 | unsigned long SSL_CTX_sess_set_cache_size(SSL_CTX *ctx, unsigned long size) { |
| 1100 | unsigned long ret = ctx->session_cache_size; |
| 1101 | ctx->session_cache_size = size; |
| 1102 | return ret; |
| 1103 | } |
| 1104 | |
| 1105 | unsigned long SSL_CTX_sess_get_cache_size(const SSL_CTX *ctx) { |
| 1106 | return ctx->session_cache_size; |
| 1107 | } |
| 1108 | |
| 1109 | int SSL_CTX_set_session_cache_mode(SSL_CTX *ctx, int mode) { |
| 1110 | int ret = ctx->session_cache_mode; |
| 1111 | ctx->session_cache_mode = mode; |
| 1112 | return ret; |
| 1113 | } |
| 1114 | |
| 1115 | int SSL_CTX_get_session_cache_mode(const SSL_CTX *ctx) { |
| 1116 | return ctx->session_cache_mode; |
| 1117 | } |
| 1118 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1119 | long SSL_CTX_ctrl(SSL_CTX *ctx, int cmd, long larg, void *parg) { |
David Benjamin | 71f7d3d | 2015-05-05 09:46:38 -0400 | [diff] [blame] | 1120 | return ctx->method->ssl_ctx_ctrl(ctx, cmd, larg, parg); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1121 | } |
| 1122 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1123 | /* return a STACK of the ciphers available for the SSL and in order of |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1124 | * preference */ |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 1125 | STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1126 | if (s == NULL) { |
| 1127 | return NULL; |
| 1128 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1129 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1130 | if (s->cipher_list != NULL) { |
| 1131 | return s->cipher_list->ciphers; |
| 1132 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1133 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1134 | if (s->version >= TLS1_1_VERSION && s->ctx != NULL && |
| 1135 | s->ctx->cipher_list_tls11 != NULL) { |
| 1136 | return s->ctx->cipher_list_tls11->ciphers; |
| 1137 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1138 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1139 | if (s->ctx != NULL && s->ctx->cipher_list != NULL) { |
| 1140 | return s->ctx->cipher_list->ciphers; |
| 1141 | } |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1142 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1143 | return NULL; |
| 1144 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1145 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1146 | /* return a STACK of the ciphers available for the SSL and in order of |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1147 | * algorithm id */ |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 1148 | STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1149 | if (s == NULL) { |
| 1150 | return NULL; |
| 1151 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1152 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1153 | if (s->cipher_list_by_id != NULL) { |
| 1154 | return s->cipher_list_by_id; |
| 1155 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1156 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1157 | if (s->ctx != NULL && s->ctx->cipher_list_by_id != NULL) { |
| 1158 | return s->ctx->cipher_list_by_id; |
| 1159 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1160 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1161 | return NULL; |
| 1162 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1163 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1164 | /* The old interface to get the same thing as SSL_get_ciphers() */ |
| 1165 | const char *SSL_get_cipher_list(const SSL *s, int n) { |
| 1166 | const SSL_CIPHER *c; |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 1167 | STACK_OF(SSL_CIPHER) *sk; |
Adam Langley | 0b5c1ac | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1168 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1169 | if (s == NULL) { |
| 1170 | return NULL; |
| 1171 | } |
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 | sk = SSL_get_ciphers(s); |
| 1174 | if (sk == NULL || n < 0 || (size_t)n >= sk_SSL_CIPHER_num(sk)) { |
| 1175 | return NULL; |
| 1176 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1177 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1178 | c = sk_SSL_CIPHER_value(sk, n); |
| 1179 | if (c == NULL) { |
| 1180 | return NULL; |
| 1181 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1182 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1183 | return c->name; |
| 1184 | } |
David Benjamin | 5491e3f | 2014-09-29 19:33:09 -0400 | [diff] [blame] | 1185 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1186 | /* specify the ciphers to be used by default by the SSL_CTX */ |
| 1187 | int SSL_CTX_set_cipher_list(SSL_CTX *ctx, const char *str) { |
| 1188 | STACK_OF(SSL_CIPHER) *sk; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1189 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1190 | sk = ssl_create_cipher_list(ctx->method, &ctx->cipher_list, |
David Benjamin | 71f0794 | 2015-04-08 02:36:59 -0400 | [diff] [blame] | 1191 | &ctx->cipher_list_by_id, str); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1192 | /* ssl_create_cipher_list may return an empty stack if it was unable to find |
| 1193 | * a cipher matching the given rule string (for example if the rule string |
| 1194 | * specifies a cipher which has been disabled). This is not an error as far |
| 1195 | * as ssl_create_cipher_list is concerned, and hence ctx->cipher_list and |
| 1196 | * ctx->cipher_list_by_id has been updated. */ |
| 1197 | if (sk == NULL) { |
| 1198 | return 0; |
| 1199 | } else if (sk_SSL_CIPHER_num(sk) == 0) { |
| 1200 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_set_cipher_list, SSL_R_NO_CIPHER_MATCH); |
| 1201 | return 0; |
| 1202 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1203 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1204 | return 1; |
| 1205 | } |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1206 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1207 | int SSL_CTX_set_cipher_list_tls11(SSL_CTX *ctx, const char *str) { |
| 1208 | STACK_OF(SSL_CIPHER) *sk; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1209 | |
David Benjamin | 71f0794 | 2015-04-08 02:36:59 -0400 | [diff] [blame] | 1210 | sk = ssl_create_cipher_list(ctx->method, &ctx->cipher_list_tls11, NULL, str); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1211 | if (sk == NULL) { |
| 1212 | return 0; |
| 1213 | } else if (sk_SSL_CIPHER_num(sk) == 0) { |
| 1214 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_set_cipher_list_tls11, |
| 1215 | SSL_R_NO_CIPHER_MATCH); |
| 1216 | return 0; |
| 1217 | } |
David Benjamin | 9f2c0d7 | 2014-10-21 22:00:19 -0400 | [diff] [blame] | 1218 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1219 | return 1; |
| 1220 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1221 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1222 | /* specify the ciphers to be used by the SSL */ |
| 1223 | int SSL_set_cipher_list(SSL *s, const char *str) { |
| 1224 | STACK_OF(SSL_CIPHER) *sk; |
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 | sk = ssl_create_cipher_list(s->ctx->method, &s->cipher_list, |
David Benjamin | 71f0794 | 2015-04-08 02:36:59 -0400 | [diff] [blame] | 1227 | &s->cipher_list_by_id, str); |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1228 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1229 | /* see comment in SSL_CTX_set_cipher_list */ |
| 1230 | if (sk == NULL) { |
| 1231 | return 0; |
| 1232 | } else if (sk_SSL_CIPHER_num(sk) == 0) { |
| 1233 | OPENSSL_PUT_ERROR(SSL, SSL_set_cipher_list, SSL_R_NO_CIPHER_MATCH); |
| 1234 | return 0; |
| 1235 | } |
David Benjamin | 39482a1 | 2014-07-20 13:30:15 -0400 | [diff] [blame] | 1236 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1237 | return 1; |
| 1238 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1239 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1240 | int ssl_cipher_list_to_bytes(SSL *s, STACK_OF(SSL_CIPHER) *sk, uint8_t *p) { |
| 1241 | size_t i; |
| 1242 | const SSL_CIPHER *c; |
| 1243 | CERT *ct = s->cert; |
| 1244 | uint8_t *q; |
| 1245 | /* Set disabled masks for this session */ |
| 1246 | ssl_set_client_disabled(s); |
Adam Langley | 2970779 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1247 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1248 | if (sk == NULL) { |
| 1249 | return 0; |
| 1250 | } |
| 1251 | q = p; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1252 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1253 | for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) { |
| 1254 | c = sk_SSL_CIPHER_value(sk, i); |
| 1255 | /* Skip disabled ciphers */ |
| 1256 | if (c->algorithm_ssl & ct->mask_ssl || |
| 1257 | c->algorithm_mkey & ct->mask_k || |
| 1258 | c->algorithm_auth & ct->mask_a) { |
| 1259 | continue; |
| 1260 | } |
David Benjamin | a1c90a5 | 2015-05-30 17:03:14 -0400 | [diff] [blame] | 1261 | s2n(ssl_cipher_get_value(c), p); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | /* If all ciphers were disabled, return the error to the caller. */ |
| 1265 | if (p == q) { |
| 1266 | return 0; |
| 1267 | } |
| 1268 | |
Adam Langley | 5021b22 | 2015-06-12 18:27:58 -0700 | [diff] [blame] | 1269 | /* For SSLv3, the SCSV is added. Otherwise the renegotiation extension is |
| 1270 | * added. */ |
| 1271 | if (s->client_version == SSL3_VERSION && |
| 1272 | !s->s3->initial_handshake_complete) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1273 | s2n(SSL3_CK_SCSV & 0xffff, p); |
Adam Langley | 5021b22 | 2015-06-12 18:27:58 -0700 | [diff] [blame] | 1274 | /* The renegotiation extension is required to be at index zero. */ |
| 1275 | s->s3->tmp.extensions.sent |= (1u << 0); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1276 | } |
| 1277 | |
Adam Langley | 5f0efe0 | 2015-02-20 13:03:16 -0800 | [diff] [blame] | 1278 | if (s->mode & SSL_MODE_SEND_FALLBACK_SCSV) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1279 | s2n(SSL3_CK_FALLBACK_SCSV & 0xffff, p); |
| 1280 | } |
| 1281 | |
| 1282 | return p - q; |
| 1283 | } |
| 1284 | |
| 1285 | STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s, const CBS *cbs) { |
| 1286 | CBS cipher_suites = *cbs; |
| 1287 | const SSL_CIPHER *c; |
David Benjamin | 60da0cd | 2015-05-03 15:21:28 -0400 | [diff] [blame] | 1288 | STACK_OF(SSL_CIPHER) *sk; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1289 | |
| 1290 | if (s->s3) { |
| 1291 | s->s3->send_connection_binding = 0; |
| 1292 | } |
| 1293 | |
| 1294 | if (CBS_len(&cipher_suites) % 2 != 0) { |
| 1295 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, |
| 1296 | SSL_R_ERROR_IN_RECEIVED_CIPHER_LIST); |
| 1297 | return NULL; |
| 1298 | } |
| 1299 | |
| 1300 | sk = sk_SSL_CIPHER_new_null(); |
| 1301 | if (sk == NULL) { |
| 1302 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, ERR_R_MALLOC_FAILURE); |
| 1303 | goto err; |
| 1304 | } |
| 1305 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1306 | while (CBS_len(&cipher_suites) > 0) { |
| 1307 | uint16_t cipher_suite; |
| 1308 | |
| 1309 | if (!CBS_get_u16(&cipher_suites, &cipher_suite)) { |
| 1310 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, ERR_R_INTERNAL_ERROR); |
| 1311 | goto err; |
| 1312 | } |
| 1313 | |
| 1314 | /* Check for SCSV. */ |
| 1315 | if (s->s3 && cipher_suite == (SSL3_CK_SCSV & 0xffff)) { |
| 1316 | /* SCSV is fatal if renegotiating. */ |
David Benjamin | 20f6e97 | 2015-05-15 21:51:49 -0400 | [diff] [blame] | 1317 | if (s->s3->initial_handshake_complete) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1318 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, |
| 1319 | SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING); |
| 1320 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE); |
| 1321 | goto err; |
| 1322 | } |
| 1323 | s->s3->send_connection_binding = 1; |
| 1324 | continue; |
| 1325 | } |
| 1326 | |
| 1327 | /* Check for FALLBACK_SCSV. */ |
| 1328 | if (s->s3 && cipher_suite == (SSL3_CK_FALLBACK_SCSV & 0xffff)) { |
| 1329 | uint16_t max_version = ssl3_get_max_server_version(s); |
| 1330 | if (SSL_IS_DTLS(s) ? (uint16_t)s->version > max_version |
| 1331 | : (uint16_t)s->version < max_version) { |
| 1332 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, |
| 1333 | SSL_R_INAPPROPRIATE_FALLBACK); |
| 1334 | ssl3_send_alert(s, SSL3_AL_FATAL, SSL3_AD_INAPPROPRIATE_FALLBACK); |
| 1335 | goto err; |
| 1336 | } |
| 1337 | continue; |
| 1338 | } |
| 1339 | |
David Benjamin | a1c90a5 | 2015-05-30 17:03:14 -0400 | [diff] [blame] | 1340 | c = SSL_get_cipher_by_value(cipher_suite); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1341 | if (c != NULL && !sk_SSL_CIPHER_push(sk, c)) { |
| 1342 | OPENSSL_PUT_ERROR(SSL, ssl_bytes_to_cipher_list, ERR_R_MALLOC_FAILURE); |
| 1343 | goto err; |
| 1344 | } |
| 1345 | } |
| 1346 | |
| 1347 | return sk; |
David Benjamin | 9f2c0d7 | 2014-10-21 22:00:19 -0400 | [diff] [blame] | 1348 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1349 | err: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1350 | sk_SSL_CIPHER_free(sk); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1351 | return NULL; |
| 1352 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1353 | |
| 1354 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1355 | /* return a servername extension value if provided in Client Hello, or NULL. So |
| 1356 | * far, only host_name types are defined (RFC 3546). */ |
| 1357 | const char *SSL_get_servername(const SSL *s, const int type) { |
| 1358 | if (type != TLSEXT_NAMETYPE_host_name) { |
| 1359 | return NULL; |
| 1360 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1361 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1362 | return s->session && !s->tlsext_hostname ? s->session->tlsext_hostname |
| 1363 | : s->tlsext_hostname; |
| 1364 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1365 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1366 | int SSL_get_servername_type(const SSL *s) { |
| 1367 | if (s->session && |
| 1368 | (!s->tlsext_hostname ? s->session->tlsext_hostname : s->tlsext_hostname)) { |
| 1369 | return TLSEXT_NAMETYPE_host_name; |
| 1370 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1371 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1372 | return -1; |
| 1373 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1374 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1375 | void SSL_CTX_enable_signed_cert_timestamps(SSL_CTX *ctx) { |
| 1376 | ctx->signed_cert_timestamps_enabled = 1; |
| 1377 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1378 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1379 | int SSL_enable_signed_cert_timestamps(SSL *ssl) { |
| 1380 | ssl->signed_cert_timestamps_enabled = 1; |
| 1381 | return 1; |
| 1382 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1383 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1384 | void SSL_CTX_enable_ocsp_stapling(SSL_CTX *ctx) { |
| 1385 | ctx->ocsp_stapling_enabled = 1; |
| 1386 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1387 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1388 | int SSL_enable_ocsp_stapling(SSL *ssl) { |
| 1389 | ssl->ocsp_stapling_enabled = 1; |
| 1390 | return 1; |
| 1391 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1392 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1393 | void SSL_get0_signed_cert_timestamp_list(const SSL *ssl, const uint8_t **out, |
| 1394 | size_t *out_len) { |
| 1395 | SSL_SESSION *session = ssl->session; |
Adam Langley | 3cb50e0 | 2014-08-26 14:00:31 -0700 | [diff] [blame] | 1396 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1397 | *out_len = 0; |
| 1398 | *out = NULL; |
| 1399 | if (ssl->server || !session || !session->tlsext_signed_cert_timestamp_list) { |
| 1400 | return; |
| 1401 | } |
HÃ¥vard Molland | 9169c96 | 2014-08-14 14:42:37 +0200 | [diff] [blame] | 1402 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1403 | *out = session->tlsext_signed_cert_timestamp_list; |
| 1404 | *out_len = session->tlsext_signed_cert_timestamp_list_length; |
| 1405 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1406 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1407 | void SSL_get0_ocsp_response(const SSL *ssl, const uint8_t **out, |
| 1408 | size_t *out_len) { |
| 1409 | SSL_SESSION *session = ssl->session; |
| 1410 | |
| 1411 | *out_len = 0; |
| 1412 | *out = NULL; |
| 1413 | if (ssl->server || !session || !session->ocsp_response) { |
| 1414 | return; |
| 1415 | } |
| 1416 | *out = session->ocsp_response; |
| 1417 | *out_len = session->ocsp_response_length; |
| 1418 | } |
David Benjamin | 6c7aed0 | 2014-08-27 16:42:38 -0400 | [diff] [blame] | 1419 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1420 | /* SSL_select_next_proto implements the standard protocol selection. It is |
| 1421 | * expected that this function is called from the callback set by |
| 1422 | * SSL_CTX_set_next_proto_select_cb. |
| 1423 | * |
| 1424 | * The protocol data is assumed to be a vector of 8-bit, length prefixed byte |
| 1425 | * strings. The length byte itself is not included in the length. A byte |
| 1426 | * string of length 0 is invalid. No byte string may be truncated. |
| 1427 | * |
| 1428 | * The current, but experimental algorithm for selecting the protocol is: |
| 1429 | * |
| 1430 | * 1) If the server doesn't support NPN then this is indicated to the |
| 1431 | * callback. In this case, the client application has to abort the connection |
| 1432 | * or have a default application level protocol. |
| 1433 | * |
| 1434 | * 2) If the server supports NPN, but advertises an empty list then the |
| 1435 | * client selects the first protcol in its list, but indicates via the |
| 1436 | * API that this fallback case was enacted. |
| 1437 | * |
| 1438 | * 3) Otherwise, the client finds the first protocol in the server's list |
| 1439 | * that it supports and selects this protocol. This is because it's |
| 1440 | * assumed that the server has better information about which protocol |
| 1441 | * a client should use. |
| 1442 | * |
| 1443 | * 4) If the client doesn't support any of the server's advertised |
| 1444 | * protocols, then this is treated the same as case 2. |
| 1445 | * |
| 1446 | * It returns either |
| 1447 | * OPENSSL_NPN_NEGOTIATED if a common protocol was found, or |
| 1448 | * OPENSSL_NPN_NO_OVERLAP if the fallback case was reached. |
| 1449 | */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1450 | int SSL_select_next_proto(uint8_t **out, uint8_t *outlen, const uint8_t *server, |
| 1451 | unsigned int server_len, const uint8_t *client, |
| 1452 | unsigned int client_len) { |
| 1453 | unsigned int i, j; |
| 1454 | const uint8_t *result; |
| 1455 | int status = OPENSSL_NPN_UNSUPPORTED; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1456 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1457 | /* For each protocol in server preference order, see if we support it. */ |
| 1458 | for (i = 0; i < server_len;) { |
| 1459 | for (j = 0; j < client_len;) { |
| 1460 | if (server[i] == client[j] && |
| 1461 | memcmp(&server[i + 1], &client[j + 1], server[i]) == 0) { |
| 1462 | /* We found a match */ |
| 1463 | result = &server[i]; |
| 1464 | status = OPENSSL_NPN_NEGOTIATED; |
| 1465 | goto found; |
| 1466 | } |
| 1467 | j += client[j]; |
| 1468 | j++; |
| 1469 | } |
| 1470 | i += server[i]; |
| 1471 | i++; |
| 1472 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1473 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1474 | /* There's no overlap between our protocols and the server's list. */ |
| 1475 | result = client; |
| 1476 | status = OPENSSL_NPN_NO_OVERLAP; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1477 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1478 | found: |
| 1479 | *out = (uint8_t *)result + 1; |
| 1480 | *outlen = result[0]; |
| 1481 | return status; |
| 1482 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1483 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1484 | /* SSL_get0_next_proto_negotiated sets *data and *len to point to the client's |
| 1485 | * requested protocol for this connection and returns 0. If the client didn't |
| 1486 | * request any protocol, then *data is set to NULL. |
| 1487 | * |
| 1488 | * Note that the client can request any protocol it chooses. The value returned |
| 1489 | * from this function need not be a member of the list of supported protocols |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1490 | * provided by the callback. */ |
| 1491 | void SSL_get0_next_proto_negotiated(const SSL *s, const uint8_t **data, |
| 1492 | unsigned *len) { |
| 1493 | *data = s->next_proto_negotiated; |
| 1494 | if (!*data) { |
| 1495 | *len = 0; |
| 1496 | } else { |
| 1497 | *len = s->next_proto_negotiated_len; |
| 1498 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | /* SSL_CTX_set_next_protos_advertised_cb sets a callback that is called when a |
| 1502 | * TLS server needs a list of supported protocols for Next Protocol |
| 1503 | * Negotiation. The returned list must be in wire format. The list is returned |
| 1504 | * by setting |out| to point to it and |outlen| to its length. This memory will |
| 1505 | * not be modified, but one should assume that the SSL* keeps a reference to |
| 1506 | * it. |
| 1507 | * |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1508 | * The callback should return SSL_TLSEXT_ERR_OK if it wishes to advertise. |
| 1509 | * Otherwise, no such extension will be included in the ServerHello. */ |
| 1510 | void SSL_CTX_set_next_protos_advertised_cb( |
| 1511 | SSL_CTX *ctx, |
| 1512 | int (*cb)(SSL *ssl, const uint8_t **out, unsigned int *outlen, void *arg), |
| 1513 | void *arg) { |
| 1514 | ctx->next_protos_advertised_cb = cb; |
| 1515 | ctx->next_protos_advertised_cb_arg = arg; |
| 1516 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1517 | |
| 1518 | /* SSL_CTX_set_next_proto_select_cb sets a callback that is called when a |
| 1519 | * client needs to select a protocol from the server's provided list. |out| |
| 1520 | * must be set to point to the selected protocol (which may be within |in|). |
| 1521 | * The length of the protocol name must be written into |outlen|. The server's |
| 1522 | * advertised protocols are provided in |in| and |inlen|. The callback can |
| 1523 | * assume that |in| is syntactically valid. |
| 1524 | * |
| 1525 | * The client must select a protocol. It is fatal to the connection if this |
| 1526 | * callback returns a value other than SSL_TLSEXT_ERR_OK. |
| 1527 | */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1528 | void SSL_CTX_set_next_proto_select_cb( |
| 1529 | SSL_CTX *ctx, int (*cb)(SSL *s, uint8_t **out, uint8_t *outlen, |
| 1530 | const uint8_t *in, unsigned int inlen, void *arg), |
| 1531 | void *arg) { |
| 1532 | ctx->next_proto_select_cb = cb; |
| 1533 | ctx->next_proto_select_cb_arg = arg; |
| 1534 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1535 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1536 | int SSL_CTX_set_alpn_protos(SSL_CTX *ctx, const uint8_t *protos, |
| 1537 | unsigned protos_len) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1538 | OPENSSL_free(ctx->alpn_client_proto_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1539 | ctx->alpn_client_proto_list = BUF_memdup(protos, protos_len); |
| 1540 | if (!ctx->alpn_client_proto_list) { |
| 1541 | return 1; |
| 1542 | } |
| 1543 | ctx->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1544 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1545 | return 0; |
| 1546 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1547 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1548 | 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] | 1549 | OPENSSL_free(ssl->alpn_client_proto_list); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1550 | ssl->alpn_client_proto_list = BUF_memdup(protos, protos_len); |
| 1551 | if (!ssl->alpn_client_proto_list) { |
| 1552 | return 1; |
| 1553 | } |
| 1554 | ssl->alpn_client_proto_list_len = protos_len; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1555 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1556 | return 0; |
| 1557 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1558 | |
| 1559 | /* SSL_CTX_set_alpn_select_cb sets a callback function on |ctx| that is called |
| 1560 | * during ClientHello processing in order to select an ALPN protocol from the |
| 1561 | * client's list of offered protocols. */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1562 | void SSL_CTX_set_alpn_select_cb(SSL_CTX *ctx, |
| 1563 | int (*cb)(SSL *ssl, const uint8_t **out, |
| 1564 | uint8_t *outlen, const uint8_t *in, |
| 1565 | unsigned int inlen, void *arg), |
| 1566 | void *arg) { |
| 1567 | ctx->alpn_select_cb = cb; |
| 1568 | ctx->alpn_select_cb_arg = arg; |
| 1569 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1570 | |
| 1571 | /* SSL_get0_alpn_selected gets the selected ALPN protocol (if any) from |ssl|. |
| 1572 | * On return it sets |*data| to point to |*len| bytes of protocol name (not |
| 1573 | * including the leading length-prefix byte). If the server didn't respond with |
| 1574 | * a negotiated protocol then |*len| will be zero. */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1575 | void SSL_get0_alpn_selected(const SSL *ssl, const uint8_t **data, |
| 1576 | unsigned *len) { |
| 1577 | *data = NULL; |
| 1578 | if (ssl->s3) { |
| 1579 | *data = ssl->s3->alpn_selected; |
| 1580 | } |
| 1581 | if (*data == NULL) { |
| 1582 | *len = 0; |
| 1583 | } else { |
| 1584 | *len = ssl->s3->alpn_selected_len; |
| 1585 | } |
| 1586 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1587 | |
David Benjamin | cfd248b | 2015-04-03 11:02:24 -0400 | [diff] [blame] | 1588 | int SSL_export_keying_material(SSL *s, uint8_t *out, size_t out_len, |
| 1589 | const char *label, size_t label_len, |
| 1590 | const uint8_t *context, size_t context_len, |
| 1591 | int use_context) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1592 | if (s->version < TLS1_VERSION) { |
David Benjamin | c565ebb | 2015-04-03 04:06:36 -0400 | [diff] [blame] | 1593 | return 0; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1594 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1595 | |
David Benjamin | cfd248b | 2015-04-03 11:02:24 -0400 | [diff] [blame] | 1596 | return s->enc_method->export_keying_material( |
| 1597 | s, out, out_len, label, label_len, context, context_len, use_context); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1598 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1599 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1600 | static uint32_t ssl_session_hash(const SSL_SESSION *a) { |
| 1601 | uint32_t hash = |
| 1602 | ((uint32_t)a->session_id[0]) || |
| 1603 | ((uint32_t)a->session_id[1] << 8) || |
| 1604 | ((uint32_t)a->session_id[2] << 16) || |
| 1605 | ((uint32_t)a->session_id[3] << 24); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1606 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1607 | return hash; |
| 1608 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1609 | |
| 1610 | /* NB: If this function (or indeed the hash function which uses a sort of |
| 1611 | * coarser function than this one) is changed, ensure |
| 1612 | * SSL_CTX_has_matching_session_id() is checked accordingly. It relies on being |
| 1613 | * able to construct an SSL_SESSION that will collide with any existing session |
| 1614 | * with a matching session ID. */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1615 | static int ssl_session_cmp(const SSL_SESSION *a, const SSL_SESSION *b) { |
| 1616 | if (a->ssl_version != b->ssl_version) { |
| 1617 | return 1; |
| 1618 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1619 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1620 | if (a->session_id_length != b->session_id_length) { |
| 1621 | return 1; |
| 1622 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1623 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1624 | return memcmp(a->session_id, b->session_id, a->session_id_length); |
| 1625 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1626 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 1627 | SSL_CTX *SSL_CTX_new(const SSL_METHOD *method) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1628 | SSL_CTX *ret = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1629 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 1630 | if (method == NULL) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1631 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_new, SSL_R_NULL_SSL_METHOD_PASSED); |
| 1632 | return NULL; |
| 1633 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1634 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1635 | if (SSL_get_ex_data_X509_STORE_CTX_idx() < 0) { |
| 1636 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_new, SSL_R_X509_VERIFICATION_SETUP_PROBLEMS); |
| 1637 | goto err; |
| 1638 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1639 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1640 | ret = (SSL_CTX *)OPENSSL_malloc(sizeof(SSL_CTX)); |
| 1641 | if (ret == NULL) { |
| 1642 | goto err; |
| 1643 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1644 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1645 | memset(ret, 0, sizeof(SSL_CTX)); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1646 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 1647 | ret->method = method->method; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1648 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 1649 | CRYPTO_MUTEX_init(&ret->lock); |
| 1650 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1651 | ret->cert_store = NULL; |
| 1652 | ret->session_cache_mode = SSL_SESS_CACHE_SERVER; |
| 1653 | ret->session_cache_size = SSL_SESSION_CACHE_MAX_SIZE_DEFAULT; |
| 1654 | ret->session_cache_head = NULL; |
| 1655 | ret->session_cache_tail = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1656 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1657 | /* We take the system default */ |
| 1658 | ret->session_timeout = SSL_DEFAULT_SESSION_TIMEOUT; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1659 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1660 | ret->new_session_cb = 0; |
| 1661 | ret->remove_session_cb = 0; |
| 1662 | ret->get_session_cb = 0; |
| 1663 | ret->generate_session_id = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1664 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1665 | ret->references = 1; |
| 1666 | ret->quiet_shutdown = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1667 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1668 | ret->info_callback = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1669 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1670 | ret->app_verify_callback = 0; |
| 1671 | ret->app_verify_arg = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1672 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1673 | ret->max_cert_list = SSL_MAX_CERT_LIST_DEFAULT; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1674 | ret->msg_callback = 0; |
| 1675 | ret->msg_callback_arg = NULL; |
| 1676 | ret->verify_mode = SSL_VERIFY_NONE; |
| 1677 | ret->sid_ctx_length = 0; |
| 1678 | ret->default_verify_callback = NULL; |
| 1679 | ret->cert = ssl_cert_new(); |
| 1680 | if (ret->cert == NULL) { |
| 1681 | goto err; |
| 1682 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1683 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1684 | ret->default_passwd_callback = 0; |
| 1685 | ret->default_passwd_callback_userdata = NULL; |
| 1686 | ret->client_cert_cb = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1687 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1688 | ret->sessions = lh_SSL_SESSION_new(ssl_session_hash, ssl_session_cmp); |
| 1689 | if (ret->sessions == NULL) { |
| 1690 | goto err; |
| 1691 | } |
| 1692 | ret->cert_store = X509_STORE_new(); |
| 1693 | if (ret->cert_store == NULL) { |
| 1694 | goto err; |
| 1695 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1696 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1697 | ssl_create_cipher_list(ret->method, &ret->cipher_list, |
David Benjamin | 71f0794 | 2015-04-08 02:36:59 -0400 | [diff] [blame] | 1698 | &ret->cipher_list_by_id, SSL_DEFAULT_CIPHER_LIST); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1699 | if (ret->cipher_list == NULL || |
| 1700 | sk_SSL_CIPHER_num(ret->cipher_list->ciphers) <= 0) { |
| 1701 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_new, SSL_R_LIBRARY_HAS_NO_CIPHERS); |
| 1702 | goto err2; |
| 1703 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1704 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1705 | ret->param = X509_VERIFY_PARAM_new(); |
| 1706 | if (!ret->param) { |
| 1707 | goto err; |
| 1708 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1709 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1710 | ret->client_CA = sk_X509_NAME_new_null(); |
| 1711 | if (ret->client_CA == NULL) { |
| 1712 | goto err; |
| 1713 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1714 | |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 1715 | CRYPTO_new_ex_data(&g_ex_data_class_ssl_ctx, ret, &ret->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1716 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1717 | ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; |
David Benjamin | 422d3a4 | 2014-08-20 11:09:03 -0400 | [diff] [blame] | 1718 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1719 | ret->tlsext_servername_callback = 0; |
| 1720 | ret->tlsext_servername_arg = NULL; |
| 1721 | /* Setup RFC4507 ticket keys */ |
| 1722 | if (!RAND_bytes(ret->tlsext_tick_key_name, 16) || |
| 1723 | !RAND_bytes(ret->tlsext_tick_hmac_key, 16) || |
| 1724 | !RAND_bytes(ret->tlsext_tick_aes_key, 16)) { |
| 1725 | ret->options |= SSL_OP_NO_TICKET; |
| 1726 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1727 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1728 | ret->next_protos_advertised_cb = 0; |
| 1729 | ret->next_proto_select_cb = 0; |
| 1730 | ret->psk_identity_hint = NULL; |
| 1731 | ret->psk_client_callback = NULL; |
| 1732 | ret->psk_server_callback = NULL; |
| 1733 | |
| 1734 | /* Default is to connect to non-RI servers. When RI is more widely deployed |
| 1735 | * might change this. */ |
| 1736 | ret->options |= SSL_OP_LEGACY_SERVER_CONNECT; |
| 1737 | |
| 1738 | /* Lock the SSL_CTX to the specified version, for compatibility with legacy |
| 1739 | * uses of SSL_METHOD. */ |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 1740 | if (method->version != 0) { |
| 1741 | SSL_CTX_set_max_version(ret, method->version); |
| 1742 | SSL_CTX_set_min_version(ret, method->version); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1743 | } |
| 1744 | |
| 1745 | return ret; |
| 1746 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1747 | err: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1748 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_new, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1749 | err2: |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1750 | SSL_CTX_free(ret); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1751 | return NULL; |
| 1752 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1753 | |
David Benjamin | 4fcc2e2 | 2015-04-22 12:58:16 -0400 | [diff] [blame] | 1754 | void SSL_CTX_free(SSL_CTX *ctx) { |
| 1755 | if (ctx == NULL || |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 1756 | !CRYPTO_refcount_dec_and_test_zero(&ctx->references)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1757 | return; |
| 1758 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1759 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1760 | X509_VERIFY_PARAM_free(ctx->param); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1761 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1762 | /* Free internal session cache. However: the remove_cb() may reference the |
| 1763 | * ex_data of SSL_CTX, thus the ex_data store can only be removed after the |
| 1764 | * sessions were flushed. As the ex_data handling routines might also touch |
| 1765 | * the session cache, the most secure solution seems to be: empty (flush) the |
| 1766 | * cache, then free ex_data, then finally free the cache. (See ticket |
| 1767 | * [openssl.org #212].) */ |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1768 | SSL_CTX_flush_sessions(ctx, 0); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1769 | |
David Benjamin | 4fcc2e2 | 2015-04-22 12:58:16 -0400 | [diff] [blame] | 1770 | CRYPTO_free_ex_data(&g_ex_data_class_ssl_ctx, ctx, &ctx->ex_data); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1771 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 1772 | CRYPTO_MUTEX_cleanup(&ctx->lock); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1773 | lh_SSL_SESSION_free(ctx->sessions); |
| 1774 | X509_STORE_free(ctx->cert_store); |
| 1775 | ssl_cipher_preference_list_free(ctx->cipher_list); |
| 1776 | sk_SSL_CIPHER_free(ctx->cipher_list_by_id); |
| 1777 | ssl_cipher_preference_list_free(ctx->cipher_list_tls11); |
| 1778 | ssl_cert_free(ctx->cert); |
| 1779 | sk_X509_NAME_pop_free(ctx->client_CA, X509_NAME_free); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 1780 | sk_SRTP_PROTECTION_PROFILE_free(ctx->srtp_profiles); |
| 1781 | OPENSSL_free(ctx->psk_identity_hint); |
| 1782 | OPENSSL_free(ctx->tlsext_ecpointformatlist); |
| 1783 | OPENSSL_free(ctx->tlsext_ellipticcurvelist); |
| 1784 | OPENSSL_free(ctx->alpn_client_proto_list); |
| 1785 | EVP_PKEY_free(ctx->tlsext_channel_id_private); |
| 1786 | BIO_free(ctx->keylog_bio); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1787 | |
David Benjamin | 4fcc2e2 | 2015-04-22 12:58:16 -0400 | [diff] [blame] | 1788 | OPENSSL_free(ctx); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1789 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1790 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1791 | void SSL_CTX_set_default_passwd_cb(SSL_CTX *ctx, pem_password_cb *cb) { |
| 1792 | ctx->default_passwd_callback = cb; |
| 1793 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1794 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1795 | void SSL_CTX_set_default_passwd_cb_userdata(SSL_CTX *ctx, void *u) { |
| 1796 | ctx->default_passwd_callback_userdata = u; |
| 1797 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1798 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1799 | void SSL_CTX_set_cert_verify_callback(SSL_CTX *ctx, |
| 1800 | int (*cb)(X509_STORE_CTX *, void *), |
| 1801 | void *arg) { |
| 1802 | ctx->app_verify_callback = cb; |
| 1803 | ctx->app_verify_arg = arg; |
| 1804 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1805 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1806 | void SSL_CTX_set_verify(SSL_CTX *ctx, int mode, |
| 1807 | int (*cb)(int, X509_STORE_CTX *)) { |
| 1808 | ctx->verify_mode = mode; |
| 1809 | ctx->default_verify_callback = cb; |
| 1810 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1811 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1812 | void SSL_CTX_set_verify_depth(SSL_CTX *ctx, int depth) { |
| 1813 | X509_VERIFY_PARAM_set_depth(ctx->param, depth); |
| 1814 | } |
Adam Langley | 1258b6a | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1815 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1816 | void SSL_CTX_set_cert_cb(SSL_CTX *c, int (*cb)(SSL *ssl, void *arg), |
| 1817 | void *arg) { |
| 1818 | ssl_cert_set_cert_cb(c->cert, cb, arg); |
| 1819 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 1820 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1821 | void SSL_set_cert_cb(SSL *s, int (*cb)(SSL *ssl, void *arg), void *arg) { |
| 1822 | ssl_cert_set_cert_cb(s->cert, cb, arg); |
| 1823 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1824 | |
David Benjamin | 107db58 | 2015-04-08 00:41:59 -0400 | [diff] [blame] | 1825 | void ssl_get_compatible_server_ciphers(SSL *s, uint32_t *out_mask_k, |
| 1826 | uint32_t *out_mask_a) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1827 | CERT *c = s->cert; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 1828 | int have_rsa_cert = 0, dh_tmp; |
David Benjamin | 107db58 | 2015-04-08 00:41:59 -0400 | [diff] [blame] | 1829 | uint32_t mask_k, mask_a; |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 1830 | int have_ecc_cert = 0, ecdsa_ok; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1831 | X509 *x; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1832 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1833 | if (c == NULL) { |
| 1834 | /* TODO(davidben): Is this codepath possible? */ |
| 1835 | *out_mask_k = 0; |
| 1836 | *out_mask_a = 0; |
| 1837 | return; |
| 1838 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1839 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1840 | dh_tmp = (c->dh_tmp != NULL || c->dh_tmp_cb != NULL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1841 | |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 1842 | if (s->cert->x509 != NULL && s->cert->privatekey != NULL) { |
| 1843 | if (s->cert->privatekey->type == EVP_PKEY_RSA) { |
| 1844 | have_rsa_cert = 1; |
| 1845 | } else if (s->cert->privatekey->type == EVP_PKEY_EC) { |
| 1846 | have_ecc_cert = 1; |
| 1847 | } |
| 1848 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1849 | mask_k = 0; |
| 1850 | mask_a = 0; |
David Benjamin | f31e681 | 2014-11-13 18:05:55 -0500 | [diff] [blame] | 1851 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1852 | if (dh_tmp) { |
David Benjamin | 7061e28 | 2015-03-19 11:10:48 -0400 | [diff] [blame] | 1853 | mask_k |= SSL_kDHE; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1854 | } |
David Benjamin | bb20f52 | 2015-07-04 17:18:14 -0400 | [diff] [blame] | 1855 | if (have_rsa_cert) { |
| 1856 | mask_k |= SSL_kRSA; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1857 | mask_a |= SSL_aRSA; |
| 1858 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1859 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1860 | /* An ECC certificate may be usable for ECDSA cipher suites depending on the |
| 1861 | * key usage extension and on the client's curve preferences. */ |
| 1862 | if (have_ecc_cert) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 1863 | x = c->x509; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1864 | /* This call populates extension flags (ex_flags). */ |
| 1865 | X509_check_purpose(x, -1, 0); |
| 1866 | ecdsa_ok = (x->ex_flags & EXFLAG_KUSAGE) |
| 1867 | ? (x->ex_kusage & X509v3_KU_DIGITAL_SIGNATURE) |
| 1868 | : 1; |
| 1869 | if (!tls1_check_ec_cert(s, x)) { |
| 1870 | ecdsa_ok = 0; |
| 1871 | } |
| 1872 | if (ecdsa_ok) { |
| 1873 | mask_a |= SSL_aECDSA; |
| 1874 | } |
| 1875 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1876 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1877 | /* If we are considering an ECC cipher suite that uses an ephemeral EC |
| 1878 | * key, check it. */ |
David Benjamin | dd97878 | 2015-04-24 15:20:13 -0400 | [diff] [blame] | 1879 | if (tls1_check_ec_tmp_key(s)) { |
David Benjamin | 7061e28 | 2015-03-19 11:10:48 -0400 | [diff] [blame] | 1880 | mask_k |= SSL_kECDHE; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1881 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1882 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1883 | /* PSK requires a server callback. */ |
| 1884 | if (s->psk_server_callback != NULL) { |
| 1885 | mask_k |= SSL_kPSK; |
| 1886 | mask_a |= SSL_aPSK; |
| 1887 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1888 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1889 | *out_mask_k = mask_k; |
| 1890 | *out_mask_a = mask_a; |
| 1891 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1892 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1893 | void ssl_update_cache(SSL *s, int mode) { |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1894 | /* Never cache sessions with empty session IDs. */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1895 | if (s->session->session_id_length == 0) { |
| 1896 | return; |
| 1897 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1898 | |
David Benjamin | 95d3182 | 2015-06-15 19:53:32 -0400 | [diff] [blame] | 1899 | int has_new_session = !s->hit; |
| 1900 | if (!s->server && s->tlsext_ticket_expected) { |
| 1901 | /* A client may see new sessions on abbreviated handshakes if the server |
| 1902 | * decides to renew the ticket. Once the handshake is completed, it should |
| 1903 | * be inserted into the cache. */ |
| 1904 | has_new_session = 1; |
| 1905 | } |
| 1906 | |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1907 | SSL_CTX *ctx = s->initial_ctx; |
David Benjamin | 95d3182 | 2015-06-15 19:53:32 -0400 | [diff] [blame] | 1908 | if ((ctx->session_cache_mode & mode) == mode && has_new_session && |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1909 | ((ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_STORE) || |
| 1910 | SSL_CTX_add_session(ctx, s->session)) && |
| 1911 | ctx->new_session_cb != NULL) { |
| 1912 | /* Note: |new_session_cb| is called whether the internal session cache is |
| 1913 | * used or not. */ |
| 1914 | if (!ctx->new_session_cb(s, SSL_SESSION_up_ref(s->session))) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1915 | SSL_SESSION_free(s->session); |
| 1916 | } |
| 1917 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1918 | |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1919 | if (!(ctx->session_cache_mode & SSL_SESS_CACHE_NO_AUTO_CLEAR) && |
| 1920 | !(ctx->session_cache_mode & SSL_SESS_CACHE_NO_INTERNAL_STORE) && |
| 1921 | (ctx->session_cache_mode & mode) == mode) { |
| 1922 | /* Automatically flush the internal session cache every 255 connections. */ |
| 1923 | int flush_cache = 0; |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 1924 | CRYPTO_MUTEX_lock_write(&ctx->lock); |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1925 | ctx->handshakes_since_cache_flush++; |
| 1926 | if (ctx->handshakes_since_cache_flush >= 255) { |
| 1927 | flush_cache = 1; |
| 1928 | ctx->handshakes_since_cache_flush = 0; |
| 1929 | } |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 1930 | CRYPTO_MUTEX_unlock(&ctx->lock); |
David Benjamin | b6d0c6d | 2015-03-19 19:07:26 -0400 | [diff] [blame] | 1931 | |
| 1932 | if (flush_cache) { |
| 1933 | SSL_CTX_flush_sessions(ctx, (unsigned long)time(NULL)); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1934 | } |
| 1935 | } |
| 1936 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1937 | |
David Benjamin | 1a5c50f | 2015-03-11 16:22:37 -0400 | [diff] [blame] | 1938 | int SSL_get_error(const SSL *s, int ret_code) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1939 | int reason; |
David Benjamin | 1a5c50f | 2015-03-11 16:22:37 -0400 | [diff] [blame] | 1940 | uint32_t err; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1941 | BIO *bio; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1942 | |
David Benjamin | 1a5c50f | 2015-03-11 16:22:37 -0400 | [diff] [blame] | 1943 | if (ret_code > 0) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1944 | return SSL_ERROR_NONE; |
| 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 | /* Make things return SSL_ERROR_SYSCALL when doing SSL_do_handshake etc, |
| 1948 | * where we do encode the error */ |
David Benjamin | 1a5c50f | 2015-03-11 16:22:37 -0400 | [diff] [blame] | 1949 | err = ERR_peek_error(); |
| 1950 | if (err != 0) { |
| 1951 | if (ERR_GET_LIB(err) == ERR_LIB_SYS) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1952 | return SSL_ERROR_SYSCALL; |
| 1953 | } |
| 1954 | return SSL_ERROR_SSL; |
| 1955 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1956 | |
David Benjamin | 1a5c50f | 2015-03-11 16:22:37 -0400 | [diff] [blame] | 1957 | if (ret_code == 0) { |
David Benjamin | 9a38e92 | 2015-01-22 16:06:11 -0500 | [diff] [blame] | 1958 | if ((s->shutdown & SSL_RECEIVED_SHUTDOWN) && |
| 1959 | (s->s3->warn_alert == SSL_AD_CLOSE_NOTIFY)) { |
| 1960 | /* The socket was cleanly shut down with a close_notify. */ |
| 1961 | return SSL_ERROR_ZERO_RETURN; |
| 1962 | } |
| 1963 | /* An EOF was observed which violates the protocol, and the underlying |
| 1964 | * transport does not participate in the error queue. Bubble up to the |
| 1965 | * caller. */ |
| 1966 | return SSL_ERROR_SYSCALL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1967 | } |
Adam Langley | b2ce058 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1968 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1969 | if (SSL_want_session(s)) { |
| 1970 | return SSL_ERROR_PENDING_SESSION; |
| 1971 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1972 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1973 | if (SSL_want_certificate(s)) { |
| 1974 | return SSL_ERROR_PENDING_CERTIFICATE; |
| 1975 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1976 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1977 | if (SSL_want_read(s)) { |
| 1978 | bio = SSL_get_rbio(s); |
| 1979 | if (BIO_should_read(bio)) { |
| 1980 | return SSL_ERROR_WANT_READ; |
| 1981 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1982 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1983 | if (BIO_should_write(bio)) { |
| 1984 | /* This one doesn't make too much sense ... We never try to write to the |
| 1985 | * rbio, and an application program where rbio and wbio are separate |
| 1986 | * couldn't even know what it should wait for. However if we ever set |
| 1987 | * s->rwstate incorrectly (so that we have SSL_want_read(s) instead of |
| 1988 | * SSL_want_write(s)) and rbio and wbio *are* the same, this test works |
| 1989 | * around that bug; so it might be safer to keep it. */ |
| 1990 | return SSL_ERROR_WANT_WRITE; |
| 1991 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1992 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1993 | if (BIO_should_io_special(bio)) { |
| 1994 | reason = BIO_get_retry_reason(bio); |
| 1995 | if (reason == BIO_RR_CONNECT) { |
| 1996 | return SSL_ERROR_WANT_CONNECT; |
| 1997 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1998 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 1999 | if (reason == BIO_RR_ACCEPT) { |
| 2000 | return SSL_ERROR_WANT_ACCEPT; |
| 2001 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2002 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2003 | return SSL_ERROR_SYSCALL; /* unknown */ |
| 2004 | } |
| 2005 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2006 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2007 | if (SSL_want_write(s)) { |
| 2008 | bio = SSL_get_wbio(s); |
| 2009 | if (BIO_should_write(bio)) { |
| 2010 | return SSL_ERROR_WANT_WRITE; |
| 2011 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2012 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2013 | if (BIO_should_read(bio)) { |
| 2014 | /* See above (SSL_want_read(s) with BIO_should_write(bio)) */ |
| 2015 | return SSL_ERROR_WANT_READ; |
| 2016 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2017 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2018 | if (BIO_should_io_special(bio)) { |
| 2019 | reason = BIO_get_retry_reason(bio); |
| 2020 | if (reason == BIO_RR_CONNECT) { |
| 2021 | return SSL_ERROR_WANT_CONNECT; |
| 2022 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2023 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2024 | if (reason == BIO_RR_ACCEPT) { |
| 2025 | return SSL_ERROR_WANT_ACCEPT; |
| 2026 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2027 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2028 | return SSL_ERROR_SYSCALL; |
| 2029 | } |
| 2030 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2031 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2032 | if (SSL_want_x509_lookup(s)) { |
| 2033 | return SSL_ERROR_WANT_X509_LOOKUP; |
| 2034 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2035 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2036 | if (SSL_want_channel_id_lookup(s)) { |
| 2037 | return SSL_ERROR_WANT_CHANNEL_ID_LOOKUP; |
| 2038 | } |
Adam Langley | 0f4746e | 2014-08-13 12:26:32 -0700 | [diff] [blame] | 2039 | |
David Benjamin | b4d65fd | 2015-05-29 17:11:21 -0400 | [diff] [blame] | 2040 | if (SSL_want_private_key_operation(s)) { |
| 2041 | return SSL_ERROR_WANT_PRIVATE_KEY_OPERATION; |
| 2042 | } |
| 2043 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2044 | return SSL_ERROR_SYSCALL; |
| 2045 | } |
Adam Langley | 0f4746e | 2014-08-13 12:26:32 -0700 | [diff] [blame] | 2046 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2047 | int SSL_do_handshake(SSL *s) { |
| 2048 | int ret = 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2049 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2050 | if (s->handshake_func == NULL) { |
| 2051 | OPENSSL_PUT_ERROR(SSL, SSL_do_handshake, SSL_R_CONNECTION_TYPE_NOT_SET); |
| 2052 | return -1; |
| 2053 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2054 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2055 | if (SSL_in_init(s)) { |
| 2056 | ret = s->handshake_func(s); |
| 2057 | } |
| 2058 | return ret; |
| 2059 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2060 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2061 | void SSL_set_accept_state(SSL *ssl) { |
| 2062 | ssl->server = 1; |
| 2063 | ssl->shutdown = 0; |
David Benjamin | 8ec8810 | 2015-05-15 23:40:13 -0400 | [diff] [blame] | 2064 | ssl->state = SSL_ST_ACCEPT; |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2065 | ssl->handshake_func = ssl->method->ssl_accept; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2066 | /* clear the current cipher */ |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2067 | ssl_clear_cipher_ctx(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2068 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2069 | |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2070 | void SSL_set_connect_state(SSL *ssl) { |
| 2071 | ssl->server = 0; |
| 2072 | ssl->shutdown = 0; |
David Benjamin | 8ec8810 | 2015-05-15 23:40:13 -0400 | [diff] [blame] | 2073 | ssl->state = SSL_ST_CONNECT; |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2074 | ssl->handshake_func = ssl->method->ssl_connect; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2075 | /* clear the current cipher */ |
David Benjamin | 4831c33 | 2015-05-16 11:43:13 -0400 | [diff] [blame] | 2076 | ssl_clear_cipher_ctx(ssl); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2077 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2078 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2079 | static const char *ssl_get_version(int version) { |
| 2080 | switch (version) { |
| 2081 | case TLS1_2_VERSION: |
| 2082 | return "TLSv1.2"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2083 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2084 | case TLS1_1_VERSION: |
| 2085 | return "TLSv1.1"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2086 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2087 | case TLS1_VERSION: |
| 2088 | return "TLSv1"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2089 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2090 | case SSL3_VERSION: |
| 2091 | return "SSLv3"; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2092 | |
David Benjamin | 1c722b7 | 2015-04-20 13:53:10 -0400 | [diff] [blame] | 2093 | case DTLS1_VERSION: |
| 2094 | return "DTLSv1"; |
| 2095 | |
| 2096 | case DTLS1_2_VERSION: |
| 2097 | return "DTLSv1.2"; |
| 2098 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2099 | default: |
| 2100 | return "unknown"; |
| 2101 | } |
| 2102 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2103 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2104 | const char *SSL_get_version(const SSL *s) { |
| 2105 | return ssl_get_version(s->version); |
| 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 | const char *SSL_SESSION_get_version(const SSL_SESSION *sess) { |
| 2109 | return ssl_get_version(sess->ssl_version); |
| 2110 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2111 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2112 | void ssl_clear_cipher_ctx(SSL *s) { |
David Benjamin | 31a0779 | 2015-03-03 14:20:26 -0500 | [diff] [blame] | 2113 | SSL_AEAD_CTX_free(s->aead_read_ctx); |
| 2114 | s->aead_read_ctx = NULL; |
| 2115 | SSL_AEAD_CTX_free(s->aead_write_ctx); |
| 2116 | s->aead_write_ctx = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2117 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2118 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2119 | X509 *SSL_get_certificate(const SSL *s) { |
| 2120 | if (s->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 2121 | return s->cert->x509; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2122 | } |
| 2123 | |
| 2124 | return NULL; |
| 2125 | } |
| 2126 | |
| 2127 | EVP_PKEY *SSL_get_privatekey(const SSL *s) { |
| 2128 | if (s->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 2129 | return s->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2130 | } |
| 2131 | |
| 2132 | return NULL; |
| 2133 | } |
| 2134 | |
| 2135 | X509 *SSL_CTX_get0_certificate(const SSL_CTX *ctx) { |
| 2136 | if (ctx->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 2137 | return ctx->cert->x509; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2138 | } |
| 2139 | |
| 2140 | return NULL; |
| 2141 | } |
| 2142 | |
| 2143 | EVP_PKEY *SSL_CTX_get0_privatekey(const SSL_CTX *ctx) { |
| 2144 | if (ctx->cert != NULL) { |
David Benjamin | d1d8078 | 2015-07-05 11:54:09 -0400 | [diff] [blame^] | 2145 | return ctx->cert->privatekey; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2146 | } |
| 2147 | |
| 2148 | return NULL; |
| 2149 | } |
| 2150 | |
| 2151 | const SSL_CIPHER *SSL_get_current_cipher(const SSL *s) { |
David Benjamin | a07c0fc | 2015-05-13 13:19:42 -0400 | [diff] [blame] | 2152 | if (s->aead_write_ctx == NULL) { |
| 2153 | return NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2154 | } |
David Benjamin | a07c0fc | 2015-05-13 13:19:42 -0400 | [diff] [blame] | 2155 | return s->aead_write_ctx->cipher; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2156 | } |
| 2157 | |
Matt Braithwaite | 6a1275b | 2015-06-26 12:09:10 -0700 | [diff] [blame] | 2158 | const COMP_METHOD *SSL_get_current_compression(SSL *s) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2159 | |
Matt Braithwaite | 6a1275b | 2015-06-26 12:09:10 -0700 | [diff] [blame] | 2160 | const COMP_METHOD *SSL_get_current_expansion(SSL *s) { return NULL; } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2161 | |
| 2162 | int ssl_init_wbio_buffer(SSL *s, int push) { |
| 2163 | BIO *bbio; |
| 2164 | |
| 2165 | if (s->bbio == NULL) { |
| 2166 | bbio = BIO_new(BIO_f_buffer()); |
| 2167 | if (bbio == NULL) { |
| 2168 | return 0; |
| 2169 | } |
| 2170 | s->bbio = bbio; |
| 2171 | } else { |
| 2172 | bbio = s->bbio; |
| 2173 | if (s->bbio == s->wbio) { |
| 2174 | s->wbio = BIO_pop(s->wbio); |
| 2175 | } |
| 2176 | } |
| 2177 | |
| 2178 | BIO_reset(bbio); |
| 2179 | if (!BIO_set_read_buffer_size(bbio, 1)) { |
| 2180 | OPENSSL_PUT_ERROR(SSL, ssl_init_wbio_buffer, ERR_R_BUF_LIB); |
| 2181 | return 0; |
| 2182 | } |
| 2183 | |
| 2184 | if (push) { |
| 2185 | if (s->wbio != bbio) { |
| 2186 | s->wbio = BIO_push(bbio, s->wbio); |
| 2187 | } |
| 2188 | } else { |
| 2189 | if (s->wbio == bbio) { |
| 2190 | s->wbio = BIO_pop(bbio); |
| 2191 | } |
| 2192 | } |
| 2193 | |
| 2194 | return 1; |
| 2195 | } |
| 2196 | |
| 2197 | void ssl_free_wbio_buffer(SSL *s) { |
| 2198 | if (s->bbio == NULL) { |
| 2199 | return; |
| 2200 | } |
| 2201 | |
| 2202 | if (s->bbio == s->wbio) { |
| 2203 | /* remove buffering */ |
| 2204 | s->wbio = BIO_pop(s->wbio); |
| 2205 | } |
| 2206 | |
| 2207 | BIO_free(s->bbio); |
| 2208 | s->bbio = NULL; |
| 2209 | } |
| 2210 | |
| 2211 | void SSL_CTX_set_quiet_shutdown(SSL_CTX *ctx, int mode) { |
| 2212 | ctx->quiet_shutdown = mode; |
| 2213 | } |
| 2214 | |
| 2215 | int SSL_CTX_get_quiet_shutdown(const SSL_CTX *ctx) { |
| 2216 | return ctx->quiet_shutdown; |
| 2217 | } |
| 2218 | |
| 2219 | void SSL_set_quiet_shutdown(SSL *s, int mode) { s->quiet_shutdown = mode; } |
| 2220 | |
| 2221 | int SSL_get_quiet_shutdown(const SSL *s) { return s->quiet_shutdown; } |
| 2222 | |
| 2223 | void SSL_set_shutdown(SSL *s, int mode) { s->shutdown = mode; } |
| 2224 | |
| 2225 | int SSL_get_shutdown(const SSL *s) { return s->shutdown; } |
| 2226 | |
| 2227 | int SSL_version(const SSL *s) { return s->version; } |
| 2228 | |
| 2229 | SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) { return ssl->ctx; } |
| 2230 | |
| 2231 | SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX *ctx) { |
| 2232 | if (ssl->ctx == ctx) { |
| 2233 | return ssl->ctx; |
| 2234 | } |
| 2235 | |
| 2236 | if (ctx == NULL) { |
| 2237 | ctx = ssl->initial_ctx; |
| 2238 | } |
| 2239 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2240 | ssl_cert_free(ssl->cert); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2241 | ssl->cert = ssl_cert_dup(ctx->cert); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2242 | |
Adam Langley | 0b5e390 | 2015-05-15 13:08:38 -0700 | [diff] [blame] | 2243 | CRYPTO_refcount_inc(&ctx->references); |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2244 | SSL_CTX_free(ssl->ctx); /* decrement reference count */ |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2245 | ssl->ctx = ctx; |
| 2246 | |
| 2247 | ssl->sid_ctx_length = ctx->sid_ctx_length; |
| 2248 | assert(ssl->sid_ctx_length <= sizeof(ssl->sid_ctx)); |
| 2249 | memcpy(ssl->sid_ctx, ctx->sid_ctx, sizeof(ssl->sid_ctx)); |
| 2250 | |
| 2251 | return ssl->ctx; |
| 2252 | } |
| 2253 | |
| 2254 | int SSL_CTX_set_default_verify_paths(SSL_CTX *ctx) { |
| 2255 | return X509_STORE_set_default_paths(ctx->cert_store); |
| 2256 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2257 | |
| 2258 | int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2259 | const char *CApath) { |
| 2260 | return X509_STORE_load_locations(ctx->cert_store, CAfile, CApath); |
| 2261 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2262 | |
| 2263 | void SSL_set_info_callback(SSL *ssl, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2264 | void (*cb)(const SSL *ssl, int type, int val)) { |
| 2265 | ssl->info_callback = cb; |
| 2266 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2267 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2268 | void (*SSL_get_info_callback(const SSL *ssl))(const SSL * /*ssl*/, int /*type*/, |
| 2269 | int /*val*/) { |
| 2270 | return ssl->info_callback; |
| 2271 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2272 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2273 | int SSL_state(const SSL *ssl) { return ssl->state; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2274 | |
David Benjamin | ece089c | 2015-05-15 23:52:42 -0400 | [diff] [blame] | 2275 | void SSL_set_state(SSL *ssl, int state) { } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2276 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2277 | void SSL_set_verify_result(SSL *ssl, long arg) { ssl->verify_result = arg; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2278 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2279 | long SSL_get_verify_result(const SSL *ssl) { return ssl->verify_result; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2280 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2281 | int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, |
| 2282 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2283 | int index; |
| 2284 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl, &index, argl, argp, |
| 2285 | new_func, dup_func, free_func)) { |
| 2286 | return -1; |
| 2287 | } |
| 2288 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2289 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2290 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2291 | int SSL_set_ex_data(SSL *s, int idx, void *arg) { |
| 2292 | return CRYPTO_set_ex_data(&s->ex_data, idx, arg); |
| 2293 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2294 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2295 | void *SSL_get_ex_data(const SSL *s, int idx) { |
| 2296 | return CRYPTO_get_ex_data(&s->ex_data, idx); |
| 2297 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2298 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2299 | int SSL_CTX_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, |
| 2300 | CRYPTO_EX_dup *dup_func, |
| 2301 | CRYPTO_EX_free *free_func) { |
David Benjamin | 9f33fc6 | 2015-04-15 17:29:53 -0400 | [diff] [blame] | 2302 | int index; |
| 2303 | if (!CRYPTO_get_ex_new_index(&g_ex_data_class_ssl_ctx, &index, argl, argp, |
| 2304 | new_func, dup_func, free_func)) { |
| 2305 | return -1; |
| 2306 | } |
| 2307 | return index; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2308 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2309 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2310 | int SSL_CTX_set_ex_data(SSL_CTX *s, int idx, void *arg) { |
| 2311 | return CRYPTO_set_ex_data(&s->ex_data, idx, arg); |
| 2312 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2313 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2314 | void *SSL_CTX_get_ex_data(const SSL_CTX *s, int idx) { |
| 2315 | return CRYPTO_get_ex_data(&s->ex_data, idx); |
| 2316 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2317 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2318 | X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx) { |
| 2319 | return ctx->cert_store; |
| 2320 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2321 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2322 | void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2323 | X509_STORE_free(ctx->cert_store); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2324 | ctx->cert_store = store; |
| 2325 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2326 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2327 | int SSL_want(const SSL *s) { return s->rwstate; } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2328 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2329 | void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx, |
| 2330 | RSA *(*cb)(SSL *ssl, int is_export, |
| 2331 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2332 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2333 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2334 | void SSL_set_tmp_rsa_callback(SSL *ssl, RSA *(*cb)(SSL *ssl, int is_export, |
| 2335 | int keylength)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2336 | } |
| 2337 | |
| 2338 | void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx, |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2339 | DH *(*callback)(SSL *ssl, int is_export, |
| 2340 | int keylength)) { |
| 2341 | ctx->cert->dh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2342 | } |
| 2343 | |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2344 | void SSL_set_tmp_dh_callback(SSL *ssl, DH *(*callback)(SSL *ssl, int is_export, |
| 2345 | int keylength)) { |
| 2346 | ssl->cert->dh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2347 | } |
| 2348 | |
| 2349 | void SSL_CTX_set_tmp_ecdh_callback(SSL_CTX *ctx, |
David Benjamin | dd97878 | 2015-04-24 15:20:13 -0400 | [diff] [blame] | 2350 | EC_KEY *(*callback)(SSL *ssl, int is_export, |
| 2351 | int keylength)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2352 | ctx->cert->ecdh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2353 | } |
| 2354 | |
| 2355 | void SSL_set_tmp_ecdh_callback(SSL *ssl, |
David Benjamin | dd97878 | 2015-04-24 15:20:13 -0400 | [diff] [blame] | 2356 | EC_KEY *(*callback)(SSL *ssl, int is_export, |
| 2357 | int keylength)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2358 | ssl->cert->ecdh_tmp_cb = callback; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2359 | } |
| 2360 | |
| 2361 | int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { |
| 2362 | if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { |
| 2363 | OPENSSL_PUT_ERROR(SSL, SSL_CTX_use_psk_identity_hint, |
| 2364 | SSL_R_DATA_LENGTH_TOO_LONG); |
| 2365 | return 0; |
| 2366 | } |
| 2367 | |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2368 | OPENSSL_free(ctx->psk_identity_hint); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2369 | |
| 2370 | if (identity_hint != NULL) { |
| 2371 | ctx->psk_identity_hint = BUF_strdup(identity_hint); |
| 2372 | if (ctx->psk_identity_hint == NULL) { |
| 2373 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2374 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2375 | } else { |
| 2376 | ctx->psk_identity_hint = NULL; |
| 2377 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2378 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2379 | return 1; |
| 2380 | } |
| 2381 | |
| 2382 | int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) { |
| 2383 | if (s == NULL) { |
| 2384 | return 0; |
| 2385 | } |
| 2386 | |
| 2387 | if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { |
| 2388 | OPENSSL_PUT_ERROR(SSL, SSL_use_psk_identity_hint, |
| 2389 | SSL_R_DATA_LENGTH_TOO_LONG); |
| 2390 | return 0; |
| 2391 | } |
| 2392 | |
| 2393 | /* Clear currently configured hint, if any. */ |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2394 | OPENSSL_free(s->psk_identity_hint); |
| 2395 | s->psk_identity_hint = NULL; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2396 | |
| 2397 | if (identity_hint != NULL) { |
| 2398 | s->psk_identity_hint = BUF_strdup(identity_hint); |
| 2399 | if (s->psk_identity_hint == NULL) { |
| 2400 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2401 | } |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2402 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2403 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2404 | return 1; |
| 2405 | } |
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 | const char *SSL_get_psk_identity_hint(const SSL *s) { |
| 2408 | if (s == NULL) { |
| 2409 | return NULL; |
| 2410 | } |
| 2411 | return s->psk_identity_hint; |
| 2412 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2413 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2414 | const char *SSL_get_psk_identity(const SSL *s) { |
| 2415 | if (s == NULL || s->session == NULL) { |
| 2416 | return NULL; |
| 2417 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2418 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2419 | return s->session->psk_identity; |
| 2420 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2421 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2422 | void SSL_set_psk_client_callback( |
| 2423 | SSL *s, unsigned int (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2424 | unsigned int max_identity_len, uint8_t *psk, |
| 2425 | unsigned int max_psk_len)) { |
| 2426 | s->psk_client_callback = cb; |
| 2427 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2428 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2429 | void SSL_CTX_set_psk_client_callback( |
| 2430 | SSL_CTX *ctx, unsigned int (*cb)(SSL *ssl, const char *hint, char *identity, |
| 2431 | unsigned int max_identity_len, |
| 2432 | uint8_t *psk, unsigned int max_psk_len)) { |
| 2433 | ctx->psk_client_callback = cb; |
| 2434 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2435 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2436 | void SSL_set_psk_server_callback( |
| 2437 | SSL *s, unsigned int (*cb)(SSL *ssl, const char *identity, uint8_t *psk, |
| 2438 | unsigned int max_psk_len)) { |
| 2439 | s->psk_server_callback = cb; |
| 2440 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2441 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2442 | void SSL_CTX_set_psk_server_callback( |
| 2443 | SSL_CTX *ctx, unsigned int (*cb)(SSL *ssl, const char *identity, |
| 2444 | uint8_t *psk, unsigned int max_psk_len)) { |
| 2445 | ctx->psk_server_callback = cb; |
| 2446 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2447 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2448 | void SSL_CTX_set_min_version(SSL_CTX *ctx, uint16_t version) { |
| 2449 | ctx->min_version = version; |
| 2450 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2451 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2452 | void SSL_CTX_set_max_version(SSL_CTX *ctx, uint16_t version) { |
| 2453 | ctx->max_version = version; |
| 2454 | } |
Adam Langley | 0289c73 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2455 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2456 | void SSL_set_min_version(SSL *ssl, uint16_t version) { |
| 2457 | ssl->min_version = version; |
| 2458 | } |
Adam Langley | 0289c73 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2459 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2460 | void SSL_set_max_version(SSL *ssl, uint16_t version) { |
| 2461 | ssl->max_version = version; |
| 2462 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2463 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2464 | void SSL_CTX_set_msg_callback(SSL_CTX *ctx, |
| 2465 | void (*cb)(int write_p, int version, |
| 2466 | int content_type, const void *buf, |
| 2467 | size_t len, SSL *ssl, void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2468 | ctx->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2469 | } |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2470 | |
| 2471 | void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg) { |
| 2472 | ctx->msg_callback_arg = arg; |
| 2473 | } |
| 2474 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2475 | void SSL_set_msg_callback(SSL *ssl, |
| 2476 | void (*cb)(int write_p, int version, int content_type, |
| 2477 | const void *buf, size_t len, SSL *ssl, |
| 2478 | void *arg)) { |
David Benjamin | 59015c3 | 2015-04-26 13:13:55 -0400 | [diff] [blame] | 2479 | ssl->msg_callback = cb; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2480 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2481 | |
David Benjamin | 61ecccf | 2015-05-05 09:44:51 -0400 | [diff] [blame] | 2482 | void SSL_set_msg_callback_arg(SSL *ssl, void *arg) { |
| 2483 | ssl->msg_callback_arg = arg; |
| 2484 | } |
| 2485 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2486 | void SSL_CTX_set_keylog_bio(SSL_CTX *ctx, BIO *keylog_bio) { |
David Benjamin | 2755a3e | 2015-04-22 16:17:58 -0400 | [diff] [blame] | 2487 | BIO_free(ctx->keylog_bio); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2488 | ctx->keylog_bio = keylog_bio; |
| 2489 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2490 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2491 | static int cbb_add_hex(CBB *cbb, const uint8_t *in, size_t in_len) { |
| 2492 | static const char hextable[] = "0123456789abcdef"; |
| 2493 | uint8_t *out; |
| 2494 | size_t i; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2495 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2496 | if (!CBB_add_space(cbb, &out, in_len * 2)) { |
| 2497 | return 0; |
| 2498 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2499 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2500 | for (i = 0; i < in_len; i++) { |
| 2501 | *(out++) = (uint8_t)hextable[in[i] >> 4]; |
| 2502 | *(out++) = (uint8_t)hextable[in[i] & 0xf]; |
| 2503 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2504 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2505 | return 1; |
| 2506 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2507 | |
| 2508 | int ssl_ctx_log_rsa_client_key_exchange(SSL_CTX *ctx, |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2509 | const uint8_t *encrypted_premaster, |
| 2510 | size_t encrypted_premaster_len, |
| 2511 | const uint8_t *premaster, |
| 2512 | size_t premaster_len) { |
| 2513 | BIO *bio = ctx->keylog_bio; |
| 2514 | CBB cbb; |
| 2515 | uint8_t *out; |
| 2516 | size_t out_len; |
| 2517 | int ret; |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2518 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2519 | if (bio == NULL) { |
| 2520 | return 1; |
| 2521 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2522 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2523 | if (encrypted_premaster_len < 8) { |
| 2524 | OPENSSL_PUT_ERROR(SSL, ssl_ctx_log_rsa_client_key_exchange, |
| 2525 | ERR_R_INTERNAL_ERROR); |
| 2526 | return 0; |
| 2527 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2528 | |
David Benjamin | a865320 | 2015-06-28 01:26:10 -0400 | [diff] [blame] | 2529 | CBB_zero(&cbb); |
| 2530 | if (!CBB_init(&cbb, 4 + 16 + 1 + premaster_len * 2 + 1) || |
| 2531 | !CBB_add_bytes(&cbb, (const uint8_t *)"RSA ", 4) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2532 | /* Only the first 8 bytes of the encrypted premaster secret are |
| 2533 | * logged. */ |
| 2534 | !cbb_add_hex(&cbb, encrypted_premaster, 8) || |
| 2535 | !CBB_add_bytes(&cbb, (const uint8_t *)" ", 1) || |
| 2536 | !cbb_add_hex(&cbb, premaster, premaster_len) || |
| 2537 | !CBB_add_bytes(&cbb, (const uint8_t *)"\n", 1) || |
| 2538 | !CBB_finish(&cbb, &out, &out_len)) { |
| 2539 | CBB_cleanup(&cbb); |
| 2540 | return 0; |
| 2541 | } |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2542 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 2543 | CRYPTO_MUTEX_lock_write(&ctx->lock); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2544 | ret = BIO_write(bio, out, out_len) >= 0 && BIO_flush(bio); |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 2545 | CRYPTO_MUTEX_unlock(&ctx->lock); |
David Benjamin | 859ec3c | 2014-09-02 16:29:36 -0400 | [diff] [blame] | 2546 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2547 | OPENSSL_free(out); |
| 2548 | return ret; |
Adam Langley | 95f2288 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2549 | } |
| 2550 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2551 | int ssl_ctx_log_master_secret(SSL_CTX *ctx, const uint8_t *client_random, |
| 2552 | size_t client_random_len, const uint8_t *master, |
| 2553 | size_t master_len) { |
| 2554 | BIO *bio = ctx->keylog_bio; |
| 2555 | CBB cbb; |
| 2556 | uint8_t *out; |
| 2557 | size_t out_len; |
| 2558 | int ret; |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2559 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2560 | if (bio == NULL) { |
| 2561 | return 1; |
| 2562 | } |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2563 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2564 | if (client_random_len != 32) { |
| 2565 | OPENSSL_PUT_ERROR(SSL, ssl_ctx_log_master_secret, ERR_R_INTERNAL_ERROR); |
| 2566 | return 0; |
| 2567 | } |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2568 | |
David Benjamin | a865320 | 2015-06-28 01:26:10 -0400 | [diff] [blame] | 2569 | CBB_zero(&cbb); |
| 2570 | if (!CBB_init(&cbb, 14 + 64 + 1 + master_len * 2 + 1) || |
| 2571 | !CBB_add_bytes(&cbb, (const uint8_t *)"CLIENT_RANDOM ", 14) || |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2572 | !cbb_add_hex(&cbb, client_random, 32) || |
| 2573 | !CBB_add_bytes(&cbb, (const uint8_t *)" ", 1) || |
| 2574 | !cbb_add_hex(&cbb, master, master_len) || |
| 2575 | !CBB_add_bytes(&cbb, (const uint8_t *)"\n", 1) || |
| 2576 | !CBB_finish(&cbb, &out, &out_len)) { |
| 2577 | CBB_cleanup(&cbb); |
| 2578 | return 0; |
| 2579 | } |
Adam Langley | adb739e | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2580 | |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 2581 | CRYPTO_MUTEX_lock_write(&ctx->lock); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2582 | ret = BIO_write(bio, out, out_len) >= 0 && BIO_flush(bio); |
Adam Langley | 4bdb6e4 | 2015-05-15 15:29:21 -0700 | [diff] [blame] | 2583 | CRYPTO_MUTEX_unlock(&ctx->lock); |
David Benjamin | e99e912 | 2014-12-11 01:46:01 -0500 | [diff] [blame] | 2584 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2585 | OPENSSL_free(out); |
| 2586 | return ret; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2587 | } |
| 2588 | |
David Benjamin | ed7c475 | 2015-02-16 19:16:46 -0500 | [diff] [blame] | 2589 | int SSL_in_false_start(const SSL *s) { |
| 2590 | return s->s3->tmp.in_false_start; |
| 2591 | } |
| 2592 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2593 | int SSL_cutthrough_complete(const SSL *s) { |
David Benjamin | ed7c475 | 2015-02-16 19:16:46 -0500 | [diff] [blame] | 2594 | return SSL_in_false_start(s); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2595 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 2596 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2597 | void SSL_get_structure_sizes(size_t *ssl_size, size_t *ssl_ctx_size, |
| 2598 | size_t *ssl_session_size) { |
| 2599 | *ssl_size = sizeof(SSL); |
| 2600 | *ssl_ctx_size = sizeof(SSL_CTX); |
| 2601 | *ssl_session_size = sizeof(SSL_SESSION); |
| 2602 | } |
Feng Lu | 41aa325 | 2014-11-21 22:47:56 -0800 | [diff] [blame] | 2603 | |
David Benjamin | ed7c475 | 2015-02-16 19:16:46 -0500 | [diff] [blame] | 2604 | int ssl3_can_false_start(const SSL *s) { |
David Benjamin | 195dc78 | 2015-02-19 13:27:05 -0500 | [diff] [blame] | 2605 | const SSL_CIPHER *const cipher = SSL_get_current_cipher(s); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2606 | |
Adam Langley | e631d96 | 2015-04-01 13:11:01 -0700 | [diff] [blame] | 2607 | /* False Start only for TLS 1.2 with an ECDHE+AEAD cipher and ALPN or NPN. */ |
David Benjamin | 195dc78 | 2015-02-19 13:27:05 -0500 | [diff] [blame] | 2608 | return !SSL_IS_DTLS(s) && |
| 2609 | SSL_version(s) >= TLS1_2_VERSION && |
| 2610 | (s->s3->alpn_selected || s->s3->next_proto_neg_seen) && |
| 2611 | cipher != NULL && |
Adam Langley | e631d96 | 2015-04-01 13:11:01 -0700 | [diff] [blame] | 2612 | cipher->algorithm_mkey == SSL_kECDHE && |
David Benjamin | 195dc78 | 2015-02-19 13:27:05 -0500 | [diff] [blame] | 2613 | (cipher->algorithm_enc == SSL_AES128GCM || |
| 2614 | cipher->algorithm_enc == SSL_AES256GCM || |
| 2615 | cipher->algorithm_enc == SSL_CHACHA20POLY1305); |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2616 | } |
| 2617 | |
| 2618 | const SSL3_ENC_METHOD *ssl3_get_enc_method(uint16_t version) { |
| 2619 | switch (version) { |
| 2620 | case SSL3_VERSION: |
| 2621 | return &SSLv3_enc_data; |
| 2622 | |
| 2623 | case TLS1_VERSION: |
| 2624 | return &TLSv1_enc_data; |
| 2625 | |
David Benjamin | 9e13e1a | 2015-03-05 01:56:32 -0500 | [diff] [blame] | 2626 | case DTLS1_VERSION: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2627 | case TLS1_1_VERSION: |
| 2628 | return &TLSv1_1_enc_data; |
| 2629 | |
David Benjamin | 9e13e1a | 2015-03-05 01:56:32 -0500 | [diff] [blame] | 2630 | case DTLS1_2_VERSION: |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2631 | case TLS1_2_VERSION: |
| 2632 | return &TLSv1_2_enc_data; |
| 2633 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2634 | default: |
| 2635 | return NULL; |
| 2636 | } |
| 2637 | } |
| 2638 | |
| 2639 | uint16_t ssl3_get_max_server_version(const SSL *s) { |
| 2640 | uint16_t max_version; |
| 2641 | |
| 2642 | if (SSL_IS_DTLS(s)) { |
| 2643 | max_version = (s->max_version != 0) ? s->max_version : DTLS1_2_VERSION; |
| 2644 | if (!(s->options & SSL_OP_NO_DTLSv1_2) && DTLS1_2_VERSION >= max_version) { |
| 2645 | return DTLS1_2_VERSION; |
| 2646 | } |
| 2647 | if (!(s->options & SSL_OP_NO_DTLSv1) && DTLS1_VERSION >= max_version) { |
| 2648 | return DTLS1_VERSION; |
| 2649 | } |
| 2650 | return 0; |
| 2651 | } |
| 2652 | |
| 2653 | max_version = (s->max_version != 0) ? s->max_version : TLS1_2_VERSION; |
| 2654 | if (!(s->options & SSL_OP_NO_TLSv1_2) && TLS1_2_VERSION <= max_version) { |
| 2655 | return TLS1_2_VERSION; |
| 2656 | } |
| 2657 | if (!(s->options & SSL_OP_NO_TLSv1_1) && TLS1_1_VERSION <= max_version) { |
| 2658 | return TLS1_1_VERSION; |
| 2659 | } |
| 2660 | if (!(s->options & SSL_OP_NO_TLSv1) && TLS1_VERSION <= max_version) { |
| 2661 | return TLS1_VERSION; |
| 2662 | } |
| 2663 | if (!(s->options & SSL_OP_NO_SSLv3) && SSL3_VERSION <= max_version) { |
| 2664 | return SSL3_VERSION; |
| 2665 | } |
| 2666 | return 0; |
| 2667 | } |
| 2668 | |
| 2669 | uint16_t ssl3_get_mutual_version(SSL *s, uint16_t client_version) { |
| 2670 | uint16_t version = 0; |
| 2671 | |
| 2672 | if (SSL_IS_DTLS(s)) { |
| 2673 | /* Clamp client_version to max_version. */ |
| 2674 | if (s->max_version != 0 && client_version < s->max_version) { |
| 2675 | client_version = s->max_version; |
| 2676 | } |
| 2677 | |
| 2678 | if (client_version <= DTLS1_2_VERSION && !(s->options & SSL_OP_NO_DTLSv1_2)) { |
| 2679 | version = DTLS1_2_VERSION; |
| 2680 | } else if (client_version <= DTLS1_VERSION && |
David Benjamin | b18f024 | 2015-03-10 18:30:08 -0400 | [diff] [blame] | 2681 | !(s->options & SSL_OP_NO_DTLSv1)) { |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2682 | version = DTLS1_VERSION; |
| 2683 | } |
| 2684 | |
| 2685 | /* Check against min_version. */ |
| 2686 | if (version != 0 && s->min_version != 0 && version > s->min_version) { |
| 2687 | return 0; |
| 2688 | } |
| 2689 | return version; |
| 2690 | } else { |
| 2691 | /* Clamp client_version to max_version. */ |
| 2692 | if (s->max_version != 0 && client_version > s->max_version) { |
| 2693 | client_version = s->max_version; |
| 2694 | } |
| 2695 | |
| 2696 | if (client_version >= TLS1_2_VERSION && !(s->options & SSL_OP_NO_TLSv1_2)) { |
| 2697 | version = TLS1_2_VERSION; |
| 2698 | } else if (client_version >= TLS1_1_VERSION && |
| 2699 | !(s->options & SSL_OP_NO_TLSv1_1)) { |
| 2700 | version = TLS1_1_VERSION; |
| 2701 | } else if (client_version >= TLS1_VERSION && !(s->options & SSL_OP_NO_TLSv1)) { |
| 2702 | version = TLS1_VERSION; |
| 2703 | } else if (client_version >= SSL3_VERSION && !(s->options & SSL_OP_NO_SSLv3)) { |
| 2704 | version = SSL3_VERSION; |
| 2705 | } |
| 2706 | |
| 2707 | /* Check against min_version. */ |
| 2708 | if (version != 0 && s->min_version != 0 && version < s->min_version) { |
| 2709 | return 0; |
| 2710 | } |
| 2711 | return version; |
| 2712 | } |
| 2713 | } |
| 2714 | |
| 2715 | uint16_t ssl3_get_max_client_version(SSL *s) { |
David Benjamin | 123a8fd | 2015-04-26 14:16:41 -0400 | [diff] [blame] | 2716 | uint32_t options = s->options; |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2717 | uint16_t version = 0; |
| 2718 | |
| 2719 | /* OpenSSL's API for controlling versions entails blacklisting individual |
| 2720 | * protocols. This has two problems. First, on the client, the protocol can |
| 2721 | * only express a contiguous range of versions. Second, a library consumer |
| 2722 | * trying to set a maximum version cannot disable protocol versions that get |
| 2723 | * added in a future version of the library. |
| 2724 | * |
| 2725 | * To account for both of these, OpenSSL interprets the client-side bitmask |
| 2726 | * as a min/max range by picking the lowest contiguous non-empty range of |
| 2727 | * enabled protocols. Note that this means it is impossible to set a maximum |
| 2728 | * version of TLS 1.2 in a future-proof way. |
| 2729 | * |
| 2730 | * By this scheme, the maximum version is the lowest version V such that V is |
| 2731 | * enabled and V+1 is disabled or unimplemented. */ |
| 2732 | if (SSL_IS_DTLS(s)) { |
| 2733 | if (!(options & SSL_OP_NO_DTLSv1_2)) { |
| 2734 | version = DTLS1_2_VERSION; |
| 2735 | } |
| 2736 | if (!(options & SSL_OP_NO_DTLSv1) && (options & SSL_OP_NO_DTLSv1_2)) { |
| 2737 | version = DTLS1_VERSION; |
| 2738 | } |
| 2739 | if (s->max_version != 0 && version < s->max_version) { |
| 2740 | version = s->max_version; |
| 2741 | } |
| 2742 | } else { |
| 2743 | if (!(options & SSL_OP_NO_TLSv1_2)) { |
| 2744 | version = TLS1_2_VERSION; |
| 2745 | } |
| 2746 | if (!(options & SSL_OP_NO_TLSv1_1) && (options & SSL_OP_NO_TLSv1_2)) { |
| 2747 | version = TLS1_1_VERSION; |
| 2748 | } |
| 2749 | if (!(options & SSL_OP_NO_TLSv1) && (options & SSL_OP_NO_TLSv1_1)) { |
| 2750 | version = TLS1_VERSION; |
| 2751 | } |
| 2752 | if (!(options & SSL_OP_NO_SSLv3) && (options & SSL_OP_NO_TLSv1)) { |
| 2753 | version = SSL3_VERSION; |
| 2754 | } |
| 2755 | if (s->max_version != 0 && version > s->max_version) { |
| 2756 | version = s->max_version; |
| 2757 | } |
| 2758 | } |
| 2759 | |
| 2760 | return version; |
| 2761 | } |
| 2762 | |
| 2763 | int ssl3_is_version_enabled(SSL *s, uint16_t version) { |
| 2764 | if (SSL_IS_DTLS(s)) { |
| 2765 | if (s->max_version != 0 && version < s->max_version) { |
| 2766 | return 0; |
| 2767 | } |
| 2768 | if (s->min_version != 0 && version > s->min_version) { |
| 2769 | return 0; |
| 2770 | } |
| 2771 | |
| 2772 | switch (version) { |
| 2773 | case DTLS1_VERSION: |
| 2774 | return !(s->options & SSL_OP_NO_DTLSv1); |
| 2775 | |
| 2776 | case DTLS1_2_VERSION: |
| 2777 | return !(s->options & SSL_OP_NO_DTLSv1_2); |
| 2778 | |
| 2779 | default: |
| 2780 | return 0; |
| 2781 | } |
| 2782 | } else { |
| 2783 | if (s->max_version != 0 && version > s->max_version) { |
| 2784 | return 0; |
| 2785 | } |
| 2786 | if (s->min_version != 0 && version < s->min_version) { |
| 2787 | return 0; |
| 2788 | } |
| 2789 | |
| 2790 | switch (version) { |
| 2791 | case SSL3_VERSION: |
| 2792 | return !(s->options & SSL_OP_NO_SSLv3); |
| 2793 | |
| 2794 | case TLS1_VERSION: |
| 2795 | return !(s->options & SSL_OP_NO_TLSv1); |
| 2796 | |
| 2797 | case TLS1_1_VERSION: |
| 2798 | return !(s->options & SSL_OP_NO_TLSv1_1); |
| 2799 | |
| 2800 | case TLS1_2_VERSION: |
| 2801 | return !(s->options & SSL_OP_NO_TLSv1_2); |
| 2802 | |
| 2803 | default: |
| 2804 | return 0; |
| 2805 | } |
| 2806 | } |
| 2807 | } |
| 2808 | |
David Benjamin | ea72bd0 | 2014-12-21 21:27:41 -0500 | [diff] [blame] | 2809 | uint16_t ssl3_version_from_wire(SSL *s, uint16_t wire_version) { |
| 2810 | if (!SSL_IS_DTLS(s)) { |
| 2811 | return wire_version; |
| 2812 | } |
| 2813 | |
| 2814 | uint16_t tls_version = ~wire_version; |
| 2815 | uint16_t version = tls_version + 0x0201; |
| 2816 | /* If either component overflowed, clamp it so comparisons still work. */ |
| 2817 | if ((version >> 8) < (tls_version >> 8)) { |
| 2818 | version = 0xff00 | (version & 0xff); |
| 2819 | } |
| 2820 | if ((version & 0xff) < (tls_version & 0xff)) { |
| 2821 | version = (version & 0xff00) | 0xff; |
| 2822 | } |
| 2823 | /* DTLS 1.0 maps to TLS 1.1, not TLS 1.0. */ |
| 2824 | if (version == TLS1_VERSION) { |
| 2825 | version = TLS1_1_VERSION; |
| 2826 | } |
| 2827 | return version; |
| 2828 | } |
| 2829 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2830 | int SSL_cache_hit(SSL *s) { return s->hit; } |
| 2831 | |
| 2832 | int SSL_is_server(SSL *s) { return s->server; } |
| 2833 | |
Adam Langley | 524e717 | 2015-02-20 16:04:00 -0800 | [diff] [blame] | 2834 | void SSL_CTX_set_dos_protection_cb( |
| 2835 | SSL_CTX *ctx, int (*cb)(const struct ssl_early_callback_ctx *)) { |
| 2836 | ctx->dos_protection_cb = cb; |
| 2837 | } |
| 2838 | |
Adam Langley | fcf2583 | 2014-12-18 17:42:32 -0800 | [diff] [blame] | 2839 | void SSL_enable_fastradio_padding(SSL *s, char on_off) { |
| 2840 | s->fastradio_padding = on_off; |
| 2841 | } |
Adam Langley | 4497294 | 2015-02-20 13:43:23 -0800 | [diff] [blame] | 2842 | |
David Benjamin | b16346b | 2015-04-08 19:16:58 -0400 | [diff] [blame] | 2843 | void SSL_set_reject_peer_renegotiations(SSL *s, int reject) { |
David Benjamin | 897e5e0 | 2015-05-12 17:03:54 -0400 | [diff] [blame] | 2844 | s->accept_peer_renegotiations = !reject; |
David Benjamin | b16346b | 2015-04-08 19:16:58 -0400 | [diff] [blame] | 2845 | } |
| 2846 | |
Adam Langley | 3f92d21 | 2015-02-20 15:32:52 -0800 | [diff] [blame] | 2847 | int SSL_get_rc4_state(const SSL *ssl, const RC4_KEY **read_key, |
| 2848 | const RC4_KEY **write_key) { |
| 2849 | if (ssl->aead_read_ctx == NULL || ssl->aead_write_ctx == NULL) { |
| 2850 | return 0; |
| 2851 | } |
| 2852 | |
| 2853 | return EVP_AEAD_CTX_get_rc4_state(&ssl->aead_read_ctx->ctx, read_key) && |
| 2854 | EVP_AEAD_CTX_get_rc4_state(&ssl->aead_write_ctx->ctx, write_key); |
| 2855 | } |
David Benjamin | da881e9 | 2015-04-26 14:45:04 -0400 | [diff] [blame] | 2856 | |
Adam Langley | af0e32c | 2015-06-03 09:57:23 -0700 | [diff] [blame] | 2857 | int SSL_get_tls_unique(const SSL *ssl, uint8_t *out, size_t *out_len, |
| 2858 | size_t max_out) { |
| 2859 | /* The tls-unique value is the first Finished message in the handshake, which |
| 2860 | * is the client's in a full handshake and the server's for a resumption. See |
| 2861 | * https://tools.ietf.org/html/rfc5929#section-3.1. */ |
| 2862 | const uint8_t *finished = ssl->s3->previous_client_finished; |
| 2863 | size_t finished_len = ssl->s3->previous_client_finished_len; |
| 2864 | if (ssl->hit) { |
| 2865 | /* tls-unique is broken for resumed sessions unless EMS is used. */ |
| 2866 | if (!ssl->session->extended_master_secret) { |
| 2867 | goto err; |
| 2868 | } |
| 2869 | finished = ssl->s3->previous_server_finished; |
| 2870 | finished_len = ssl->s3->previous_server_finished_len; |
| 2871 | } |
| 2872 | |
| 2873 | if (!ssl->s3->initial_handshake_complete || |
| 2874 | ssl->version < TLS1_VERSION) { |
| 2875 | goto err; |
| 2876 | } |
| 2877 | |
| 2878 | *out_len = finished_len; |
| 2879 | if (finished_len > max_out) { |
| 2880 | *out_len = max_out; |
| 2881 | } |
| 2882 | |
| 2883 | memcpy(out, finished, *out_len); |
| 2884 | return 1; |
| 2885 | |
| 2886 | err: |
| 2887 | *out_len = 0; |
| 2888 | memset(out, 0, max_out); |
| 2889 | return 0; |
| 2890 | } |
| 2891 | |
David Benjamin | da881e9 | 2015-04-26 14:45:04 -0400 | [diff] [blame] | 2892 | int SSL_CTX_sess_connect(const SSL_CTX *ctx) { return 0; } |
| 2893 | int SSL_CTX_sess_connect_good(const SSL_CTX *ctx) { return 0; } |
| 2894 | int SSL_CTX_sess_connect_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2895 | int SSL_CTX_sess_accept(const SSL_CTX *ctx) { return 0; } |
| 2896 | int SSL_CTX_sess_accept_renegotiate(const SSL_CTX *ctx) { return 0; } |
| 2897 | int SSL_CTX_sess_accept_good(const SSL_CTX *ctx) { return 0; } |
| 2898 | int SSL_CTX_sess_hits(const SSL_CTX *ctx) { return 0; } |
| 2899 | int SSL_CTX_sess_cb_hits(const SSL_CTX *ctx) { return 0; } |
| 2900 | int SSL_CTX_sess_misses(const SSL_CTX *ctx) { return 0; } |
| 2901 | int SSL_CTX_sess_timeouts(const SSL_CTX *ctx) { return 0; } |
| 2902 | int SSL_CTX_sess_cache_full(const SSL_CTX *ctx) { return 0; } |